65dee8bf4c
-> aggiornamento automatico della lista "PartList"; -> verifica funzionamento ultima versione.
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="InfoWindowV"
|
|
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="{Binding Title}"
|
|
WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="30" IsResizable="False" IsClosable="False"
|
|
IsMinimizable="False" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"
|
|
Height="150" Width="350">
|
|
<!--CloseCommand="{Binding CloseOptionsCommand,Mode=OneWay,UpdateSourceTrigger=PropertyChanged}"-->
|
|
<Grid Margin="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="1.5*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.ColumnSpan="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding Messages}"/>
|
|
<ToggleButton Grid.Column="0" Grid.Row="1"
|
|
Height="35" Width="100"
|
|
Content="Yes" IsChecked="{Binding TryAgain}"/>
|
|
<ToggleButton Grid.Column="1" Grid.Row="1"
|
|
Height="35" Width="100"
|
|
Content="No" IsChecked="{Binding StopTry}"/>
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|