1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="AuCBmaker.frmParam"
Title="frmParam" Width="700" Height="500" Background="#FF9CAEEC" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d">
<Page.Resources>
<ObjectDataProvider x:Key="flacon" MethodName="Flx" ObjectType="{x:Type sys:Enum}">
</Page.Resources>
<Grid d:IsLocked="True">
<ListBox
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}"
DisplayMemberPath="Param_ParamDB"
Name="ParamListbox"
HorizontalAlignment="Left"
Margin="35,96,0,140"
Width="266"
/>
<ComboBox ItemsSource="{Binding Source={StaticResource flacon}}" /> |
Partager