10000 Adding more MessageBox buttons and result values by bstordrup · Pull Request #10720 · dotnet/wpf · GitHub
[go: up one dir, main page]

Skip to content

Adding more MessageBox buttons and result values #10720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Apr 17, 2025
Merged
Prev Previous commit
Next Next commit
Correction to order in MessageBoxButton enum
  • Loading branch information
bstordrup committed Apr 7, 2025
commit 345985d30329156fe2c7ef3371d7f7e2237a560c
Original file line number Diff line number Diff line change
Expand Up @@ -984,8 +984,8 @@ public enum MessageBoxButton
OK = 0,
OKCancel = 1,
RetryCancel = 5,
YesNoCancel = 3,
YesNo = 4,
YesNoCancel = 3,
}
public enum MessageBoxImage
{
Expand Down Expand Up @@ -2067,7 +2067,7 @@ public Window() { }
[System.ComponentModel.TypeConverterAttribute(typeof(System.Windows.ThemeModeConverter))]
[System.Diagnostics.CodeAnalysis.ExperimentalAttribute("WPF0001")]
public System.Windows.ThemeMode ThemeMode { get { throw null; } set { } }

[System.Windows.LocalizabilityAttribute(System.Windows.LocalizationCategory.Title)]
public string Title { get { throw null; } set { } }
[System.ComponentModel.TypeConverterAttribute("System.Windows.LengthConverter, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, Custom=null")]
Expand Down
0