Files
Shrlalgo.RvKits/RvAddinTest/SeparateModelWin.xaml
2024-12-22 10:26:12 +08:00

32 lines
1.0 KiB
XML

<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>