8000 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
Further whitespace
  • Loading branch information
bstordrup committed Apr 7, 2025
commit 779dbb5e761ef327af87e07f841dccdc022dc4e3
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ protected override void ValidateTemplatedParent(System.Windows.FrameworkElement
}
public partial class DataTemplateKey : System.Windows.TemplateKey
{
public DataTemplateKey() : base (default (System.Windows.TemplateKey.TemplateType)) { }
public DataTemplateKey() : base (default(System.Windows.TemplateKey.TemplateType)) { }
public DataTemplateKey(object dataType) : base (default (System.Windows.TemplateKey.TemplateType)) { }
}
[System.Windows.Markup.ContentPropertyAttribute("Setters")]
Expand Down Expand Up @@ -4450,7 +4450,7 @@ public partial struct DataGridLength : System.IEquatable<System.Windows.Controls
public bool Equals(System.Windows.Controls.DataGridLength other) { throw null; }
public override int GetHashCode() { throw null; }
public static bool operator ==(System.Windows.Controls.DataGridLength gl1, System.Windows.Controls.DataGridLength gl2) { throw null; }
public static implicit operator System.Windows.Controls.DataGridLength(double value) { throw null; }
public static implicit operator System.Windows.Controls.DataGridLength (double value) { throw null; }
public static bool operator !=(System.Windows.Controls.DataGridLength gl1, System.Windows.Controls.DataGridLength gl2) { throw null; }
public override string ToString() { throw null; }
}
Expand Down Expand Up @@ -11404,7 +11404,7 @@ public ParserContext(System.Xml.XmlParserContext xmlParserContext) { }
public string XmlLang { get { throw null; } set { } }
public System.Windows.Markup.XmlnsDictionary XmlnsDictionary { get { throw null; } }
public string XmlSpace { get { throw null; } set { } }
public static implicit operator System.Xml.XmlParserContext(System.Windows.Markup.ParserContext parserContext) { throw null; }
public static implicit operator System.Xml.XmlParserContext (System.Windows.Markup.ParserContext parserContext) { throw null; }
public static System.Xml.XmlParserContext ToXmlParserContext(System.Windows.Markup.ParserContext parserContext) { throw null; }
}
public partial class ResourceReferenceExpressionConverter : System.Windows.ExpressionConverter
Expand Down
0