1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<UserControl x:Class="WpfERP.View.ListeCommandeFournisseurView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:View="clr-namespace:WpfERP.View;assembly="
xmlns:ViewModel="clr-namespace:ViewModel;assembly=ViewModel"
xmlns:Model="clr-namespace:DataAccess;assembly=DataAccess"
xmlns:ig="http://schemas.infragistics.com/xaml"
xmlns:System="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d"
d:DesignHeight="600" d:DesignWidth="1000"
>
<UserControl.Resources>
<ObjectDataProvider x:Key="dataFromEnum"
MethodName="GetValues" ObjectType="{x:Type System:Enum}">
<ObjectDataProvider.MethodParameters>
<x:Type TypeName="Model:CommandeFournisseur+Reception"/>
</ObjectDataProvider.MethodParameters>
</ObjectDataProvider>
</UserControl.Resources> |