ReadCardDialog.xaml 1.0 KB

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