38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
|
|
<ui:FluentWindowEx
|
||
|
|
x:Class="ShrlAlgo.RvKits.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: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">
|
||
|
|
<ui:FluentWindowEx.Resources>
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/ShrlAlgo.RvKits;component/WPFUI.xaml" />
|
||
|
|
</ui:FluentWindowEx.Resources>
|
||
|
|
<Grid>
|
||
|
|
<StackPanel Margin="5">
|
||
|
|
<ui:TextBox
|
||
|
|
Margin="5"
|
||
|
|
PlaceholderText="文件名"
|
||
|
|
Text="{Binding FileName, UpdateSourceTrigger=PropertyChanged}" />
|
||
|
|
<ui:TextBox
|
||
|
|
Margin="5"
|
||
|
|
PlaceholderText="保存路径"
|
||
|
|
Text="{Binding FolderPath, UpdateSourceTrigger=PropertyChanged}" />
|
||
|
|
<ui:Button
|
||
|
|
Margin="5"
|
||
|
|
HorizontalAlignment="Stretch"
|
||
|
|
Command="{Binding SeparateCommand}"
|
||
|
|
Content="拆分" />
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</ui:FluentWindowEx>
|