a5be2180ea
- aggiunti nome e path del progetto - gestito bordo della finestra che sparisce quando massimizzata - creata finestra UpdateMachine al posto di MachineBox
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<EgtWPFLib5:EgtMainWindow x:Class="UpdateMachineV"
|
|
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"
|
|
Title="Update Machine"
|
|
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"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="{Binding UpdateMachine_Msg}"
|
|
Margin="20,20,20,2.5"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
<UniformGrid Grid.Row="2"
|
|
Rows="1"
|
|
Margin="0,20,0,0">
|
|
<Button Content="{Binding Replace_Msg}"
|
|
Command="{Binding Replace_Command}"
|
|
IsDefault="True"
|
|
Margin="0,0,2.5,0"
|
|
Style="{StaticResource RightPanel_HalfRound_Button}"/>
|
|
<Button Content="{Binding Update_Msg}"
|
|
Command="{Binding Update_Command}"
|
|
IsDefault="True"
|
|
Margin="2.5,0,2.5,0"
|
|
Style="{StaticResource RightPanel_HalfRound_Button}"/>
|
|
<Button Command="{Binding Cancel_Command}"
|
|
Margin="2.5,0,0,0"
|
|
Style="{StaticResource RightPanel_HalfRound_Button}">
|
|
<Image Source="\Resources\Common\Cancel.png"
|
|
Style="{StaticResource Button_Image}"/>
|
|
</Button>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtMainWindow>
|