52 lines
1.6 KiB
XML
52 lines
1.6 KiB
XML
<UserControl
|
|
x:Class="DI_Electrical.Views.Dialog.DialogTest"
|
|
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.Dialog"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Width="400"
|
|
Height="200"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<StackPanel
|
|
Grid.Row="0"
|
|
Height="30"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<TextBlock
|
|
Width="60"
|
|
FontSize="18"
|
|
Text="传参:" />
|
|
<TextBox
|
|
Width="200"
|
|
FontSize="18"
|
|
Text="{Binding parText}" />
|
|
</StackPanel>
|
|
<StackPanel
|
|
Grid.Row="1"
|
|
Height="60"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal">
|
|
<Button
|
|
Width="100"
|
|
Margin="10"
|
|
Command="{Binding Command_Close1}"
|
|
Content="Yes关闭"
|
|
FontSize="18" />
|
|
<Button
|
|
Width="100"
|
|
Margin="10"
|
|
Command="{Binding Command_Close2}"
|
|
Content="No关闭"
|
|
FontSize="18" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|