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

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

firsts steps of wpf client

File size: 839 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}" />
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}" />
11       
12        <ResourceDictionary  x:Key="VisualStyleApp" Source="VisualStyleApp.xaml"/>
13    </Application.Resources>
14</Application>
Note: See TracBrowser for help on using the repository browser.