e569591e05
- Settato TitleBarHeight a 32
25 lines
945 B
XML
25 lines
945 B
XML
<EgtWPFLib5:EgtCustomWindow x:Class="MainWindowV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:LicenceManager="clr-namespace:LicenseManager"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5;assembly=EgtWPFLib5"
|
|
DataContext="{StaticResource MainWindowVM}"
|
|
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
|
Title="{Binding Title}"
|
|
TitleBarHeight="32"
|
|
MinHeight="480" MinWidth="640"
|
|
Icon="/Resources/LogoLicenceManager.Ico"
|
|
AboutBoxCommand="{Binding AboutBoxCommand}" WindowStyle="None" ResizeMode="NoResize">
|
|
|
|
<!--Pannello principale -->
|
|
<!--<ContentControl Content="{Binding ProjectContent}"/>-->
|
|
|
|
<!-- ** Definizione della Grid della MainWindow ** -->
|
|
<Grid Name="MainWindowGrid">
|
|
|
|
<ContentControl Content="{Binding ProjectContent}"/>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|