123456789101112131415161718192021222324252627282930 |
- <UserControl x:Class="ProximaAnalizer.Views.Summary"
- 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:ProximaAnalizer.Views"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml">
-
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid Background="{StaticResource BackgroundColor}">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="0"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Button Grid.Row="0" HorizontalAlignment="Left" Width="80" Height="24" Command="{Binding ReturnCommand}" Style="{StaticResource FunctionButton}">返回主页</Button>
- <!--<StackPanel Orientation="Horizontal">
- <Button Command="{Binding TestCommand}" CommandParameter="DBInfoTrace">Trace</Button>
- <Button Command="{Binding TestCommand}" CommandParameter="DBInfoAlarm">Alarm</Button>
- </StackPanel>-->
- <ContentControl Grid.Row="2" prism:RegionManager.RegionName="MainRegion"/>
- </Grid>
- </UserControl>
|