Files
Shrlalgo.RvKits/ShrlAlgo.Addin.Test/SeparateModelWin.xaml

32 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-12-22 10:26:12 +08:00
<Window
x:Class="ShrlAlgo.Addin.Test.SeparateModelWin"
2024-12-22 10:26:12 +08:00
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:ShrlAlgo.Addin.Test"
2024-12-22 10:26:12 +08:00
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>