1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Window x:Class="Saga.PlugIn.ModelCheck.WinSelectDeviceClass"
- 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:converter="clr-namespace:SAGA.DotNetUtils.WPF.Converter;assembly=SAGA.DotNetUtils"
- xmlns:local="clr-namespace:Saga.PlugIn.ModelCheck"
- mc:Ignorable="d" Title="待建模设备" WindowStartupLocation="CenterScreen"
- ResizeMode="NoResize"
- Height="200" Width="300">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="43"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid Margin="10,0">
- <Grid.RowDefinitions>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid >
- <Label VerticalAlignment="Bottom"
- Content="请选择需建模的设备类型:"></Label>
- </Grid>
- <ComboBox Grid.Row="1" Height="23" VerticalAlignment="Top"
- ItemsSource="{Binding Path=ClassCodes}"
- SelectedItem="{Binding Path=SelectedCode}"
- DisplayMemberPath="name"></ComboBox>
- </Grid>
- <Grid Grid.Row="1" Background="#F0F0F0">
- <WrapPanel HorizontalAlignment="Right">
- <Button Width="82" Height="23"
- Content="上一步"
- HorizontalAlignment="Right" Margin="0,10,6,10" VerticalAlignment="Center"
- IsCancel="True"
- ></Button>
- <Button Width="82" Height="23" Content="确认"
- HorizontalAlignment="Right" Margin="0,10,10,10" VerticalAlignment="Center"
- Click="ButtonNext_OnClick" ></Button>
- </WrapPanel>
-
- </Grid>
- </Grid>
- </Window>
|