This commit is contained in:
ShrlAlgo
2025-08-20 12:10:35 +08:00
parent fcd306b0f7
commit 955a01f564
962 changed files with 7893 additions and 127784 deletions

View File

@@ -1,4 +1,4 @@
<ui:FluentWindowEx
<ui:NeoWindow
Height="180"
MinHeight="180"
MinWidth="250"
@@ -12,7 +12,7 @@
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:ui="https://github.com/ShrlAlgo/NeoUI"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<ResourceDictionary>
@@ -21,23 +21,23 @@
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<ui:AutoGrid ChildMargin="5" Columns="*">
<ui:ComboBoxEx
<ui:Grid ChildMargin="5" Columns="*">
<ComboBox
DisplayMemberPath="Name"
Grid.Row="0"
ItemsSource="{Binding PipeTypes}"
PlaceholderText="管线类型"
ui:SelectorAssist.Placeholder="管线类型"
SelectedItem="{Binding SelectedPipeType}" />
<ui:ComboBoxEx
<ComboBox
DisplayMemberPath="Name"
Grid.Row="1"
ItemsSource="{Binding PipingSystemTypes}"
PlaceholderText="系统类型"
ui:SelectorAssist.Placeholder="系统类型"
SelectedItem="{Binding SelectedPipingSystemType}" />
<Button
Command="{Binding CreateCommand}"
Content="创建"
Grid.Row="2"
HorizontalAlignment="Stretch" />
</ui:AutoGrid>
</ui:FluentWindowEx>
</ui:Grid>
</ui:NeoWindow>