source: extensions/PiwigoLib/PiwigoWpf/App.xaml @ 12336

Last change on this file since 12336 was 12336, checked in by bayral, 13 years ago

rename category to Albums

File size: 1.0 KB
Line 
1<Application x:Class="Com.Piwigo.Wpf.App"
2             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4             xmlns:piwigo="clr-namespace:Com.Piwigo.Wpf.DTO"
5             Startup="onAppStartup"
6             Exit="onAppExit">
7    <Application.Resources>
8        <ObjectDataProvider x:Name="ImagesODP" x:Key="Images" ObjectType="{x:Type piwigo:PwgImageListWPF}"/> <!--IsAsynchronous="True"-->
9        <ObjectDataProvider x:Name="SessionODP" x:Key="Session" ObjectType="{x:Type piwigo:PwgSessionWPF}" />
10        <ObjectDataProvider x:Name="AlbumsODP" x:Key="Albums" ObjectType="{x:Type piwigo:PwgRootAlbumListWPF}"/> <!--IsAsynchronous="True"-->
11        <ObjectDataProvider x:Name="TagsODP" x:Key="Tags" ObjectType="{x:Type piwigo:PwgTagListWPF}"/>
12        <!--IsAsynchronous="True"-->
13        <!--IsAsynchronous="True"-->
14        <ResourceDictionary  x:Key="VisualStyleApp" Source="VisualStyleApp.xaml"/>
15    </Application.Resources>
16</Application>
Note: See TracBrowser for help on using the repository browser.