Files
icarus/Icarus/ChooseReferenceWnd/ChooseReferenceWndV.xaml
T
Emmanuele Sassi 0532c0c486 - cambio nome del progetto in Icarus
- gestione ribs completata
- nuove funzionalita' introdotte su tabella TFS
- correzioni e migliorie varie
2022-09-08 17:36:35 +02:00

81 lines
3.7 KiB
XML

<EgtWPFLib5:EgtCustomWindow x:Class="ChooseReferenceWndV"
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"
Height="500" Width="400"
WindowStartupLocation="CenterOwner">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="3*"/>
<ColumnDefinition Width="0.5*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="3*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock Grid.Column="1"
Text="Selezionare riferimento del pezzo"
VerticalAlignment="Center"
HorizontalAlignment="Center"/>
<UniformGrid Grid.Column="1"
Grid.Row="1"
Rows="3">
<RadioButton Content="┌"
IsChecked="{Binding ReferenceList[0], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┬"
IsChecked="{Binding ReferenceList[4], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┐"
IsChecked="{Binding ReferenceList[1], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="├"
IsChecked="{Binding ReferenceList[5], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┼"
IsChecked="{Binding ReferenceList[8], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┤"
IsChecked="{Binding ReferenceList[6], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="└"
IsChecked="{Binding ReferenceList[2], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┴"
IsChecked="{Binding ReferenceList[7], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
<RadioButton Content="┘"
IsChecked="{Binding ReferenceList[3], Mode=TwoWay}"
GroupName="Reference"
FontSize="40"
Style="{StaticResource OptionPanel_NestingToggleButton}"/>
</UniformGrid>
<Button Grid.Column="1"
Grid.Row="2"
Content="Ok"
Command="{Binding Ok_Command}"
IsDefault="True"
Style="{StaticResource ToolBar_TextButton}"/>
</Grid>
</EgtWPFLib5:EgtCustomWindow>