更新整理

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,19 +1,18 @@
<ui:FluentWindowEx
x:Class="ShrlAlgo.RvKits.ModelManager.SeparateModelWin"
Height="300"
SizeToContent="Height"
Title="拆分模型"
Topmost="True"
Width="300"
d:DataContext="{d:DesignInstance Type=local:SeparateModelViewModel}"
mc:Ignorable="d"
x:Class="ShrlAlgoToolkit.RevitAddins.ModelManager.SeparateModelWin"
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:local="clr-namespace:ShrlAlgo.RvKits.ModelManager"
xmlns:local="clr-namespace:ShrlAlgoToolkit.RevitAddins.ModelManager"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
Title="拆分模型"
Width="300"
Height="300"
d:DataContext="{d:DesignInstance Type=local:SeparateModelViewModel}"
SizeToContent="Height"
Topmost="True"
mc:Ignorable="d">
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ui:FluentWindowEx.Resources>
<ResourceDictionary Source="pack://application:,,,/ShrlAlgoToolkit.RevitAddins;component/WPFUI.xaml" />
</ui:FluentWindowEx.Resources>
@@ -28,10 +27,10 @@
PlaceholderText="保存路径"
Text="{Binding FolderPath, UpdateSourceTrigger=PropertyChanged}" />
<ui:Button
Margin="5"
HorizontalAlignment="Stretch"
Command="{Binding SeparateCommand}"
Content="拆分" />
Content="拆分"
HorizontalAlignment="Stretch"
Margin="5" />
</StackPanel>
</Grid>
</ui:FluentWindowEx>