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

Last change on this file since 9752 was 7150, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 745 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    </Application.Resources>
12</Application>
Note: See TracBrowser for help on using the repository browser.