23 lines
869 B
XML
23 lines
869 B
XML
<Window
|
|
x:Class="SZBIM.StandardTools.ParameterManager.RemoveParamsWin"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="移除参数"
|
|
Width="800"
|
|
Height="450"
|
|
mc:Ignorable="d">
|
|
<Window.Resources>
|
|
<ResourceDictionary Source="/Sai.RvKits;component/Styles/WPFUI.xaml" />
|
|
</Window.Resources>
|
|
<Grid>
|
|
<StackPanel>
|
|
<CheckBox Content="几何参数" />
|
|
<CheckBox Content="非几何参数" />
|
|
<CheckBox Content="共享参数绑定" />
|
|
<CheckBox Content="未赋值参数" />
|
|
</StackPanel>
|
|
<Button Content="移除" />
|
|
</Grid>
|
|
</Window> |