-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Move Editor Attribute to S.CM.Primitives and apply to types that had it in netfx #41145
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -398,19 +398,6 @@ public partial class DoubleConverter : System.ComponentModel.BaseNumberConverter | |
| { | ||
| public DoubleConverter() { } | ||
| } | ||
| [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true, Inherited=true)] | ||
| public sealed partial class EditorAttribute : System.Attribute | ||
| { | ||
| public EditorAttribute() { } | ||
| public EditorAttribute(string typeName, string baseTypeName) { } | ||
| public EditorAttribute(string typeName, System.Type baseType) { } | ||
| public EditorAttribute(System.Type type, System.Type baseType) { } | ||
| public string EditorBaseTypeName { get { throw null; } } | ||
| public string EditorTypeName { get { throw null; } } | ||
| public override object TypeId { get { throw null; } } | ||
| public override bool Equals(object obj) { throw null; } | ||
| public override int GetHashCode() { throw null; } | ||
| } | ||
| public partial class EnumConverter : System.ComponentModel.TypeConverter | ||
| { | ||
| public EnumConverter(System.Type type) { } | ||
|
|
@@ -586,6 +573,7 @@ public partial interface IIntellisenseBuilder | |
| string Name { get; } | ||
| bool Show(string language, string value, ref string newValue); | ||
| } | ||
| [System.ComponentModel.EditorAttribute("System.Windows.Forms.Design.DataSourceListEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | ||
| [System.ComponentModel.MergablePropertyAttribute(false)] | ||
| public partial interface IListSource | ||
| { | ||
|
|
@@ -1563,6 +1551,7 @@ protected virtual void PopulateOptionCollection(System.ComponentModel.Design.Des | |
| protected virtual bool ShowDialog(System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection options, object optionObject) { throw null; } | ||
| object System.ComponentModel.Design.IDesignerOptionService.GetOptionValue(string pageName, string valueName) { throw null; } | ||
| void System.ComponentModel.Design.IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value) { } | ||
| [System.ComponentModel.EditorAttribute("", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")] | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Empty string looks odd but that seems consistent with .NETFramework
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess if we wanted we could have UITypeEditor as the editor type and base type empty? |
||
| public sealed partial class DesignerOptionCollection : System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList | ||
| { | ||
| internal DesignerOptionCollection() { } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.