Add a splitter to resize the main panes
This commit is contained in:
@@ -73,7 +73,8 @@
|
|||||||
<!-- 主内容区域 -->
|
<!-- 主内容区域 -->
|
||||||
<Grid Grid.Row="1">
|
<Grid Grid.Row="1">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="*" MinWidth="400" />
|
<ColumnDefinition Width="*" MinWidth="440" />
|
||||||
|
<ColumnDefinition Width="5" />
|
||||||
<ColumnDefinition Width="2*" />
|
<ColumnDefinition Width="2*" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
@@ -175,10 +176,20 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
</GroupBox>
|
</GroupBox>
|
||||||
|
|
||||||
|
<GridSplitter
|
||||||
|
Grid.RowSpan="2"
|
||||||
|
Grid.Column="1"
|
||||||
|
Width="5"
|
||||||
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Stretch"
|
||||||
|
Background="#FFE0E0E0"
|
||||||
|
ResizeBehavior="PreviousAndNext"
|
||||||
|
ResizeDirection="Columns" />
|
||||||
|
|
||||||
<!-- 基础信息显示 -->
|
<!-- 基础信息显示 -->
|
||||||
<GroupBox
|
<GroupBox
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.Column="1"
|
Grid.Column="2"
|
||||||
Header="基础信息">
|
Header="基础信息">
|
||||||
<Grid Margin="1">
|
<Grid Margin="1">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
@@ -234,7 +245,7 @@
|
|||||||
<!-- 钻带内容显示 -->
|
<!-- 钻带内容显示 -->
|
||||||
<GroupBox
|
<GroupBox
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
Grid.Column="1"
|
Grid.Column="2"
|
||||||
Header="钻带内容">
|
Header="钻带内容">
|
||||||
<TextBox
|
<TextBox
|
||||||
Name="DrillTapeTextBox"
|
Name="DrillTapeTextBox"
|
||||||
|
|||||||
Reference in New Issue
Block a user