<UserControl x:Class="FLY.DownBlowing.UI.Client.UiModule.WinderPanel"
             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:FLY.DownBlowing.UI.Client.UiModule" 
             xmlns:flyctrl="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
             xmlns:i="http://schemas.microsoft.com/xaml/behaviors" xmlns:ut="clr-namespace:FLY.DownBlowing.UI.Client.UnitTests"
             mc:Ignorable="d" 
             d:DesignWidth="960" d:DesignHeight="890"  >
    <!--1920*1080 下图表区  1600 * 954
1280*1024 下图表区  960 * 890
1388*768 下图表区  1060 * 634-->
    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="WinderPanelStyle.xaml"/>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>
    <Viewbox Stretch="Uniform" HorizontalAlignment="Left" VerticalAlignment="Top">
        <Grid d:DataContext="{StaticResource downBlowingSystemUt}">
            <Grid.RowDefinitions>
                <RowDefinition Height="auto"/>
                <RowDefinition Height="auto"/>
                <RowDefinition />
            </Grid.RowDefinitions>
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="auto"/>
                    <ColumnDefinition />
                </Grid.ColumnDefinitions>

                <StackPanel >
                    <local:T1VelocityPanel x:Name="t1VelocityPanel"/>
                    <local:ExAirPanel x:Name="exAirPanel"/>
                </StackPanel>
                <local:VelocityCtrlPanel x:Name="velocityCtrlPanel" Grid.Column="1"/>
            </Grid>
            <Grid Grid.Row="1">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="auto"/>
                    <ColumnDefinition />
                </Grid.ColumnDefinitions>
                <local:CenterPanel  x:Name="centerPanel" Grid.Column="1"/>
                <Grid >
                    <Grid.RowDefinitions>
                        <RowDefinition Height="auto"/>
                        <RowDefinition />
                    </Grid.RowDefinitions>
                    <Grid>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="auto"/>
                            <ColumnDefinition/>
                        </Grid.ColumnDefinitions>
                        <local:FlowPumpPanel x:Name="flowPumpPanel"/>
                        <local:MeasureLenPanel x:Name="measureLenPanel" Grid.Column="1" Panel.ZIndex="2"/>
                    </Grid>
                    <local:OtherPanel x:Name="otherPanel" Grid.Row="1"/>
                </Grid>



            </Grid>
            <local:RotaryPanel x:Name="rotaryPanel" Grid.Row="2" />
        </Grid>
    </Viewbox>

</UserControl>