| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <UserControl x:Class="SummaryModule.Controls.SummeryPlot"
- 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:SummaryModule.Controls"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Button Style="{StaticResource ClearButton}" Background="{StaticResource BorderBackgroundColor}" Command="{Binding ElementName=This, Path=Jump}" CommandParameter="{Binding ElementName=This, Path=JumpPara}">
- <Grid Margin="12">
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid >
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Image Source="{Binding ElementName=This, Path=TitleImage}" Stretch="UniformToFill" Height="24"/>
- <TextBlock Grid.Column="2" Text="{Binding ElementName=This, Path=Title}" VerticalAlignment="Center" FontSize="16"/>
- </Grid>
- <ContentPresenter Grid.Row="2" Content="{Binding ElementName=This, Path=DisplayContent}"/>
- </Grid>
- </Button>
- </UserControl>
|