PlotConfigTableControl.xaml 1.3 KB

123456789101112131415161718192021222324252627
  1. <UserControl x:Class="Aitex.UI.Charting.View.PlotConfigTableControl"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. xmlns:chart="clr-namespace:Aitex.UI.Charting.View"
  8. FontSize="12"
  9. d:DesignHeight="198" d:DesignWidth="896">
  10. <UserControl.Resources>
  11. <Style TargetType="{x:Type Label}">
  12. <Setter Property="Foreground" Value="Black"/>
  13. </Style>
  14. </UserControl.Resources>
  15. <TabControl x:Name="table1" Grid.Row="1" TabStripPlacement="Bottom" Padding="0" BorderThickness="0" HorizontalContentAlignment="Stretch" VerticalAlignment="Stretch">
  16. <TabItem Header="{DynamicResource GlobalLableSeriesConfig}">
  17. <chart:DataSeriesEdit/>
  18. </TabItem>
  19. <TabItem Header="{DynamicResource GlobalLableSeriesCustom}">
  20. <chart:TabStatisticView />
  21. </TabItem>
  22. <!--<TabItem Header="生长率计算">
  23. <chart:TabGrowthRateCalc/>
  24. </TabItem>-->
  25. </TabControl>
  26. </UserControl>