19 lines
773 B
XML
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>
|