1aab4c7ec8
- aggiunta quotatura su hardware per report. - aggiunti parametri quotature nelle opzioni.
55 lines
2.5 KiB
XML
55 lines
2.5 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:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:EgtDOORCreator="clr-namespace:EgtDOORCreator"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
xmlns:ListLabel25="clr-namespace:combit.ListLabel25.Wpf;assembly=combit.ListLabel25.Wpf"
|
|
mc:Ignorable="d"
|
|
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"/>-->
|
|
<ListLabel25:EnhancedViewerControl Name="enhancedPreviewControl" Height="650" Width="900" />
|
|
|
|
<UniformGrid Columns="3"
|
|
Grid.Row="1"
|
|
Margin="115,30,0,10">
|
|
<Button VerticalAlignment="Center"
|
|
Height="30" Margin="50,0,50,0"
|
|
Content="{Binding DesignMsg}"
|
|
Command="{Binding DesignCommand}"
|
|
Visibility="{Binding DesignVisibility}"
|
|
ToolTip="{Binding DeisgnToolTip}"
|
|
IsDefault="True"
|
|
Focusable="False"/>
|
|
<Button VerticalAlignment="Center"
|
|
Visibility="Collapsed"
|
|
Height="30" Margin="50,0,50,0"
|
|
Content="{Binding SavePDFMsg}"
|
|
Command="{Binding SavePDFCommand}"
|
|
ToolTip="{Binding SavePDFToolTip}"
|
|
Focusable="False"/>
|
|
<Button VerticalAlignment="Center"
|
|
Height="30" Margin="50,0,50,0"
|
|
Content="{Binding CancelMsg}"
|
|
Command="{Binding CancelCommand}"
|
|
ToolTip="{Binding CancelToolTip}"
|
|
Focusable="False"/>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|