a5be2180ea
- aggiunti nome e path del progetto - gestito bordo della finestra che sparisce quando massimizzata - creata finestra UpdateMachine al posto di MachineBox
51 lines
2.1 KiB
XML
51 lines
2.1 KiB
XML
<EgtWPFLib5:EgtMainWindow x:Class="ChooseMachineWndV"
|
|
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:Icarus="clr-namespace:Icarus"
|
|
Title="New Project"
|
|
SizeToContent="WidthAndHeight"
|
|
WindowStartupLocation="CenterOwner"
|
|
Style="{StaticResource Dialog_Window}">
|
|
<Grid Margin="2.5,2.5,2.5,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="{Binding ChooseMachine_Msg}"
|
|
Margin="20,20,20,2.5"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
<ComboBox Grid.Row="1"
|
|
ItemsSource="{Binding MachineList}"
|
|
SelectedItem="{Binding SelMachine}"
|
|
DisplayMemberPath="Name"
|
|
SelectedValuePath="Name"
|
|
Width="160"
|
|
HorizontalAlignment="Center"
|
|
HorizontalContentAlignment="Center"
|
|
Margin="2.5,10,2.5,2.5"
|
|
Style="{StaticResource RightPanel_ComboBox}"/>
|
|
|
|
<UniformGrid Grid.Row="2"
|
|
Rows="1"
|
|
Margin="0,20,0,0">
|
|
<Button Command="{Binding Ok_Command}"
|
|
IsDefault="True"
|
|
Margin="0,0,2.5,0"
|
|
Style="{StaticResource RightPanel_HalfRound_Button}">
|
|
<Image Source="\Resources\Common\Ok.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
<Button IsCancel="True"
|
|
Margin="0,0,2.5,0"
|
|
Style="{StaticResource RightPanel_HalfRound_Button}">
|
|
<Image Source="\Resources\Common\Cancel.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
</EgtWPFLib5:EgtMainWindow>
|