17 строки
777 B
XML
17 строки
777 B
XML
<Window x:Class="GraphicsTester.WPF.SharpDX.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:wpf="clr-namespace:Microsoft.Maui.Graphics.SharpDX.WPF;assembly=Microsoft.Maui.Graphics.SharpDX.WPF"
|
|
Title="MainWindow" Height="350" Width="525">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="250" />
|
|
<ColumnDefinition Width="5" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<ListView x:Name="List" />
|
|
<GridSplitter Grid.Column="1" Width="5" HorizontalAlignment="Stretch" />
|
|
<wpf:WDGraphicsView x:Name="GraphicsView" Grid.Column="2" />
|
|
</Grid>
|
|
</Window>
|