LesionInfoSelector.xaml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <UserControl x:Class="AILesionDescriptionGTGenerator.LesionInfoSelector"
  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. xmlns:local="clr-namespace:AILesionDescriptionGTGenerator"
  7. mc:Ignorable="d"
  8. d:DesignHeight="434" d:DesignWidth="140" MinHeight="420" MinWidth="140">
  9. <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="WhiteSmoke">
  10. <StackPanel Orientation="Vertical">
  11. <DockPanel Margin="4,4,4,2">
  12. <TextBlock Text="轮廓:" FontSize="11" VerticalAlignment="Center"/>
  13. <Button Content="绘制轮廓" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawContourClicked"/>
  14. </DockPanel>
  15. <TextBlock x:Name="TextBlockContours" Background="White" Margin="4,2,4,4" TextWrapping="Wrap" Height="50"/>
  16. <TextBlock Text="形状:" Margin="4,4,4,2"/>
  17. <ComboBox x:Name="ComboBoxShape" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnShapeSelectionChanged"/>
  18. <TextBlock Text="生长方向:" Margin="4,4,4,2"/>
  19. <ComboBox x:Name="ComboBoxOrientation" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnOrientationSelectionChanged"/>
  20. <TextBlock Text="回声类型:" Margin="4,4,4,2"/>
  21. <ComboBox x:Name="ComboBoxEchoPattern" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnEchoPatternSelectionChanged"/>
  22. <TextBlock Text="边界:" Margin="4,4,4,2"/>
  23. <ComboBox x:Name="ComboBoxBoundary" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnBoundarySelectionChanged"/>
  24. <TextBlock Text="边缘:" Margin="4,4,4,2"/>
  25. <ComboBox x:Name="ComboBoxMargin" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnMarginSelectionChanged"/>
  26. <DockPanel Margin="4,4,4,2">
  27. <TextBlock Text="横径:" VerticalAlignment="Center"/>
  28. <Button Content="绘制横径" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawHorizontalClicked"/>
  29. </DockPanel>
  30. <TextBlock x:Name="TextBlockHorizontal" Background="White" Margin="4,2,4,4"/>
  31. <DockPanel Margin="4,4,4,2">
  32. <TextBlock Text="纵径:" VerticalAlignment="Center"/>
  33. <Button Content="绘制纵径" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawVerticalClicked"/>
  34. </DockPanel>
  35. <TextBlock x:Name="TextBlockVertical" Background="White" Margin="4,2,4,4"/>
  36. </StackPanel>
  37. </Grid>
  38. </UserControl>