96 lines
5.3 KiB
XML
96 lines
5.3 KiB
XML
<Window x:Class="StructureHelperCommon.Windows.FunctionSelectionView"
|
|
x:Name="FunctionSelectionView_win"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:StructureHelperCommon.Windows"
|
|
mc:Ignorable="d"
|
|
Title="FunctionMaterial" Height="250" Width="860">
|
|
<!--Window.DataContext>
|
|
<local:FunctionSelectionVM/>
|
|
</Window.DataContext-->
|
|
<Window.Resources>
|
|
<Style x:Key="BoarderPropertyStyle" TargetType="Border">
|
|
<Setter Property="Background" Value="LightYellow"/>
|
|
<Setter Property="BorderBrush" Value="Black"/>
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
<Setter Property="Margin" Value="2"/>
|
|
</Style>
|
|
<Style x:Key="BoarderValueStyle" TargetType="Border">
|
|
<Setter Property="Background" Value="AliceBlue"/>
|
|
<Setter Property="BorderBrush" Value="Black"/>
|
|
<Setter Property="BorderThickness" Value="1"/>
|
|
<Setter Property="Margin" Value="2"/>
|
|
</Style>
|
|
<Style x:Key="TextBlockStyle" TargetType="TextBlock">
|
|
<Setter Property="Background" Value="LightYellow"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
<Setter Property="TextWrapping" Value="Wrap"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
</Style>
|
|
<Style x:Key="FuncComboBox" TargetType="ComboBox">
|
|
<Setter Property="ItemsSource" Value="{Binding Functions}"/>
|
|
<Setter Property="DisplayMemberPath" Value="FullName"/>
|
|
<Setter Property="Margin" Value="10"/>
|
|
</Style>
|
|
</Window.Resources>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="220"/>
|
|
<ColumnDefinition Width="220"/>
|
|
<ColumnDefinition Width="220"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="50"/>
|
|
<RowDefinition Height="50"/>
|
|
<RowDefinition Height="50"/>
|
|
</Grid.RowDefinitions>
|
|
<Border Grid.Column="0" Grid.Row="0"/>
|
|
<Border Grid.Column="0" Grid.Row="1" Style="{StaticResource BoarderPropertyStyle}"/>
|
|
<Border Grid.Column="0" Grid.Row="2" Style="{StaticResource BoarderPropertyStyle}"/>
|
|
<Border Grid.Column="1" Grid.Row="0" Style="{StaticResource BoarderPropertyStyle}"/>
|
|
<Border Grid.Column="1" Grid.Row="1" Style="{StaticResource BoarderValueStyle}"/>
|
|
<Border Grid.Column="1" Grid.Row="2" Style="{StaticResource BoarderValueStyle}"/>
|
|
<Border Grid.Column="2" Grid.Row="0" Style="{StaticResource BoarderPropertyStyle}"/>
|
|
<Border Grid.Column="2" Grid.Row="1" Style="{StaticResource BoarderValueStyle}"/>
|
|
<Border Grid.Column="2" Grid.Row="2" Style="{StaticResource BoarderValueStyle}"/>
|
|
<Border Grid.Column="3" Grid.Row="0" Style="{StaticResource BoarderPropertyStyle}"/>
|
|
<Border Grid.Column="3" Grid.Row="1" Style="{StaticResource BoarderValueStyle}"/>
|
|
<Border Grid.Column="3" Grid.Row="2" Style="{StaticResource BoarderValueStyle}"/>
|
|
<TextBlock Grid.Column="0" Grid.Row="1" Text="{Binding SHORT_TERM}" Style="{StaticResource TextBlockStyle}"/>
|
|
<TextBlock Grid.Column="0" Grid.Row="2" Text="{Binding LONG_TERM}" Style="{StaticResource TextBlockStyle}"/>
|
|
<TextBlock Grid.Column="1" Grid.Row="0" Text="{Binding ULS}" Style="{StaticResource TextBlockStyle}"/>
|
|
<TextBlock Grid.Column="2" Grid.Row="0" Text="{Binding SLS}" Style="{StaticResource TextBlockStyle}"/>
|
|
<TextBlock Grid.Column="3" Grid.Row="0" Text="{Binding SPECIAL}" Style="{StaticResource TextBlockStyle}"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
Grid.Column="1" Grid.Row="1"
|
|
SelectedItem="{Binding Func_ST_ULS}"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
SelectedItem="{Binding Func_LT_ULS}"
|
|
Grid.Column="1" Grid.Row="2"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
SelectedItem="{Binding Func_ST_SLS}"
|
|
Grid.Column="2" Grid.Row="1"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
SelectedItem="{Binding Func_LT_SLS}"
|
|
Grid.Column="2" Grid.Row="2"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
SelectedItem="{Binding Func_ST_Special}"
|
|
Grid.Column="3" Grid.Row="1"/>
|
|
<ComboBox Style="{StaticResource FuncComboBox}"
|
|
SelectedItem="{Binding Func_LT_Special}"
|
|
Grid.Column="3" Grid.Row="2"/>
|
|
<Button Grid.Column="3"
|
|
Grid.Row="3"
|
|
Margin="10"
|
|
Content="{Binding CREATE_MATERIAL}"
|
|
Command="{Binding CreateFunctionMaterialCommand}"
|
|
CommandParameter="{Binding ElementName=FunctionSelectionView_win}"/>
|
|
</Grid>
|
|
</Window>
|