<Window x:Class="FLYAD7_Simulation_Wpf.WindowHeaderAndTailer" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:FLYAD7_Simulation_Wpf" Title="涂布模拟" Height="184" Width="485" xmlns:my="clr-namespace:System.Windows.Forms.DataVisualization.Charting;assembly=System.Windows.Forms.DataVisualization"> <Window.Resources> <local:CoatingModeConverter x:Key="coatingmodeconv" /> </Window.Resources> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="273*" /> </Grid.RowDefinitions> <StackPanel Orientation="Horizontal" Grid.Row="0" Margin="12,3"> <StackPanel Orientation="Horizontal" Margin="3"> <TextBlock Text="线速度(m/min)" /> <TextBox Text="{Binding FilmVelocity}" Width="117" /> </StackPanel> <CheckBox Content="状态" FontSize="18" FontWeight="Bold" Height="23" Margin="3" Name="checkBox1" VerticalAlignment="Center" FlowDirection="RightToLeft" IsChecked="{Binding IsRunning}"/> </StackPanel> <Grid Margin="12,3" Grid.Row="1"> <Grid.RowDefinitions> <RowDefinition /> </Grid.RowDefinitions> </Grid> </Grid> </Window>