1234567891011121314151617181920212223242526272829303132333435363738 |
- <UserControl x:Class="AILesionDescriptionGTGenerator.LesionInfoSelector"
- 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:AILesionDescriptionGTGenerator"
- mc:Ignorable="d"
- d:DesignHeight="434" d:DesignWidth="140" MinHeight="420" MinWidth="140">
- <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="WhiteSmoke">
- <StackPanel Orientation="Vertical">
- <DockPanel Margin="4,4,4,2">
- <TextBlock Text="轮廓:" FontSize="11" VerticalAlignment="Center"/>
- <Button Content="绘制轮廓" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawContourClicked"/>
- </DockPanel>
- <TextBlock x:Name="TextBlockContours" Background="White" Margin="4,2,4,4" TextWrapping="Wrap" Height="50"/>
- <TextBlock Text="形状:" Margin="4,4,4,2"/>
- <ComboBox x:Name="ComboBoxShape" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnShapeSelectionChanged"/>
- <TextBlock Text="生长方向:" Margin="4,4,4,2"/>
- <ComboBox x:Name="ComboBoxOrientation" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnOrientationSelectionChanged"/>
- <TextBlock Text="回声类型:" Margin="4,4,4,2"/>
- <ComboBox x:Name="ComboBoxEchoPattern" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnEchoPatternSelectionChanged"/>
- <TextBlock Text="边界:" Margin="4,4,4,2"/>
- <ComboBox x:Name="ComboBoxBoundary" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnBoundarySelectionChanged"/>
- <TextBlock Text="边缘:" Margin="4,4,4,2"/>
- <ComboBox x:Name="ComboBoxMargin" Margin="4,2,4,4" VerticalAlignment="Center" SelectionChanged="OnMarginSelectionChanged"/>
- <DockPanel Margin="4,4,4,2">
- <TextBlock Text="横径:" VerticalAlignment="Center"/>
- <Button Content="绘制横径" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawHorizontalClicked"/>
- </DockPanel>
- <TextBlock x:Name="TextBlockHorizontal" Background="White" Margin="4,2,4,4"/>
- <DockPanel Margin="4,4,4,2">
- <TextBlock Text="纵径:" VerticalAlignment="Center"/>
- <Button Content="绘制纵径" Width="80" Height="26" HorizontalAlignment="Right" Click="OnBtnDrawVerticalClicked"/>
- </DockPanel>
- <TextBlock x:Name="TextBlockVertical" Background="White" Margin="4,2,4,4"/>
- </StackPanel>
- </Grid>
- </UserControl>
|