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

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

WPF inprovement

File size: 887 bytes
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="CategoriesODP" x:Key="Categories" ObjectType="{x:Type piwigo:PwgCategoryListWPF}"/> <!--IsAsynchronous="True"-->
11
12        <ResourceDictionary  x:Key="VisualStyleApp" Source="VisualStyleApp.xaml"/>
13    </Application.Resources>
14</Application>
Note: See TracBrowser for help on using the repository browser.