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