更新整理

This commit is contained in:
GG Z
2025-04-24 20:56:44 +08:00
parent 155cef46f8
commit 5b6d67b571
813 changed files with 14437 additions and 12362 deletions

View File

@@ -1,20 +1,19 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.RvCommon.PipesCreatorView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
xmlns:local="clr-namespace:ShrlAlgo.RvKits.RvCommon"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Height="180"
MinHeight="180"
MinWidth="250"
SizeToContent="Height"
Title="管道翻模"
Width="250"
Height="180"
MinWidth="250"
MinHeight="180"
d:DataContext="{d:DesignInstance Type=local:PipesCreatorViewModel}"
SizeToContent="Height"
mc:Ignorable="d">
mc:Ignorable="d"
x:Class="ShrlAlgoToolkit.RevitAddins.RvCommon.PipesCreatorView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ShrlAlgoToolkit.RevitAddins.RvCommon"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
@@ -24,21 +23,21 @@
</Window.Resources>
<ui:AutoGrid ChildMargin="5" Columns="*">
<ui:ComboBoxEx
Grid.Row="0"
DisplayMemberPath="Name"
Grid.Row="0"
ItemsSource="{Binding PipeTypes}"
PlaceholderText="管线类型"
SelectedItem="{Binding SelectedPipeType}" />
<ui:ComboBoxEx
Grid.Row="1"
DisplayMemberPath="Name"
Grid.Row="1"
ItemsSource="{Binding PipingSystemTypes}"
PlaceholderText="系统类型"
SelectedItem="{Binding SelectedPipingSystemType}" />
<Button
Grid.Row="2"
HorizontalAlignment="Stretch"
Command="{Binding CreateCommand}"
Content="创建" />
Content="创建"
Grid.Row="2"
HorizontalAlignment="Stretch" />
</ui:AutoGrid>
</ui:FluentWindowEx>