mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 02:10:21 +08:00
feat: 添加自定义剿灭关卡勾选框
This commit is contained in:
@@ -715,6 +715,18 @@ public class FightSettingsUserControlModel : TaskViewModel
|
||||
{ LocalizationHelper.GetString("LungmenDowntown"), "LungmenDowntown@AnnihilationReturn@Annihilation" },
|
||||
};
|
||||
|
||||
private bool _useCustomAnnihilation = ConfigurationHelper.GetValue(ConfigurationKeys.UseCustomAnnihilation, false);
|
||||
|
||||
public bool UseCustomAnnihilation
|
||||
{
|
||||
get => _useCustomAnnihilation;
|
||||
set
|
||||
{
|
||||
SetAndNotify(ref _useCustomAnnihilation, value);
|
||||
ConfigurationHelper.SetValue(ConfigurationKeys.UseCustomAnnihilation, value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
private string _annihilationStage = ConfigurationHelper.GetValue(ConfigurationKeys.AnnihilationStage, "Annihilation");
|
||||
|
||||
public string AnnihilationStage
|
||||
|
||||
Reference in New Issue
Block a user