Files
egtstone3d/MainWindow/MainWindowV.xaml
2025-02-10 12:55:24 +01:00

19 lines
773 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"
AllowDrop="True"
Drop="MainWindowV_Drop"
Style="{StaticResource NoStyle_Window}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<EgtStone3D:SceneHostV Grid.Row="1"/>
</Grid>
</EgtWPFLib5:EgtMainWindow>