AlarmPage.xaml 922 B

12345678910111213141516
  1. <Page x:Class="MvvmScaffoldFrame48.WPFPage.AlarmPage"
  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:MvvmScaffoldFrame48.WPFPage"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AlarmPage">
  10. <Grid>
  11. <Button Content="触发" Command="{Binding AlarmTestCommond}" Height="50" Width="80" HorizontalAlignment="Left" VerticalAlignment="Top" />
  12. <Button Content="取消" Command="{Binding CancelAlarmTestCommond}" Height="50" Width="80" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="80,0,0,0" />
  13. <DataGrid ItemsSource="{Binding Alarm}" Margin="0,50,0,0"></DataGrid>
  14. </Grid>
  15. </Page>