2025-08-15 15:25:44 +08:00

41 lines
1.3 KiB
XML

<Window
x:Class="DI_Electrical.Views.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:local="clr-namespace:DI_Electrical.Views"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="MainWindow"
Width="800"
Height="450"
WindowStartupLocation="CenterScreen"
mc:Ignorable="d">
<Grid>
<StackPanel
Grid.Row="0"
Height="30"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Orientation="Horizontal">
<TextBlock
Width="100"
FontSize="18"
Text="当前项目:" />
<TextBox
Width="200"
FontSize="18"
Text="{Binding ProjectName}" />
<Button
Width="100"
Height="25"
Command="{Binding Command_ShowDialogTest}"
Content="弹窗测试" />
<Button
Width="100"
Height="25"
Command="{Binding Command_ShowDialogSignalManagement}"
Content="信号管理测试" />
</StackPanel>
</Grid>
</Window>