| 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="Right" VerticalAlignment="Top" Panel.ZIndex="1" Margin="4" Width="80" 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>
 |