Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner.Demo/MainWindow.xaml
2023-01-26 22:25:48 +08:00

27 lines
1.1 KiB
XML

<ac:WindowBase x:Class="AIStudio.Wpf.DiagramDesigner.Demo.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ac="https://gitee.com/akwkevin/AI-wpf-controls"
mc:Ignorable="d"
Title="AIStudio.Wpf.DiagramDesigner.Demo"
Icon="A.ico"
Style="{StaticResource AIStudio.Styles.WindowBase}"
Height="450" Width="800">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="100" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<ListBox x:Name="listbox" SelectionChanged="ListBox_SelectionChanged">
</ListBox>
<GridSplitter Width="2"
VerticalAlignment="Stretch" />
<ContentControl x:Name="ContentControl"
Grid.Column="1"
Margin="0" />
</Grid>
</ac:WindowBase>