57 lines
3.7 KiB
XML
57 lines
3.7 KiB
XML
<controls:MaterialWindow
|
|
x:Class="Szmedi.RvKits.ModelManager.ResolveCivilConnectWin"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:Szmedi.RvKits.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Szmedi.RvKits.ModelManager"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="土建构件连接"
|
|
Width="250"
|
|
Height="580"
|
|
d:DataContext="{d:DesignInstance Type=local:ResolveCivilConnectViewModel}"
|
|
|
|
mc:Ignorable="d">
|
|
<controls:MaterialWindow.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/Szmedi.RvKits;component/WPFUI.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</controls:MaterialWindow.Resources>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Grid.Row="0" Grid.Column="0" Header="扣减选项">
|
|
<StackPanel>
|
|
<CheckBox Content="结构柱剪切建筑墙" IsChecked="{Binding ActivateStructuralColumnCutArchitecturalWall}" ToolTip="保留原结构柱不变,建筑墙被剪切" />
|
|
<CheckBox Content="结构柱剪切结构墙" IsChecked="{Binding ActivateStructuralColumnCutStructuralWall}" ToolTip="保留原结构柱不变,结构墙被剪切" />
|
|
<CheckBox Content="结构柱剪切梁" IsChecked="{Binding ActivateStructuralColumnCutFraming}" ToolTip="保留原结构柱不变,梁被剪切" />
|
|
<CheckBox Content="结构柱剪切板" IsChecked="{Binding ActivateStructuralColumnCutFloor}" ToolTip="保留原结构柱不变" />
|
|
<CheckBox Content="结构梁剪切建筑墙" IsChecked="{Binding ActivateFramingCutArchitecturalWall}" ToolTip="保留原结构梁,建筑墙被剪切" />
|
|
<CheckBox Content="结构梁剪切结构墙" IsChecked="{Binding ActivateFramingCutStructuralWall}" ToolTip="保留原结构梁,结构墙被剪切" />
|
|
<CheckBox Content="结构梁剪切板" IsChecked="{Binding ActivateFramingCutFloor}" ToolTip="保留原梁,板被剪切" />
|
|
<CheckBox Content="结构板剪切建筑墙" IsChecked="{Binding ActivateFloorCutArchitecturalWall}" ToolTip="保留原板,建筑墙被剪切" />
|
|
<CheckBox Content="主梁剪切次梁" IsChecked="{Binding ActivateMainFramingCutSubFraming}" ToolTip="保留主梁,次梁被剪切" />
|
|
<CheckBox Content="结构板剪切结构墙" IsChecked="{Binding ActivateFloorCutStructuralWall}" ToolTip="保留原板,结构墙被剪切" />
|
|
<CheckBox Content="结构墙剪切建筑墙" IsChecked="{Binding ActivateStructuralWallCutArchitecturalWall}" ToolTip="保留原板,建筑墙被剪切" />
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<GroupBox Grid.Row="1" Header="修改范围">
|
|
<StackPanel>
|
|
<RadioButton Content="框选范围" IsChecked="True" />
|
|
<RadioButton Content="整个模型" IsChecked="{Binding IsWholeModel}" />
|
|
</StackPanel>
|
|
</GroupBox>
|
|
<Button
|
|
Grid.Row="2"
|
|
Command="{Binding ModifyModelCommand}"
|
|
Content="修改"
|
|
ToolTip="相交的图元才会被修改" />
|
|
</Grid>
|
|
</controls:MaterialWindow>
|