8dd1e8e4b7
-sistemato singolo assemblato
43 lines
2.3 KiB
XML
43 lines
2.3 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="GeneralParametersWnd"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
xmlns:EgtBEAMWALL="clr-namespace:EgtBEAMWALL.Optimizer"
|
|
WindowStyle="None" ResizeMode="NoResize"
|
|
SizeToContent="WidthAndHeight"
|
|
WindowStartupLocation="CenterOwner"
|
|
IsClosable="True"
|
|
IsMinimizable="False"
|
|
IsResizable="False"
|
|
Title="GeneralParametersWnd"
|
|
Name="GeneralParametersWnd"
|
|
Style="{StaticResource OnlyProd_EgtCustomWindow}">
|
|
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ComboBox ItemsSource="{Binding StrategySetupList}"
|
|
SelectedItem="{Binding SelStrategySetup, UpdateSourceTrigger=PropertyChanged}"
|
|
Grid.ColumnSpan="2" HorizontalAlignment="Center" Margin="0,10,0,10"
|
|
Style="{StaticResource Strategy_ComboBox}" />
|
|
<EgtBEAMWALL:ProjectParametersV Grid.Row="1" Grid.RowSpan="2" IsEnabled="{Binding GeneralParametersIsEnable}"/>
|
|
<UniformGrid Rows="2" Grid.Row="1" Grid.Column="1" Margin="0,0,5,0">
|
|
<CheckBox IsChecked="{Binding bSaveGeneralParameters, UpdateSourceTrigger=PropertyChanged}"
|
|
VerticalAlignment="Top" HorizontalAlignment="Center" Margin="10,10,0,0"
|
|
Style="{StaticResource OnlyProdFeatureInPartInRawPartList_CheckBox}"/>
|
|
<Button Command="{Binding Ok_Command}" VerticalAlignment="Bottom" Margin="5,0,0,5"
|
|
ToolTip="{Binding SaveAsToolTip}"
|
|
Style="{StaticResource SaveStrategy_Button}">
|
|
<Image Source="/Resources/NewPage/Ok.png" Stretch="Uniform"/>
|
|
</Button>
|
|
</UniformGrid>
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|