a5be2180ea
- aggiunti nome e path del progetto - gestito bordo della finestra che sparisce quando massimizzata - creata finestra UpdateMachine al posto di MachineBox
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<EgtWPFLib5:EgtMainWindow x:Class="MachSaveInDbWndV"
|
|
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="Save in Database"
|
|
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="Write the new Database machining name"
|
|
Margin="20,20,20,2.5"
|
|
Style="{StaticResource DialogWindow_TextBlock}"/>
|
|
<EgtWPFLib5:EgtTextBox2 Grid.Row="1"
|
|
Text="{Binding sName}"
|
|
IsExplicitFocused="True"
|
|
Width="160"
|
|
Margin="20,10,20,2.5"
|
|
Style="{StaticResource LeftPanel_TextBox2}"/>
|
|
<UniformGrid Grid.Row="3"
|
|
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 Command="{Binding Cancel_Command}"
|
|
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>
|