Compare commits

..

No commits in common. "4875b37f700d009e94fc5715610b30f29bcf12fb" and "2ab1b9068f2fb83492a4e9ef976d0372d3275584" have entirely different histories.

6 changed files with 7 additions and 7 deletions

View file

@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<Version>7.12.5</Version>
<Version>7.12.4</Version>
</PropertyGroup>
<PropertyGroup>

View file

@ -388,7 +388,7 @@ public partial class MainWindow : ReactiveWindow<MainWindowViewModel>
private async void MenuClose_Click(object? sender, RoutedEventArgs e)
{
if (await UI.ShowYesNo(this, ResUI.menuExitTips) != ButtonResult.Yes)
if (await UI.ShowYesNo(this, ResUI.menuExitTips) == ButtonResult.No)
{
return;
}

View file

@ -138,7 +138,7 @@ public partial class ProfilesView : ReactiveUserControl<ProfilesViewModel>
break;
case EViewAction.ShowYesNo:
if (await UI.ShowYesNo(_window, ResUI.RemoveServer) != ButtonResult.Yes)
if (await UI.ShowYesNo(_window, ResUI.RemoveServer) == ButtonResult.No)
{
return false;
}

View file

@ -80,14 +80,14 @@ public partial class RoutingRuleSettingWindow : ReactiveWindow<RoutingRuleSettin
break;
case EViewAction.ShowYesNo:
if (await UI.ShowYesNo(this, ResUI.RemoveServer) != ButtonResult.Yes)
if (await UI.ShowYesNo(this, ResUI.RemoveServer) == ButtonResult.No)
{
return false;
}
break;
case EViewAction.AddBatchRoutingRulesYesNo:
if (await UI.ShowYesNo(this, ResUI.AddBatchRoutingRulesYesNo) != ButtonResult.Yes)
if (await UI.ShowYesNo(this, ResUI.AddBatchRoutingRulesYesNo) == ButtonResult.No)
{
return false;
}

View file

@ -68,7 +68,7 @@ public partial class RoutingSettingWindow : ReactiveWindow<RoutingSettingViewMod
break;
case EViewAction.ShowYesNo:
if (await UI.ShowYesNo(this, ResUI.RemoveRules) != ButtonResult.Yes)
if (await UI.ShowYesNo(this, ResUI.RemoveRules) == ButtonResult.No)
{
return false;
}

View file

@ -45,7 +45,7 @@ public partial class SubSettingWindow : ReactiveWindow<SubSettingViewModel>
break;
case EViewAction.ShowYesNo:
if (await UI.ShowYesNo(this, ResUI.RemoveServer) != ButtonResult.Yes)
if (await UI.ShowYesNo(this, ResUI.RemoveServer) == ButtonResult.No)
{
return false;
}