123456789101112131415161718192021222324252627 |
- <UserControl x:Class="Aitex.UI.Charting.View.PlotConfigTableControl"
- 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"
- mc:Ignorable="d"
- xmlns:chart="clr-namespace:Aitex.UI.Charting.View"
- FontSize="12"
- d:DesignHeight="198" d:DesignWidth="896">
- <UserControl.Resources>
- <Style TargetType="{x:Type Label}">
- <Setter Property="Foreground" Value="Black"/>
- </Style>
- </UserControl.Resources>
- <TabControl x:Name="table1" Grid.Row="1" TabStripPlacement="Bottom" Padding="0" BorderThickness="0" HorizontalContentAlignment="Stretch" VerticalAlignment="Stretch">
- <TabItem Header="{DynamicResource GlobalLableSeriesConfig}">
- <chart:DataSeriesEdit/>
- </TabItem>
- <TabItem Header="{DynamicResource GlobalLableSeriesCustom}">
- <chart:TabStatisticView />
- </TabItem>
- <!--<TabItem Header="生长率计算">
- <chart:TabGrowthRateCalc/>
- </TabItem>-->
- </TabControl>
- </UserControl>
|