- <UserControl x:Class="ConfigureWindow.domain.ReadCardDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:ConfigureWindow.domain"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800" Padding="8"
- xmlns:wpf="clr-namespace:MaterialDesignThemes.Wpf;assembly=MaterialDesignThemes.Wpf">
- <StackPanel Orientation="Vertical">
- <Label Content="" Width="200" Height="80" Name="lb_content"></Label>
- <StackPanel Margin="0 16 0 0" Orientation="Horizontal" HorizontalAlignment="Right">
- <Button Style="{DynamicResource MaterialDesignFlatButton}" Command="{x:Static wpf:DialogHost.CloseDialogCommand}">关闭</Button>
- </StackPanel>
- </StackPanel>
- </UserControl>
|