4811a37fe7
- aggiunta opacita' finestra all'avvio
31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<EgtWPFLib5:EgtMainWindow x:Class="SecondaryWindowV"
|
|
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"
|
|
xmlns:PrintApp="clr-namespace:Icarus"
|
|
Title="{Binding sTitle}"
|
|
ProjectName="{Binding sProjectName}"
|
|
ProjectPath="{Binding sProjectPath}"
|
|
Icon="/Resources/Icarus.ico"
|
|
CloseCommand="{Binding CloseApplicationCommand, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"
|
|
ShowInTaskbar="False"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
Style="{DynamicResource {x:Type EgtWPFLib5:EgtMainWindow}}">
|
|
<EgtWPFLib5:EgtMainWindow.TitlePanel>
|
|
<PrintApp:ProjManagerV DataContext="{StaticResource ProjManagerVM}"/>
|
|
</EgtWPFLib5:EgtMainWindow.TitlePanel>
|
|
<EgtWPFLib5:EgtMainWindow.OpacityMask>
|
|
<SolidColorBrush Color="White" Opacity="{Binding Window_Opacity}"/>
|
|
</EgtWPFLib5:EgtMainWindow.OpacityMask>
|
|
|
|
|
|
<!--Pannello principale -->
|
|
<DockPanel>
|
|
|
|
<PrintApp:ProjectV DataContext="{StaticResource ProjectVM}"/>
|
|
|
|
</DockPanel>
|
|
|
|
</EgtWPFLib5:EgtMainWindow>
|