Files
MaaAssistantArknights/src/MeoAsstGui/UserControl/AutoRecruitSettingsUserControl.xaml
2022-07-22 01:33:59 +08:00

36 lines
2.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<UserControl x:Class="MeoAsstGui.AutoRecruitSettingsUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:s="https://github.com/canton7/Stylet"
xmlns:dd="urn:gong-wpf-dragdrop"
mc:Ignorable="d"
xmlns:vm="clr-namespace:MeoAsstGui;assembly=MeoAsstGui"
d:DataContext="{d:DesignInstance {x:Type vm:SettingsViewModel}}"
d:DesignHeight="150" d:DesignWidth="300">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" VerticalAlignment="Center" Margin="10">
<CheckBox IsChecked="{Binding RefreshLevel3}" Content="自动刷新3星Tags" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10" />
<CheckBox IsChecked="{Binding UseExpedited}" Content="自动使用加急许可*" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10"
ToolTip="该选项设置重启后不保存"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0, 10">
<TextBlock Style="{StaticResource TextBlockDefault}" Block.TextAlignment="Center"
Text="每次执行时&#xA;最大招募次数" Margin="5" VerticalAlignment="Center" />
<TextBox Text="{Binding RecruitMaxTimes}" Margin="5"
Width="50" InputMethod.IsInputMethodEnabled="False" />
</StackPanel>
</StackPanel>
<StackPanel Grid.Column="1" VerticalAlignment="Center" Margin="10">
<CheckBox IsChecked="{Binding NotChooseLevel1}" Content="手动确认1星" Margin="5" ToolTip="勾选时识别到1星词条时跳过该次招募未勾选时将忽略1星词条"/>
<CheckBox IsChecked="{Binding ChooseLevel3}" Content="自动确认3星" Margin="5" />
<CheckBox IsChecked="{Binding ChooseLevel4}" Content="自动确认4星" Margin="5" />
<CheckBox IsChecked="{Binding ChooseLevel5}" Content="自动确认5星" Margin="5" />
<CheckBox IsEnabled="False" IsChecked="False" Content="自动确认6星" Margin="5" />
</StackPanel>
</Grid>
</UserControl>