<Window x:Class="帆板仪表盘.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:oxy="http://oxyplot.org/wpf" Title="仪表盘" Height="653.749" Width="722.18" Loaded="Window_Loaded"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="40px"></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <StackPanel Orientation="Horizontal" > <TextBlock Width="70px" FontFamily="微软雅黑" Margin="5,0,0,0" VerticalAlignment="Center">端口选择:</TextBlock> <ComboBox Name="cb_COM" Margin="5,9" Width="100px" SelectionChanged="cb_COM_SelectionChanged" BorderThickness="0" /> <Image Width="25px" Source="Images/refresh.png" ToolTip="刷新" MouseLeftButtonUp="Image_MouseLeftButtonUp"></Image> <Button Name="bt_Conn" Width="50px" Margin="20,9" Click="bt_Conn_Click" BorderThickness="0">连 接</Button> <TextBlock VerticalAlignment="Center">当前状态:</TextBlock> <TextBlock VerticalAlignment="Center" >Angle:</TextBlock> <TextBlock Name="Angle" VerticalAlignment="Center" >待测</TextBlock> <TextBlock Margin="10,0,0,0" VerticalAlignment="Center" >Power:</TextBlock> <TextBlock Name="Power" VerticalAlignment="Center" >待测</TextBlock> <TextBlock Margin="20,0,0,0" VerticalAlignment="Center" >已接收:</TextBlock> <TextBlock Margin="5,0,0,0" Name="labelGetCount" VerticalAlignment="Center" >待测</TextBlock> <TextBlock Margin="5,0,10,0" VerticalAlignment="Center" >组</TextBlock> <Image Name="tt_Help" Margin="10,0,0,0" Width="20px" Height="20px" Source="Images/Help.ico"></Image> </StackPanel> <Grid Grid.Row="1"> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> <RowDefinition Height="30px"></RowDefinition> </Grid.RowDefinitions> <Grid Name="GraList" Grid.Row="0"> <oxy:PlotView Name="plot" Title="Angle" Model="{Binding Model}"> </oxy:PlotView> </Grid> <Grid Name="GraList2" Grid.Row="1"> <oxy:Plot Name="plot2" Title="Power" Model="{Binding Model}"> </oxy:Plot> </Grid> <StackPanel Orientation="Horizontal" Grid.Row="2"> <TextBlock VerticalAlignment="Center">测试信息:</TextBlock> <TextBlock Name="tb_State" VerticalAlignment="Center">待测</TextBlock> </StackPanel> </Grid> </Grid> </Window>