多项功能优化

This commit is contained in:
GG Z
2024-12-22 10:26:12 +08:00
parent 77655c9ef5
commit 83b846f15f
66 changed files with 5424 additions and 2927 deletions

View File

@@ -0,0 +1,31 @@
<Window
x:Class="RvAddinTest.SeparateModelWin"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:AduSkin="https://github.com/aduskin"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:RvAddinTest"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="拆分模型"
Width="300"
Height="300"
SizeToContent="Height"
Topmost="True"
mc:Ignorable="d">
<Grid>
<StackPanel Margin="5">
<AduSkin:MetroTextBox
x:Name="TbFileName"
Margin="5"
InputHint="文件名" />
<AduSkin:MetroTextBox
x:Name="TbFolder"
Margin="5"
InputHint="保存路径" />
<AduSkin:MetroButton
Margin="5"
Click="MetroButton_Click"
Content="拆分" />
</StackPanel>
</Grid>
</Window>