a5be2180ea
- aggiunti nome e path del progetto - gestito bordo della finestra che sparisce quando massimizzata - creata finestra UpdateMachine al posto di MachineBox
22 lines
910 B
XML
22 lines
910 B
XML
<EgtWPFLib5:EgtMainWindow x:Class="MainWindowV"
|
|
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"
|
|
MinHeight="600" MinWidth="800"
|
|
AllowDrop="True"
|
|
Drop="MainWindowV_Drop"
|
|
ShowInTaskbar="True"
|
|
Topmost="False"
|
|
Style="{StaticResource NoStyle_Window}">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="60"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
<PrintApp:SceneHostV Grid.Row="1"/>
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtMainWindow>
|