Files
egtstone3d/MainWindow/MainWindowV.xaml
T
2024-12-30 12:21:42 +01:00

22 lines
914 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:EgtStone3D="clr-namespace:EgtStone3D"
MinHeight="600" MinWidth="800"
AllowDrop="True"
ShowInTaskbar="True"
Topmost="False"
Title="EgtStone3D"
Style="{StaticResource NoStyle_Window}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.5"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<EgtStone3D:SceneHostV Grid.Row="1"/>
</Grid>
</EgtWPFLib5:EgtMainWindow>