dbb281988d
- Aggiunta scena per help hardware manager. - Disabilitato dimensioning panel in hardware manager. - Miliorie varie.
41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="PrintWndV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtDOORCreator="clr-namespace:EgtDOORCreator"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
Title="{Binding Title}" Icon="/Resources/EgtDOOR.ico"
|
|
TitleBarBrush="{StaticResource EgaltechBlue1}"
|
|
BorderBrush="{StaticResource EgaltechBlue1}"
|
|
WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="30" IsResizable="False"
|
|
IsMinimizable="False" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"
|
|
CloseCommand="{Binding CancelCommand,Mode=OneWay,UpdateSourceTrigger=PropertyChanged}" SizeToContent="WidthAndHeight">
|
|
<Grid >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<EgtDOORCreator:PrintSceneHostV Height="600" Width="450"/>
|
|
|
|
<UniformGrid Columns="2"
|
|
Grid.Row="1"
|
|
Margin="10">
|
|
<Button VerticalAlignment="Center"
|
|
Height="30" Margin="0,0,5,0"
|
|
Content="{Binding PrintMsg}"
|
|
Command="{Binding PrintCommand}"
|
|
ToolTip="{Binding PrintToolTip}"
|
|
IsDefault="True"
|
|
Focusable="False"/>
|
|
<Button VerticalAlignment="Center"
|
|
Height="30" Margin="5,0,0,0"
|
|
Content="{Binding CancelMsg}"
|
|
Command="{Binding CancelCommand}"
|
|
ToolTip="{Binding CancelToolTip}"
|
|
Focusable="False"/>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|