chr
2024-08-16 fdc02492963bd1ec69b37c28221603a6f0665016
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="WpfUI.Window1"
        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:main="clr-namespace:PdmSwPlugin.Main;assembly=PdmSwPlugin.Main"
        mc:Ignorable="d"
        Loaded="Window_Loaded"
        Title="Window1" Width="800" Height="800" WindowStartupLocation="Manual">
    <Grid VerticalAlignment="Stretch" HorizontalAlignment="Stretch">
        <StackPanel x:Name="stack">
            <Button Click="Button_Click" DockPanel.Dock="Top">附加SW</Button>
            <!--<main:MainControl DockPanel.Dock="Bottom" x:Name="main" VerticalAlignment="Stretch" HorizontalAlignment="Stretch"></main:MainControl>-->
        </StackPanel>
    </Grid>
</Window>