Window3.xaml 1.18 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<Window x:Class="WpfApplication1.Window3"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window3" Height="300" Width="560" xmlns:my="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="229*" />
            <RowDefinition Height="32*" />
        </Grid.RowDefinitions>
        <my:GraphRange Name="graphRange1" />
        <StackPanel Orientation="Horizontal" Grid.Row="1">
            <StackPanel.Resources>
                <Style TargetType="Button">
                    <Setter Property="Height" Value="23"/>
                    <Setter Property="Width" Value="75"/>
                    <Setter Property="Margin" Value="5"/>
                </Style>
            </StackPanel.Resources>
            <Button Content="添加数据" Click="button_add_Click" />
            <Button Content="2Sigma" Click="button_type_2sigma_Click" />
            <Button Content="Avg" Click="button_type_avg_Click" />
            <Button Content="All" Click="button_type_all_Click" />
        </StackPanel>
    </Grid>
</Window>