58 lines
2.3 KiB
Plaintext
58 lines
2.3 KiB
Plaintext
|
|
<controls:MaterialWindow
|
||
|
|
x:Class="Szmedi.RvKits.ExportFamilyInfo.ExportSettingsWin"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:controls="clr-namespace:Szmedi.RvKits.Controls"
|
||
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||
|
|
Title="保存设置"
|
||
|
|
Background="{DynamicResource MaterialDesign.Brush.Background}"
|
||
|
|
Width="360"
|
||
|
|
SizeToContent="Height"
|
||
|
|
>
|
||
|
|
<controls:MaterialWindow.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/Szmedi.RvKits;component/WPFUI.xaml" />
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</controls:MaterialWindow.Resources>
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
<RowDefinition Height="Auto" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<GroupBox Header="保存路径">
|
||
|
|
<TextBox
|
||
|
|
x:Name="TbPathName"
|
||
|
|
MouseDoubleClick="tb_SavePathSelect_Click"
|
||
|
|
TextWrapping="Wrap"
|
||
|
|
ToolTip="双击选择路径" />
|
||
|
|
</GroupBox>
|
||
|
|
<UniformGrid Grid.Row="1" Rows="1">
|
||
|
|
<GroupBox Header="图片格式">
|
||
|
|
<ComboBox x:Name="CbbImg" DropDownClosed="cbb_img_DropDownClosed" SelectedIndex="0">
|
||
|
|
<ComboBoxItem Content="JPEGMedium" />
|
||
|
|
<ComboBoxItem Content="JPEGLossless" />
|
||
|
|
<ComboBoxItem Content="JPEGSmallest" />
|
||
|
|
<ComboBoxItem Content="PNG" />
|
||
|
|
<ComboBoxItem Content="BMP" />
|
||
|
|
<ComboBoxItem Content="TIFF" />
|
||
|
|
<ComboBoxItem Content="TARGA" />
|
||
|
|
</ComboBox>
|
||
|
|
</GroupBox>
|
||
|
|
<GroupBox Header="分辨率">
|
||
|
|
<TextBox
|
||
|
|
x:Name="TbImgSize"
|
||
|
|
Width="100"
|
||
|
|
LostFocus="tb_ImgSize_LostFocus"
|
||
|
|
Text="1920" />
|
||
|
|
</GroupBox>
|
||
|
|
</UniformGrid>
|
||
|
|
<Button
|
||
|
|
Grid.Row="2"
|
||
|
|
Click="Button_Click"
|
||
|
|
Content="导出"
|
||
|
|
Cursor="Hand" />
|
||
|
|
</Grid>
|
||
|
|
</controls:MaterialWindow>
|