更新整理
This commit is contained in:
@@ -1,22 +1,21 @@
|
||||
<ui:FluentWindowEx
|
||||
x:Class="ShrlAlgo.RvKits.RvMEP.StandMepCurveView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:rvMep="clr-namespace:ShrlAlgo.RvKits.RvMEP"
|
||||
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
|
||||
Height="320"
|
||||
MinHeight="320"
|
||||
MinWidth="300"
|
||||
SizeToContent="Height"
|
||||
Title="创建立管"
|
||||
Width="300"
|
||||
Height="320"
|
||||
MinWidth="300"
|
||||
MinHeight="320"
|
||||
d:DataContext="{d:DesignInstance Type=rvMep:StandMepCurveViewModel}"
|
||||
SizeToContent="Height"
|
||||
WindowStartupLocation="CenterOwner"
|
||||
mc:Ignorable="d">
|
||||
d:DataContext="{d:DesignInstance Type=rvMep:StandMepCurveViewModel}"
|
||||
mc:Ignorable="d"
|
||||
x:Class="ShrlAlgoToolkit.RevitAddins.RvMEP.StandMepCurveView"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:rvMep="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvMEP"
|
||||
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<b:Interaction.Triggers>
|
||||
<!--<b:EventTrigger EventName="Deactivated">
|
||||
<b:InvokeCommandAction Command="{Binding CreateMepCurveCommand}" />
|
||||
@@ -32,21 +31,21 @@
|
||||
<ui:StackPanel Spacing="5">
|
||||
<UniformGrid Rows="1">
|
||||
<RadioButton
|
||||
x:Name="RbPipe"
|
||||
Content="水管"
|
||||
IsChecked="{Binding IsPipe}" />
|
||||
IsChecked="{Binding IsPipe}"
|
||||
x:Name="RbPipe" />
|
||||
<RadioButton
|
||||
x:Name="RbDuct"
|
||||
Content="风管"
|
||||
IsChecked="{Binding IsDuct}" />
|
||||
IsChecked="{Binding IsDuct}"
|
||||
x:Name="RbDuct" />
|
||||
<RadioButton
|
||||
x:Name="RbCableTray"
|
||||
Content="桥架"
|
||||
IsChecked="{Binding IsCableTray}" />
|
||||
IsChecked="{Binding IsCableTray}"
|
||||
x:Name="RbCableTray" />
|
||||
<RadioButton
|
||||
x:Name="RbConduit"
|
||||
Content="线管"
|
||||
IsChecked="{Binding IsConduit}" />
|
||||
IsChecked="{Binding IsConduit}"
|
||||
x:Name="RbConduit" />
|
||||
</UniformGrid>
|
||||
<ui:StackPanel Spacing="5" Visibility="{Binding IsPipe, Converter={StaticResource BooleanToVisConverter}}">
|
||||
<ui:ComboBoxEx
|
||||
@@ -88,10 +87,10 @@
|
||||
Visibility="{Binding IsCableTray, Converter={StaticResource BooleanToVisConverter}}" />
|
||||
</ui:StackPanel>
|
||||
<Button
|
||||
Command="{Binding CreateMepCurveCommand}"
|
||||
Content="创建立管"
|
||||
Grid.Row="1"
|
||||
HorizontalAlignment="Stretch"
|
||||
VerticalAlignment="Bottom"
|
||||
Command="{Binding CreateMepCurveCommand}"
|
||||
Content="创建立管" />
|
||||
VerticalAlignment="Bottom" />
|
||||
</ui:StackPanel>
|
||||
</ui:FluentWindowEx>
|
||||
Reference in New Issue
Block a user