123456789101112131415161718192021222324252627 |
- <UserControl x:Class="HistoryUI.Views.Loading"
- 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:HistoryUI.Views"
- xmlns:hc="https://handyorg.github.io/handycontrol"
- mc:Ignorable="d"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- Width="auto" Height="auto">
- <Border Background="White" CornerRadius="8">
- <Grid Margin="32">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="32"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="32"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Button Grid.Column="0" Width="160" Height="90" Background="{StaticResource LightNormalColor}" Command="{Binding SelectCommand}" CommandParameter="1">Channel Data</Button>
- <Button Grid.Column="2" Width="160" Height="90" Background="{StaticResource LightThemeColor}" Command="{Binding SelectCommand}" CommandParameter="3">Log Trace</Button>
- <Button Grid.Column="4" Width="160" Height="90" Background="{StaticResource LightWarningColor}" Command="{Binding SelectCommand}" CommandParameter="2">Alarm History</Button>
- </Grid>
- </Border>
- </UserControl>
|