diff --git a/src/System.Design/src/System.Design.Forwards.cs b/src/System.Design/src/System.Design.Forwards.cs index cb43e3d32a2..d708b3ffba4 100644 --- a/src/System.Design/src/System.Design.Forwards.cs +++ b/src/System.Design/src/System.Design.Forwards.cs @@ -49,10 +49,12 @@ [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.PrintDialogDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.RadioButtonDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.RichTextBoxDesigner))] +[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.SaveFileDialogDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.SplitContainerDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.SplitterPanelDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.SplitterDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.FlowLayoutPanelDesigner))] +[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.FolderBrowserDialogDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.TabControlDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.TableLayoutPanelDesigner))] [assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.TabPageDesigner))] diff --git a/src/System.Windows.Forms.Design/src/PublicAPI.Unshipped.txt b/src/System.Windows.Forms.Design/src/PublicAPI.Unshipped.txt index 4d93623a40a..7990ca9f94e 100644 --- a/src/System.Windows.Forms.Design/src/PublicAPI.Unshipped.txt +++ b/src/System.Windows.Forms.Design/src/PublicAPI.Unshipped.txt @@ -1,3 +1,4 @@ +virtual System.ComponentModel.Design.ComponentDesigner.SetTextualDefaultProperty.get -> bool *REMOVED*System.ComponentModel.Design.DesignerActionListCollection.AddRange(System.ComponentModel.Design.DesignerActionList?[]! value) -> void *REMOVED*~System.Windows.Forms.Design.Behavior.BehaviorServiceAdornerCollection.AddRange(System.Windows.Forms.Design.Behavior.Adorner[] value) -> void *REMOVED*~System.Windows.Forms.Design.Behavior.GlyphCollection.AddRange(System.Windows.Forms.Design.Behavior.Glyph[] value) -> void diff --git a/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs b/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs index 0951b4fe5b4..96ec10b1061 100644 --- a/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs +++ b/src/System.Windows.Forms.Design/src/System/ComponentModel/Design/ComponentDesigner.cs @@ -34,6 +34,24 @@ public partial class ComponentDesigner : ITreeDesigner, IDesignerFilter, ICompon /// public virtual ICollection AssociatedComponents => Array.Empty(); + private protected virtual void UpdateTextualDefaultProperty() + { + var component = Component; + if (component?.Site is { } site) + { + PropertyDescriptor defaultProperty = TypeDescriptor.GetDefaultProperty(component); + if (!(defaultProperty is not null && defaultProperty.PropertyType.Equals(typeof(string)))) + { + return; + } + + if (defaultProperty.GetValue(component) is string currentValue && string.IsNullOrEmpty(currentValue)) + { + defaultProperty.SetValue(component, site.Name); + } + } + } + internal virtual bool CanBeAssociatedWith(IDesigner parentDesigner) => true; /// @@ -125,6 +143,15 @@ public virtual void InitializeNewComponent(IDictionary defaultValues) { // execute legacy code InitializeNonDefault(); + + // Note: This was originally an obsoleted API called OnSetComponentDefaults(). The + // default behavior of this API was to set the the default property to the component's + // site name, if the property was a string and null or empty. We've removed the API + // but preserved the same behavior, now controlled by SetTextualDefaultProperty. + if (SetTextualDefaultProperty) + { + UpdateTextualDefaultProperty(); + } } void IDesignerFilter.PostFilterAttributes(IDictionary attributes) => PostFilterAttributes(attributes); @@ -149,6 +176,12 @@ public virtual void InitializeNewComponent(IDictionary defaultValues) /// public virtual DesignerVerbCollection Verbs => _verbs ??= new DesignerVerbCollection(); + /// + /// Controls whether the default property of is automatically set + /// to on creation. The default is . + /// + protected virtual bool SetTextualDefaultProperty => true; + ICollection ITreeDesigner.Children { get diff --git a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderBrowserDialogDesigner.cs b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderBrowserDialogDesigner.cs new file mode 100644 index 00000000000..8e59619cba1 --- /dev/null +++ b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderBrowserDialogDesigner.cs @@ -0,0 +1,13 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.ComponentModel.Design; + +namespace System.Windows.Forms.Design; + +internal class FolderBrowserDialogDesigner : ComponentDesigner +{ + // Overridden to avoid setting the default property ("SelectedPath") + // to the Site.Name (i.e. folderBrowserDialog1). + protected override bool SetTextualDefaultProperty => false; +} diff --git a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs index b47b2379226..f23d423dbcc 100644 --- a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs +++ b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/FolderNameEditor.FolderBrowser.cs @@ -94,7 +94,7 @@ public unsafe DialogResult ShowDialog(IWin32Window? owner) } // Retrieve the path from the IDList. - PWSTR selectedPath = default; + PWSTR selectedPath = pDisplayName; PInvoke.SHGetPathFromIDList(browseHandle, selectedPath); DirectoryPath = new string((char*)selectedPath); return DialogResult.OK; diff --git a/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SaveFileDialogDesigner.cs b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SaveFileDialogDesigner.cs new file mode 100644 index 00000000000..81c5b7b54fa --- /dev/null +++ b/src/System.Windows.Forms.Design/src/System/Windows/Forms/Design/SaveFileDialogDesigner.cs @@ -0,0 +1,13 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +using System.ComponentModel.Design; + +namespace System.Windows.Forms.Design; + +internal class SaveFileDialogDesigner : ComponentDesigner +{ + // Overridden to avoid setting the default property ("FileName") + // to the Site.Name (i.e. saveFileDialog1). + protected override bool SetTextualDefaultProperty => false; +} diff --git a/src/System.Windows.Forms/src/PublicAPI.Shipped.txt b/src/System.Windows.Forms/src/PublicAPI.Shipped.txt index 20af95f6add..207c3222c2b 100644 --- a/src/System.Windows.Forms/src/PublicAPI.Shipped.txt +++ b/src/System.Windows.Forms/src/PublicAPI.Shipped.txt @@ -1,13529 +1,13529 @@ -#nullable enable -~override System.Windows.Forms.AxHost.OnHandleCreated(System.EventArgs e) -> void -~override System.Windows.Forms.ControlBindingsCollection.AddCore(System.Windows.Forms.Binding dataBinding) -> void -~override System.Windows.Forms.ControlBindingsCollection.RemoveCore(System.Windows.Forms.Binding dataBinding) -> void -~override System.Windows.Forms.CurrencyManager.Current.get -> object -~override System.Windows.Forms.CurrencyManager.GetItemProperties() -> System.ComponentModel.PropertyDescriptorCollection -~override System.Windows.Forms.DataGridView.BackgroundImage.get -> System.Drawing.Image -~override System.Windows.Forms.DataGridView.BackgroundImage.set -> void -~override System.Windows.Forms.DataGridView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridView.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection -~override System.Windows.Forms.DataGridView.Font.get -> System.Drawing.Font -~override System.Windows.Forms.DataGridView.Font.set -> void -~override System.Windows.Forms.DataGridView.GetAccessibilityObjectById(int objectId) -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridView.OnBindingContextChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnCursorChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnDoubleClick(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnEnabledChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnEnter(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnFontChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnForeColorChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnGotFocus(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnHandleCreated(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnHandleDestroyed(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnKeyUp(System.Windows.Forms.KeyEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnLayout(System.Windows.Forms.LayoutEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnLeave(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnLostFocus(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseClick(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseDown(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseEnter(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseLeave(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseMove(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseUp(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnMouseWheel(System.Windows.Forms.MouseEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnPaint(System.Windows.Forms.PaintEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnResize(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnRightToLeftChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnValidating(System.ComponentModel.CancelEventArgs e) -> void -~override System.Windows.Forms.DataGridView.OnVisibleChanged(System.EventArgs e) -> void -~override System.Windows.Forms.DataGridView.Text.get -> string -~override System.Windows.Forms.DataGridView.Text.set -> void -override System.Windows.Forms.DataGridViewButtonCell.Clone() -> object! -override System.Windows.Forms.DataGridViewButtonCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridViewButtonCell.EditType.get -> System.Type? -override System.Windows.Forms.DataGridViewButtonCell.FormattedValueType.get -> System.Type! -override System.Windows.Forms.DataGridViewButtonCell.GetContentBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewButtonCell.GetErrorIconBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewButtonCell.GetPreferredSize(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -override System.Windows.Forms.DataGridViewButtonCell.GetValue(int rowIndex) -> object? -override System.Windows.Forms.DataGridViewButtonCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> bool -override System.Windows.Forms.DataGridViewButtonCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> bool -override System.Windows.Forms.DataGridViewButtonCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> bool -override System.Windows.Forms.DataGridViewButtonCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> bool -override System.Windows.Forms.DataGridViewButtonCell.OnKeyDown(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> void -override System.Windows.Forms.DataGridViewButtonCell.OnKeyUp(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> void -override System.Windows.Forms.DataGridViewButtonCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void -override System.Windows.Forms.DataGridViewButtonCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void -override System.Windows.Forms.DataGridViewButtonCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void -override System.Windows.Forms.DataGridViewButtonCell.Paint(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -override System.Windows.Forms.DataGridViewButtonCell.ToString() -> string! -override System.Windows.Forms.DataGridViewButtonCell.ValueType.get -> System.Type! -~override System.Windows.Forms.DataGridViewButtonColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~override System.Windows.Forms.DataGridViewButtonColumn.CellTemplate.set -> void -~override System.Windows.Forms.DataGridViewButtonColumn.Clone() -> object -~override System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle.set -> void -~override System.Windows.Forms.DataGridViewButtonColumn.ToString() -> string -~override System.Windows.Forms.DataGridViewCell.ToString() -> string -~override System.Windows.Forms.DataGridViewCellCollection.List.get -> System.Collections.ArrayList -~override System.Windows.Forms.DataGridViewCellStyle.Equals(object o) -> bool -~override System.Windows.Forms.DataGridViewCellStyle.ToString() -> string -~override System.Windows.Forms.DataGridViewCheckBoxCell.Clone() -> object -~override System.Windows.Forms.DataGridViewCheckBoxCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewCheckBoxCell.EditType.get -> System.Type -~override System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewCheckBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewCheckBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewCheckBoxCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~override System.Windows.Forms.DataGridViewCheckBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewCheckBoxCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyDown(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewCheckBoxCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object -~override System.Windows.Forms.DataGridViewCheckBoxCell.ToString() -> string -~override System.Windows.Forms.DataGridViewCheckBoxCell.ValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewCheckBoxCell.ValueType.set -> void -~override System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~override System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate.set -> void -~override System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle.set -> void -~override System.Windows.Forms.DataGridViewCheckBoxColumn.ToString() -> string -~override System.Windows.Forms.DataGridViewColumn.Clone() -> object -~override System.Windows.Forms.DataGridViewColumn.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip -~override System.Windows.Forms.DataGridViewColumn.ContextMenuStrip.set -> void -~override System.Windows.Forms.DataGridViewColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewColumn.DefaultCellStyle.set -> void -~override System.Windows.Forms.DataGridViewColumn.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewColumn.ToString() -> string -~override System.Windows.Forms.DataGridViewColumnCollection.List.get -> System.Collections.ArrayList -~override System.Windows.Forms.DataGridViewColumnHeaderCell.Clone() -> object -~override System.Windows.Forms.DataGridViewColumnHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetValue(int rowIndex) -> object -~override System.Windows.Forms.DataGridViewColumnHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates dataGridViewElementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewColumnHeaderCell.SetValue(int rowIndex, object value) -> bool -~override System.Windows.Forms.DataGridViewColumnHeaderCell.ToString() -> string -~override System.Windows.Forms.DataGridViewComboBoxCell.Clone() -> object -~override System.Windows.Forms.DataGridViewComboBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewComboBoxCell.EditType.get -> System.Type -~override System.Windows.Forms.DataGridViewComboBoxCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewComboBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewComboBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewComboBoxCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~override System.Windows.Forms.DataGridViewComboBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewComboBoxCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void -~override System.Windows.Forms.DataGridViewComboBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewComboBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewComboBoxCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object -~override System.Windows.Forms.DataGridViewComboBoxCell.ToString() -> string -~override System.Windows.Forms.DataGridViewComboBoxCell.ValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~override System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate.set -> void -~override System.Windows.Forms.DataGridViewComboBoxColumn.Clone() -> object -~override System.Windows.Forms.DataGridViewComboBoxColumn.ToString() -> string -override System.Windows.Forms.DataGridViewComboBoxEditingControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridViewComboBoxEditingControl.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.DataGridViewComboBoxEditingControl.OnSelectedIndexChanged(System.EventArgs! e) -> void -~override System.Windows.Forms.DataGridViewHeaderCell.Clone() -> object -~override System.Windows.Forms.DataGridViewHeaderCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip -~override System.Windows.Forms.DataGridViewHeaderCell.GetValue(int rowIndex) -> object -~override System.Windows.Forms.DataGridViewHeaderCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewHeaderCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewHeaderCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewHeaderCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates dataGridViewElementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewHeaderCell.ToString() -> string -~override System.Windows.Forms.DataGridViewHeaderCell.ValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewHeaderCell.ValueType.set -> void -~override System.Windows.Forms.DataGridViewImageCell.Clone() -> object -~override System.Windows.Forms.DataGridViewImageCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewImageCell.DefaultNewRowValue.get -> object -~override System.Windows.Forms.DataGridViewImageCell.EditType.get -> System.Type -~override System.Windows.Forms.DataGridViewImageCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewImageCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewImageCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewImageCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~override System.Windows.Forms.DataGridViewImageCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewImageCell.GetValue(int rowIndex) -> object -~override System.Windows.Forms.DataGridViewImageCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewImageCell.ToString() -> string -~override System.Windows.Forms.DataGridViewImageCell.ValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewImageCell.ValueType.set -> void -~override System.Windows.Forms.DataGridViewImageColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~override System.Windows.Forms.DataGridViewImageColumn.CellTemplate.set -> void -~override System.Windows.Forms.DataGridViewImageColumn.Clone() -> object -~override System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle.set -> void -~override System.Windows.Forms.DataGridViewImageColumn.ToString() -> string -~override System.Windows.Forms.DataGridViewLinkCell.Clone() -> object -~override System.Windows.Forms.DataGridViewLinkCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewLinkCell.EditType.get -> System.Type -~override System.Windows.Forms.DataGridViewLinkCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewLinkCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewLinkCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewLinkCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewLinkCell.GetValue(int rowIndex) -> object -~override System.Windows.Forms.DataGridViewLinkCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool -~override System.Windows.Forms.DataGridViewLinkCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewLinkCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewLinkCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewLinkCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void -~override System.Windows.Forms.DataGridViewLinkCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewLinkCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewLinkCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewLinkCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewLinkCell.ToString() -> string -~override System.Windows.Forms.DataGridViewLinkCell.ValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewLinkColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~override System.Windows.Forms.DataGridViewLinkColumn.CellTemplate.set -> void -~override System.Windows.Forms.DataGridViewLinkColumn.Clone() -> object -~override System.Windows.Forms.DataGridViewLinkColumn.ToString() -> string -~override System.Windows.Forms.DataGridViewRow.Clone() -> object -~override System.Windows.Forms.DataGridViewRow.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip -~override System.Windows.Forms.DataGridViewRow.ContextMenuStrip.set -> void -~override System.Windows.Forms.DataGridViewRow.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewRow.DefaultCellStyle.set -> void -~override System.Windows.Forms.DataGridViewRow.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewRow.ToString() -> string -~override System.Windows.Forms.DataGridViewRowHeaderCell.Clone() -> object -~override System.Windows.Forms.DataGridViewRowHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorText(int rowIndex) -> string -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewRowHeaderCell.GetValue(int rowIndex) -> object -~override System.Windows.Forms.DataGridViewRowHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewRowHeaderCell.SetValue(int rowIndex, object value) -> bool -~override System.Windows.Forms.DataGridViewRowHeaderCell.ToString() -> string -~override System.Windows.Forms.DataGridViewTextBoxCell.Clone() -> object -~override System.Windows.Forms.DataGridViewTextBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.DataGridViewTextBoxCell.FormattedValueType.get -> System.Type -~override System.Windows.Forms.DataGridViewTextBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewTextBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~override System.Windows.Forms.DataGridViewTextBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~override System.Windows.Forms.DataGridViewTextBoxCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void -~override System.Windows.Forms.DataGridViewTextBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool -~override System.Windows.Forms.DataGridViewTextBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~override System.Windows.Forms.DataGridViewTextBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~override System.Windows.Forms.DataGridViewTextBoxCell.PositionEditingControl(bool setLocation, bool setSize, System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> void -~override System.Windows.Forms.DataGridViewTextBoxCell.ToString() -> string -~override System.Windows.Forms.DataGridViewTextBoxCell.ValueType.get -> System.Type -~override System.Windows.Forms.HtmlElement.Equals(object obj) -> bool -~override System.Windows.Forms.HtmlWindow.Equals(object obj) -> bool -~override System.Windows.Forms.PictureBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.PictureBox.CreateParams.get -> System.Windows.Forms.CreateParams -~override System.Windows.Forms.PictureBox.Font.get -> System.Drawing.Font -~override System.Windows.Forms.PictureBox.Font.set -> void -~override System.Windows.Forms.PictureBox.OnEnabledChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.OnHandleCreated(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.OnHandleDestroyed(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.OnPaint(System.Windows.Forms.PaintEventArgs pe) -> void -~override System.Windows.Forms.PictureBox.OnParentChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.OnResize(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.OnVisibleChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PictureBox.Text.get -> string -~override System.Windows.Forms.PictureBox.Text.set -> void -~override System.Windows.Forms.PictureBox.ToString() -> string -~override System.Windows.Forms.PropertyGrid.BackgroundImage.get -> System.Drawing.Image -~override System.Windows.Forms.PropertyGrid.BackgroundImage.set -> void -~override System.Windows.Forms.PropertyGrid.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.PropertyGrid.OnEnabledChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnFontChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnGotFocus(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnHandleCreated(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnHandleDestroyed(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnMouseDown(System.Windows.Forms.MouseEventArgs me) -> void -~override System.Windows.Forms.PropertyGrid.OnMouseMove(System.Windows.Forms.MouseEventArgs me) -> void -~override System.Windows.Forms.PropertyGrid.OnMouseUp(System.Windows.Forms.MouseEventArgs me) -> void -~override System.Windows.Forms.PropertyGrid.OnPaint(System.Windows.Forms.PaintEventArgs pevent) -> void -~override System.Windows.Forms.PropertyGrid.OnResize(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnSystemColorsChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.OnVisibleChanged(System.EventArgs e) -> void -~override System.Windows.Forms.PropertyGrid.Site.get -> System.ComponentModel.ISite -~override System.Windows.Forms.PropertyGrid.Site.set -> void -~override System.Windows.Forms.PropertyGrid.Text.get -> string -~override System.Windows.Forms.PropertyGrid.Text.set -> void -~override System.Windows.Forms.TreeNode.ToString() -> string -~override System.Windows.Forms.TreeView.BackgroundImage.get -> System.Drawing.Image -~override System.Windows.Forms.TreeView.BackgroundImage.set -> void -~override System.Windows.Forms.TreeView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~override System.Windows.Forms.TreeView.CreateParams.get -> System.Windows.Forms.CreateParams -~override System.Windows.Forms.TreeView.OnGotFocus(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.OnHandleCreated(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.OnHandleDestroyed(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.OnKeyDown(System.Windows.Forms.KeyEventArgs e) -> void -~override System.Windows.Forms.TreeView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e) -> void -~override System.Windows.Forms.TreeView.OnKeyUp(System.Windows.Forms.KeyEventArgs e) -> void -~override System.Windows.Forms.TreeView.OnLostFocus(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.OnMouseHover(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.OnMouseLeave(System.EventArgs e) -> void -~override System.Windows.Forms.TreeView.Text.get -> string -~override System.Windows.Forms.TreeView.Text.set -> void -~override System.Windows.Forms.TreeView.ToString() -> string -~static System.Windows.Forms.AxHost.GetFontFromIFont(object font) -> System.Drawing.Font -~static System.Windows.Forms.AxHost.GetFontFromIFontDisp(object font) -> System.Drawing.Font -~static System.Windows.Forms.AxHost.GetIFontDispFromFont(System.Drawing.Font font) -> object -~static System.Windows.Forms.AxHost.GetIFontFromFont(System.Drawing.Font font) -> object -~static System.Windows.Forms.AxHost.GetIPictureDispFromPicture(System.Drawing.Image image) -> object -~static System.Windows.Forms.AxHost.GetIPictureFromCursor(System.Windows.Forms.Cursor cursor) -> object -~static System.Windows.Forms.AxHost.GetIPictureFromPicture(System.Drawing.Image image) -> object -~static System.Windows.Forms.AxHost.GetPictureFromIPicture(object picture) -> System.Drawing.Image -~static System.Windows.Forms.AxHost.GetPictureFromIPictureDisp(object picture) -> System.Drawing.Image -~static System.Windows.Forms.Control.FromChildHandle(nint handle) -> System.Windows.Forms.Control -~static System.Windows.Forms.Control.FromHandle(nint handle) -> System.Windows.Forms.Control -~static System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxWidth, System.Windows.Forms.TextFormatFlags flags) -> int -~static System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxWidth, System.Windows.Forms.TextFormatFlags flags, out bool widthTruncated) -> int -~static System.Windows.Forms.DataGridViewCell.MeasureTextPreferredSize(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, float maxRatio, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -~static System.Windows.Forms.DataGridViewCell.MeasureTextSize(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -~static System.Windows.Forms.DataGridViewCell.MeasureTextWidth(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxHeight, System.Windows.Forms.TextFormatFlags flags) -> int -~static System.Windows.Forms.HtmlElement.operator !=(System.Windows.Forms.HtmlElement left, System.Windows.Forms.HtmlElement right) -> bool -~static System.Windows.Forms.HtmlElement.operator ==(System.Windows.Forms.HtmlElement left, System.Windows.Forms.HtmlElement right) -> bool -~static System.Windows.Forms.HtmlWindow.operator !=(System.Windows.Forms.HtmlWindow left, System.Windows.Forms.HtmlWindow right) -> bool -~static System.Windows.Forms.HtmlWindow.operator ==(System.Windows.Forms.HtmlWindow left, System.Windows.Forms.HtmlWindow right) -> bool -static System.Windows.Forms.ToolStripManager.FindToolStrip(string! toolStripName) -> System.Windows.Forms.ToolStrip? -static System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form! targetForm) -> void -static System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form! targetForm, string! key) -> void -static System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip! sourceToolStrip, string! targetName) -> bool -static System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip! sourceToolStrip, System.Windows.Forms.ToolStrip! targetToolStrip) -> bool -static System.Windows.Forms.ToolStripManager.Renderer.get -> System.Windows.Forms.ToolStripRenderer! -static System.Windows.Forms.ToolStripManager.Renderer.set -> void -static System.Windows.Forms.ToolStripManager.RevertMerge(string! targetName) -> bool -static System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip! targetToolStrip) -> bool -static System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip! targetToolStrip, System.Windows.Forms.ToolStrip! sourceToolStrip) -> bool -static System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form! sourceForm) -> void -static System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form! sourceForm, string! key) -> void -~static System.Windows.Forms.TreeNode.FromHandle(System.Windows.Forms.TreeView tree, nint handle) -> System.Windows.Forms.TreeNode -System.Windows.Forms.AxHost.ContainingControl.get -> System.Windows.Forms.ContainerControl? -System.Windows.Forms.AxHost.ContainingControl.set -> void -~System.Windows.Forms.AxHost.GetOcx() -> object -System.Windows.Forms.AxHost.OcxState.get -> System.Windows.Forms.AxHost.State? -System.Windows.Forms.AxHost.OcxState.set -> void -~System.Windows.Forms.AxHost.RaiseOnMouseDown(object o1, object o2, object o3, object o4) -> void -~System.Windows.Forms.AxHost.RaiseOnMouseMove(object o1, object o2, object o3, object o4) -> void -~System.Windows.Forms.AxHost.RaiseOnMouseUp(object o1, object o2, object o3, object o4) -> void -System.Windows.Forms.AxHost.SetAboutBoxDelegate(System.Windows.Forms.AxHost.AboutBoxDelegate! d) -> void -~System.Windows.Forms.AxHost.ShowPropertyPages(System.Windows.Forms.Control control) -> void -~System.Windows.Forms.Binding.BindableComponent.get -> System.Windows.Forms.IBindableComponent -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember) -> void -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled) -> void -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode) -> void -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue) -> void -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue, string formatString) -> void -~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue, string formatString, System.IFormatProvider formatInfo) -> void -~System.Windows.Forms.Binding.BindingManagerBase.get -> System.Windows.Forms.BindingManagerBase -~System.Windows.Forms.Binding.Control.get -> System.Windows.Forms.Control -~System.Windows.Forms.Binding.DataSource.get -> object -~System.Windows.Forms.Binding.DataSourceNullValue.get -> object -~System.Windows.Forms.Binding.DataSourceNullValue.set -> void -~System.Windows.Forms.Binding.FormatInfo.get -> System.IFormatProvider -~System.Windows.Forms.Binding.FormatInfo.set -> void -~System.Windows.Forms.Binding.FormatString.get -> string -~System.Windows.Forms.Binding.FormatString.set -> void -~System.Windows.Forms.Binding.NullValue.get -> object -~System.Windows.Forms.Binding.NullValue.set -> void -~System.Windows.Forms.Binding.PropertyName.get -> string -~System.Windows.Forms.BindingSource.BindingSource(object dataSource, string dataMember) -> void -~System.Windows.Forms.BindingSource.BindingSource(System.ComponentModel.IContainer container) -> void -~System.Windows.Forms.BindingSource.Current.get -> object -~System.Windows.Forms.BindingSource.DataMember.get -> string -~System.Windows.Forms.BindingSource.DataMember.set -> void -~System.Windows.Forms.BindingSource.DataSource.get -> object -~System.Windows.Forms.BindingSource.DataSource.set -> void -~System.Windows.Forms.BindingSource.Find(string propertyName, object key) -> int -~System.Windows.Forms.BindingSource.List.get -> System.Collections.IList -~System.Windows.Forms.BindingSource.Sort.get -> string -~System.Windows.Forms.BindingSource.Sort.set -> void -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue, string formatString) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue, string formatString, System.IFormatProvider formatInfo) -> System.Windows.Forms.Binding -~System.Windows.Forms.ControlBindingsCollection.Add(System.Windows.Forms.Binding binding) -> void -~System.Windows.Forms.ControlBindingsCollection.BindableComponent.get -> System.Windows.Forms.IBindableComponent -~System.Windows.Forms.ControlBindingsCollection.Control.get -> System.Windows.Forms.Control -~System.Windows.Forms.ControlBindingsCollection.ControlBindingsCollection(System.Windows.Forms.IBindableComponent control) -> void -~System.Windows.Forms.ControlBindingsCollection.Remove(System.Windows.Forms.Binding binding) -> void -~System.Windows.Forms.ControlBindingsCollection.this[string propertyName].get -> System.Windows.Forms.Binding -~System.Windows.Forms.CurrencyManager.List.get -> System.Collections.IList -~System.Windows.Forms.DataGridView.AdvancedCellBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle.set -> void -~System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle.set -> void -~System.Windows.Forms.DataGridView.Columns.get -> System.Windows.Forms.DataGridViewColumnCollection -~System.Windows.Forms.DataGridView.CurrentCell.get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridView.CurrentCell.set -> void -~System.Windows.Forms.DataGridView.CurrentRow.get -> System.Windows.Forms.DataGridViewRow -~System.Windows.Forms.DataGridView.DataMember.get -> string -~System.Windows.Forms.DataGridView.DataMember.set -> void -~System.Windows.Forms.DataGridView.DataSource.get -> object -~System.Windows.Forms.DataGridView.DataSource.set -> void -~System.Windows.Forms.DataGridView.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridView.DefaultCellStyle.set -> void -~System.Windows.Forms.DataGridView.EditingControl.get -> System.Windows.Forms.Control -~System.Windows.Forms.DataGridView.EditingPanel.get -> System.Windows.Forms.Panel -~System.Windows.Forms.DataGridView.FirstDisplayedCell.get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridView.FirstDisplayedCell.set -> void -~System.Windows.Forms.DataGridView.HitTest(int x, int y) -> System.Windows.Forms.DataGridView.HitTestInfo -~System.Windows.Forms.DataGridView.HorizontalScrollBar.get -> System.Windows.Forms.ScrollBar -~System.Windows.Forms.DataGridView.InvalidateCell(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> void -~System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle.set -> void -~System.Windows.Forms.DataGridView.Rows.get -> System.Windows.Forms.DataGridViewRowCollection -~System.Windows.Forms.DataGridView.RowsDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridView.RowsDefaultCellStyle.set -> void -~System.Windows.Forms.DataGridView.RowTemplate.get -> System.Windows.Forms.DataGridViewRow -~System.Windows.Forms.DataGridView.RowTemplate.set -> void -~System.Windows.Forms.DataGridView.SelectedCells.get -> System.Windows.Forms.DataGridViewSelectedCellCollection -~System.Windows.Forms.DataGridView.SelectedColumns.get -> System.Windows.Forms.DataGridViewSelectedColumnCollection -~System.Windows.Forms.DataGridView.SelectedRows.get -> System.Windows.Forms.DataGridViewSelectedRowCollection -~System.Windows.Forms.DataGridView.SortedColumn.get -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridView.this[int columnIndex, int rowIndex].get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridView.this[int columnIndex, int rowIndex].set -> void -~System.Windows.Forms.DataGridView.this[string columnName, int rowIndex].get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridView.this[string columnName, int rowIndex].set -> void -~System.Windows.Forms.DataGridView.TopLeftHeaderCell.get -> System.Windows.Forms.DataGridViewHeaderCell -~System.Windows.Forms.DataGridView.TopLeftHeaderCell.set -> void -~System.Windows.Forms.DataGridView.UserSetCursor.get -> System.Windows.Forms.Cursor -~System.Windows.Forms.DataGridView.VerticalScrollBar.get -> System.Windows.Forms.ScrollBar -~System.Windows.Forms.DataGridViewButtonColumn.Text.get -> string -~System.Windows.Forms.DataGridViewButtonColumn.Text.set -> void -~System.Windows.Forms.DataGridViewCell.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject -~System.Windows.Forms.DataGridViewCell.EditedFormattedValue.get -> object -~System.Windows.Forms.DataGridViewCell.ErrorText.get -> string -~System.Windows.Forms.DataGridViewCell.ErrorText.set -> void -~System.Windows.Forms.DataGridViewCell.FormattedValue.get -> object -~System.Windows.Forms.DataGridViewCell.GetEditedFormattedValue(int rowIndex, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~System.Windows.Forms.DataGridViewCell.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridViewCell.OwningColumn.get -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewCell.OwningRow.get -> System.Windows.Forms.DataGridViewRow -~System.Windows.Forms.DataGridViewCell.Style.get -> System.Windows.Forms.DataGridViewCellStyle -~System.Windows.Forms.DataGridViewCell.Style.set -> void -~System.Windows.Forms.DataGridViewCell.Tag.get -> object -~System.Windows.Forms.DataGridViewCell.Tag.set -> void -~System.Windows.Forms.DataGridViewCell.ToolTipText.get -> string -~System.Windows.Forms.DataGridViewCell.ToolTipText.set -> void -~System.Windows.Forms.DataGridViewCell.Value.get -> object -~System.Windows.Forms.DataGridViewCell.Value.set -> void -~System.Windows.Forms.DataGridViewCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[] array, int index) -> void -~System.Windows.Forms.DataGridViewCellCollection.DataGridViewCellCollection(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void -~System.Windows.Forms.DataGridViewCellCollection.IndexOf(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> int -~System.Windows.Forms.DataGridViewCellCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void -~System.Windows.Forms.DataGridViewCellCollection.this[int index].get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridViewCellCollection.this[int index].set -> void -~System.Windows.Forms.DataGridViewCellCollection.this[string columnName].get -> System.Windows.Forms.DataGridViewCell -~System.Windows.Forms.DataGridViewCellCollection.this[string columnName].set -> void -System.Windows.Forms.DataGridViewCellPaintingEventArgs.AdvancedBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle? -System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? -System.Windows.Forms.DataGridViewCellPaintingEventArgs.DataGridViewCellPaintingEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, int columnIndex, System.Windows.Forms.DataGridViewElementStates cellState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle? advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewCellPaintingEventArgs.ErrorText.get -> string? -System.Windows.Forms.DataGridViewCellPaintingEventArgs.FormattedValue.get -> object? -System.Windows.Forms.DataGridViewCellPaintingEventArgs.Graphics.get -> System.Drawing.Graphics? -System.Windows.Forms.DataGridViewCellPaintingEventArgs.Value.get -> object? -~System.Windows.Forms.DataGridViewCellStyle.DataGridViewCellStyle(System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void -~System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue.get -> object -~System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue.set -> void -~System.Windows.Forms.DataGridViewCellStyle.Font.get -> System.Drawing.Font -~System.Windows.Forms.DataGridViewCellStyle.Font.set -> void -~System.Windows.Forms.DataGridViewCellStyle.Format.get -> string -~System.Windows.Forms.DataGridViewCellStyle.Format.set -> void -~System.Windows.Forms.DataGridViewCellStyle.FormatProvider.get -> System.IFormatProvider -~System.Windows.Forms.DataGridViewCellStyle.FormatProvider.set -> void -~System.Windows.Forms.DataGridViewCellStyle.NullValue.get -> object -~System.Windows.Forms.DataGridViewCellStyle.NullValue.set -> void -~System.Windows.Forms.DataGridViewCellStyle.Tag.get -> object -~System.Windows.Forms.DataGridViewCellStyle.Tag.set -> void -~System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue.set -> void -~System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue.set -> void -~System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue.set -> void -~System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue.set -> void -~System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue.set -> void -~System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue.get -> object -~System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue.set -> void -~System.Windows.Forms.DataGridViewColumn.CellType.get -> System.Type -~System.Windows.Forms.DataGridViewColumn.DataGridViewColumn(System.Windows.Forms.DataGridViewCell cellTemplate) -> void -~System.Windows.Forms.DataGridViewColumn.DataPropertyName.get -> string -~System.Windows.Forms.DataGridViewColumn.DataPropertyName.set -> void -~System.Windows.Forms.DataGridViewColumn.HeaderCell.get -> System.Windows.Forms.DataGridViewColumnHeaderCell -~System.Windows.Forms.DataGridViewColumn.HeaderCell.set -> void -~System.Windows.Forms.DataGridViewColumn.HeaderText.get -> string -~System.Windows.Forms.DataGridViewColumn.HeaderText.set -> void -~System.Windows.Forms.DataGridViewColumn.Name.get -> string -~System.Windows.Forms.DataGridViewColumn.Name.set -> void -~System.Windows.Forms.DataGridViewColumn.Site.get -> System.ComponentModel.ISite -~System.Windows.Forms.DataGridViewColumn.Site.set -> void -~System.Windows.Forms.DataGridViewColumn.ToolTipText.get -> string -~System.Windows.Forms.DataGridViewColumn.ToolTipText.set -> void -~System.Windows.Forms.DataGridViewColumn.ValueType.get -> System.Type -~System.Windows.Forms.DataGridViewColumn.ValueType.set -> void -~System.Windows.Forms.DataGridViewColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[] array, int index) -> void -~System.Windows.Forms.DataGridViewColumnCollection.DataGridView.get -> System.Windows.Forms.DataGridView -~System.Windows.Forms.DataGridViewColumnCollection.DataGridViewColumnCollection(System.Windows.Forms.DataGridView dataGridView) -> void -~System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates includeFilter) -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.GetLastColumn(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.GetNextColumn(System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.GetPreviousColumn(System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.IndexOf(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> int -~System.Windows.Forms.DataGridViewColumnCollection.this[int index].get -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewColumnCollection.this[string columnName].get -> System.Windows.Forms.DataGridViewColumn -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Add(object item) -> int -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(params object[] items) -> void -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection value) -> void -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Contains(object value) -> bool -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.CopyTo(object[] destination, int arrayIndex) -> void -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IndexOf(object value) -> int -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Insert(int index, object item) -> void -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.ObjectCollection(System.Windows.Forms.DataGridViewComboBoxCell owner) -> void -~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Remove(object value) -> void -~System.Windows.Forms.DataGridViewComboBoxColumn.DataSource.get -> object -~System.Windows.Forms.DataGridViewComboBoxColumn.DataSource.set -> void -~System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember.get -> string -~System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember.set -> void -~System.Windows.Forms.DataGridViewComboBoxColumn.Items.get -> System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection -~System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember.get -> string -~System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember.set -> void -~System.Windows.Forms.DataGridViewImageCell.Description.get -> string -~System.Windows.Forms.DataGridViewImageCell.Description.set -> void -~System.Windows.Forms.DataGridViewImageColumn.Description.get -> string -~System.Windows.Forms.DataGridViewImageColumn.Description.set -> void -~System.Windows.Forms.DataGridViewImageColumn.Icon.get -> System.Drawing.Icon -~System.Windows.Forms.DataGridViewImageColumn.Icon.set -> void -~System.Windows.Forms.DataGridViewImageColumn.Image.get -> System.Drawing.Image -~System.Windows.Forms.DataGridViewImageColumn.Image.set -> void -~System.Windows.Forms.DataGridViewLinkColumn.Text.get -> string -~System.Windows.Forms.DataGridViewLinkColumn.Text.set -> void -~System.Windows.Forms.DataGridViewRow.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject -~System.Windows.Forms.DataGridViewRow.Cells.get -> System.Windows.Forms.DataGridViewCellCollection -~System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView dataGridView) -> void -~System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView dataGridView, params object[] values) -> void -~System.Windows.Forms.DataGridViewRow.DataBoundItem.get -> object -~System.Windows.Forms.DataGridViewRow.ErrorText.get -> string -~System.Windows.Forms.DataGridViewRow.ErrorText.set -> void -~System.Windows.Forms.DataGridViewRow.GetContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip -~System.Windows.Forms.DataGridViewRow.GetErrorText(int rowIndex) -> string -~System.Windows.Forms.DataGridViewRow.HeaderCell.get -> System.Windows.Forms.DataGridViewRowHeaderCell -~System.Windows.Forms.DataGridViewRow.HeaderCell.set -> void -~System.Windows.Forms.DataGridViewRow.SetValues(params object[] values) -> bool -~System.Windows.Forms.DataGridViewRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[] array, int index) -> void -~System.Windows.Forms.DataGridViewRowCollection.DataGridView.get -> System.Windows.Forms.DataGridView -~System.Windows.Forms.DataGridViewRowCollection.DataGridViewRowCollection(System.Windows.Forms.DataGridView dataGridView) -> void -~System.Windows.Forms.DataGridViewRowCollection.IndexOf(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> int -~System.Windows.Forms.DataGridViewRowCollection.List.get -> System.Collections.ArrayList -~System.Windows.Forms.DataGridViewRowCollection.SharedRow(int rowIndex) -> System.Windows.Forms.DataGridViewRow -~System.Windows.Forms.DataGridViewRowCollection.this[int index].get -> System.Windows.Forms.DataGridViewRow -System.Windows.Forms.DataGridViewSelectedCellCollection.Contains(System.Windows.Forms.DataGridViewCell! dataGridViewCell) -> bool -System.Windows.Forms.DataGridViewSelectedCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell![]! array, int index) -> void -System.Windows.Forms.DataGridViewSelectedCellCollection.Insert(int index, System.Windows.Forms.DataGridViewCell! dataGridViewCell) -> void -System.Windows.Forms.DataGridViewSelectedCellCollection.this[int index].get -> System.Windows.Forms.DataGridViewCell! -~System.Windows.Forms.HtmlElement.All.get -> System.Windows.Forms.HtmlElementCollection -~System.Windows.Forms.HtmlElement.AppendChild(System.Windows.Forms.HtmlElement newElement) -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.AttachEventHandler(string eventName, System.EventHandler eventHandler) -> void -~System.Windows.Forms.HtmlElement.Children.get -> System.Windows.Forms.HtmlElementCollection -~System.Windows.Forms.HtmlElement.DetachEventHandler(string eventName, System.EventHandler eventHandler) -> void -~System.Windows.Forms.HtmlElement.Document.get -> System.Windows.Forms.HtmlDocument -~System.Windows.Forms.HtmlElement.DomElement.get -> object -~System.Windows.Forms.HtmlElement.FirstChild.get -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.GetAttribute(string attributeName) -> string -~System.Windows.Forms.HtmlElement.GetElementsByTagName(string tagName) -> System.Windows.Forms.HtmlElementCollection -~System.Windows.Forms.HtmlElement.Id.get -> string -~System.Windows.Forms.HtmlElement.Id.set -> void -~System.Windows.Forms.HtmlElement.InnerHtml.get -> string -~System.Windows.Forms.HtmlElement.InnerHtml.set -> void -~System.Windows.Forms.HtmlElement.InnerText.get -> string -~System.Windows.Forms.HtmlElement.InnerText.set -> void -~System.Windows.Forms.HtmlElement.InsertAdjacentElement(System.Windows.Forms.HtmlElementInsertionOrientation orient, System.Windows.Forms.HtmlElement newElement) -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.InvokeMember(string methodName) -> object -~System.Windows.Forms.HtmlElement.InvokeMember(string methodName, params object[] parameter) -> object -~System.Windows.Forms.HtmlElement.Name.get -> string -~System.Windows.Forms.HtmlElement.Name.set -> void -~System.Windows.Forms.HtmlElement.NextSibling.get -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.OffsetParent.get -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.OuterHtml.get -> string -~System.Windows.Forms.HtmlElement.OuterHtml.set -> void -~System.Windows.Forms.HtmlElement.OuterText.get -> string -~System.Windows.Forms.HtmlElement.OuterText.set -> void -~System.Windows.Forms.HtmlElement.Parent.get -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.HtmlElement.RaiseEvent(string eventName) -> void -~System.Windows.Forms.HtmlElement.SetAttribute(string attributeName, string value) -> void -~System.Windows.Forms.HtmlElement.Style.get -> string -~System.Windows.Forms.HtmlElement.Style.set -> void -~System.Windows.Forms.HtmlElement.TagName.get -> string -~System.Windows.Forms.HtmlWindow.Alert(string message) -> void -~System.Windows.Forms.HtmlWindow.AttachEventHandler(string eventName, System.EventHandler eventHandler) -> void -~System.Windows.Forms.HtmlWindow.Confirm(string message) -> bool -~System.Windows.Forms.HtmlWindow.DetachEventHandler(string eventName, System.EventHandler eventHandler) -> void -~System.Windows.Forms.HtmlWindow.Document.get -> System.Windows.Forms.HtmlDocument -~System.Windows.Forms.HtmlWindow.DomWindow.get -> object -~System.Windows.Forms.HtmlWindow.Frames.get -> System.Windows.Forms.HtmlWindowCollection -~System.Windows.Forms.HtmlWindow.History.get -> System.Windows.Forms.HtmlHistory -~System.Windows.Forms.HtmlWindow.Name.get -> string -~System.Windows.Forms.HtmlWindow.Name.set -> void -~System.Windows.Forms.HtmlWindow.Navigate(string urlString) -> void -~System.Windows.Forms.HtmlWindow.Navigate(System.Uri url) -> void -~System.Windows.Forms.HtmlWindow.Open(string urlString, string target, string windowOptions, bool replaceEntry) -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.Open(System.Uri url, string target, string windowOptions, bool replaceEntry) -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.Opener.get -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.OpenNew(string urlString, string windowOptions) -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.OpenNew(System.Uri url, string windowOptions) -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.Parent.get -> System.Windows.Forms.HtmlWindow -~System.Windows.Forms.HtmlWindow.Prompt(string message, string defaultInputValue) -> string -~System.Windows.Forms.HtmlWindow.StatusBarText.get -> string -~System.Windows.Forms.HtmlWindow.StatusBarText.set -> void -~System.Windows.Forms.HtmlWindow.Url.get -> System.Uri -~System.Windows.Forms.HtmlWindow.WindowFrameElement.get -> System.Windows.Forms.HtmlElement -~System.Windows.Forms.PictureBox.ErrorImage.get -> System.Drawing.Image -~System.Windows.Forms.PictureBox.ErrorImage.set -> void -~System.Windows.Forms.PictureBox.Image.get -> System.Drawing.Image -~System.Windows.Forms.PictureBox.Image.set -> void -~System.Windows.Forms.PictureBox.ImageLocation.get -> string -~System.Windows.Forms.PictureBox.ImageLocation.set -> void -~System.Windows.Forms.PictureBox.InitialImage.get -> System.Drawing.Image -~System.Windows.Forms.PictureBox.InitialImage.set -> void -~System.Windows.Forms.PictureBox.Load(string url) -> void -~System.Windows.Forms.PictureBox.LoadAsync(string url) -> void -~System.Windows.Forms.PropertyGrid.BrowsableAttributes.get -> System.ComponentModel.AttributeCollection -~System.Windows.Forms.PropertyGrid.BrowsableAttributes.set -> void -~System.Windows.Forms.PropertyGrid.Controls.get -> System.Windows.Forms.Control.ControlCollection -~System.Windows.Forms.PropertyGrid.OnComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventArgs e) -> void -~System.Windows.Forms.PropertyGrid.OnNotifyPropertyValueUIItemsChanged(object sender, System.EventArgs e) -> void -~System.Windows.Forms.PropertyGrid.PropertyTabs.get -> System.Windows.Forms.PropertyGrid.PropertyTabCollection -~System.Windows.Forms.PropertyGrid.SelectedGridItem.get -> System.Windows.Forms.GridItem -~System.Windows.Forms.PropertyGrid.SelectedGridItem.set -> void -~System.Windows.Forms.PropertyGrid.SelectedObject.get -> object -~System.Windows.Forms.PropertyGrid.SelectedObject.set -> void -~System.Windows.Forms.PropertyGrid.SelectedObjects.get -> object[] -~System.Windows.Forms.PropertyGrid.SelectedObjects.set -> void -~System.Windows.Forms.PropertyGrid.SelectedTab.get -> System.Windows.Forms.Design.PropertyTab -~System.Windows.Forms.PropertyGrid.ToolStripRenderer.get -> System.Windows.Forms.ToolStripRenderer -~System.Windows.Forms.PropertyGrid.ToolStripRenderer.set -> void -~System.Windows.Forms.TreeNode.FirstNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.FullPath.get -> string -~System.Windows.Forms.TreeNode.ImageKey.get -> string -~System.Windows.Forms.TreeNode.ImageKey.set -> void -~System.Windows.Forms.TreeNode.LastNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.Name.get -> string -~System.Windows.Forms.TreeNode.Name.set -> void -~System.Windows.Forms.TreeNode.NextNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.NextVisibleNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.NodeFont.get -> System.Drawing.Font -~System.Windows.Forms.TreeNode.NodeFont.set -> void -~System.Windows.Forms.TreeNode.Nodes.get -> System.Windows.Forms.TreeNodeCollection -~System.Windows.Forms.TreeNode.Parent.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.PrevNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.PrevVisibleNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeNode.SelectedImageKey.get -> string -~System.Windows.Forms.TreeNode.SelectedImageKey.set -> void -~System.Windows.Forms.TreeNode.StateImageKey.get -> string -~System.Windows.Forms.TreeNode.StateImageKey.set -> void -~System.Windows.Forms.TreeNode.Tag.get -> object -~System.Windows.Forms.TreeNode.Tag.set -> void -~System.Windows.Forms.TreeNode.Text.get -> string -~System.Windows.Forms.TreeNode.Text.set -> void -~System.Windows.Forms.TreeNode.ToolTipText.get -> string -~System.Windows.Forms.TreeNode.ToolTipText.set -> void -~System.Windows.Forms.TreeNode.TreeNode(string text) -> void -~System.Windows.Forms.TreeNode.TreeNode(string text, int imageIndex, int selectedImageIndex) -> void -~System.Windows.Forms.TreeNode.TreeNode(string text, int imageIndex, int selectedImageIndex, System.Windows.Forms.TreeNode[] children) -> void -~System.Windows.Forms.TreeNode.TreeNode(string text, System.Windows.Forms.TreeNode[] children) -> void -~System.Windows.Forms.TreeNode.TreeNode(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) -> void -~System.Windows.Forms.TreeNode.TreeView.get -> System.Windows.Forms.TreeView -System.Windows.Forms.TreeNodeCollection.Contains(System.Windows.Forms.TreeNode! node) -> bool -System.Windows.Forms.TreeNodeCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.TreeNodeCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.TreeNode![]! -System.Windows.Forms.TreeNodeCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.TreeNodeCollection.IndexOf(System.Windows.Forms.TreeNode! node) -> int -System.Windows.Forms.TreeNodeCollection.Remove(System.Windows.Forms.TreeNode! node) -> void -~System.Windows.Forms.TreeView.GetItemRenderStyles(System.Windows.Forms.TreeNode node, int state) -> System.Windows.Forms.OwnerDrawPropertyBag -~System.Windows.Forms.TreeView.GetNodeAt(int x, int y) -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeView.GetNodeAt(System.Drawing.Point pt) -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeView.HitTest(int x, int y) -> System.Windows.Forms.TreeViewHitTestInfo -~System.Windows.Forms.TreeView.HitTest(System.Drawing.Point pt) -> System.Windows.Forms.TreeViewHitTestInfo -~System.Windows.Forms.TreeView.ImageKey.get -> string -~System.Windows.Forms.TreeView.ImageKey.set -> void -~System.Windows.Forms.TreeView.ImageList.get -> System.Windows.Forms.ImageList -~System.Windows.Forms.TreeView.ImageList.set -> void -~System.Windows.Forms.TreeView.Nodes.get -> System.Windows.Forms.TreeNodeCollection -~System.Windows.Forms.TreeView.PathSeparator.get -> string -~System.Windows.Forms.TreeView.PathSeparator.set -> void -~System.Windows.Forms.TreeView.SelectedImageKey.get -> string -~System.Windows.Forms.TreeView.SelectedImageKey.set -> void -~System.Windows.Forms.TreeView.SelectedNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeView.SelectedNode.set -> void -~System.Windows.Forms.TreeView.StateImageList.get -> System.Windows.Forms.ImageList -~System.Windows.Forms.TreeView.StateImageList.set -> void -~System.Windows.Forms.TreeView.TopNode.get -> System.Windows.Forms.TreeNode -~System.Windows.Forms.TreeView.TopNode.set -> void -~System.Windows.Forms.TreeView.TreeViewNodeSorter.get -> System.Collections.IComparer -~System.Windows.Forms.TreeView.TreeViewNodeSorter.set -> void -virtual System.Windows.Forms.AxHost.CreateInstanceCore(System.Guid clsid) -> object? -~virtual System.Windows.Forms.Binding.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs e) -> void -~virtual System.Windows.Forms.Binding.OnFormat(System.Windows.Forms.ConvertEventArgs cevent) -> void -~virtual System.Windows.Forms.Binding.OnParse(System.Windows.Forms.ConvertEventArgs cevent) -> void -~virtual System.Windows.Forms.BindingSource.Add(object value) -> int -~virtual System.Windows.Forms.BindingSource.AddNew() -> object -~virtual System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts) -> void -~virtual System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection sort) -> void -~virtual System.Windows.Forms.BindingSource.Contains(object value) -> bool -~virtual System.Windows.Forms.BindingSource.CopyTo(System.Array arr, int index) -> void -~virtual System.Windows.Forms.BindingSource.CurrencyManager.get -> System.Windows.Forms.CurrencyManager -~virtual System.Windows.Forms.BindingSource.Filter.get -> string -~virtual System.Windows.Forms.BindingSource.Filter.set -> void -~virtual System.Windows.Forms.BindingSource.Find(System.ComponentModel.PropertyDescriptor prop, object key) -> int -~virtual System.Windows.Forms.BindingSource.GetEnumerator() -> System.Collections.IEnumerator -~virtual System.Windows.Forms.BindingSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) -> System.ComponentModel.PropertyDescriptorCollection -~virtual System.Windows.Forms.BindingSource.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) -> string -~virtual System.Windows.Forms.BindingSource.GetRelatedCurrencyManager(string dataMember) -> System.Windows.Forms.CurrencyManager -~virtual System.Windows.Forms.BindingSource.IndexOf(object value) -> int -~virtual System.Windows.Forms.BindingSource.Insert(int index, object value) -> void -~virtual System.Windows.Forms.BindingSource.OnAddingNew(System.ComponentModel.AddingNewEventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnCurrentChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnCurrentItemChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnDataError(System.Windows.Forms.BindingManagerDataErrorEventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnDataMemberChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnDataSourceChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnListChanged(System.ComponentModel.ListChangedEventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.OnPositionChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.BindingSource.Remove(object value) -> void -~virtual System.Windows.Forms.BindingSource.SortDescriptions.get -> System.ComponentModel.ListSortDescriptionCollection -~virtual System.Windows.Forms.BindingSource.SortProperty.get -> System.ComponentModel.PropertyDescriptor -~virtual System.Windows.Forms.BindingSource.SyncRoot.get -> object -~virtual System.Windows.Forms.BindingSource.this[int index].get -> object -~virtual System.Windows.Forms.BindingSource.this[int index].set -> void -~virtual System.Windows.Forms.DataGridView.AdjustColumnHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool isFirstDisplayedColumn, bool isLastVisibleColumn) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~virtual System.Windows.Forms.DataGridView.AdjustedTopLeftHeaderBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~virtual System.Windows.Forms.DataGridView.CreateColumnsInstance() -> System.Windows.Forms.DataGridViewColumnCollection -~virtual System.Windows.Forms.DataGridView.CreateRowsInstance() -> System.Windows.Forms.DataGridViewRowCollection -~virtual System.Windows.Forms.DataGridView.GetClipboardContent() -> System.Windows.Forms.DataObject -~virtual System.Windows.Forms.DataGridView.OnAllowUserToAddRowsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAllowUserToDeleteRowsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAllowUserToOrderColumnsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAllowUserToResizeColumnsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAllowUserToResizeRowsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAlternatingRowsDefaultCellStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAutoGenerateColumnsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAutoSizeColumnModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAutoSizeColumnsModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnAutoSizeRowsModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnBackgroundColorChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnBorderStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCancelRowEdit(System.Windows.Forms.QuestionEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellBeginEdit(System.Windows.Forms.DataGridViewCellCancelEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellBorderStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellContextMenuStripChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellContextMenuStripNeeded(System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellEndEdit(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellErrorTextChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellErrorTextNeeded(System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellFormatting(System.Windows.Forms.DataGridViewCellFormattingEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellPainting(System.Windows.Forms.DataGridViewCellPaintingEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellParsing(System.Windows.Forms.DataGridViewCellParsingEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellStateChanged(System.Windows.Forms.DataGridViewCellStateChangedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellStyleChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellStyleContentChanged(System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellToolTipTextChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellToolTipTextNeeded(System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellValidated(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellValidating(System.Windows.Forms.DataGridViewCellValidatingEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellValueNeeded(System.Windows.Forms.DataGridViewCellValueEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCellValuePushed(System.Windows.Forms.DataGridViewCellValueEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnAdded(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnContextMenuStripChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnDataPropertyNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnDefaultCellStyleChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnDisplayIndexChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnDividerDoubleClick(System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnDividerWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeaderCellChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeadersBorderStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeadersDefaultCellStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeadersHeightChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnHeadersHeightSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnMinimumWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnRemoved(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnSortModeChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnStateChanged(System.Windows.Forms.DataGridViewColumnStateChangedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnToolTipTextChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnColumnWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCurrentCellChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnCurrentCellDirtyStateChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDataBindingComplete(System.Windows.Forms.DataGridViewBindingCompleteEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDataError(bool displayErrorDialogIfNoHandler, System.Windows.Forms.DataGridViewDataErrorEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDataMemberChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDataSourceChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDefaultCellStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnDefaultValuesNeeded(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnEditingControlShowing(System.Windows.Forms.DataGridViewEditingControlShowingEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnEditModeChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnGridColorChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnMultiSelectChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnNewRowNeeded(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnReadOnlyChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowContextMenuStripChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowContextMenuStripNeeded(System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowDefaultCellStyleChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowDirtyStateNeeded(System.Windows.Forms.QuestionEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowDividerDoubleClick(System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowDividerHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowErrorTextChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowErrorTextNeeded(System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeaderCellChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeadersBorderStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeadersDefaultCellStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeadersWidthChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeadersWidthSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeightInfoNeeded(System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowHeightInfoPushed(System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowMinimumHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowPostPaint(System.Windows.Forms.DataGridViewRowPostPaintEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowPrePaint(System.Windows.Forms.DataGridViewRowPrePaintEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowsAdded(System.Windows.Forms.DataGridViewRowsAddedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowsDefaultCellStyleChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowsRemoved(System.Windows.Forms.DataGridViewRowsRemovedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowStateChanged(int rowIndex, System.Windows.Forms.DataGridViewRowStateChangedEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowUnshared(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowValidated(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnRowValidating(System.Windows.Forms.DataGridViewCellCancelEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnScroll(System.Windows.Forms.ScrollEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnSelectionChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnSortCompare(System.Windows.Forms.DataGridViewSortCompareEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnSorted(System.EventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnUserAddedRow(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnUserDeletedRow(System.Windows.Forms.DataGridViewRowEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.OnUserDeletingRow(System.Windows.Forms.DataGridViewRowCancelEventArgs e) -> void -~virtual System.Windows.Forms.DataGridView.PaintBackground(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle gridBounds) -> void -~virtual System.Windows.Forms.DataGridView.ProcessDataGridViewKey(System.Windows.Forms.KeyEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridView.Sort(System.Collections.IComparer comparer) -> void -~virtual System.Windows.Forms.DataGridView.Sort(System.Windows.Forms.DataGridViewColumn dataGridViewColumn, System.ComponentModel.ListSortDirection direction) -> void -~virtual System.Windows.Forms.DataGridViewCell.AdjustCellBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~virtual System.Windows.Forms.DataGridViewCell.BorderWidths(System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle) -> System.Drawing.Rectangle -~virtual System.Windows.Forms.DataGridViewCell.ClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.Clone() -> object -~virtual System.Windows.Forms.DataGridViewCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip -~virtual System.Windows.Forms.DataGridViewCell.ContextMenuStrip.set -> void -~virtual System.Windows.Forms.DataGridViewCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~virtual System.Windows.Forms.DataGridViewCell.DefaultNewRowValue.get -> object -~virtual System.Windows.Forms.DataGridViewCell.DoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.EditType.get -> System.Type -~virtual System.Windows.Forms.DataGridViewCell.FormattedValueType.get -> System.Type -~virtual System.Windows.Forms.DataGridViewCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object -~virtual System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~virtual System.Windows.Forms.DataGridViewCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle -~virtual System.Windows.Forms.DataGridViewCell.GetErrorText(int rowIndex) -> string -~virtual System.Windows.Forms.DataGridViewCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~virtual System.Windows.Forms.DataGridViewCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip -~virtual System.Windows.Forms.DataGridViewCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle -~virtual System.Windows.Forms.DataGridViewCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -~virtual System.Windows.Forms.DataGridViewCell.GetValue(int rowIndex) -> object -~virtual System.Windows.Forms.DataGridViewCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void -~virtual System.Windows.Forms.DataGridViewCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool -~virtual System.Windows.Forms.DataGridViewCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.KeyPressUnsharesRow(System.Windows.Forms.KeyPressEventArgs e, int rowIndex) -> bool -~virtual System.Windows.Forms.DataGridViewCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool -~virtual System.Windows.Forms.DataGridViewCell.MouseClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.MouseDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool -~virtual System.Windows.Forms.DataGridViewCell.OnClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnKeyDown(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e, int rowIndex) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~virtual System.Windows.Forms.DataGridViewCell.PaintBorder(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle) -> void -~virtual System.Windows.Forms.DataGridViewCell.PaintErrorIcon(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellValueBounds, string errorText) -> void -~virtual System.Windows.Forms.DataGridViewCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object -~virtual System.Windows.Forms.DataGridViewCell.PositionEditingControl(bool setLocation, bool setSize, System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> void -~virtual System.Windows.Forms.DataGridViewCell.PositionEditingPanel(System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> System.Drawing.Rectangle -~virtual System.Windows.Forms.DataGridViewCell.SetValue(int rowIndex, object value) -> bool -~virtual System.Windows.Forms.DataGridViewCell.ValueType.get -> System.Type -~virtual System.Windows.Forms.DataGridViewCell.ValueType.set -> void -~virtual System.Windows.Forms.DataGridViewCellCollection.Add(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> int -~virtual System.Windows.Forms.DataGridViewCellCollection.AddRange(params System.Windows.Forms.DataGridViewCell[] dataGridViewCells) -> void -~virtual System.Windows.Forms.DataGridViewCellCollection.Contains(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> bool -~virtual System.Windows.Forms.DataGridViewCellCollection.Insert(int index, System.Windows.Forms.DataGridViewCell dataGridViewCell) -> void -~virtual System.Windows.Forms.DataGridViewCellCollection.Remove(System.Windows.Forms.DataGridViewCell cell) -> void -~virtual System.Windows.Forms.DataGridViewCellStyle.ApplyStyle(System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void -~virtual System.Windows.Forms.DataGridViewCellStyle.Clone() -> System.Windows.Forms.DataGridViewCellStyle -~virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue.get -> object -~virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue.set -> void -~virtual System.Windows.Forms.DataGridViewCheckBoxCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object -~virtual System.Windows.Forms.DataGridViewColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell -~virtual System.Windows.Forms.DataGridViewColumn.CellTemplate.set -> void -~virtual System.Windows.Forms.DataGridViewColumnCollection.Add(string columnName, string headerText) -> int -~virtual System.Windows.Forms.DataGridViewColumnCollection.Add(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> int -~virtual System.Windows.Forms.DataGridViewColumnCollection.AddRange(params System.Windows.Forms.DataGridViewColumn[] dataGridViewColumns) -> void -~virtual System.Windows.Forms.DataGridViewColumnCollection.Contains(string columnName) -> bool -~virtual System.Windows.Forms.DataGridViewColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> bool -~virtual System.Windows.Forms.DataGridViewColumnCollection.Insert(int columnIndex, System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> void -~virtual System.Windows.Forms.DataGridViewColumnCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewColumnCollection.Remove(string columnName) -> void -~virtual System.Windows.Forms.DataGridViewColumnCollection.Remove(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> void -~virtual System.Windows.Forms.DataGridViewComboBoxCell.DataSource.get -> object -~virtual System.Windows.Forms.DataGridViewComboBoxCell.DataSource.set -> void -~virtual System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember.get -> string -~virtual System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember.set -> void -~virtual System.Windows.Forms.DataGridViewComboBoxCell.Items.get -> System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection -~virtual System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.this[int index].get -> object -~virtual System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.this[int index].set -> void -~virtual System.Windows.Forms.DataGridViewComboBoxCell.ValueMember.get -> string -~virtual System.Windows.Forms.DataGridViewComboBoxCell.ValueMember.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue.get -> object! -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! -~virtual System.Windows.Forms.DataGridViewRow.AdjustRowHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedRow, bool isLastVisibleRow) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle -~virtual System.Windows.Forms.DataGridViewRow.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject -~virtual System.Windows.Forms.DataGridViewRow.CreateCellsInstance() -> System.Windows.Forms.DataGridViewCellCollection -~virtual System.Windows.Forms.DataGridViewRow.DrawFocus(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool cellsPaintSelectionBackground) -> void -~virtual System.Windows.Forms.DataGridViewRow.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void -~virtual System.Windows.Forms.DataGridViewRow.PaintCells(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~virtual System.Windows.Forms.DataGridViewRow.PaintHeader(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.Add(params object[] values) -> int -~virtual System.Windows.Forms.DataGridViewRowCollection.Add(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> int -~virtual System.Windows.Forms.DataGridViewRowCollection.AddRange(params System.Windows.Forms.DataGridViewRow[] dataGridViewRows) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.Contains(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> bool -~virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, params object[] values) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.InsertRange(int rowIndex, params System.Windows.Forms.DataGridViewRow[] dataGridViewRows) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void -~virtual System.Windows.Forms.DataGridViewRowCollection.Remove(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void -~virtual System.Windows.Forms.PictureBox.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e) -> void -~virtual System.Windows.Forms.PictureBox.OnLoadProgressChanged(System.ComponentModel.ProgressChangedEventArgs e) -> void -~virtual System.Windows.Forms.PictureBox.OnSizeModeChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.CreatePropertyTab(System.Type tabType) -> System.Windows.Forms.Design.PropertyTab -~virtual System.Windows.Forms.PropertyGrid.DefaultTabType.get -> System.Type -~virtual System.Windows.Forms.PropertyGrid.OnPropertySortChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.OnPropertyTabChanged(System.Windows.Forms.PropertyTabChangedEventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.OnPropertyValueChanged(System.Windows.Forms.PropertyValueChangedEventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.OnSelectedGridItemChanged(System.Windows.Forms.SelectedGridItemChangedEventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.OnSelectedObjectsChanged(System.EventArgs e) -> void -~virtual System.Windows.Forms.PropertyGrid.ShowPropertyPageImage.get -> System.Drawing.Bitmap -~virtual System.Windows.Forms.PropertyGrid.SortByCategoryImage.get -> System.Drawing.Bitmap -~virtual System.Windows.Forms.PropertyGrid.SortByPropertyImage.get -> System.Drawing.Bitmap -~virtual System.Windows.Forms.TreeNode.Clone() -> object -~virtual System.Windows.Forms.TreeNode.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip -~virtual System.Windows.Forms.TreeNode.ContextMenuStrip.set -> void -~virtual System.Windows.Forms.TreeNode.Deserialize(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) -> void -~virtual System.Windows.Forms.TreeNode.Serialize(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) -> void -virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, int imageIndex) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, int imageIndex, int selectedImageIndex) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, string? imageKey) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, string? imageKey, string? selectedImageKey) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(string? text) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Add(System.Windows.Forms.TreeNode! node) -> int -virtual System.Windows.Forms.TreeNodeCollection.AddRange(System.Windows.Forms.TreeNode![]! nodes) -> void -virtual System.Windows.Forms.TreeNodeCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.TreeNodeCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, int imageIndex) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, int imageIndex, int selectedImageIndex) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, string? imageKey) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, string? imageKey, string? selectedImageKey) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? text) -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, System.Windows.Forms.TreeNode! node) -> void -virtual System.Windows.Forms.TreeNodeCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.TreeNodeCollection.this[int index].get -> System.Windows.Forms.TreeNode! -virtual System.Windows.Forms.TreeNodeCollection.this[int index].set -> void -virtual System.Windows.Forms.TreeNodeCollection.this[string? key].get -> System.Windows.Forms.TreeNode? -~virtual System.Windows.Forms.TreeView.OnAfterCheck(System.Windows.Forms.TreeViewEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnAfterCollapse(System.Windows.Forms.TreeViewEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnAfterExpand(System.Windows.Forms.TreeViewEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnAfterLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnAfterSelect(System.Windows.Forms.TreeViewEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnBeforeCheck(System.Windows.Forms.TreeViewCancelEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnBeforeCollapse(System.Windows.Forms.TreeViewCancelEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnBeforeExpand(System.Windows.Forms.TreeViewCancelEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnBeforeLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnBeforeSelect(System.Windows.Forms.TreeViewCancelEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnDrawNode(System.Windows.Forms.DrawTreeNodeEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnNodeMouseClick(System.Windows.Forms.TreeNodeMouseClickEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnNodeMouseDoubleClick(System.Windows.Forms.TreeNodeMouseClickEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnNodeMouseHover(System.Windows.Forms.TreeNodeMouseHoverEventArgs e) -> void -~virtual System.Windows.Forms.TreeView.OnRightToLeftLayoutChanged(System.EventArgs e) -> void -abstract System.Windows.Forms.BindingManagerBase.AddNew() -> void -abstract System.Windows.Forms.BindingManagerBase.CancelCurrentEdit() -> void -abstract System.Windows.Forms.BindingManagerBase.Count.get -> int -abstract System.Windows.Forms.BindingManagerBase.Current.get -> object? -abstract System.Windows.Forms.BindingManagerBase.EndCurrentEdit() -> void -abstract System.Windows.Forms.BindingManagerBase.GetListName(System.Collections.ArrayList? listAccessors) -> string! -abstract System.Windows.Forms.BindingManagerBase.OnCurrentChanged(System.EventArgs! e) -> void -abstract System.Windows.Forms.BindingManagerBase.OnCurrentItemChanged(System.EventArgs! e) -> void -abstract System.Windows.Forms.BindingManagerBase.Position.get -> int -abstract System.Windows.Forms.BindingManagerBase.Position.set -> void -abstract System.Windows.Forms.BindingManagerBase.RemoveAt(int index) -> void -abstract System.Windows.Forms.BindingManagerBase.ResumeBinding() -> void -abstract System.Windows.Forms.BindingManagerBase.SuspendBinding() -> void -abstract System.Windows.Forms.BindingManagerBase.UpdateIsBinding() -> void -abstract System.Windows.Forms.CommonDialog.Reset() -> void -abstract System.Windows.Forms.CommonDialog.RunDialog(nint hwndOwner) -> bool -abstract System.Windows.Forms.Design.ComponentEditorPage.LoadComponent() -> void -abstract System.Windows.Forms.Design.ComponentEditorPage.SaveComponent() -> void -abstract System.Windows.Forms.Design.PropertyTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? -abstract System.Windows.Forms.Design.PropertyTab.TabName.get -> string? -abstract System.Windows.Forms.FeatureSupport.GetVersionPresent(object! feature) -> System.Version? -abstract System.Windows.Forms.GridItem.GridItems.get -> System.Windows.Forms.GridItemCollection! -abstract System.Windows.Forms.GridItem.GridItemType.get -> System.Windows.Forms.GridItemType -abstract System.Windows.Forms.GridItem.Label.get -> string? -abstract System.Windows.Forms.GridItem.Parent.get -> System.Windows.Forms.GridItem? -abstract System.Windows.Forms.GridItem.PropertyDescriptor.get -> System.ComponentModel.PropertyDescriptor? -abstract System.Windows.Forms.GridItem.Select() -> bool -abstract System.Windows.Forms.GridItem.Value.get -> object? -abstract System.Windows.Forms.ListControl.RefreshItem(int index) -> void -abstract System.Windows.Forms.ListControl.SelectedIndex.get -> int -abstract System.Windows.Forms.ListControl.SelectedIndex.set -> void -abstract System.Windows.Forms.ListControl.SetItemsCore(System.Collections.IList! items) -> void -abstract System.Windows.Forms.UpDownBase.DownButton() -> void -abstract System.Windows.Forms.UpDownBase.UpButton() -> void -abstract System.Windows.Forms.UpDownBase.UpdateEditText() -> void -const System.Windows.Forms.ListBox.DefaultItemHeight = 13 -> int -const System.Windows.Forms.ListBox.NoMatches = -1 -> int -const System.Windows.Forms.ScrollableControl.ScrollStateAutoScrolling = 1 -> int -const System.Windows.Forms.ScrollableControl.ScrollStateFullDrag = 16 -> int -const System.Windows.Forms.ScrollableControl.ScrollStateHScrollVisible = 2 -> int -const System.Windows.Forms.ScrollableControl.ScrollStateUserHasScrolled = 8 -> int -const System.Windows.Forms.ScrollableControl.ScrollStateVScrollVisible = 4 -> int -override System.Resources.ResXFileRef.Converter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Resources.ResXFileRef.Converter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Resources.ResXFileRef.Converter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Resources.ResXFileRef.Converter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Resources.ResXFileRef.ToString() -> string! -override System.Resources.ResXResourceSet.GetDefaultReader() -> System.Type! -override System.Resources.ResXResourceSet.GetDefaultWriter() -> System.Type! -override System.Windows.Forms.AxHost.AxComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! obj, System.Windows.Forms.IWin32Window? parent) -> bool -override System.Windows.Forms.AxHost.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.AxHost.BackColor.set -> void -override System.Windows.Forms.AxHost.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.AxHost.BackgroundImage.set -> void -override System.Windows.Forms.AxHost.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.AxHost.BackgroundImageLayout.set -> void -override System.Windows.Forms.AxHost.CreateHandle() -> void -override System.Windows.Forms.AxHost.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.AxHost.Cursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.AxHost.Cursor.set -> void -override System.Windows.Forms.AxHost.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.AxHost.DestroyHandle() -> void -override System.Windows.Forms.AxHost.Dispose(bool disposing) -> void -override System.Windows.Forms.AxHost.Font.get -> System.Drawing.Font! -override System.Windows.Forms.AxHost.Font.set -> void -override System.Windows.Forms.AxHost.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.AxHost.ForeColor.set -> void -override System.Windows.Forms.AxHost.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle -override System.Windows.Forms.AxHost.InvalidActiveXStateException.ToString() -> string! -override System.Windows.Forms.AxHost.IsInputChar(char charCode) -> bool -override System.Windows.Forms.AxHost.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.AxHost.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.AxHost.OnForeColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.AxHost.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.AxHost.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool -override System.Windows.Forms.AxHost.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.AxHost.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.AxHost.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.AxHost.SetVisibleCore(bool value) -> void -override System.Windows.Forms.AxHost.Site.set -> void -override System.Windows.Forms.AxHost.StateConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.AxHost.StateConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.AxHost.StateConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.AxHost.StateConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.AxHost.Text.get -> string! -override System.Windows.Forms.AxHost.Text.set -> void -override System.Windows.Forms.AxHost.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.BindingMemberInfo.Equals(object? otherObject) -> bool -override System.Windows.Forms.BindingMemberInfo.GetHashCode() -> int -override System.Windows.Forms.BindingNavigator.Dispose(bool disposing) -> void -override System.Windows.Forms.BindingsCollection.Count.get -> int -override System.Windows.Forms.BindingSource.Dispose(bool disposing) -> void -override System.Windows.Forms.Button.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.Button.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Button.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.Button.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Button.OnMouseEnter(System.EventArgs! e) -> void -override System.Windows.Forms.Button.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.Button.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.Button.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Button.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.Button.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.Button.ToString() -> string! -override System.Windows.Forms.Button.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ButtonBase.AutoSize.get -> bool -override System.Windows.Forms.ButtonBase.AutoSize.set -> void -override System.Windows.Forms.ButtonBase.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ButtonBase.BackColor.set -> void -override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.KeyboardShortcut.get -> string? -override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.Name.get -> string? -override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.ButtonBase.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ButtonBase.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ButtonBase.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.ButtonBase.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ButtonBase.Dispose(bool disposing) -> void -override System.Windows.Forms.ButtonBase.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size -override System.Windows.Forms.ButtonBase.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnKeyDown(System.Windows.Forms.KeyEventArgs! kevent) -> void -override System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs! kevent) -> void -override System.Windows.Forms.ButtonBase.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnMouseDown(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.ButtonBase.OnMouseEnter(System.EventArgs! eventargs) -> void -override System.Windows.Forms.ButtonBase.OnMouseLeave(System.EventArgs! eventargs) -> void -override System.Windows.Forms.ButtonBase.OnMouseMove(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.ButtonBase.OnPaint(System.Windows.Forms.PaintEventArgs! pevent) -> void -override System.Windows.Forms.ButtonBase.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ButtonBase.Text.get -> string! -override System.Windows.Forms.ButtonBase.Text.set -> void -override System.Windows.Forms.ButtonBase.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.CheckBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.CheckBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.CheckBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.CheckBox.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.CheckBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.CheckBox.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.CheckBox.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.CheckBox.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.CheckBox.TextAlign.get -> System.Drawing.ContentAlignment -override System.Windows.Forms.CheckBox.TextAlign.set -> void -override System.Windows.Forms.CheckBox.ToString() -> string! -override System.Windows.Forms.CheckedListBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.CheckedListBox.CreateItemCollection() -> System.Windows.Forms.ListBox.ObjectCollection! -override System.Windows.Forms.CheckedListBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.CheckedListBox.DrawMode.get -> System.Windows.Forms.DrawMode -override System.Windows.Forms.CheckedListBox.DrawMode.set -> void -override System.Windows.Forms.CheckedListBox.ItemHeight.get -> int -override System.Windows.Forms.CheckedListBox.ItemHeight.set -> void -override System.Windows.Forms.CheckedListBox.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.OnSelectedIndexChanged(System.EventArgs! e) -> void -override System.Windows.Forms.CheckedListBox.RefreshItems() -> void -override System.Windows.Forms.CheckedListBox.SelectionMode.get -> System.Windows.Forms.SelectionMode -override System.Windows.Forms.CheckedListBox.SelectionMode.set -> void -override System.Windows.Forms.CheckedListBox.WmReflectCommand(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.CheckedListBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ColorDialog.Reset() -> void -override System.Windows.Forms.ColorDialog.RunDialog(nint hwndOwner) -> bool -override System.Windows.Forms.ColorDialog.ToString() -> string! -override System.Windows.Forms.ColumnHeader.Dispose(bool disposing) -> void -override System.Windows.Forms.ColumnHeader.ToString() -> string! -override System.Windows.Forms.ColumnHeaderConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.ColumnHeaderConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.ComboBox.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ComboBox.BackColor.set -> void -override System.Windows.Forms.ComboBox.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ComboBox.BackgroundImage.set -> void -override System.Windows.Forms.ComboBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ComboBox.BackgroundImageLayout.set -> void -override System.Windows.Forms.ComboBox.ChildAccessibleObject.Name.get -> string? -override System.Windows.Forms.ComboBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ComboBox.CreateHandle() -> void -override System.Windows.Forms.ComboBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ComboBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ComboBox.Dispose(bool disposing) -> void -override System.Windows.Forms.ComboBox.Focused.get -> bool -override System.Windows.Forms.ComboBox.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.ComboBox.ForeColor.set -> void -override System.Windows.Forms.ComboBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ComboBox.MaximumSize.get -> System.Drawing.Size -override System.Windows.Forms.ComboBox.MaximumSize.set -> void -override System.Windows.Forms.ComboBox.MinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.ComboBox.MinimumSize.set -> void -override System.Windows.Forms.ComboBox.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnDataSourceChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnDisplayMemberChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnForeColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnMouseEnter(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnParentBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnSelectedIndexChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnSelectedValueChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ComboBox.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void -override System.Windows.Forms.ComboBox.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ComboBox.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.ComboBox.RefreshItem(int index) -> void -override System.Windows.Forms.ComboBox.RefreshItems() -> void -override System.Windows.Forms.ComboBox.ResetText() -> void -override System.Windows.Forms.ComboBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ComboBox.SelectedIndex.get -> int -override System.Windows.Forms.ComboBox.SelectedIndex.set -> void -override System.Windows.Forms.ComboBox.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ComboBox.SetItemCore(int index, object! value) -> void -override System.Windows.Forms.ComboBox.SetItemsCore(System.Collections.IList! value) -> void -override System.Windows.Forms.ComboBox.Text.get -> string! -override System.Windows.Forms.ComboBox.Text.set -> void -override System.Windows.Forms.ComboBox.ToString() -> string! -override System.Windows.Forms.ComboBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ContainerControl.AdjustFormScrollbars(bool displayScrollbars) -> void -override System.Windows.Forms.ContainerControl.BindingContext.get -> System.Windows.Forms.BindingContext? -override System.Windows.Forms.ContainerControl.BindingContext.set -> void -override System.Windows.Forms.ContainerControl.CanEnableIme.get -> bool -override System.Windows.Forms.ContainerControl.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ContainerControl.Dispose(bool disposing) -> void -override System.Windows.Forms.ContainerControl.OnCreateControl() -> void -override System.Windows.Forms.ContainerControl.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ContainerControl.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ContainerControl.OnMove(System.EventArgs! e) -> void -override System.Windows.Forms.ContainerControl.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ContainerControl.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.ContainerControl.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ContainerControl.ProcessDialogChar(char charCode) -> bool -override System.Windows.Forms.ContainerControl.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ContainerControl.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ContainerControl.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.ContainerControl.Select(bool directed, bool forward) -> void -override System.Windows.Forms.ContainerControl.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ContextMenuStrip.Dispose(bool disposing) -> void -override System.Windows.Forms.ContextMenuStrip.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs! e) -> void -override System.Windows.Forms.ContextMenuStrip.OnOpened(System.EventArgs! e) -> void -override System.Windows.Forms.ContextMenuStrip.SetVisibleCore(bool visible) -> void -override System.Windows.Forms.Control.CanRaiseEvents.get -> bool -override System.Windows.Forms.Control.ControlAccessibleObject.DefaultAction.get -> string? -override System.Windows.Forms.Control.ControlAccessibleObject.Description.get -> string? -override System.Windows.Forms.Control.ControlAccessibleObject.GetHelpTopic(out string? fileName) -> int -override System.Windows.Forms.Control.ControlAccessibleObject.Help.get -> string? -override System.Windows.Forms.Control.ControlAccessibleObject.KeyboardShortcut.get -> string? -override System.Windows.Forms.Control.ControlAccessibleObject.Name.get -> string? -override System.Windows.Forms.Control.ControlAccessibleObject.Name.set -> void -override System.Windows.Forms.Control.ControlAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.Control.ControlAccessibleObject.RaiseLiveRegionChanged() -> bool -override System.Windows.Forms.Control.ControlAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.Control.ControlAccessibleObject.ToString() -> string! -override System.Windows.Forms.Control.ControlCollection.GetEnumerator() -> System.Collections.IEnumerator! -override System.Windows.Forms.Control.Dispose(bool disposing) -> void -override System.Windows.Forms.Control.Site.get -> System.ComponentModel.ISite? -override System.Windows.Forms.Control.Site.set -> void -override System.Windows.Forms.ControlBindingsCollection.ClearCore() -> void -override System.Windows.Forms.CreateParams.ToString() -> string! -override System.Windows.Forms.CurrencyManager.AddNew() -> void -override System.Windows.Forms.CurrencyManager.CancelCurrentEdit() -> void -override System.Windows.Forms.CurrencyManager.Count.get -> int -override System.Windows.Forms.CurrencyManager.EndCurrentEdit() -> void -override System.Windows.Forms.CurrencyManager.Position.get -> int -override System.Windows.Forms.CurrencyManager.Position.set -> void -override System.Windows.Forms.CurrencyManager.RemoveAt(int index) -> void -override System.Windows.Forms.CurrencyManager.ResumeBinding() -> void -override System.Windows.Forms.CurrencyManager.SuspendBinding() -> void -override System.Windows.Forms.Cursor.Equals(object? obj) -> bool -override System.Windows.Forms.Cursor.GetHashCode() -> int -override System.Windows.Forms.Cursor.ToString() -> string! -override System.Windows.Forms.CursorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.CursorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.CursorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.CursorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.CursorConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.CursorConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.DataGridView.AutoSize.get -> bool -override System.Windows.Forms.DataGridView.AutoSize.set -> void -override System.Windows.Forms.DataGridView.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.DataGridView.BackColor.set -> void -override System.Windows.Forms.DataGridView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.DataGridView.BackgroundImageLayout.set -> void -override System.Windows.Forms.DataGridView.CanEnableIme.get -> bool -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridView.DataGridViewControlCollection.Clear() -> void -override System.Windows.Forms.DataGridView.DataGridViewControlCollection.Remove(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Name.get -> string! -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Value.get -> string! -override System.Windows.Forms.DataGridView.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.DataGridView.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridView.Dispose(bool disposing) -> void -override System.Windows.Forms.DataGridView.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.DataGridView.ForeColor.set -> void -override System.Windows.Forms.DataGridView.HitTestInfo.Equals(object? value) -> bool -override System.Windows.Forms.DataGridView.HitTestInfo.GetHashCode() -> int -override System.Windows.Forms.DataGridView.HitTestInfo.ToString() -> string! -override System.Windows.Forms.DataGridView.IsInputChar(char charCode) -> bool -override System.Windows.Forms.DataGridView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.DataGridView.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.DataGridView.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.DataGridView.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.DataGridView.ResetText() -> void -override System.Windows.Forms.DataGridView.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.DataGridView.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.DataGridViewAdvancedBorderStyle.Equals(object? other) -> bool -override System.Windows.Forms.DataGridViewAdvancedBorderStyle.GetHashCode() -> int -override System.Windows.Forms.DataGridViewAdvancedBorderStyle.ToString() -> string! -override System.Windows.Forms.DataGridViewBand.ToString() -> string! -override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewButtonCell.MouseEnterUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewButtonCell.MouseLeaveUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewButtonCell.OnLeave(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewButtonCell.OnMouseLeave(int rowIndex) -> void -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Name.get -> string? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value.get -> string? -override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value.set -> void -override System.Windows.Forms.DataGridViewCell.OnDataGridViewChanged() -> void -override System.Windows.Forms.DataGridViewCellStyle.GetHashCode() -> int -override System.Windows.Forms.DataGridViewCellStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.DataGridViewCellStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewCheckBoxCell.MouseEnterUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewCheckBoxCell.MouseLeaveUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewCheckBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseLeave(int rowIndex) -> void -override System.Windows.Forms.DataGridViewColumn.Dispose(bool disposing) -> void -override System.Windows.Forms.DataGridViewColumn.Frozen.get -> bool -override System.Windows.Forms.DataGridViewColumn.Frozen.set -> void -override System.Windows.Forms.DataGridViewColumn.ReadOnly.get -> bool -override System.Windows.Forms.DataGridViewColumn.ReadOnly.set -> void -override System.Windows.Forms.DataGridViewColumn.Resizable.get -> System.Windows.Forms.DataGridViewTriState -override System.Windows.Forms.DataGridViewColumn.Resizable.set -> void -override System.Windows.Forms.DataGridViewColumn.Visible.get -> bool -override System.Windows.Forms.DataGridViewColumn.Visible.set -> void -override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Equals(object? obj) -> bool -override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.GetHashCode() -> int -override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.IsDefaultAttribute() -> bool -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Name.get -> string! -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Value.get -> string! -override System.Windows.Forms.DataGridViewComboBoxCell.DetachEditingControl() -> void -override System.Windows.Forms.DataGridViewComboBoxCell.OnDataGridViewChanged() -> void -override System.Windows.Forms.DataGridViewComboBoxCell.OnEnter(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewComboBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseEnter(int rowIndex) -> void -override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseLeave(int rowIndex) -> void -override System.Windows.Forms.DataGridViewHeaderCell.Displayed.get -> bool -override System.Windows.Forms.DataGridViewHeaderCell.Dispose(bool disposing) -> void -override System.Windows.Forms.DataGridViewHeaderCell.Frozen.get -> bool -override System.Windows.Forms.DataGridViewHeaderCell.GetInheritedState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates -override System.Windows.Forms.DataGridViewHeaderCell.GetSize(int rowIndex) -> System.Drawing.Size -override System.Windows.Forms.DataGridViewHeaderCell.MouseEnterUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewHeaderCell.MouseLeaveUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewHeaderCell.OnMouseEnter(int rowIndex) -> void -override System.Windows.Forms.DataGridViewHeaderCell.OnMouseLeave(int rowIndex) -> void -override System.Windows.Forms.DataGridViewHeaderCell.ReadOnly.get -> bool -override System.Windows.Forms.DataGridViewHeaderCell.ReadOnly.set -> void -override System.Windows.Forms.DataGridViewHeaderCell.Resizable.get -> bool -override System.Windows.Forms.DataGridViewHeaderCell.Selected.get -> bool -override System.Windows.Forms.DataGridViewHeaderCell.Selected.set -> void -override System.Windows.Forms.DataGridViewHeaderCell.Visible.get -> bool -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Description.get -> string? -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value.get -> string? -override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value.set -> void -override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewLinkCell.MouseLeaveUnsharesRow(int rowIndex) -> bool -override System.Windows.Forms.DataGridViewLinkCell.OnMouseLeave(int rowIndex) -> void -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Name.get -> string! -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Value.get -> string! -override System.Windows.Forms.DataGridViewRow.Displayed.get -> bool -override System.Windows.Forms.DataGridViewRow.Frozen.get -> bool -override System.Windows.Forms.DataGridViewRow.Frozen.set -> void -override System.Windows.Forms.DataGridViewRow.ReadOnly.get -> bool -override System.Windows.Forms.DataGridViewRow.ReadOnly.set -> void -override System.Windows.Forms.DataGridViewRow.Resizable.get -> System.Windows.Forms.DataGridViewTriState -override System.Windows.Forms.DataGridViewRow.Resizable.set -> void -override System.Windows.Forms.DataGridViewRow.Selected.get -> bool -override System.Windows.Forms.DataGridViewRow.Selected.set -> void -override System.Windows.Forms.DataGridViewRow.State.get -> System.Windows.Forms.DataGridViewElementStates -override System.Windows.Forms.DataGridViewRow.Visible.get -> bool -override System.Windows.Forms.DataGridViewRow.Visible.set -> void -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Name.get -> string? -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Value.get -> string! -override System.Windows.Forms.DataGridViewTextBoxCell.DetachEditingControl() -> void -override System.Windows.Forms.DataGridViewTextBoxCell.OnEnter(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewTextBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void -override System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell! -override System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate.set -> void -override System.Windows.Forms.DataGridViewTextBoxColumn.ToString() -> string! -override System.Windows.Forms.DataGridViewTextBoxEditingControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.DataGridViewTextBoxEditingControl.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Name.get -> string! -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Value.get -> string! -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetContentBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetErrorIconBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetPreferredSize(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.Paint(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.PaintBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle) -> void -override System.Windows.Forms.DataGridViewTopLeftHeaderCell.ToString() -> string! -override System.Windows.Forms.DateTimePicker.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.DateTimePicker.BackColor.set -> void -override System.Windows.Forms.DateTimePicker.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.DateTimePicker.BackgroundImage.set -> void -override System.Windows.Forms.DateTimePicker.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.DateTimePicker.BackgroundImageLayout.set -> void -override System.Windows.Forms.DateTimePicker.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.DateTimePicker.CreateHandle() -> void -override System.Windows.Forms.DateTimePicker.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.KeyboardShortcut.get -> string? -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Name.get -> string! -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Value.get -> string! -override System.Windows.Forms.DateTimePicker.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.DateTimePicker.DestroyHandle() -> void -override System.Windows.Forms.DateTimePicker.DoubleBuffered.get -> bool -override System.Windows.Forms.DateTimePicker.DoubleBuffered.set -> void -override System.Windows.Forms.DateTimePicker.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.DateTimePicker.ForeColor.set -> void -override System.Windows.Forms.DateTimePicker.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.DateTimePicker.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.OnSystemColorsChanged(System.EventArgs! e) -> void -override System.Windows.Forms.DateTimePicker.Text.get -> string! -override System.Windows.Forms.DateTimePicker.Text.set -> void -override System.Windows.Forms.DateTimePicker.ToString() -> string! -override System.Windows.Forms.DateTimePicker.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.Design.ComponentEditorForm.AutoSize.get -> bool -override System.Windows.Forms.Design.ComponentEditorForm.AutoSize.set -> void -override System.Windows.Forms.Design.ComponentEditorForm.OnActivated(System.EventArgs! e) -> void -override System.Windows.Forms.Design.ComponentEditorForm.OnHelpRequested(System.Windows.Forms.HelpEventArgs! e) -> void -override System.Windows.Forms.Design.ComponentEditorForm.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool -override System.Windows.Forms.Design.ComponentEditorPage.AutoSize.get -> bool -override System.Windows.Forms.Design.ComponentEditorPage.AutoSize.set -> void -override System.Windows.Forms.Design.ComponentEditorPage.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Design.EventsTab.CanExtend(object! extendee) -> bool -override System.Windows.Forms.Design.EventsTab.GetDefaultProperty(object! obj) -> System.ComponentModel.PropertyDescriptor? -override System.Windows.Forms.Design.EventsTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! -override System.Windows.Forms.Design.EventsTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! -override System.Windows.Forms.Design.EventsTab.HelpKeyword.get -> string! -override System.Windows.Forms.Design.EventsTab.TabName.get -> string! -override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Equals(object? obj) -> bool -override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.GetHashCode() -> int -override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.IsDefaultAttribute() -> bool -override System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! component) -> bool -override System.Windows.Forms.DockingAttribute.Equals(object? obj) -> bool -override System.Windows.Forms.DockingAttribute.GetHashCode() -> int -override System.Windows.Forms.DockingAttribute.IsDefaultAttribute() -> bool -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name.get -> string? -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name.set -> void -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Value.get -> string? -override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Add(object? item) -> int -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Insert(int index, object? item) -> void -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Remove(object? item) -> void -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.RemoveAt(int item) -> void -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.this[int index].get -> object? -override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.this[int index].set -> void -override System.Windows.Forms.DomainUpDown.DownButton() -> void -override System.Windows.Forms.DomainUpDown.OnChanged(object? source, System.EventArgs! e) -> void -override System.Windows.Forms.DomainUpDown.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void -override System.Windows.Forms.DomainUpDown.ToString() -> string! -override System.Windows.Forms.DomainUpDown.UpButton() -> void -override System.Windows.Forms.DomainUpDown.UpdateEditText() -> void -override System.Windows.Forms.DpiChangedEventArgs.ToString() -> string! -override System.Windows.Forms.ErrorProvider.Dispose(bool disposing) -> void -override System.Windows.Forms.ErrorProvider.Site.set -> void -override System.Windows.Forms.FileDialog.Reset() -> void -override System.Windows.Forms.FileDialog.ToString() -> string! -override System.Windows.Forms.FlowLayoutPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.FlowLayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.FolderBrowserDialog.Reset() -> void -override System.Windows.Forms.FontDialog.HookProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint -override System.Windows.Forms.FontDialog.Reset() -> void -override System.Windows.Forms.FontDialog.RunDialog(nint hWndOwner) -> bool -override System.Windows.Forms.FontDialog.ToString() -> string! -override System.Windows.Forms.Form.AdjustFormScrollbars(bool displayScrollbars) -> void -override System.Windows.Forms.Form.AutoScroll.get -> bool -override System.Windows.Forms.Form.AutoScroll.set -> void -override System.Windows.Forms.Form.AutoSize.get -> bool -override System.Windows.Forms.Form.AutoSize.set -> void -override System.Windows.Forms.Form.AutoValidate.get -> System.Windows.Forms.AutoValidate -override System.Windows.Forms.Form.AutoValidate.set -> void -override System.Windows.Forms.Form.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.Form.BackColor.set -> void -override System.Windows.Forms.Form.ControlCollection.Add(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.Form.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.Form.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.Form.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.Form.CreateHandle() -> void -override System.Windows.Forms.Form.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Form.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.Form.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.Form.DefWndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.Form.Dispose(bool disposing) -> void -override System.Windows.Forms.Form.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle -override System.Windows.Forms.Form.MaximumSize.get -> System.Drawing.Size -override System.Windows.Forms.Form.MaximumSize.set -> void -override System.Windows.Forms.Form.MinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.Form.MinimumSize.set -> void -override System.Windows.Forms.Form.OnBackgroundImageChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnBackgroundImageLayoutChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnCreateControl() -> void -override System.Windows.Forms.Form.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnEnter(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void -override System.Windows.Forms.Form.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.Form.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnStyleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Form.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.Form.ProcessDialogChar(char charCode) -> bool -override System.Windows.Forms.Form.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.Form.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.Form.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.Form.ProcessTabKey(bool forward) -> bool -override System.Windows.Forms.Form.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.Form.ScaleCore(float x, float y) -> void -override System.Windows.Forms.Form.ScaleMinMaxSize(float xScaleFactor, float yScaleFactor, bool updateContainerSize = true) -> void -override System.Windows.Forms.Form.Select(bool directed, bool forward) -> void -override System.Windows.Forms.Form.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.Form.SetClientSizeCore(int x, int y) -> void -override System.Windows.Forms.Form.SetVisibleCore(bool value) -> void -override System.Windows.Forms.Form.Text.get -> string! -override System.Windows.Forms.Form.Text.set -> void -override System.Windows.Forms.Form.ToString() -> string! -override System.Windows.Forms.Form.UpdateDefaultButton() -> void -override System.Windows.Forms.Form.ValidateChildren() -> bool -override System.Windows.Forms.Form.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool -override System.Windows.Forms.Form.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.GroupBox.AllowDrop.get -> bool -override System.Windows.Forms.GroupBox.AllowDrop.set -> void -override System.Windows.Forms.GroupBox.AutoSize.get -> bool -override System.Windows.Forms.GroupBox.AutoSize.set -> void -override System.Windows.Forms.GroupBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.GroupBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.GroupBox.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.GroupBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.GroupBox.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.GroupBox.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.GroupBox.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.GroupBox.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.GroupBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.GroupBox.Text.get -> string! -override System.Windows.Forms.GroupBox.Text.set -> void -override System.Windows.Forms.GroupBox.ToString() -> string! -override System.Windows.Forms.GroupBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.HelpProvider.ToString() -> string! -override System.Windows.Forms.HScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.HScrollBar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.HtmlDocument.Equals(object? obj) -> bool -override System.Windows.Forms.HtmlDocument.GetHashCode() -> int -override System.Windows.Forms.HtmlElement.GetHashCode() -> int -override System.Windows.Forms.HtmlWindow.GetHashCode() -> int -override System.Windows.Forms.ImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.ImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.ImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.ImageIndexConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ImageIndexConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ImageKeyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.ImageKeyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.ImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.ImageKeyConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.ImageKeyConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ImageKeyConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ImageList.ToString() -> string! -override System.Windows.Forms.InputLanguage.Equals(object? value) -> bool -override System.Windows.Forms.InputLanguage.GetHashCode() -> int -override System.Windows.Forms.KeysConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.KeysConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.KeysConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.KeysConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.KeysConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.KeysConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.KeysConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.Label.AutoSize.get -> bool -override System.Windows.Forms.Label.AutoSize.set -> void -override System.Windows.Forms.Label.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.Label.BackgroundImage.set -> void -override System.Windows.Forms.Label.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.Label.BackgroundImageLayout.set -> void -override System.Windows.Forms.Label.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.Label.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Label.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.Label.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.Label.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.Label.Dispose(bool disposing) -> void -override System.Windows.Forms.Label.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size -override System.Windows.Forms.Label.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnMouseEnter(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnPaddingChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.Label.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.Label.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.Label.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.Label.Text.get -> string! -override System.Windows.Forms.Label.Text.set -> void -override System.Windows.Forms.Label.ToString() -> string! -override System.Windows.Forms.Label.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.Layout.ArrangedElementCollection.Equals(object? obj) -> bool -override System.Windows.Forms.Layout.ArrangedElementCollection.GetHashCode() -> int -override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.LinkArea.Equals(object? o) -> bool -override System.Windows.Forms.LinkArea.GetHashCode() -> int -override System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! -override System.Windows.Forms.LinkArea.LinkAreaConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! -override System.Windows.Forms.LinkArea.LinkAreaConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.LinkArea.ToString() -> string! -override System.Windows.Forms.LinkConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.LinkConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.LinkConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.LinkConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.LinkLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.LinkLabel.CreateHandle() -> void -override System.Windows.Forms.LinkLabel.OnAutoSizeChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnPaddingChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnTextAlignChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.LinkLabel.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.LinkLabel.Select(bool directed, bool forward) -> void -override System.Windows.Forms.LinkLabel.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.LinkLabel.Text.get -> string! -override System.Windows.Forms.LinkLabel.Text.set -> void -override System.Windows.Forms.LinkLabel.WndProc(ref System.Windows.Forms.Message msg) -> void -override System.Windows.Forms.ListBindingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.ListBindingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.ListBindingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! -override System.Windows.Forms.ListBindingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ListBox.AllowSelection.get -> bool -override System.Windows.Forms.ListBox.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ListBox.BackColor.set -> void -override System.Windows.Forms.ListBox.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ListBox.BackgroundImage.set -> void -override System.Windows.Forms.ListBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ListBox.BackgroundImageLayout.set -> void -override System.Windows.Forms.ListBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ListBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ListBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ListBox.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ListBox.Font.set -> void -override System.Windows.Forms.ListBox.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.ListBox.ForeColor.set -> void -override System.Windows.Forms.ListBox.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle -override System.Windows.Forms.ListBox.OnChangeUICues(System.Windows.Forms.UICuesEventArgs! e) -> void -override System.Windows.Forms.ListBox.OnDataSourceChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnDisplayMemberChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnSelectedIndexChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.OnSelectedValueChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListBox.Refresh() -> void -override System.Windows.Forms.ListBox.RefreshItem(int index) -> void -override System.Windows.Forms.ListBox.RefreshItems() -> void -override System.Windows.Forms.ListBox.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.ListBox.ResetBackColor() -> void -override System.Windows.Forms.ListBox.ResetForeColor() -> void -override System.Windows.Forms.ListBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ListBox.SelectedIndex.get -> int -override System.Windows.Forms.ListBox.SelectedIndex.set -> void -override System.Windows.Forms.ListBox.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ListBox.SetItemCore(int index, object! value) -> void -override System.Windows.Forms.ListBox.SetItemsCore(System.Collections.IList! value) -> void -override System.Windows.Forms.ListBox.Text.get -> string! -override System.Windows.Forms.ListBox.Text.set -> void -override System.Windows.Forms.ListBox.ToString() -> string! -override System.Windows.Forms.ListBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ListControl.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ListControl.OnBindingContextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ListView.BackColor.set -> void -override System.Windows.Forms.ListView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ListView.BackgroundImageLayout.set -> void -override System.Windows.Forms.ListView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ListView.CreateHandle() -> void -override System.Windows.Forms.ListView.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ListView.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ListView.Dispose(bool disposing) -> void -override System.Windows.Forms.ListView.DoubleBuffered.get -> bool -override System.Windows.Forms.ListView.DoubleBuffered.set -> void -override System.Windows.Forms.ListView.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.ListView.ForeColor.set -> void -override System.Windows.Forms.ListView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ListView.OnBackgroundImageChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnMouseHover(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.OnSystemColorsChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ListView.Text.get -> string! -override System.Windows.Forms.ListView.Text.set -> void -override System.Windows.Forms.ListView.ToString() -> string! -override System.Windows.Forms.ListView.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ListViewGroup.ToString() -> string! -override System.Windows.Forms.ListViewItem.ListViewSubItem.ToString() -> string! -override System.Windows.Forms.ListViewItem.ToString() -> string! -override System.Windows.Forms.ListViewItemConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.ListViewItemConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.ListViewItemStateImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.ListViewItemStateImageIndexConverter.IncludeNoneAsStandardValue.get -> bool -override System.Windows.Forms.MaskedTextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.MaskedTextBox.CreateHandle() -> void -override System.Windows.Forms.MaskedTextBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.MaskedTextBox.GetCharFromPosition(System.Drawing.Point pt) -> char -override System.Windows.Forms.MaskedTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int -override System.Windows.Forms.MaskedTextBox.GetLineFromCharIndex(int index) -> int -override System.Windows.Forms.MaskedTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point -override System.Windows.Forms.MaskedTextBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.MaskedTextBox.MaxLength.get -> int -override System.Windows.Forms.MaskedTextBox.MaxLength.set -> void -override System.Windows.Forms.MaskedTextBox.Multiline.get -> bool -override System.Windows.Forms.MaskedTextBox.Multiline.set -> void -override System.Windows.Forms.MaskedTextBox.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnMultilineChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void -override System.Windows.Forms.MaskedTextBox.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.MaskedTextBox.ProcessKeyMessage(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.MaskedTextBox.SelectedText.get -> string! -override System.Windows.Forms.MaskedTextBox.SelectedText.set -> void -override System.Windows.Forms.MaskedTextBox.Text.get -> string! -override System.Windows.Forms.MaskedTextBox.Text.set -> void -override System.Windows.Forms.MaskedTextBox.TextLength.get -> int -override System.Windows.Forms.MaskedTextBox.ToString() -> string! -override System.Windows.Forms.MaskedTextBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.MdiClient.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.MdiClient.BackgroundImage.set -> void -override System.Windows.Forms.MdiClient.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.MdiClient.BackgroundImageLayout.set -> void -override System.Windows.Forms.MdiClient.ControlCollection.Add(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.MdiClient.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.MenuStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.MenuStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! -override System.Windows.Forms.MenuStrip.DefaultGripMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.MenuStrip.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.MenuStrip.DefaultShowItemToolTips.get -> bool -override System.Windows.Forms.MenuStrip.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.MenuStrip.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.MenuStrip.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.MonthCalendar.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.MonthCalendar.BackColor.set -> void -override System.Windows.Forms.MonthCalendar.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.MonthCalendar.BackgroundImage.set -> void -override System.Windows.Forms.MonthCalendar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.MonthCalendar.BackgroundImageLayout.set -> void -override System.Windows.Forms.MonthCalendar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.MonthCalendar.CreateHandle() -> void -override System.Windows.Forms.MonthCalendar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.MonthCalendar.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.MonthCalendar.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.MonthCalendar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.MonthCalendar.DoubleBuffered.get -> bool -override System.Windows.Forms.MonthCalendar.DoubleBuffered.set -> void -override System.Windows.Forms.MonthCalendar.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.MonthCalendar.ForeColor.set -> void -override System.Windows.Forms.MonthCalendar.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.MonthCalendar.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnForeColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.MonthCalendar.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.MonthCalendar.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.MonthCalendar.Text.get -> string! -override System.Windows.Forms.MonthCalendar.Text.set -> void -override System.Windows.Forms.MonthCalendar.ToString() -> string! -override System.Windows.Forms.MonthCalendar.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.NumericUpDown.DownButton() -> void -override System.Windows.Forms.NumericUpDown.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.NumericUpDown.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.NumericUpDown.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.NumericUpDown.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void -override System.Windows.Forms.NumericUpDown.Text.get -> string! -override System.Windows.Forms.NumericUpDown.Text.set -> void -override System.Windows.Forms.NumericUpDown.ToString() -> string! -override System.Windows.Forms.NumericUpDown.UpButton() -> void -override System.Windows.Forms.NumericUpDown.UpdateEditText() -> void -override System.Windows.Forms.NumericUpDown.ValidateEditText() -> void -override System.Windows.Forms.OpacityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.OpacityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.OpacityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.OpenFileDialog.CheckFileExists.get -> bool -override System.Windows.Forms.OpenFileDialog.CheckFileExists.set -> void -override System.Windows.Forms.OpenFileDialog.Reset() -> void -override System.Windows.Forms.OSFeature.GetVersionPresent(object! feature) -> System.Version? -override System.Windows.Forms.PageSetupDialog.Reset() -> void -override System.Windows.Forms.Panel.AutoSize.get -> bool -override System.Windows.Forms.Panel.AutoSize.set -> void -override System.Windows.Forms.Panel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.Panel.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Panel.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.Panel.OnResize(System.EventArgs! eventargs) -> void -override System.Windows.Forms.Panel.Text.get -> string! -override System.Windows.Forms.Panel.Text.set -> void -override System.Windows.Forms.Panel.ToString() -> string! -override System.Windows.Forms.PictureBox.AllowDrop.get -> bool -override System.Windows.Forms.PictureBox.AllowDrop.set -> void -override System.Windows.Forms.PictureBox.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.PictureBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.PictureBox.Dispose(bool disposing) -> void -override System.Windows.Forms.PictureBox.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.PictureBox.ForeColor.set -> void -override System.Windows.Forms.PictureBox.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.PictureBox.RightToLeft.set -> void -override System.Windows.Forms.PrintControllerWithStatusDialog.IsPreview.get -> bool -override System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPage(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintPageEventArgs! e) -> void -override System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPrint(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintEventArgs! e) -> void -override System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPage(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintPageEventArgs! e) -> System.Drawing.Graphics? -override System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintEventArgs! e) -> void -override System.Windows.Forms.PrintDialog.Reset() -> void -override System.Windows.Forms.PrintPreviewControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.PrintPreviewControl.OnPaint(System.Windows.Forms.PaintEventArgs! pevent) -> void -override System.Windows.Forms.PrintPreviewControl.OnResize(System.EventArgs! eventargs) -> void -override System.Windows.Forms.PrintPreviewControl.ResetBackColor() -> void -override System.Windows.Forms.PrintPreviewControl.ResetForeColor() -> void -override System.Windows.Forms.PrintPreviewControl.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.PrintPreviewControl.RightToLeft.set -> void -override System.Windows.Forms.PrintPreviewControl.Text.get -> string! -override System.Windows.Forms.PrintPreviewControl.Text.set -> void -override System.Windows.Forms.PrintPreviewControl.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.PrintPreviewDialog.AllowDrop.get -> bool -override System.Windows.Forms.PrintPreviewDialog.AllowDrop.set -> void -override System.Windows.Forms.PrintPreviewDialog.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.PrintPreviewDialog.Anchor.set -> void -override System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize.get -> System.Drawing.Size -override System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize.set -> void -override System.Windows.Forms.PrintPreviewDialog.AutoScroll.get -> bool -override System.Windows.Forms.PrintPreviewDialog.AutoScroll.set -> void -override System.Windows.Forms.PrintPreviewDialog.AutoSize.get -> bool -override System.Windows.Forms.PrintPreviewDialog.AutoSize.set -> void -override System.Windows.Forms.PrintPreviewDialog.AutoValidate.get -> System.Windows.Forms.AutoValidate -override System.Windows.Forms.PrintPreviewDialog.AutoValidate.set -> void -override System.Windows.Forms.PrintPreviewDialog.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.PrintPreviewDialog.BackColor.set -> void -override System.Windows.Forms.PrintPreviewDialog.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.PrintPreviewDialog.BackgroundImage.set -> void -override System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout.set -> void -override System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -override System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip.set -> void -override System.Windows.Forms.PrintPreviewDialog.CreateHandle() -> void -override System.Windows.Forms.PrintPreviewDialog.Cursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.PrintPreviewDialog.Cursor.set -> void -override System.Windows.Forms.PrintPreviewDialog.DefaultMinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.PrintPreviewDialog.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.PrintPreviewDialog.Dock.set -> void -override System.Windows.Forms.PrintPreviewDialog.Font.get -> System.Drawing.Font! -override System.Windows.Forms.PrintPreviewDialog.Font.set -> void -override System.Windows.Forms.PrintPreviewDialog.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.PrintPreviewDialog.ForeColor.set -> void -override System.Windows.Forms.PrintPreviewDialog.OnClosing(System.ComponentModel.CancelEventArgs! e) -> void -override System.Windows.Forms.PrintPreviewDialog.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.PrintPreviewDialog.ProcessTabKey(bool forward) -> bool -override System.Windows.Forms.PrintPreviewDialog.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.PrintPreviewDialog.RightToLeft.set -> void -override System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout.get -> bool -override System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout.set -> void -override System.Windows.Forms.PrintPreviewDialog.Text.get -> string! -override System.Windows.Forms.PrintPreviewDialog.Text.set -> void -override System.Windows.Forms.ProgressBar.AllowDrop.get -> bool -override System.Windows.Forms.ProgressBar.AllowDrop.set -> void -override System.Windows.Forms.ProgressBar.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ProgressBar.BackgroundImage.set -> void -override System.Windows.Forms.ProgressBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ProgressBar.BackgroundImageLayout.set -> void -override System.Windows.Forms.ProgressBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ProgressBar.CreateHandle() -> void -override System.Windows.Forms.ProgressBar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ProgressBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.ProgressBar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ProgressBar.DoubleBuffered.get -> bool -override System.Windows.Forms.ProgressBar.DoubleBuffered.set -> void -override System.Windows.Forms.ProgressBar.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ProgressBar.Font.set -> void -override System.Windows.Forms.ProgressBar.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ProgressBar.OnForeColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ProgressBar.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ProgressBar.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.ProgressBar.ResetForeColor() -> void -override System.Windows.Forms.ProgressBar.Text.get -> string! -override System.Windows.Forms.ProgressBar.Text.set -> void -override System.Windows.Forms.ProgressBar.ToString() -> string! -override System.Windows.Forms.PropertyGrid.AutoScroll.get -> bool -override System.Windows.Forms.PropertyGrid.AutoScroll.set -> void -override System.Windows.Forms.PropertyGrid.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.PropertyGrid.BackColor.set -> void -override System.Windows.Forms.PropertyGrid.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.PropertyGrid.BackgroundImageLayout.set -> void -override System.Windows.Forms.PropertyGrid.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.PropertyGrid.Dispose(bool disposing) -> void -override System.Windows.Forms.PropertyGrid.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.PropertyGrid.ForeColor.set -> void -override System.Windows.Forms.PropertyGrid.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.PropertyGrid.Refresh() -> void -override System.Windows.Forms.PropertyGrid.ScaleCore(float dx, float dy) -> void -override System.Windows.Forms.PropertyGrid.ShowFocusCues.get -> bool -override System.Windows.Forms.PropertyGrid.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetDefaultProperty(object! obj) -> System.ComponentModel.PropertyDescriptor? -override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? -override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? -override System.Windows.Forms.PropertyGridInternal.PropertiesTab.HelpKeyword.get -> string! -override System.Windows.Forms.PropertyGridInternal.PropertiesTab.TabName.get -> string! -override System.Windows.Forms.PropertyManager.AddNew() -> void -override System.Windows.Forms.PropertyManager.CancelCurrentEdit() -> void -override System.Windows.Forms.PropertyManager.Count.get -> int -override System.Windows.Forms.PropertyManager.Current.get -> object? -override System.Windows.Forms.PropertyManager.EndCurrentEdit() -> void -override System.Windows.Forms.PropertyManager.GetListName(System.Collections.ArrayList? listAccessors) -> string! -override System.Windows.Forms.PropertyManager.OnCurrentChanged(System.EventArgs! ea) -> void -override System.Windows.Forms.PropertyManager.OnCurrentItemChanged(System.EventArgs! ea) -> void -override System.Windows.Forms.PropertyManager.Position.get -> int -override System.Windows.Forms.PropertyManager.Position.set -> void -override System.Windows.Forms.PropertyManager.RemoveAt(int index) -> void -override System.Windows.Forms.PropertyManager.ResumeBinding() -> void -override System.Windows.Forms.PropertyManager.SuspendBinding() -> void -override System.Windows.Forms.PropertyManager.UpdateIsBinding() -> void -override System.Windows.Forms.RadioButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.RadioButton.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.RadioButton.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.RadioButton.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.RadioButton.OnEnter(System.EventArgs! e) -> void -override System.Windows.Forms.RadioButton.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.RadioButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.RadioButton.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.KeyboardShortcut.get -> string? -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Name.get -> string? -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.RadioButton.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.RadioButton.TextAlign.get -> System.Drawing.ContentAlignment -override System.Windows.Forms.RadioButton.TextAlign.set -> void -override System.Windows.Forms.RadioButton.ToString() -> string! -override System.Windows.Forms.RichTextBox.AllowDrop.get -> bool -override System.Windows.Forms.RichTextBox.AllowDrop.set -> void -override System.Windows.Forms.RichTextBox.AutoSize.get -> bool -override System.Windows.Forms.RichTextBox.AutoSize.set -> void -override System.Windows.Forms.RichTextBox.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.RichTextBox.BackgroundImage.set -> void -override System.Windows.Forms.RichTextBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.RichTextBox.BackgroundImageLayout.set -> void -override System.Windows.Forms.RichTextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.RichTextBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.RichTextBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.RichTextBox.Font.get -> System.Drawing.Font! -override System.Windows.Forms.RichTextBox.Font.set -> void -override System.Windows.Forms.RichTextBox.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.RichTextBox.ForeColor.set -> void -override System.Windows.Forms.RichTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int -override System.Windows.Forms.RichTextBox.GetLineFromCharIndex(int index) -> int -override System.Windows.Forms.RichTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point -override System.Windows.Forms.RichTextBox.MaxLength.get -> int -override System.Windows.Forms.RichTextBox.MaxLength.set -> void -override System.Windows.Forms.RichTextBox.Multiline.get -> bool -override System.Windows.Forms.RichTextBox.Multiline.set -> void -override System.Windows.Forms.RichTextBox.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.RichTextBox.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.RichTextBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.RichTextBox.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.RichTextBox.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.RichTextBox.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.RichTextBox.SelectedText.get -> string! -override System.Windows.Forms.RichTextBox.SelectedText.set -> void -override System.Windows.Forms.RichTextBox.SelectionLength.get -> int -override System.Windows.Forms.RichTextBox.SelectionLength.set -> void -override System.Windows.Forms.RichTextBox.Text.get -> string! -override System.Windows.Forms.RichTextBox.Text.set -> void -override System.Windows.Forms.RichTextBox.TextLength.get -> int -override System.Windows.Forms.RichTextBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.SaveFileDialog.Reset() -> void -override System.Windows.Forms.Screen.Equals(object? obj) -> bool -override System.Windows.Forms.Screen.GetHashCode() -> int -override System.Windows.Forms.Screen.ToString() -> string! -override System.Windows.Forms.ScrollableControl.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ScrollableControl.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.ScrollableControl.DockPaddingEdges.Equals(object? other) -> bool -override System.Windows.Forms.ScrollableControl.DockPaddingEdges.GetHashCode() -> int -override System.Windows.Forms.ScrollableControl.DockPaddingEdges.ToString() -> string! -override System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! -override System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.ScrollableControl.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void -override System.Windows.Forms.ScrollableControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ScrollableControl.OnPaddingChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ScrollableControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ScrollableControl.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ScrollableControl.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ScrollableControl.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ScrollableControl.ScaleCore(float dx, float dy) -> void -override System.Windows.Forms.ScrollableControl.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ScrollBar.AutoSize.get -> bool -override System.Windows.Forms.ScrollBar.AutoSize.set -> void -override System.Windows.Forms.ScrollBar.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ScrollBar.BackColor.set -> void -override System.Windows.Forms.ScrollBar.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ScrollBar.BackgroundImage.set -> void -override System.Windows.Forms.ScrollBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ScrollBar.BackgroundImageLayout.set -> void -override System.Windows.Forms.ScrollBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ScrollBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.ScrollBar.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ScrollBar.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ScrollBar.Font.set -> void -override System.Windows.Forms.ScrollBar.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.ScrollBar.ForeColor.set -> void -override System.Windows.Forms.ScrollBar.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle -override System.Windows.Forms.ScrollBar.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ScrollBar.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ScrollBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ScrollBar.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ScrollBar.Text.get -> string! -override System.Windows.Forms.ScrollBar.Text.set -> void -override System.Windows.Forms.ScrollBar.ToString() -> string! -override System.Windows.Forms.ScrollBar.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.SelectionRange.ToString() -> string! -override System.Windows.Forms.SelectionRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool -override System.Windows.Forms.SelectionRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.SelectionRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.SelectionRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.SelectionRangeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! -override System.Windows.Forms.SelectionRangeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.SelectionRangeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! -override System.Windows.Forms.SelectionRangeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -override System.Windows.Forms.SplitContainer.AutoScroll.get -> bool -override System.Windows.Forms.SplitContainer.AutoScroll.set -> void -override System.Windows.Forms.SplitContainer.AutoScrollOffset.get -> System.Drawing.Point -override System.Windows.Forms.SplitContainer.AutoScrollOffset.set -> void -override System.Windows.Forms.SplitContainer.AutoSize.get -> bool -override System.Windows.Forms.SplitContainer.AutoSize.set -> void -override System.Windows.Forms.SplitContainer.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.SplitContainer.BackgroundImage.set -> void -override System.Windows.Forms.SplitContainer.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.SplitContainer.BackgroundImageLayout.set -> void -override System.Windows.Forms.SplitContainer.BindingContext.get -> System.Windows.Forms.BindingContext? -override System.Windows.Forms.SplitContainer.BindingContext.set -> void -override System.Windows.Forms.SplitContainer.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.SplitContainer.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.SplitContainer.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.SplitContainer.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMouseCaptureChanged(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnMove(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.SplitContainer.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.SplitContainer.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.SplitContainer.ProcessTabKey(bool forward) -> bool -override System.Windows.Forms.SplitContainer.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.SplitContainer.Select(bool directed, bool forward) -> void -override System.Windows.Forms.SplitContainer.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.SplitContainer.Text.get -> string! -override System.Windows.Forms.SplitContainer.Text.set -> void -override System.Windows.Forms.SplitContainer.WndProc(ref System.Windows.Forms.Message msg) -> void -override System.Windows.Forms.Splitter.AllowDrop.get -> bool -override System.Windows.Forms.Splitter.AllowDrop.set -> void -override System.Windows.Forms.Splitter.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.Splitter.Anchor.set -> void -override System.Windows.Forms.Splitter.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.Splitter.BackgroundImage.set -> void -override System.Windows.Forms.Splitter.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.Splitter.BackgroundImageLayout.set -> void -override System.Windows.Forms.Splitter.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.Splitter.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.Splitter.DefaultCursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.Splitter.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.Splitter.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.Splitter.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.Splitter.Dock.set -> void -override System.Windows.Forms.Splitter.Font.get -> System.Drawing.Font! -override System.Windows.Forms.Splitter.Font.set -> void -override System.Windows.Forms.Splitter.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.Splitter.ForeColor.set -> void -override System.Windows.Forms.Splitter.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.Splitter.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.Splitter.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.Splitter.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.Splitter.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.Splitter.Text.get -> string! -override System.Windows.Forms.Splitter.Text.set -> void -override System.Windows.Forms.Splitter.ToString() -> string! -override System.Windows.Forms.SplitterPanel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -override System.Windows.Forms.SplitterPanel.AutoSizeMode.set -> void -override System.Windows.Forms.StatusStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.StatusStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! -override System.Windows.Forms.StatusStrip.DefaultDock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.StatusStrip.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.StatusStrip.DefaultShowItemToolTips.get -> bool -override System.Windows.Forms.StatusStrip.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.StatusStrip.Dispose(bool disposing) -> void -override System.Windows.Forms.StatusStrip.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.StatusStrip.Dock.set -> void -override System.Windows.Forms.StatusStrip.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void -override System.Windows.Forms.StatusStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.StatusStrip.SetDisplayedItems() -> void -override System.Windows.Forms.StatusStrip.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.TabControl.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.TabControl.BackColor.set -> void -override System.Windows.Forms.TabControl.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.TabControl.BackgroundImage.set -> void -override System.Windows.Forms.TabControl.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.TabControl.BackgroundImageLayout.set -> void -override System.Windows.Forms.TabControl.ControlCollection.Add(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.TabControl.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.TabControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.TabControl.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.TabControl.CreateHandle() -> void -override System.Windows.Forms.TabControl.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.TabControl.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.TabControl.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.TabControl.Dispose(bool disposing) -> void -override System.Windows.Forms.TabControl.DoubleBuffered.get -> bool -override System.Windows.Forms.TabControl.DoubleBuffered.set -> void -override System.Windows.Forms.TabControl.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.TabControl.ForeColor.set -> void -override System.Windows.Forms.TabControl.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.TabControl.OnEnter(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnKeyDown(System.Windows.Forms.KeyEventArgs! ke) -> void -override System.Windows.Forms.TabControl.OnLeave(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.OnStyleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TabControl.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool -override System.Windows.Forms.TabControl.ScaleCore(float dx, float dy) -> void -override System.Windows.Forms.TabControl.Text.get -> string! -override System.Windows.Forms.TabControl.Text.set -> void -override System.Windows.Forms.TabControl.ToString() -> string! -override System.Windows.Forms.TabControl.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.TableLayoutPanel.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.TableLayoutPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.TableLayoutPanel.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void -override System.Windows.Forms.TableLayoutPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.TableLayoutPanel.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.TableLayoutPanel.ScaleCore(float dx, float dy) -> void -override System.Windows.Forms.TableLayoutPanelCellPosition.Equals(object? other) -> bool -override System.Windows.Forms.TableLayoutPanelCellPosition.GetHashCode() -> int -override System.Windows.Forms.TableLayoutPanelCellPosition.ToString() -> string! -override System.Windows.Forms.TableLayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.TabPage.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.TabPage.Anchor.set -> void -override System.Windows.Forms.TabPage.AutoSize.get -> bool -override System.Windows.Forms.TabPage.AutoSize.set -> void -override System.Windows.Forms.TabPage.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -override System.Windows.Forms.TabPage.AutoSizeMode.set -> void -override System.Windows.Forms.TabPage.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.TabPage.BackColor.set -> void -override System.Windows.Forms.TabPage.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.TabPage.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.TabPage.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.TabPage.Dock.set -> void -override System.Windows.Forms.TabPage.MaximumSize.get -> System.Drawing.Size -override System.Windows.Forms.TabPage.MaximumSize.set -> void -override System.Windows.Forms.TabPage.MinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.TabPage.MinimumSize.set -> void -override System.Windows.Forms.TabPage.OnEnter(System.EventArgs! e) -> void -override System.Windows.Forms.TabPage.OnLeave(System.EventArgs! e) -> void -override System.Windows.Forms.TabPage.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.TabPage.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.TabPage.TabPageControlCollection.Add(System.Windows.Forms.Control? value) -> void -override System.Windows.Forms.TabPage.Text.get -> string! -override System.Windows.Forms.TabPage.Text.set -> void -override System.Windows.Forms.TabPage.ToString() -> string! -override System.Windows.Forms.TaskDialogButton.Equals(object? obj) -> bool -override System.Windows.Forms.TaskDialogButton.GetHashCode() -> int -override System.Windows.Forms.TaskDialogButton.ToString() -> string! -override System.Windows.Forms.TaskDialogButtonCollection.ClearItems() -> void -override System.Windows.Forms.TaskDialogButtonCollection.InsertItem(int index, System.Windows.Forms.TaskDialogButton! item) -> void -override System.Windows.Forms.TaskDialogButtonCollection.RemoveItem(int index) -> void -override System.Windows.Forms.TaskDialogButtonCollection.SetItem(int index, System.Windows.Forms.TaskDialogButton! item) -> void -override System.Windows.Forms.TaskDialogExpander.ToString() -> string! -override System.Windows.Forms.TaskDialogFootnote.ToString() -> string! -override System.Windows.Forms.TaskDialogRadioButton.ToString() -> string! -override System.Windows.Forms.TaskDialogRadioButtonCollection.ClearItems() -> void -override System.Windows.Forms.TaskDialogRadioButtonCollection.InsertItem(int index, System.Windows.Forms.TaskDialogRadioButton! item) -> void -override System.Windows.Forms.TaskDialogRadioButtonCollection.RemoveItem(int index) -> void -override System.Windows.Forms.TaskDialogRadioButtonCollection.SetItem(int index, System.Windows.Forms.TaskDialogRadioButton! item) -> void -override System.Windows.Forms.TaskDialogVerificationCheckBox.ToString() -> string! -override System.Windows.Forms.TextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.TextBox.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.TextBox.Dispose(bool disposing) -> void -override System.Windows.Forms.TextBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.TextBox.Multiline.get -> bool -override System.Windows.Forms.TextBox.Multiline.set -> void -override System.Windows.Forms.TextBox.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TextBox.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TextBox.OnGotFocus(System.EventArgs! e) -> void -override System.Windows.Forms.TextBox.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.TextBox.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.TextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -override System.Windows.Forms.TextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.TextBox.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.TextBox.Text.get -> string! -override System.Windows.Forms.TextBox.Text.set -> void -override System.Windows.Forms.TextBox.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.TextBoxBase.AutoSize.get -> bool -override System.Windows.Forms.TextBoxBase.AutoSize.set -> void -override System.Windows.Forms.TextBoxBase.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.TextBoxBase.BackColor.set -> void -override System.Windows.Forms.TextBoxBase.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.TextBoxBase.BackgroundImage.set -> void -override System.Windows.Forms.TextBoxBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.TextBoxBase.BackgroundImageLayout.set -> void -override System.Windows.Forms.TextBoxBase.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.TextBoxBase.ForeColor.set -> void -override System.Windows.Forms.TextBoxBase.Text.get -> string! -override System.Windows.Forms.TextBoxBase.Text.set -> void -override System.Windows.Forms.TextBoxBase.ToString() -> string! -override System.Windows.Forms.ThreadExceptionDialog.AutoSize.get -> bool -override System.Windows.Forms.ThreadExceptionDialog.AutoSize.set -> void -override System.Windows.Forms.Timer.Dispose(bool disposing) -> void -override System.Windows.Forms.Timer.ToString() -> string! -override System.Windows.Forms.ToolStrip.AllowDrop.get -> bool -override System.Windows.Forms.ToolStrip.AllowDrop.set -> void -override System.Windows.Forms.ToolStrip.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.ToolStrip.Anchor.set -> void -override System.Windows.Forms.ToolStrip.AutoScroll.get -> bool -override System.Windows.Forms.ToolStrip.AutoScroll.set -> void -override System.Windows.Forms.ToolStrip.AutoSize.get -> bool -override System.Windows.Forms.ToolStrip.AutoSize.set -> void -override System.Windows.Forms.ToolStrip.BindingContext.get -> System.Windows.Forms.BindingContext? -override System.Windows.Forms.ToolStrip.BindingContext.set -> void -override System.Windows.Forms.ToolStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStrip.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.ToolStrip.Cursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.ToolStrip.Cursor.set -> void -override System.Windows.Forms.ToolStrip.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStrip.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStrip.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStrip.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.ToolStrip.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStrip.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.ToolStrip.Dock.set -> void -override System.Windows.Forms.ToolStrip.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ToolStrip.Font.set -> void -override System.Windows.Forms.ToolStrip.IsInputChar(char charCode) -> bool -override System.Windows.Forms.ToolStrip.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStrip.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.ToolStrip.OnDockChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnEnabledChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnLostFocus(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnMouseCaptureChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnMouseDown(System.Windows.Forms.MouseEventArgs! mea) -> void -override System.Windows.Forms.ToolStrip.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnMouseMove(System.Windows.Forms.MouseEventArgs! mea) -> void -override System.Windows.Forms.ToolStrip.OnMouseUp(System.Windows.Forms.MouseEventArgs! mea) -> void -override System.Windows.Forms.ToolStrip.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void -override System.Windows.Forms.ToolStrip.OnTabStopChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStrip.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStrip.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStrip.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStrip.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.ToolStrip.Select(bool directed, bool forward) -> void -override System.Windows.Forms.ToolStrip.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ToolStrip.SetVisibleCore(bool visible) -> void -override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.ToolStrip.ToString() -> string! -override System.Windows.Forms.ToolStrip.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ToolStripButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripButton.DefaultAutoToolTip.get -> bool -override System.Windows.Forms.ToolStripButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripButton.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripButton.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripComboBox.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripComboBox.BackgroundImage.set -> void -override System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripComboBox.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripComboBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripComboBox.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolStripComboBox.ToString() -> string! -override System.Windows.Forms.ToolStripContainer.AutoScroll.get -> bool -override System.Windows.Forms.ToolStripContainer.AutoScroll.set -> void -override System.Windows.Forms.ToolStripContainer.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripContainer.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripContainer.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripContainer.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.ToolStripContainer.Cursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.ToolStripContainer.Cursor.set -> void -override System.Windows.Forms.ToolStripContainer.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripContainer.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripContainer.OnSizeChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripContentPanel.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.ToolStripContentPanel.Anchor.set -> void -override System.Windows.Forms.ToolStripContentPanel.AutoScroll.get -> bool -override System.Windows.Forms.ToolStripContentPanel.AutoScroll.set -> void -override System.Windows.Forms.ToolStripContentPanel.AutoSize.get -> bool -override System.Windows.Forms.ToolStripContentPanel.AutoSize.set -> void -override System.Windows.Forms.ToolStripContentPanel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -override System.Windows.Forms.ToolStripContentPanel.AutoSizeMode.set -> void -override System.Windows.Forms.ToolStripContentPanel.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ToolStripContentPanel.BackColor.set -> void -override System.Windows.Forms.ToolStripContentPanel.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.ToolStripContentPanel.Dock.set -> void -override System.Windows.Forms.ToolStripContentPanel.MaximumSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripContentPanel.MaximumSize.set -> void -override System.Windows.Forms.ToolStripContentPanel.MinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripContentPanel.MinimumSize.set -> void -override System.Windows.Forms.ToolStripContentPanel.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripContentPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripControlHost.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.ToolStripControlHost.BackColor.set -> void -override System.Windows.Forms.ToolStripControlHost.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripControlHost.BackgroundImage.set -> void -override System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripControlHost.CanSelect.get -> bool -override System.Windows.Forms.ToolStripControlHost.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripControlHost.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripControlHost.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripControlHost.Enabled.get -> bool -override System.Windows.Forms.ToolStripControlHost.Enabled.set -> void -override System.Windows.Forms.ToolStripControlHost.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ToolStripControlHost.Font.set -> void -override System.Windows.Forms.ToolStripControlHost.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.ToolStripControlHost.ForeColor.set -> void -override System.Windows.Forms.ToolStripControlHost.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripControlHost.Image.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripControlHost.Image.set -> void -override System.Windows.Forms.ToolStripControlHost.OnBoundsChanged() -> void -override System.Windows.Forms.ToolStripControlHost.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStripControlHost.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripControlHost.OnParentChanged(System.Windows.Forms.ToolStrip? oldParent, System.Windows.Forms.ToolStrip? newParent) -> void -override System.Windows.Forms.ToolStripControlHost.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripControlHost.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripControlHost.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripControlHost.ResetBackColor() -> void -override System.Windows.Forms.ToolStripControlHost.ResetForeColor() -> void -override System.Windows.Forms.ToolStripControlHost.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.ToolStripControlHost.RightToLeft.set -> void -override System.Windows.Forms.ToolStripControlHost.Selected.get -> bool -override System.Windows.Forms.ToolStripControlHost.SetVisibleCore(bool visible) -> void -override System.Windows.Forms.ToolStripControlHost.Site.get -> System.ComponentModel.ISite? -override System.Windows.Forms.ToolStripControlHost.Site.set -> void -override System.Windows.Forms.ToolStripControlHost.Size.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripControlHost.Size.set -> void -override System.Windows.Forms.ToolStripControlHost.Text.get -> string! -override System.Windows.Forms.ToolStripControlHost.Text.set -> void -override System.Windows.Forms.ToolStripControlHost.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -override System.Windows.Forms.ToolStripControlHost.TextDirection.set -> void -override System.Windows.Forms.ToolStripDropDown.Anchor.get -> System.Windows.Forms.AnchorStyles -override System.Windows.Forms.ToolStripDropDown.Anchor.set -> void -override System.Windows.Forms.ToolStripDropDown.AutoSize.get -> bool -override System.Windows.Forms.ToolStripDropDown.AutoSize.set -> void -override System.Windows.Forms.ToolStripDropDown.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripDropDown.CreateHandle() -> void -override System.Windows.Forms.ToolStripDropDown.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle style) -> System.Windows.Forms.LayoutSettings? -override System.Windows.Forms.ToolStripDropDown.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.ToolStripDropDown.DefaultDock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection -override System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection.set -> void -override System.Windows.Forms.ToolStripDropDown.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripDropDown.DefaultShowItemToolTips.get -> bool -override System.Windows.Forms.ToolStripDropDown.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripDropDown.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.ToolStripDropDown.Dock.set -> void -override System.Windows.Forms.ToolStripDropDown.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ToolStripDropDown.Font.set -> void -override System.Windows.Forms.ToolStripDropDown.MaxItemSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripDropDown.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDown.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDown.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDown.OnMouseUp(System.Windows.Forms.MouseEventArgs! mea) -> void -override System.Windows.Forms.ToolStripDropDown.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDown.OnVisibleChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDown.ProcessDialogChar(char charCode) -> bool -override System.Windows.Forms.ToolStripDropDown.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripDropDown.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripDropDown.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.ToolStripDropDown.RightToLeft.set -> void -override System.Windows.Forms.ToolStripDropDown.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ToolStripDropDown.ScaleCore(float dx, float dy) -> void -override System.Windows.Forms.ToolStripDropDown.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.ToolStripDropDown.SetVisibleCore(bool visible) -> void -override System.Windows.Forms.ToolStripDropDown.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -override System.Windows.Forms.ToolStripDropDown.TextDirection.set -> void -override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name.get -> string? -override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name.set -> void -override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.ToolStripDropDown.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.ToolStripDropDownButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripDropDownButton.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! -override System.Windows.Forms.ToolStripDropDownButton.DefaultAutoToolTip.get -> bool -override System.Windows.Forms.ToolStripDropDownButton.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownButton.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownButton.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripDropDownItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripDropDownItem.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripDropDownItem.OnBoundsChanged() -> void -override System.Windows.Forms.ToolStripDropDownItem.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownItem.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownItem.Pressed.get -> bool -override System.Windows.Forms.ToolStripDropDownItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChildCount() -> int -override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.ToolStripDropDownMenu.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripDropDownMenu.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! -override System.Windows.Forms.ToolStripDropDownMenu.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripDropDownMenu.DisplayRectangle.get -> System.Drawing.Rectangle -override System.Windows.Forms.ToolStripDropDownMenu.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.ToolStripDropDownMenu.MaxItemSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripDropDownMenu.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownMenu.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownMenu.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripDropDownMenu.SetDisplayedItems() -> void -override System.Windows.Forms.ToolStripItem.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Bounds.get -> System.Drawing.Rectangle -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DefaultAction.get -> string! -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Description.get -> string? -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.GetHelpTopic(out string? fileName) -> int -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Help.get -> string? -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.KeyboardShortcut.get -> string! -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name.get -> string? -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name.set -> void -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToString() -> string! -override System.Windows.Forms.ToolStripItem.ToString() -> string! -override System.Windows.Forms.ToolStripItemCollection.IsReadOnly.get -> bool -override System.Windows.Forms.ToolStripLabel.CanSelect.get -> bool -override System.Windows.Forms.ToolStripLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripLabel.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripLabel.OnMouseEnter(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripLabel.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripLabel.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripMenuItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripMenuItem.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! -override System.Windows.Forms.ToolStripMenuItem.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripMenuItem.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripMenuItem.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripMenuItem.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripMenuItem.Enabled.get -> bool -override System.Windows.Forms.ToolStripMenuItem.Enabled.set -> void -override System.Windows.Forms.ToolStripMenuItem.OnClick(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnDropDownHide(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnDropDownShow(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnMouseEnter(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnOwnerChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripMenuItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripMenuItem.SetBounds(System.Drawing.Rectangle rect) -> void -override System.Windows.Forms.ToolStripOverflow.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripOverflow.DisplayedItems.get -> System.Windows.Forms.ToolStripItemCollection! -override System.Windows.Forms.ToolStripOverflow.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripOverflow.Items.get -> System.Windows.Forms.ToolStripItemCollection! -override System.Windows.Forms.ToolStripOverflow.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.ToolStripOverflow.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStripOverflow.SetDisplayedItems() -> void -override System.Windows.Forms.ToolStripOverflowButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripOverflowButton.HasDropDownItems.get -> bool -override System.Windows.Forms.ToolStripPanel.AllowDrop.get -> bool -override System.Windows.Forms.ToolStripPanel.AllowDrop.set -> void -override System.Windows.Forms.ToolStripPanel.AutoScroll.get -> bool -override System.Windows.Forms.ToolStripPanel.AutoScroll.set -> void -override System.Windows.Forms.ToolStripPanel.AutoSize.get -> bool -override System.Windows.Forms.ToolStripPanel.AutoSize.set -> void -override System.Windows.Forms.ToolStripPanel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripPanel.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -override System.Windows.Forms.ToolStripPanel.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripPanel.DefaultPadding.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripPanel.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripPanel.Dock.get -> System.Windows.Forms.DockStyle -override System.Windows.Forms.ToolStripPanel.Dock.set -> void -override System.Windows.Forms.ToolStripPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -override System.Windows.Forms.ToolStripPanel.OnControlAdded(System.Windows.Forms.ControlEventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnControlRemoved(System.Windows.Forms.ControlEventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnDockChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnParentChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripPanel.Text.get -> string! -override System.Windows.Forms.ToolStripPanel.Text.set -> void -override System.Windows.Forms.ToolStripPanelRow.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripProgressBar.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripProgressBar.BackgroundImage.set -> void -override System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripProgressBar.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripProgressBar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripProgressBar.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolStripProgressBar.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolStripProgressBar.Text.get -> string! -override System.Windows.Forms.ToolStripProgressBar.Text.set -> void -override System.Windows.Forms.ToolStripSeparator.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripSeparator.BackgroundImage.set -> void -override System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripSeparator.CanSelect.get -> bool -override System.Windows.Forms.ToolStripSeparator.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripSeparator.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripSeparator.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripSeparator.Enabled.get -> bool -override System.Windows.Forms.ToolStripSeparator.Enabled.set -> void -override System.Windows.Forms.ToolStripSeparator.Font.get -> System.Drawing.Font! -override System.Windows.Forms.ToolStripSeparator.Font.set -> void -override System.Windows.Forms.ToolStripSeparator.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripSeparator.Image.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripSeparator.Image.set -> void -override System.Windows.Forms.ToolStripSeparator.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripSeparator.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripSeparator.SetBounds(System.Drawing.Rectangle rect) -> void -override System.Windows.Forms.ToolStripSeparator.Text.get -> string? -override System.Windows.Forms.ToolStripSeparator.Text.set -> void -override System.Windows.Forms.ToolStripSeparator.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -override System.Windows.Forms.ToolStripSeparator.TextDirection.set -> void -override System.Windows.Forms.ToolStripSplitButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripSplitButton.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! -override System.Windows.Forms.ToolStripSplitButton.DefaultAutoToolTip.get -> bool -override System.Windows.Forms.ToolStripSplitButton.DismissWhenClicked.get -> bool -override System.Windows.Forms.ToolStripSplitButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripSplitButton.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripSplitButton.OnMouseLeave(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripSplitButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.ToolStripSplitButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripSplitButton.OnRightToLeftChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripSplitButton.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.ToolStripSplitButton.ProcessMnemonic(char charCode) -> bool -override System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.DoDefaultAction() -> void -override System.Windows.Forms.ToolStripStatusLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.ToolStripStatusLabel.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripStatusLabel.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripStatusLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.ToolStripStatusLabel.OnTextChanged(System.EventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -override System.Windows.Forms.ToolStripTextBox.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.ToolStripTextBox.BackgroundImage.set -> void -override System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout.set -> void -override System.Windows.Forms.ToolStripTextBox.DefaultMargin.get -> System.Windows.Forms.Padding -override System.Windows.Forms.ToolStripTextBox.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.ToolStripTextBox.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -override System.Windows.Forms.ToolStripTextBox.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolStripTextBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void -override System.Windows.Forms.ToolTip.Dispose(bool disposing) -> void -override System.Windows.Forms.ToolTip.ToString() -> string! -override System.Windows.Forms.TrackBar.AutoSize.get -> bool -override System.Windows.Forms.TrackBar.AutoSize.set -> void -override System.Windows.Forms.TrackBar.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.TrackBar.BackgroundImage.set -> void -override System.Windows.Forms.TrackBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.TrackBar.BackgroundImageLayout.set -> void -override System.Windows.Forms.TrackBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.TrackBar.CreateHandle() -> void -override System.Windows.Forms.TrackBar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.TrackBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode -override System.Windows.Forms.TrackBar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.TrackBar.DoubleBuffered.get -> bool -override System.Windows.Forms.TrackBar.DoubleBuffered.set -> void -override System.Windows.Forms.TrackBar.Font.get -> System.Drawing.Font! -override System.Windows.Forms.TrackBar.Font.set -> void -override System.Windows.Forms.TrackBar.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.TrackBar.ForeColor.set -> void -override System.Windows.Forms.TrackBar.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.TrackBar.OnBackColorChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TrackBar.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.TrackBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.TrackBar.OnSystemColorsChanged(System.EventArgs! e) -> void -override System.Windows.Forms.TrackBar.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -override System.Windows.Forms.TrackBar.Text.get -> string! -override System.Windows.Forms.TrackBar.Text.set -> void -override System.Windows.Forms.TrackBar.ToString() -> string! -override System.Windows.Forms.TrackBar.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.TreeNodeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool -override System.Windows.Forms.TreeNodeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.TreeView.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.TreeView.BackColor.set -> void -override System.Windows.Forms.TreeView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.TreeView.BackgroundImageLayout.set -> void -override System.Windows.Forms.TreeView.CreateHandle() -> void -override System.Windows.Forms.TreeView.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.TreeView.Dispose(bool disposing) -> void -override System.Windows.Forms.TreeView.DoubleBuffered.get -> bool -override System.Windows.Forms.TreeView.DoubleBuffered.set -> void -override System.Windows.Forms.TreeView.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.TreeView.ForeColor.set -> void -override System.Windows.Forms.TreeView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -override System.Windows.Forms.TreeView.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.TreeViewImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? -override System.Windows.Forms.TreeViewImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.TreeViewImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! -override System.Windows.Forms.TreeViewImageIndexConverter.IncludeNoneAsStandardValue.get -> bool -override System.Windows.Forms.TreeViewImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? -override System.Windows.Forms.UpDownBase.AutoScroll.get -> bool -override System.Windows.Forms.UpDownBase.AutoScroll.set -> void -override System.Windows.Forms.UpDownBase.AutoSize.get -> bool -override System.Windows.Forms.UpDownBase.AutoSize.set -> void -override System.Windows.Forms.UpDownBase.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.UpDownBase.BackColor.set -> void -override System.Windows.Forms.UpDownBase.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.UpDownBase.BackgroundImage.set -> void -override System.Windows.Forms.UpDownBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.UpDownBase.BackgroundImageLayout.set -> void -override System.Windows.Forms.UpDownBase.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -override System.Windows.Forms.UpDownBase.ContextMenuStrip.set -> void -override System.Windows.Forms.UpDownBase.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.UpDownBase.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.UpDownBase.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.UpDownBase.Focused.get -> bool -override System.Windows.Forms.UpDownBase.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.UpDownBase.ForeColor.set -> void -override System.Windows.Forms.UpDownBase.MaximumSize.get -> System.Drawing.Size -override System.Windows.Forms.UpDownBase.MaximumSize.set -> void -override System.Windows.Forms.UpDownBase.MinimumSize.get -> System.Drawing.Size -override System.Windows.Forms.UpDownBase.MinimumSize.set -> void -override System.Windows.Forms.UpDownBase.OnFontChanged(System.EventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnHandleCreated(System.EventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnHandleDestroyed(System.EventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void -override System.Windows.Forms.UpDownBase.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.UpDownBase.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -override System.Windows.Forms.UpDownBase.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -override System.Windows.Forms.UpDownBase.Text.get -> string! -override System.Windows.Forms.UpDownBase.Text.set -> void -override System.Windows.Forms.UpDownBase.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.UserControl.AutoSize.get -> bool -override System.Windows.Forms.UserControl.AutoSize.set -> void -override System.Windows.Forms.UserControl.AutoValidate.get -> System.Windows.Forms.AutoValidate -override System.Windows.Forms.UserControl.AutoValidate.set -> void -override System.Windows.Forms.UserControl.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.UserControl.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.UserControl.OnCreateControl() -> void -override System.Windows.Forms.UserControl.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -override System.Windows.Forms.UserControl.OnResize(System.EventArgs! e) -> void -override System.Windows.Forms.UserControl.Text.get -> string! -override System.Windows.Forms.UserControl.Text.set -> void -override System.Windows.Forms.UserControl.ValidateChildren() -> bool -override System.Windows.Forms.UserControl.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool -override System.Windows.Forms.UserControl.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.VScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! -override System.Windows.Forms.VScrollBar.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.VScrollBar.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.VScrollBar.RightToLeft.set -> void -override System.Windows.Forms.WebBrowser.AttachInterfaces(object! nativeActiveXObject) -> void -override System.Windows.Forms.WebBrowser.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -override System.Windows.Forms.WebBrowser.CreateSink() -> void -override System.Windows.Forms.WebBrowser.CreateWebBrowserSiteBase() -> System.Windows.Forms.WebBrowserSiteBase! -override System.Windows.Forms.WebBrowser.DefaultSize.get -> System.Drawing.Size -override System.Windows.Forms.WebBrowser.DetachInterfaces() -> void -override System.Windows.Forms.WebBrowser.DetachSink() -> void -override System.Windows.Forms.WebBrowser.Dispose(bool disposing) -> void -override System.Windows.Forms.WebBrowser.Focused.get -> bool -override System.Windows.Forms.WebBrowser.Refresh() -> void -override System.Windows.Forms.WebBrowser.WndProc(ref System.Windows.Forms.Message m) -> void -override System.Windows.Forms.WebBrowserBase.AllowDrop.get -> bool -override System.Windows.Forms.WebBrowserBase.AllowDrop.set -> void -override System.Windows.Forms.WebBrowserBase.BackColor.get -> System.Drawing.Color -override System.Windows.Forms.WebBrowserBase.BackColor.set -> void -override System.Windows.Forms.WebBrowserBase.BackgroundImage.get -> System.Drawing.Image? -override System.Windows.Forms.WebBrowserBase.BackgroundImage.set -> void -override System.Windows.Forms.WebBrowserBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -override System.Windows.Forms.WebBrowserBase.BackgroundImageLayout.set -> void -override System.Windows.Forms.WebBrowserBase.Cursor.get -> System.Windows.Forms.Cursor! -override System.Windows.Forms.WebBrowserBase.Cursor.set -> void -override System.Windows.Forms.WebBrowserBase.Font.get -> System.Drawing.Font! -override System.Windows.Forms.WebBrowserBase.Font.set -> void -override System.Windows.Forms.WebBrowserBase.ForeColor.get -> System.Drawing.Color -override System.Windows.Forms.WebBrowserBase.ForeColor.set -> void -override System.Windows.Forms.WebBrowserBase.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool -override System.Windows.Forms.WebBrowserBase.RightToLeft.get -> System.Windows.Forms.RightToLeft -override System.Windows.Forms.WebBrowserBase.RightToLeft.set -> void -override System.Windows.Forms.WebBrowserBase.Site.set -> void -override System.Windows.Forms.WebBrowserBase.Text.get -> string! -override System.Windows.Forms.WebBrowserBase.Text.set -> void -override System.Windows.Forms.WindowsFormsSynchronizationContext.CreateCopy() -> System.Threading.SynchronizationContext! -override System.Windows.Forms.WindowsFormsSynchronizationContext.Post(System.Threading.SendOrPostCallback! d, object? state) -> void -override System.Windows.Forms.WindowsFormsSynchronizationContext.Send(System.Threading.SendOrPostCallback! d, object? state) -> void -static readonly System.Resources.ResXResourceWriter.BinSerializedObjectMimeType -> string! -static readonly System.Resources.ResXResourceWriter.ByteArraySerializedObjectMimeType -> string! -static readonly System.Resources.ResXResourceWriter.DefaultSerializedObjectMimeType -> string! -static readonly System.Resources.ResXResourceWriter.ResMimeType -> string! -static readonly System.Resources.ResXResourceWriter.ResourceSchema -> string! -static readonly System.Resources.ResXResourceWriter.SoapSerializedObjectMimeType -> string! -static readonly System.Resources.ResXResourceWriter.Version -> string! -static readonly System.Windows.Forms.DataFormats.Bitmap -> string! -static readonly System.Windows.Forms.DataFormats.CommaSeparatedValue -> string! -static readonly System.Windows.Forms.DataFormats.Dib -> string! -static readonly System.Windows.Forms.DataFormats.Dif -> string! -static readonly System.Windows.Forms.DataFormats.EnhancedMetafile -> string! -static readonly System.Windows.Forms.DataFormats.FileDrop -> string! -static readonly System.Windows.Forms.DataFormats.Html -> string! -static readonly System.Windows.Forms.DataFormats.Locale -> string! -static readonly System.Windows.Forms.DataFormats.MetafilePict -> string! -static readonly System.Windows.Forms.DataFormats.OemText -> string! -static readonly System.Windows.Forms.DataFormats.Palette -> string! -static readonly System.Windows.Forms.DataFormats.PenData -> string! -static readonly System.Windows.Forms.DataFormats.Riff -> string! -static readonly System.Windows.Forms.DataFormats.Rtf -> string! -static readonly System.Windows.Forms.DataFormats.Serializable -> string! -static readonly System.Windows.Forms.DataFormats.StringFormat -> string! -static readonly System.Windows.Forms.DataFormats.SymbolicLink -> string! -static readonly System.Windows.Forms.DataFormats.Text -> string! -static readonly System.Windows.Forms.DataFormats.Tiff -> string! -static readonly System.Windows.Forms.DataFormats.UnicodeText -> string! -static readonly System.Windows.Forms.DataFormats.WaveAudio -> string! -static readonly System.Windows.Forms.DataGridView.HitTestInfo.Nowhere -> System.Windows.Forms.DataGridView.HitTestInfo! -static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! -static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.No -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! -static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Yes -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! -static readonly System.Windows.Forms.DateTimePicker.DefaultMonthBackColor -> System.Drawing.Color -static readonly System.Windows.Forms.DateTimePicker.DefaultTitleBackColor -> System.Drawing.Color -static readonly System.Windows.Forms.DateTimePicker.DefaultTitleForeColor -> System.Drawing.Color -static readonly System.Windows.Forms.DateTimePicker.DefaultTrailingForeColor -> System.Drawing.Color -static readonly System.Windows.Forms.DateTimePicker.MaxDateTime -> System.DateTime -static readonly System.Windows.Forms.DateTimePicker.MinDateTime -> System.DateTime -static readonly System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Default -> System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute! -static readonly System.Windows.Forms.DockingAttribute.Default -> System.Windows.Forms.DockingAttribute! -static readonly System.Windows.Forms.FontDialog.EventApply -> object! -static readonly System.Windows.Forms.OSFeature.LayeredWindows -> object! -static readonly System.Windows.Forms.OSFeature.Themes -> object! -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Commands -> System.ComponentModel.Design.CommandID! -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Description -> System.ComponentModel.Design.CommandID! -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Hide -> System.ComponentModel.Design.CommandID! -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Reset -> System.ComponentModel.Design.CommandID! -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuCommand -> System.Guid -static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuGroup -> System.Guid -static readonly System.Windows.Forms.TaskDialogIcon.Error -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.Information -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.None -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.Shield -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.ShieldBlueBar -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.ShieldErrorRedBar -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.ShieldGrayBar -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.ShieldSuccessGreenBar -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.ShieldWarningYellowBar -> System.Windows.Forms.TaskDialogIcon! -static readonly System.Windows.Forms.TaskDialogIcon.Warning -> System.Windows.Forms.TaskDialogIcon! -static System.Resources.ResXResourceReader.FromFileContents(string! fileContents) -> System.Resources.ResXResourceReader! -static System.Resources.ResXResourceReader.FromFileContents(string! fileContents, System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> System.Resources.ResXResourceReader! -static System.Resources.ResXResourceReader.FromFileContents(string! fileContents, System.Reflection.AssemblyName![]! assemblyNames) -> System.Resources.ResXResourceReader! -static System.Windows.Forms.Application.AddMessageFilter(System.Windows.Forms.IMessageFilter? value) -> void -static System.Windows.Forms.Application.AllowQuit.get -> bool -static System.Windows.Forms.Application.ApplicationExit -> System.EventHandler? -static System.Windows.Forms.Application.CommonAppDataPath.get -> string! -static System.Windows.Forms.Application.CommonAppDataRegistry.get -> Microsoft.Win32.RegistryKey! -static System.Windows.Forms.Application.CompanyName.get -> string? -static System.Windows.Forms.Application.CurrentCulture.get -> System.Globalization.CultureInfo! -static System.Windows.Forms.Application.CurrentCulture.set -> void -static System.Windows.Forms.Application.CurrentInputLanguage.get -> System.Windows.Forms.InputLanguage! -static System.Windows.Forms.Application.CurrentInputLanguage.set -> void -static System.Windows.Forms.Application.DoEvents() -> void -static System.Windows.Forms.Application.EnableVisualStyles() -> void -static System.Windows.Forms.Application.EnterThreadModal -> System.EventHandler? -static System.Windows.Forms.Application.ExecutablePath.get -> string! -static System.Windows.Forms.Application.Exit() -> void -static System.Windows.Forms.Application.Exit(System.ComponentModel.CancelEventArgs? e) -> void -static System.Windows.Forms.Application.ExitThread() -> void -static System.Windows.Forms.Application.FilterMessage(ref System.Windows.Forms.Message message) -> bool -static System.Windows.Forms.Application.HighDpiMode.get -> System.Windows.Forms.HighDpiMode -static System.Windows.Forms.Application.Idle -> System.EventHandler? -static System.Windows.Forms.Application.LeaveThreadModal -> System.EventHandler? -static System.Windows.Forms.Application.LocalUserAppDataPath.get -> string! -static System.Windows.Forms.Application.MessageLoop.get -> bool -static System.Windows.Forms.Application.OleRequired() -> System.Threading.ApartmentState -static System.Windows.Forms.Application.OnThreadException(System.Exception! t) -> void -static System.Windows.Forms.Application.OpenForms.get -> System.Windows.Forms.FormCollection! -static System.Windows.Forms.Application.ProductName.get -> string? -static System.Windows.Forms.Application.ProductVersion.get -> string! -static System.Windows.Forms.Application.RaiseIdle(System.EventArgs! e) -> void -static System.Windows.Forms.Application.RegisterMessageLoop(System.Windows.Forms.Application.MessageLoopCallback? callback) -> void -static System.Windows.Forms.Application.RemoveMessageFilter(System.Windows.Forms.IMessageFilter! value) -> void -static System.Windows.Forms.Application.RenderWithVisualStyles.get -> bool -static System.Windows.Forms.Application.Restart() -> void -static System.Windows.Forms.Application.Run() -> void -static System.Windows.Forms.Application.Run(System.Windows.Forms.ApplicationContext! context) -> void -static System.Windows.Forms.Application.Run(System.Windows.Forms.Form! mainForm) -> void -static System.Windows.Forms.Application.SafeTopLevelCaptionFormat.get -> string! -static System.Windows.Forms.Application.SafeTopLevelCaptionFormat.set -> void -static System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(bool defaultValue) -> void -static System.Windows.Forms.Application.SetDefaultFont(System.Drawing.Font! font) -> void -static System.Windows.Forms.Application.SetHighDpiMode(System.Windows.Forms.HighDpiMode highDpiMode) -> bool -static System.Windows.Forms.Application.SetSuspendState(System.Windows.Forms.PowerState state, bool force, bool disableWakeEvent) -> bool -static System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode mode) -> void -static System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode mode, bool threadScope) -> void -static System.Windows.Forms.Application.StartupPath.get -> string! -static System.Windows.Forms.Application.ThreadException -> System.Threading.ThreadExceptionEventHandler? -static System.Windows.Forms.Application.ThreadExit -> System.EventHandler? -static System.Windows.Forms.Application.UnregisterMessageLoop() -> void -static System.Windows.Forms.Application.UserAppDataPath.get -> string! -static System.Windows.Forms.Application.UserAppDataRegistry.get -> Microsoft.Win32.RegistryKey! -static System.Windows.Forms.Application.UseVisualStyles.get -> bool -static System.Windows.Forms.Application.UseWaitCursor.get -> bool -static System.Windows.Forms.Application.UseWaitCursor.set -> void -static System.Windows.Forms.Application.VisualStyleState.get -> System.Windows.Forms.VisualStyles.VisualStyleState -static System.Windows.Forms.Application.VisualStyleState.set -> void -static System.Windows.Forms.AxHost.GetColorFromOleColor(uint color) -> System.Drawing.Color -static System.Windows.Forms.AxHost.GetOADateFromTime(System.DateTime time) -> double -static System.Windows.Forms.AxHost.GetOleColorFromColor(System.Drawing.Color color) -> uint -static System.Windows.Forms.AxHost.GetTimeFromOADate(double date) -> System.DateTime -static System.Windows.Forms.BindingContext.UpdateBinding(System.Windows.Forms.BindingContext? newBindingContext, System.Windows.Forms.Binding! binding) -> void -static System.Windows.Forms.BindingMemberInfo.operator !=(System.Windows.Forms.BindingMemberInfo a, System.Windows.Forms.BindingMemberInfo b) -> bool -static System.Windows.Forms.BindingMemberInfo.operator ==(System.Windows.Forms.BindingMemberInfo a, System.Windows.Forms.BindingMemberInfo b) -> bool -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.PushButtonState state) -> void -static System.Windows.Forms.ButtonRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void -static System.Windows.Forms.ButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.PushButtonState state) -> bool -static System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState.get -> bool -static System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState.set -> void -static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void -static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void -static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void -static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void -static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void -static System.Windows.Forms.CheckBoxRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void -static System.Windows.Forms.CheckBoxRenderer.GetGlyphSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.CheckBoxState state) -> System.Drawing.Size -static System.Windows.Forms.CheckBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.CheckBoxState state) -> bool -static System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState.get -> bool -static System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState.set -> void -static System.Windows.Forms.Clipboard.Clear() -> void -static System.Windows.Forms.Clipboard.ContainsAudio() -> bool -static System.Windows.Forms.Clipboard.ContainsData(string? format) -> bool -static System.Windows.Forms.Clipboard.ContainsFileDropList() -> bool -static System.Windows.Forms.Clipboard.ContainsImage() -> bool -static System.Windows.Forms.Clipboard.ContainsText() -> bool -static System.Windows.Forms.Clipboard.ContainsText(System.Windows.Forms.TextDataFormat format) -> bool -static System.Windows.Forms.Clipboard.GetAudioStream() -> System.IO.Stream? -static System.Windows.Forms.Clipboard.GetData(string! format) -> object? -static System.Windows.Forms.Clipboard.GetDataObject() -> System.Windows.Forms.IDataObject? -static System.Windows.Forms.Clipboard.GetFileDropList() -> System.Collections.Specialized.StringCollection! -static System.Windows.Forms.Clipboard.GetImage() -> System.Drawing.Image? -static System.Windows.Forms.Clipboard.GetText() -> string! -static System.Windows.Forms.Clipboard.GetText(System.Windows.Forms.TextDataFormat format) -> string! -static System.Windows.Forms.Clipboard.SetAudio(byte[]! audioBytes) -> void -static System.Windows.Forms.Clipboard.SetAudio(System.IO.Stream! audioStream) -> void -static System.Windows.Forms.Clipboard.SetData(string! format, object! data) -> void -static System.Windows.Forms.Clipboard.SetDataObject(object! data) -> void -static System.Windows.Forms.Clipboard.SetDataObject(object! data, bool copy) -> void -static System.Windows.Forms.Clipboard.SetDataObject(object! data, bool copy, int retryTimes, int retryDelay) -> void -static System.Windows.Forms.Clipboard.SetFileDropList(System.Collections.Specialized.StringCollection! filePaths) -> void -static System.Windows.Forms.Clipboard.SetImage(System.Drawing.Image! image) -> void -static System.Windows.Forms.Clipboard.SetText(string! text) -> void -static System.Windows.Forms.Clipboard.SetText(string! text, System.Windows.Forms.TextDataFormat format) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawDropDownButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void -static System.Windows.Forms.ComboBoxRenderer.IsSupported.get -> bool -static System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls.get -> bool -static System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls.set -> void -static System.Windows.Forms.Control.DefaultBackColor.get -> System.Drawing.Color -static System.Windows.Forms.Control.DefaultFont.get -> System.Drawing.Font! -static System.Windows.Forms.Control.DefaultForeColor.get -> System.Drawing.Color -static System.Windows.Forms.Control.FromChildHandle(nint handle) -> System.Windows.Forms.Control? -static System.Windows.Forms.Control.FromHandle(nint handle) -> System.Windows.Forms.Control? -static System.Windows.Forms.Control.IsKeyLocked(System.Windows.Forms.Keys keyVal) -> bool -static System.Windows.Forms.Control.IsMnemonic(char charCode, string? text) -> bool -static System.Windows.Forms.Control.ModifierKeys.get -> System.Windows.Forms.Keys -static System.Windows.Forms.Control.MouseButtons.get -> System.Windows.Forms.MouseButtons -static System.Windows.Forms.Control.MousePosition.get -> System.Drawing.Point -static System.Windows.Forms.Control.PropagatingImeMode.get -> System.Windows.Forms.ImeMode -static System.Windows.Forms.Control.ReflectMessage(nint hWnd, ref System.Windows.Forms.Message m) -> bool -static System.Windows.Forms.ControlPaint.ContrastControlDark.get -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.CreateHBitmap16Bit(System.Drawing.Bitmap! bitmap, System.Drawing.Color background) -> nint -static System.Windows.Forms.ControlPaint.CreateHBitmapColorMask(System.Drawing.Bitmap! bitmap, nint monochromeMask) -> nint -static System.Windows.Forms.ControlPaint.CreateHBitmapTransparencyMask(System.Drawing.Bitmap! bitmap) -> nint -static System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color baseColor) -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color baseColor, float percOfDarkDark) -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.DarkDark(System.Drawing.Color baseColor) -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Drawing.Color color, System.Windows.Forms.ButtonBorderStyle style) -> void -static System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Drawing.Color leftColor, int leftWidth, System.Windows.Forms.ButtonBorderStyle leftStyle, System.Drawing.Color topColor, int topWidth, System.Windows.Forms.ButtonBorderStyle topStyle, System.Drawing.Color rightColor, int rightWidth, System.Windows.Forms.ButtonBorderStyle rightStyle, System.Drawing.Color bottomColor, int bottomWidth, System.Windows.Forms.ButtonBorderStyle bottomStyle) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.Border3DStyle style) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.Border3DStyle style, System.Windows.Forms.Border3DSide sides) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.Border3DStyle style) -> void -static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.Border3DStyle style, System.Windows.Forms.Border3DSide sides) -> void -static System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.CaptionButton button, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.CaptionButton button, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawContainerGrabHandle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle) -> void -static System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawGrabHandle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, bool primary, bool enabled) -> void -static System.Windows.Forms.ControlPaint.DrawGrid(System.Drawing.Graphics! graphics, System.Drawing.Rectangle area, System.Drawing.Size pixelsBetweenDots, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawImageDisabled(System.Drawing.Graphics! graphics, System.Drawing.Image! image, int x, int y, System.Drawing.Color background) -> void -static System.Windows.Forms.ControlPaint.DrawLockedFrame(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, bool primary) -> void -static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.MenuGlyph glyph) -> void -static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.MenuGlyph glyph, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.MenuGlyph glyph) -> void -static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.MenuGlyph glyph, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawReversibleFrame(System.Drawing.Rectangle rectangle, System.Drawing.Color backColor, System.Windows.Forms.FrameStyle style) -> void -static System.Windows.Forms.ControlPaint.DrawReversibleLine(System.Drawing.Point start, System.Drawing.Point end, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ScrollButton button, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ScrollButton button, System.Windows.Forms.ButtonState state) -> void -static System.Windows.Forms.ControlPaint.DrawSelectionFrame(System.Drawing.Graphics! graphics, bool active, System.Drawing.Rectangle outsideRect, System.Drawing.Rectangle insideRect, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics! graphics, System.Drawing.Color backColor, int x, int y, int width, int height) -> void -static System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics! graphics, System.Drawing.Color backColor, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.Graphics! graphics, string! s, System.Drawing.Font! font, System.Drawing.Color color, System.Drawing.RectangleF layoutRectangle, System.Drawing.StringFormat! format) -> void -static System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.IDeviceContext! dc, string! s, System.Drawing.Font! font, System.Drawing.Color color, System.Drawing.Rectangle layoutRectangle, System.Windows.Forms.TextFormatFlags format) -> void -static System.Windows.Forms.ControlPaint.DrawVisualStyleBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ControlPaint.FillReversibleRectangle(System.Drawing.Rectangle rectangle, System.Drawing.Color backColor) -> void -static System.Windows.Forms.ControlPaint.Light(System.Drawing.Color baseColor) -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.Light(System.Drawing.Color baseColor, float percOfLightLight) -> System.Drawing.Color -static System.Windows.Forms.ControlPaint.LightLight(System.Drawing.Color baseColor) -> System.Drawing.Color -static System.Windows.Forms.Cursor.Clip.get -> System.Drawing.Rectangle -static System.Windows.Forms.Cursor.Clip.set -> void -static System.Windows.Forms.Cursor.Current.get -> System.Windows.Forms.Cursor? -static System.Windows.Forms.Cursor.Current.set -> void -static System.Windows.Forms.Cursor.Hide() -> void -static System.Windows.Forms.Cursor.operator !=(System.Windows.Forms.Cursor? left, System.Windows.Forms.Cursor? right) -> bool -static System.Windows.Forms.Cursor.operator ==(System.Windows.Forms.Cursor? left, System.Windows.Forms.Cursor? right) -> bool -static System.Windows.Forms.Cursor.Position.get -> System.Drawing.Point -static System.Windows.Forms.Cursor.Position.set -> void -static System.Windows.Forms.Cursor.Show() -> void -static System.Windows.Forms.Cursors.AppStarting.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.Arrow.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.Cross.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.Default.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.Hand.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.Help.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.HSplit.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.IBeam.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.No.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.NoMove2D.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.NoMoveHoriz.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.NoMoveVert.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanEast.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanNE.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanNorth.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanNW.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanSE.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanSouth.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanSW.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.PanWest.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.SizeAll.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.SizeNESW.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.SizeNS.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.SizeNWSE.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.SizeWE.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.UpArrow.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.VSplit.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.Cursors.WaitCursor.get -> System.Windows.Forms.Cursor! -static System.Windows.Forms.DataFormats.GetFormat(int id) -> System.Windows.Forms.DataFormats.Format! -static System.Windows.Forms.DataFormats.GetFormat(string! format) -> System.Windows.Forms.DataFormats.Format! -static System.Windows.Forms.DateTimePicker.MaximumDateTime.get -> System.DateTime -static System.Windows.Forms.DateTimePicker.MinimumDateTime.get -> System.DateTime -static System.Windows.Forms.FeatureSupport.GetVersionPresent(string! featureClassName, string! featureConstName) -> System.Version? -static System.Windows.Forms.FeatureSupport.IsPresent(string! featureClassName, string! featureConstName) -> bool -static System.Windows.Forms.FeatureSupport.IsPresent(string! featureClassName, string! featureConstName, System.Version! minimumVersion) -> bool -static System.Windows.Forms.Form.ActiveForm.get -> System.Windows.Forms.Form? -static System.Windows.Forms.Form.GetAutoScaleSize(System.Drawing.Font! font) -> System.Drawing.SizeF -static System.Windows.Forms.GridItemCollection.Empty -> System.Windows.Forms.GridItemCollection! -static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Drawing.Color textColor, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void -static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Drawing.Color textColor, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void -static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void -static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void -static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void -static System.Windows.Forms.GroupBoxRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void -static System.Windows.Forms.GroupBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.GroupBoxState state) -> bool -static System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState.get -> bool -static System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState.set -> void -static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url) -> void -static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, string? keyword) -> void -static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, System.Windows.Forms.HelpNavigator command, object? parameter) -> void -static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, System.Windows.Forms.HelpNavigator navigator) -> void -static System.Windows.Forms.Help.ShowHelpIndex(System.Windows.Forms.Control? parent, string? url) -> void -static System.Windows.Forms.Help.ShowPopup(System.Windows.Forms.Control? parent, string! caption, System.Drawing.Point location) -> void -static System.Windows.Forms.HtmlDocument.operator !=(System.Windows.Forms.HtmlDocument? left, System.Windows.Forms.HtmlDocument? right) -> bool -static System.Windows.Forms.HtmlDocument.operator ==(System.Windows.Forms.HtmlDocument? left, System.Windows.Forms.HtmlDocument? right) -> bool -static System.Windows.Forms.ImeContext.Disable(nint handle) -> void -static System.Windows.Forms.ImeContext.Enable(nint handle) -> void -static System.Windows.Forms.ImeContext.GetImeMode(nint handle) -> System.Windows.Forms.ImeMode -static System.Windows.Forms.ImeContext.IsOpen(nint handle) -> bool -static System.Windows.Forms.ImeContext.SetImeStatus(System.Windows.Forms.ImeMode imeMode, nint handle) -> void -static System.Windows.Forms.ImeContext.SetOpenStatus(bool open, nint handle) -> void -static System.Windows.Forms.ImeModeConversion.ImeModeConversionBits.get -> System.Collections.Generic.Dictionary! -static System.Windows.Forms.ImeModeConversion.IsCurrentConversionTableSupported.get -> bool -static System.Windows.Forms.InputLanguage.CurrentInputLanguage.get -> System.Windows.Forms.InputLanguage! -static System.Windows.Forms.InputLanguage.CurrentInputLanguage.set -> void -static System.Windows.Forms.InputLanguage.DefaultInputLanguage.get -> System.Windows.Forms.InputLanguage! -static System.Windows.Forms.InputLanguage.FromCulture(System.Globalization.CultureInfo! culture) -> System.Windows.Forms.InputLanguage? -static System.Windows.Forms.InputLanguage.InstalledInputLanguages.get -> System.Windows.Forms.InputLanguageCollection! -static System.Windows.Forms.LinkArea.operator !=(System.Windows.Forms.LinkArea linkArea1, System.Windows.Forms.LinkArea linkArea2) -> bool -static System.Windows.Forms.LinkArea.operator ==(System.Windows.Forms.LinkArea linkArea1, System.Windows.Forms.LinkArea linkArea2) -> bool -static System.Windows.Forms.ListBindingHelper.GetList(object? dataSource, string? dataMember) -> object? -static System.Windows.Forms.ListBindingHelper.GetList(object? list) -> object? -static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? dataSource, string? dataMember, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> System.ComponentModel.PropertyDescriptorCollection! -static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? list) -> System.ComponentModel.PropertyDescriptorCollection! -static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? list, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> System.ComponentModel.PropertyDescriptorCollection! -static System.Windows.Forms.ListBindingHelper.GetListItemType(object? dataSource, string? dataMember) -> System.Type? -static System.Windows.Forms.ListBindingHelper.GetListItemType(object? list) -> System.Type? -static System.Windows.Forms.ListBindingHelper.GetListName(object? list, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> string! -static System.Windows.Forms.MessageBox.Show(string? text) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, bool displayHelpButton) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, string! keyword) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator, object? param) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, string! keyword) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator, object? param) -> System.Windows.Forms.DialogResult -static System.Windows.Forms.NativeWindow.FromHandle(nint handle) -> System.Windows.Forms.NativeWindow? -static System.Windows.Forms.OSFeature.Feature.get -> System.Windows.Forms.OSFeature! -static System.Windows.Forms.OSFeature.IsPresent(System.Windows.Forms.SystemParameter enumVal) -> bool -static System.Windows.Forms.OwnerDrawPropertyBag.Copy(System.Windows.Forms.OwnerDrawPropertyBag? value) -> System.Windows.Forms.OwnerDrawPropertyBag! -static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlightBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonPressedHighlightBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlightBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.CheckBackground.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.CheckPressedBackground.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.CheckSelectedBackground.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.GripDark.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.GripLight.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemSelected.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuStripGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.MenuStripGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.RaftingContainerGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.RaftingContainerGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.SeparatorDark.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.SeparatorLight.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.StatusStripBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.StatusStripGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.StatusStripGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripBorder.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripDropDownBackground.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripGradientMiddle.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientBegin.get -> System.Drawing.Color -static System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientEnd.get -> System.Drawing.Color -static System.Windows.Forms.ProgressBarRenderer.ChunkSpaceThickness.get -> int -static System.Windows.Forms.ProgressBarRenderer.ChunkThickness.get -> int -static System.Windows.Forms.ProgressBarRenderer.DrawHorizontalBar(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ProgressBarRenderer.DrawHorizontalChunks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ProgressBarRenderer.DrawVerticalBar(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ProgressBarRenderer.DrawVerticalChunks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.ProgressBarRenderer.IsSupported.get -> bool -static System.Windows.Forms.RadioButtonRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void -static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void -static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void -static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void -static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void -static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void -static System.Windows.Forms.RadioButtonRenderer.GetGlyphSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.RadioButtonState state) -> System.Drawing.Size -static System.Windows.Forms.RadioButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.RadioButtonState state) -> bool -static System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState.get -> bool -static System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState.set -> void -static System.Windows.Forms.Screen.AllScreens.get -> System.Windows.Forms.Screen![]! -static System.Windows.Forms.Screen.FromControl(System.Windows.Forms.Control! control) -> System.Windows.Forms.Screen! -static System.Windows.Forms.Screen.FromHandle(nint hwnd) -> System.Windows.Forms.Screen! -static System.Windows.Forms.Screen.FromPoint(System.Drawing.Point point) -> System.Windows.Forms.Screen! -static System.Windows.Forms.Screen.FromRectangle(System.Drawing.Rectangle rect) -> System.Windows.Forms.Screen! -static System.Windows.Forms.Screen.GetBounds(System.Drawing.Point pt) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.GetBounds(System.Drawing.Rectangle rect) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.GetBounds(System.Windows.Forms.Control! ctl) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Point pt) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Rectangle rect) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.GetWorkingArea(System.Windows.Forms.Control! ctl) -> System.Drawing.Rectangle -static System.Windows.Forms.Screen.PrimaryScreen.get -> System.Windows.Forms.Screen? -static System.Windows.Forms.ScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawSizeBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void -static System.Windows.Forms.ScrollBarRenderer.GetSizeBoxSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.ScrollBarState state) -> System.Drawing.Size -static System.Windows.Forms.ScrollBarRenderer.GetThumbGripSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.ScrollBarState state) -> System.Drawing.Size -static System.Windows.Forms.ScrollBarRenderer.IsSupported.get -> bool -static System.Windows.Forms.SendKeys.Flush() -> void -static System.Windows.Forms.SendKeys.Send(string! keys) -> void -static System.Windows.Forms.SendKeys.SendWait(string! keys) -> void -static System.Windows.Forms.SystemInformation.ActiveWindowTrackingDelay.get -> int -static System.Windows.Forms.SystemInformation.ArrangeDirection.get -> System.Windows.Forms.ArrangeDirection -static System.Windows.Forms.SystemInformation.ArrangeStartingPosition.get -> System.Windows.Forms.ArrangeStartingPosition -static System.Windows.Forms.SystemInformation.BootMode.get -> System.Windows.Forms.BootMode -static System.Windows.Forms.SystemInformation.Border3DSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.BorderMultiplierFactor.get -> int -static System.Windows.Forms.SystemInformation.BorderSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.CaptionButtonSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.CaptionHeight.get -> int -static System.Windows.Forms.SystemInformation.CaretBlinkTime.get -> int -static System.Windows.Forms.SystemInformation.CaretWidth.get -> int -static System.Windows.Forms.SystemInformation.ComputerName.get -> string! -static System.Windows.Forms.SystemInformation.CursorSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.DbcsEnabled.get -> bool -static System.Windows.Forms.SystemInformation.DebugOS.get -> bool -static System.Windows.Forms.SystemInformation.DoubleClickSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.DoubleClickTime.get -> int -static System.Windows.Forms.SystemInformation.DragFullWindows.get -> bool -static System.Windows.Forms.SystemInformation.DragSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.FixedFrameBorderSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.FontSmoothingContrast.get -> int -static System.Windows.Forms.SystemInformation.FontSmoothingType.get -> int -static System.Windows.Forms.SystemInformation.FrameBorderSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.GetBorderSizeForDpi(int dpi) -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(int dpi) -> int -static System.Windows.Forms.SystemInformation.GetHorizontalScrollBarHeightForDpi(int dpi) -> int -static System.Windows.Forms.SystemInformation.GetMenuFontForDpi(int dpi) -> System.Drawing.Font! -static System.Windows.Forms.SystemInformation.GetVerticalScrollBarWidthForDpi(int dpi) -> int -static System.Windows.Forms.SystemInformation.HighContrast.get -> bool -static System.Windows.Forms.SystemInformation.HorizontalFocusThickness.get -> int -static System.Windows.Forms.SystemInformation.HorizontalResizeBorderThickness.get -> int -static System.Windows.Forms.SystemInformation.HorizontalScrollBarArrowWidth.get -> int -static System.Windows.Forms.SystemInformation.HorizontalScrollBarHeight.get -> int -static System.Windows.Forms.SystemInformation.HorizontalScrollBarThumbWidth.get -> int -static System.Windows.Forms.SystemInformation.IconHorizontalSpacing.get -> int -static System.Windows.Forms.SystemInformation.IconSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.IconSpacingSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.IconVerticalSpacing.get -> int -static System.Windows.Forms.SystemInformation.IsActiveWindowTrackingEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsComboBoxAnimationEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsDropShadowEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsFlatMenuEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsFontSmoothingEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsHotTrackingEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsIconTitleWrappingEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsKeyboardPreferred.get -> bool -static System.Windows.Forms.SystemInformation.IsListBoxSmoothScrollingEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsMenuAnimationEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsMenuFadeEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsMinimizeRestoreAnimationEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsSelectionFadeEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsSnapToDefaultEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsTitleBarGradientEnabled.get -> bool -static System.Windows.Forms.SystemInformation.IsToolTipAnimationEnabled.get -> bool -static System.Windows.Forms.SystemInformation.KanjiWindowHeight.get -> int -static System.Windows.Forms.SystemInformation.KeyboardDelay.get -> int -static System.Windows.Forms.SystemInformation.KeyboardSpeed.get -> int -static System.Windows.Forms.SystemInformation.MaxWindowTrackSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MenuAccessKeysUnderlined.get -> bool -static System.Windows.Forms.SystemInformation.MenuBarButtonSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MenuButtonSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MenuCheckSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MenuFont.get -> System.Drawing.Font! -static System.Windows.Forms.SystemInformation.MenuHeight.get -> int -static System.Windows.Forms.SystemInformation.MenuShowDelay.get -> int -static System.Windows.Forms.SystemInformation.MidEastEnabled.get -> bool -static System.Windows.Forms.SystemInformation.MinimizedWindowSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MinimizedWindowSpacingSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MinimumWindowSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MinWindowTrackSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MonitorCount.get -> int -static System.Windows.Forms.SystemInformation.MonitorsSameDisplayFormat.get -> bool -static System.Windows.Forms.SystemInformation.MouseButtons.get -> int -static System.Windows.Forms.SystemInformation.MouseButtonsSwapped.get -> bool -static System.Windows.Forms.SystemInformation.MouseHoverSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.MouseHoverTime.get -> int -static System.Windows.Forms.SystemInformation.MousePresent.get -> bool -static System.Windows.Forms.SystemInformation.MouseSpeed.get -> int -static System.Windows.Forms.SystemInformation.MouseWheelPresent.get -> bool -static System.Windows.Forms.SystemInformation.MouseWheelScrollDelta.get -> int -static System.Windows.Forms.SystemInformation.MouseWheelScrollLines.get -> int -static System.Windows.Forms.SystemInformation.NativeMouseWheelSupport.get -> bool -static System.Windows.Forms.SystemInformation.Network.get -> bool -static System.Windows.Forms.SystemInformation.PenWindows.get -> bool -static System.Windows.Forms.SystemInformation.PopupMenuAlignment.get -> System.Windows.Forms.LeftRightAlignment -static System.Windows.Forms.SystemInformation.PowerStatus.get -> System.Windows.Forms.PowerStatus! -static System.Windows.Forms.SystemInformation.PrimaryMonitorMaximizedWindowSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.PrimaryMonitorSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.RightAlignedMenus.get -> bool -static System.Windows.Forms.SystemInformation.ScreenOrientation.get -> System.Windows.Forms.ScreenOrientation -static System.Windows.Forms.SystemInformation.Secure.get -> bool -static System.Windows.Forms.SystemInformation.ShowSounds.get -> bool -static System.Windows.Forms.SystemInformation.SizingBorderWidth.get -> int -static System.Windows.Forms.SystemInformation.SmallCaptionButtonSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.SmallIconSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.TerminalServerSession.get -> bool -static System.Windows.Forms.SystemInformation.ToolWindowCaptionButtonSize.get -> System.Drawing.Size -static System.Windows.Forms.SystemInformation.ToolWindowCaptionHeight.get -> int -static System.Windows.Forms.SystemInformation.UIEffectsEnabled.get -> bool -static System.Windows.Forms.SystemInformation.UserDomainName.get -> string! -static System.Windows.Forms.SystemInformation.UserInteractive.get -> bool -static System.Windows.Forms.SystemInformation.UserName.get -> string! -static System.Windows.Forms.SystemInformation.VerticalFocusThickness.get -> int -static System.Windows.Forms.SystemInformation.VerticalResizeBorderThickness.get -> int -static System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeight.get -> int -static System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeightForDpi(int dpi) -> int -static System.Windows.Forms.SystemInformation.VerticalScrollBarThumbHeight.get -> int -static System.Windows.Forms.SystemInformation.VerticalScrollBarWidth.get -> int -static System.Windows.Forms.SystemInformation.VirtualScreen.get -> System.Drawing.Rectangle -static System.Windows.Forms.SystemInformation.WorkingArea.get -> System.Drawing.Rectangle -static System.Windows.Forms.TableLayoutPanelCellPosition.operator !=(System.Windows.Forms.TableLayoutPanelCellPosition p1, System.Windows.Forms.TableLayoutPanelCellPosition p2) -> bool -static System.Windows.Forms.TableLayoutPanelCellPosition.operator ==(System.Windows.Forms.TableLayoutPanelCellPosition p1, System.Windows.Forms.TableLayoutPanelCellPosition p2) -> bool -static System.Windows.Forms.TabPage.GetTabPageOfComponent(object? comp) -> System.Windows.Forms.TabPage? -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TabItemState state) -> void -static System.Windows.Forms.TabRenderer.DrawTabPage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.TabRenderer.IsSupported.get -> bool -static System.Windows.Forms.TaskDialog.ShowDialog(nint hwndOwner, System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window! owner, System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Abort.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Cancel.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Close.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Continue.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Help.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Ignore.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.No.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.OK.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.operator !=(System.Windows.Forms.TaskDialogButton? b1, System.Windows.Forms.TaskDialogButton? b2) -> bool -static System.Windows.Forms.TaskDialogButton.operator ==(System.Windows.Forms.TaskDialogButton? b1, System.Windows.Forms.TaskDialogButton? b2) -> bool -static System.Windows.Forms.TaskDialogButton.Retry.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.TryAgain.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogButton.Yes.get -> System.Windows.Forms.TaskDialogButton! -static System.Windows.Forms.TaskDialogFootnote.implicit operator System.Windows.Forms.TaskDialogFootnote!(string! footnoteText) -> System.Windows.Forms.TaskDialogFootnote! -static System.Windows.Forms.TaskDialogVerificationCheckBox.implicit operator System.Windows.Forms.TaskDialogVerificationCheckBox!(string! verificationText) -> System.Windows.Forms.TaskDialogVerificationCheckBox! -static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.TextBoxState state) -> void -static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.VisualStyles.TextBoxState state) -> void -static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.TextBoxState state) -> void -static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.TextBoxState state) -> void -static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TextBoxState state) -> void -static System.Windows.Forms.TextBoxRenderer.IsSupported.get -> bool -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font! font, System.Drawing.Point pt, System.Drawing.Color foreColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font! font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void -static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size -static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size -static System.Windows.Forms.ToolStrip.SetItemParent(System.Windows.Forms.ToolStripItem! item, System.Windows.Forms.ToolStrip! parent) -> void -static System.Windows.Forms.ToolStripManager.IsShortcutDefined(System.Windows.Forms.Keys shortcut) -> bool -static System.Windows.Forms.ToolStripManager.IsValidShortcut(System.Windows.Forms.Keys shortcut) -> bool -static System.Windows.Forms.ToolStripManager.RendererChanged -> System.EventHandler? -static System.Windows.Forms.ToolStripManager.RenderMode.get -> System.Windows.Forms.ToolStripManagerRenderMode -static System.Windows.Forms.ToolStripManager.RenderMode.set -> void -static System.Windows.Forms.ToolStripManager.VisualStylesEnabled.get -> bool -static System.Windows.Forms.ToolStripManager.VisualStylesEnabled.set -> void -static System.Windows.Forms.ToolStripRenderer.CreateDisabledImage(System.Drawing.Image! normalImage) -> System.Drawing.Image! -static System.Windows.Forms.ToolStripRenderer.Offset2X -> int -static System.Windows.Forms.ToolStripRenderer.Offset2Y -> int -static System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded() -> void -static System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded(int dpi) -> void -static System.Windows.Forms.TrackBarRenderer.DrawBottomPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawHorizontalTicks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, int numTicks, System.Windows.Forms.VisualStyles.EdgeStyle edgeStyle) -> void -static System.Windows.Forms.TrackBarRenderer.DrawHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.TrackBarRenderer.DrawLeftPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawRightPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawTopPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawVerticalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void -static System.Windows.Forms.TrackBarRenderer.DrawVerticalTicks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, int numTicks, System.Windows.Forms.VisualStyles.EdgeStyle edgeStyle) -> void -static System.Windows.Forms.TrackBarRenderer.DrawVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void -static System.Windows.Forms.TrackBarRenderer.GetBottomPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size -static System.Windows.Forms.TrackBarRenderer.GetLeftPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size -static System.Windows.Forms.TrackBarRenderer.GetRightPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size -static System.Windows.Forms.TrackBarRenderer.GetTopPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size -static System.Windows.Forms.TrackBarRenderer.IsSupported.get -> bool -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Default.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.CreateElement(string! className, int part, int state) -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedDown.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedUp.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.SelectedNotFocus.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Demoted.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.LeftAlign.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.RightAlign.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Assist.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.ReadOnly.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Link.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Link.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Closed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Opened.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.SelectedNotFocus.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Author.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.ColorScheme.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Company.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.ControlHighlightHot.get -> System.Drawing.Color -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Copyright.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Description.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.DisplayName.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.IsEnabledByUser.get -> bool -static System.Windows.Forms.VisualStyles.VisualStyleInformation.IsSupportedByOS.get -> bool -static System.Windows.Forms.VisualStyles.VisualStyleInformation.MinimumColorDepth.get -> int -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Size.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.SupportsFlatMenus.get -> bool -static System.Windows.Forms.VisualStyles.VisualStyleInformation.TextControlBorder.get -> System.Drawing.Color -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Url.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleInformation.Version.get -> string! -static System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> bool -static System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsSupported.get -> bool -static System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall.get -> bool -static System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall.set -> void -static System.Windows.Forms.WindowsFormsSynchronizationContext.Uninstall() -> void -System.Drawing.Design.IPropertyValueUIService -System.Drawing.Design.IPropertyValueUIService.AddPropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler! newHandler) -> void -System.Drawing.Design.IPropertyValueUIService.GetPropertyUIValueItems(System.ComponentModel.ITypeDescriptorContext! context, System.ComponentModel.PropertyDescriptor! propDesc) -> System.Drawing.Design.PropertyValueUIItem![]! -System.Drawing.Design.IPropertyValueUIService.NotifyPropertyValueUIItemsChanged() -> void -System.Drawing.Design.IPropertyValueUIService.PropertyUIValueItemsChanged -> System.EventHandler? -System.Drawing.Design.IPropertyValueUIService.RemovePropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler! newHandler) -> void -System.Drawing.Design.PaintValueEventArgs -System.Drawing.Design.PaintValueEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Drawing.Design.PaintValueEventArgs.Context.get -> System.ComponentModel.ITypeDescriptorContext? -System.Drawing.Design.PaintValueEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Drawing.Design.PaintValueEventArgs.PaintValueEventArgs(System.ComponentModel.ITypeDescriptorContext? context, object? value, System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void -System.Drawing.Design.PaintValueEventArgs.Value.get -> object? -System.Drawing.Design.PropertyValueUIHandler -System.Drawing.Design.PropertyValueUIItem -System.Drawing.Design.PropertyValueUIItem.PropertyValueUIItem(System.Drawing.Image! uiItemImage, System.Drawing.Design.PropertyValueUIItemInvokeHandler! handler, string? tooltip) -> void -System.Drawing.Design.PropertyValueUIItemInvokeHandler -System.Drawing.Design.UITypeEditor -System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider! provider, object? value) -> object? -System.Drawing.Design.UITypeEditor.GetEditStyle() -> System.Drawing.Design.UITypeEditorEditStyle -System.Drawing.Design.UITypeEditor.GetPaintValueSupported() -> bool -System.Drawing.Design.UITypeEditor.PaintValue(object? value, System.Drawing.Graphics! canvas, System.Drawing.Rectangle rectangle) -> void -System.Drawing.Design.UITypeEditor.UITypeEditor() -> void -System.Drawing.Design.UITypeEditorEditStyle -System.Drawing.Design.UITypeEditorEditStyle.DropDown = 3 -> System.Drawing.Design.UITypeEditorEditStyle -System.Drawing.Design.UITypeEditorEditStyle.Modal = 2 -> System.Drawing.Design.UITypeEditorEditStyle -System.Drawing.Design.UITypeEditorEditStyle.None = 1 -> System.Drawing.Design.UITypeEditorEditStyle -System.Resources.ResXDataNode -System.Resources.ResXDataNode.Comment.get -> string! -System.Resources.ResXDataNode.Comment.set -> void -System.Resources.ResXDataNode.FileRef.get -> System.Resources.ResXFileRef? -System.Resources.ResXDataNode.GetNodePosition() -> System.Drawing.Point -System.Resources.ResXDataNode.GetValue(System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> object? -System.Resources.ResXDataNode.GetValue(System.Reflection.AssemblyName![]? names) -> object? -System.Resources.ResXDataNode.GetValueTypeName(System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> string? -System.Resources.ResXDataNode.GetValueTypeName(System.Reflection.AssemblyName![]? names) -> string? -System.Resources.ResXDataNode.Name.get -> string! -System.Resources.ResXDataNode.Name.set -> void -System.Resources.ResXDataNode.ResXDataNode(string! name, object? value) -> void -System.Resources.ResXDataNode.ResXDataNode(string! name, object? value, System.Func? typeNameConverter) -> void -System.Resources.ResXDataNode.ResXDataNode(string! name, System.Resources.ResXFileRef! fileRef) -> void -System.Resources.ResXDataNode.ResXDataNode(string! name, System.Resources.ResXFileRef! fileRef, System.Func? typeNameConverter) -> void -System.Resources.ResXFileRef -System.Resources.ResXFileRef.Converter -System.Resources.ResXFileRef.Converter.Converter() -> void -System.Resources.ResXFileRef.FileName.get -> string! -System.Resources.ResXFileRef.ResXFileRef(string! fileName, string! typeName) -> void -System.Resources.ResXFileRef.ResXFileRef(string! fileName, string! typeName, System.Text.Encoding! textFileEncoding) -> void -System.Resources.ResXFileRef.TextFileEncoding.get -> System.Text.Encoding? -System.Resources.ResXFileRef.TypeName.get -> string! -System.Resources.ResXResourceReader -System.Resources.ResXResourceReader.~ResXResourceReader() -> void -System.Resources.ResXResourceReader.BasePath.get -> string? -System.Resources.ResXResourceReader.BasePath.set -> void -System.Resources.ResXResourceReader.Close() -> void -System.Resources.ResXResourceReader.GetEnumerator() -> System.Collections.IDictionaryEnumerator! -System.Resources.ResXResourceReader.GetMetadataEnumerator() -> System.Collections.IDictionaryEnumerator! -System.Resources.ResXResourceReader.ResXResourceReader(string! fileName) -> void -System.Resources.ResXResourceReader.ResXResourceReader(string! fileName, System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> void -System.Resources.ResXResourceReader.ResXResourceReader(string! fileName, System.Reflection.AssemblyName![]! assemblyNames) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream, System.ComponentModel.Design.ITypeResolutionService! typeResolver) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream, System.Reflection.AssemblyName![]! assemblyNames) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader, System.ComponentModel.Design.ITypeResolutionService! typeResolver) -> void -System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader, System.Reflection.AssemblyName![]! assemblyNames) -> void -System.Resources.ResXResourceReader.UseResXDataNodes.get -> bool -System.Resources.ResXResourceReader.UseResXDataNodes.set -> void -System.Resources.ResXResourceSet -System.Resources.ResXResourceSet.ResXResourceSet(string! fileName) -> void -System.Resources.ResXResourceSet.ResXResourceSet(System.IO.Stream! stream) -> void -System.Resources.ResXResourceWriter -System.Resources.ResXResourceWriter.~ResXResourceWriter() -> void -System.Resources.ResXResourceWriter.AddMetadata(string! name, byte[]! value) -> void -System.Resources.ResXResourceWriter.AddMetadata(string! name, object? value) -> void -System.Resources.ResXResourceWriter.AddMetadata(string! name, string? value) -> void -System.Resources.ResXResourceWriter.AddResource(string! name, byte[]? value) -> void -System.Resources.ResXResourceWriter.AddResource(string! name, object? value) -> void -System.Resources.ResXResourceWriter.AddResource(string! name, string? value) -> void -System.Resources.ResXResourceWriter.AddResource(System.Resources.ResXDataNode! node) -> void -System.Resources.ResXResourceWriter.BasePath.get -> string? -System.Resources.ResXResourceWriter.BasePath.set -> void -System.Resources.ResXResourceWriter.Close() -> void -System.Resources.ResXResourceWriter.Generate() -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(string! fileName) -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(string! fileName, System.Func! typeNameConverter) -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.Stream! stream) -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.Stream! stream, System.Func! typeNameConverter) -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.TextWriter! textWriter) -> void -System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.TextWriter! textWriter, System.Func! typeNameConverter) -> void -System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.AcceleratorChange = 32786 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Create = 32768 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.DefaultActionChange = 32785 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.DescriptionChange = 32781 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Destroy = 32769 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Focus = 32773 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.HelpChange = 32784 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Hide = 32771 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.LocationChange = 32779 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.NameChange = 32780 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.ParentChange = 32783 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Reorder = 32772 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Selection = 32774 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SelectionAdd = 32775 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SelectionRemove = 32776 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SelectionWithin = 32777 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.Show = 32770 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.StateChange = 32778 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemAlert = 2 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemCaptureEnd = 9 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemCaptureStart = 8 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemContextHelpEnd = 13 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemContextHelpStart = 12 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemDialogEnd = 17 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemDialogStart = 16 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemDragDropEnd = 15 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemDragDropStart = 14 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemForeground = 3 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMenuEnd = 5 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMenuPopupEnd = 7 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMenuPopupStart = 6 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMenuStart = 4 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMinimizeEnd = 23 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMinimizeStart = 22 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMoveSizeEnd = 11 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemMoveSizeStart = 10 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemScrollingEnd = 19 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemScrollingStart = 18 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemSound = 1 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemSwitchEnd = 21 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.SystemSwitchStart = 20 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleEvents.ValueChange = 32782 -> System.Windows.Forms.AccessibleEvents -System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Down = 2 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.FirstChild = 7 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.LastChild = 8 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Left = 3 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Next = 5 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Previous = 6 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Right = 4 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleNavigation.Up = 1 -> System.Windows.Forms.AccessibleNavigation -System.Windows.Forms.AccessibleObject -System.Windows.Forms.AccessibleObject.AccessibleObject() -> void -System.Windows.Forms.AccessibleObject.RaiseAutomationNotification(System.Windows.Forms.Automation.AutomationNotificationKind notificationKind, System.Windows.Forms.Automation.AutomationNotificationProcessing notificationProcessing, string? notificationText) -> bool -System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(nint handle) -> void -System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(nint handle, int objid) -> void -System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Alert = 8 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Animation = 54 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Application = 14 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Border = 19 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ButtonDropDown = 56 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ButtonDropDownGrid = 58 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ButtonMenu = 57 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Caret = 7 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Cell = 29 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Character = 32 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Chart = 17 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.CheckButton = 44 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Client = 10 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Clock = 61 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Column = 27 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ColumnHeader = 25 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ComboBox = 46 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Cursor = 6 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Default = -1 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Diagram = 53 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Dial = 49 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Dialog = 18 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Document = 15 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.DropList = 47 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Equation = 55 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Graphic = 40 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Grip = 4 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Grouping = 20 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.HelpBalloon = 31 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.HotkeyField = 50 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Indicator = 39 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.IpAddress = 63 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Link = 30 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.List = 33 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ListItem = 34 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.MenuBar = 2 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.MenuItem = 12 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.MenuPopup = 11 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.None = 0 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Outline = 35 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.OutlineButton = 64 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.OutlineItem = 36 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.PageTab = 37 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.PageTabList = 60 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Pane = 16 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ProgressBar = 48 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.PropertyPage = 38 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.PushButton = 43 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.RadioButton = 45 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Row = 28 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.RowHeader = 26 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ScrollBar = 3 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Separator = 21 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Slider = 51 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Sound = 5 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.SpinButton = 52 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.SplitButton = 62 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.StaticText = 41 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.StatusBar = 23 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Table = 24 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Text = 42 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.TitleBar = 1 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ToolBar = 22 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.ToolTip = 13 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.WhiteSpace = 59 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleRole.Window = 9 -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.AddSelection = 8 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.ExtendSelection = 4 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.None = 0 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.RemoveSelection = 16 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.TakeFocus = 1 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleSelection.TakeSelection = 2 -> System.Windows.Forms.AccessibleSelection -System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.AlertHigh = 268435456 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.AlertLow = 67108864 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.AlertMedium = 134217728 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Animated = 16384 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Busy = 2048 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Checked = 16 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Collapsed = 1024 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Default = 256 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Expanded = 512 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.ExtSelectable = 33554432 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Floating = 4096 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Focusable = 1048576 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Focused = 4 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.HasPopup = 1073741824 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.HotTracked = 128 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Indeterminate = 32 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Invisible = 32768 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Linked = 4194304 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Marqueed = 8192 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Mixed = 32 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Moveable = 262144 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.MultiSelectable = 16777216 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.None = 0 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Offscreen = 65536 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Pressed = 8 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Protected = 536870912 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.ReadOnly = 64 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Selectable = 2097152 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Selected = 2 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.SelfVoicing = 524288 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Sizeable = 131072 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Traversed = 8388608 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Unavailable = 1 -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AccessibleStates.Valid = System.Windows.Forms.AccessibleStates.Unavailable | System.Windows.Forms.AccessibleStates.Selected | System.Windows.Forms.AccessibleStates.Focused | System.Windows.Forms.AccessibleStates.Pressed | System.Windows.Forms.AccessibleStates.Checked | System.Windows.Forms.AccessibleStates.Indeterminate | System.Windows.Forms.AccessibleStates.ReadOnly | System.Windows.Forms.AccessibleStates.HotTracked | System.Windows.Forms.AccessibleStates.Default | System.Windows.Forms.AccessibleStates.Expanded | System.Windows.Forms.AccessibleStates.Collapsed | System.Windows.Forms.AccessibleStates.Busy | System.Windows.Forms.AccessibleStates.Floating | System.Windows.Forms.AccessibleStates.Marqueed | System.Windows.Forms.AccessibleStates.Animated | System.Windows.Forms.AccessibleStates.Invisible | System.Windows.Forms.AccessibleStates.Offscreen | System.Windows.Forms.AccessibleStates.Sizeable | System.Windows.Forms.AccessibleStates.Moveable | System.Windows.Forms.AccessibleStates.SelfVoicing | System.Windows.Forms.AccessibleStates.Focusable | System.Windows.Forms.AccessibleStates.Selectable | System.Windows.Forms.AccessibleStates.Linked | System.Windows.Forms.AccessibleStates.Traversed | System.Windows.Forms.AccessibleStates.MultiSelectable | System.Windows.Forms.AccessibleStates.ExtSelectable | System.Windows.Forms.AccessibleStates.AlertLow | System.Windows.Forms.AccessibleStates.AlertMedium | System.Windows.Forms.AccessibleStates.AlertHigh | System.Windows.Forms.AccessibleStates.Protected -> System.Windows.Forms.AccessibleStates -System.Windows.Forms.AmbientProperties -System.Windows.Forms.AmbientProperties.AmbientProperties() -> void -System.Windows.Forms.AmbientProperties.BackColor.get -> System.Drawing.Color -System.Windows.Forms.AmbientProperties.BackColor.set -> void -System.Windows.Forms.AmbientProperties.Cursor.get -> System.Windows.Forms.Cursor? -System.Windows.Forms.AmbientProperties.Cursor.set -> void -System.Windows.Forms.AmbientProperties.Font.get -> System.Drawing.Font? -System.Windows.Forms.AmbientProperties.Font.set -> void -System.Windows.Forms.AmbientProperties.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.AmbientProperties.ForeColor.set -> void -System.Windows.Forms.AnchorStyles -System.Windows.Forms.AnchorStyles.Bottom = 2 -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.AnchorStyles.Left = 4 -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.AnchorStyles.None = 0 -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.AnchorStyles.Right = 8 -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.AnchorStyles.Top = 1 -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.Appearance -System.Windows.Forms.Appearance.Button = 1 -> System.Windows.Forms.Appearance -System.Windows.Forms.Appearance.Normal = 0 -> System.Windows.Forms.Appearance -System.Windows.Forms.Application -System.Windows.Forms.Application.MessageLoopCallback -System.Windows.Forms.ApplicationContext -System.Windows.Forms.ApplicationContext.~ApplicationContext() -> void -System.Windows.Forms.ApplicationContext.ApplicationContext() -> void -System.Windows.Forms.ApplicationContext.ApplicationContext(System.Windows.Forms.Form? mainForm) -> void -System.Windows.Forms.ApplicationContext.Dispose() -> void -System.Windows.Forms.ApplicationContext.ExitThread() -> void -System.Windows.Forms.ApplicationContext.MainForm.get -> System.Windows.Forms.Form? -System.Windows.Forms.ApplicationContext.MainForm.set -> void -System.Windows.Forms.ApplicationContext.Tag.get -> object? -System.Windows.Forms.ApplicationContext.Tag.set -> void -System.Windows.Forms.ApplicationContext.ThreadExit -> System.EventHandler? -System.Windows.Forms.ArrangeDirection -System.Windows.Forms.ArrangeDirection.Down = 4 -> System.Windows.Forms.ArrangeDirection -System.Windows.Forms.ArrangeDirection.Left = 0 -> System.Windows.Forms.ArrangeDirection -System.Windows.Forms.ArrangeDirection.Right = 0 -> System.Windows.Forms.ArrangeDirection -System.Windows.Forms.ArrangeDirection.Up = 4 -> System.Windows.Forms.ArrangeDirection -System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrangeStartingPosition.BottomLeft = 0 -> System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrangeStartingPosition.BottomRight = 1 -> System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrangeStartingPosition.Hide = 8 -> System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrangeStartingPosition.TopLeft = 2 -> System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrangeStartingPosition.TopRight = System.Windows.Forms.ArrangeStartingPosition.BottomRight | System.Windows.Forms.ArrangeStartingPosition.TopLeft -> System.Windows.Forms.ArrangeStartingPosition -System.Windows.Forms.ArrowDirection -System.Windows.Forms.ArrowDirection.Down = 17 -> System.Windows.Forms.ArrowDirection -System.Windows.Forms.ArrowDirection.Left = 0 -> System.Windows.Forms.ArrowDirection -System.Windows.Forms.ArrowDirection.Right = 16 -> System.Windows.Forms.ArrowDirection -System.Windows.Forms.ArrowDirection.Up = 1 -> System.Windows.Forms.ArrowDirection -System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.AutoCompleteMode.Append = 2 -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.AutoCompleteMode.None = 0 -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.AutoCompleteMode.Suggest = 1 -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.AutoCompleteMode.SuggestAppend = 3 -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.AllSystemSources = 7 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.AllUrl = 6 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.CustomSource = 64 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.FileSystem = 1 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.FileSystemDirectories = 32 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.HistoryList = 2 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.ListItems = 256 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.None = 128 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteSource.RecentlyUsedList = 4 -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.AutoCompleteStringCollection -System.Windows.Forms.AutoCompleteStringCollection.Add(string! value) -> int -System.Windows.Forms.AutoCompleteStringCollection.AddRange(string![]! value) -> void -System.Windows.Forms.AutoCompleteStringCollection.AutoCompleteStringCollection() -> void -System.Windows.Forms.AutoCompleteStringCollection.Clear() -> void -System.Windows.Forms.AutoCompleteStringCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? -System.Windows.Forms.AutoCompleteStringCollection.Contains(string! value) -> bool -System.Windows.Forms.AutoCompleteStringCollection.CopyTo(string![]! array, int index) -> void -System.Windows.Forms.AutoCompleteStringCollection.Count.get -> int -System.Windows.Forms.AutoCompleteStringCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.AutoCompleteStringCollection.IndexOf(string! value) -> int -System.Windows.Forms.AutoCompleteStringCollection.Insert(int index, string! value) -> void -System.Windows.Forms.AutoCompleteStringCollection.IsReadOnly.get -> bool -System.Windows.Forms.AutoCompleteStringCollection.IsSynchronized.get -> bool -System.Windows.Forms.AutoCompleteStringCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs! e) -> void -System.Windows.Forms.AutoCompleteStringCollection.Remove(string! value) -> void -System.Windows.Forms.AutoCompleteStringCollection.RemoveAt(int index) -> void -System.Windows.Forms.AutoCompleteStringCollection.SyncRoot.get -> object! -System.Windows.Forms.AutoCompleteStringCollection.this[int index].get -> string! -System.Windows.Forms.AutoCompleteStringCollection.this[int index].set -> void -System.Windows.Forms.AutoScaleMode -System.Windows.Forms.AutoScaleMode.Dpi = 2 -> System.Windows.Forms.AutoScaleMode -System.Windows.Forms.AutoScaleMode.Font = 1 -> System.Windows.Forms.AutoScaleMode -System.Windows.Forms.AutoScaleMode.Inherit = 3 -> System.Windows.Forms.AutoScaleMode -System.Windows.Forms.AutoScaleMode.None = 0 -> System.Windows.Forms.AutoScaleMode -System.Windows.Forms.AutoSizeMode -System.Windows.Forms.AutoSizeMode.GrowAndShrink = 0 -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.AutoSizeMode.GrowOnly = 1 -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.AutoValidate -System.Windows.Forms.AutoValidate.Disable = 0 -> System.Windows.Forms.AutoValidate -System.Windows.Forms.AutoValidate.EnableAllowFocusChange = 2 -> System.Windows.Forms.AutoValidate -System.Windows.Forms.AutoValidate.EnablePreventFocusChange = 1 -> System.Windows.Forms.AutoValidate -System.Windows.Forms.AutoValidate.Inherit = -1 -> System.Windows.Forms.AutoValidate -System.Windows.Forms.AxHost -System.Windows.Forms.AxHost.AboutBoxDelegate -System.Windows.Forms.AxHost.ActiveXInvokeKind -System.Windows.Forms.AxHost.ActiveXInvokeKind.MethodInvoke = 0 -> System.Windows.Forms.AxHost.ActiveXInvokeKind -System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertyGet = 1 -> System.Windows.Forms.AxHost.ActiveXInvokeKind -System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertySet = 2 -> System.Windows.Forms.AxHost.ActiveXInvokeKind -System.Windows.Forms.AxHost.AxComponentEditor -System.Windows.Forms.AxHost.AxComponentEditor.AxComponentEditor() -> void -System.Windows.Forms.AxHost.AxHost(string! clsid) -> void -System.Windows.Forms.AxHost.AxHost(string! clsid, int flags) -> void -System.Windows.Forms.AxHost.BackColorChanged -> System.EventHandler? -System.Windows.Forms.AxHost.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.AxHost.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.AxHost.BeginInit() -> void -System.Windows.Forms.AxHost.BindingContextChanged -> System.EventHandler? -System.Windows.Forms.AxHost.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? -System.Windows.Forms.AxHost.Click -> System.EventHandler? -System.Windows.Forms.AxHost.ClsidAttribute -System.Windows.Forms.AxHost.ClsidAttribute.ClsidAttribute(string! clsid) -> void -System.Windows.Forms.AxHost.ClsidAttribute.Value.get -> string! -System.Windows.Forms.AxHost.ConnectionPointCookie -System.Windows.Forms.AxHost.ConnectionPointCookie.~ConnectionPointCookie() -> void -System.Windows.Forms.AxHost.ConnectionPointCookie.ConnectionPointCookie(object! source, object! sink, System.Type! eventInterface) -> void -System.Windows.Forms.AxHost.ConnectionPointCookie.Disconnect() -> void -System.Windows.Forms.AxHost.CursorChanged -> System.EventHandler? -System.Windows.Forms.AxHost.DoubleClick -> System.EventHandler? -System.Windows.Forms.AxHost.DoVerb(int verb) -> void -System.Windows.Forms.AxHost.DragDrop -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.AxHost.DragEnter -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.AxHost.DragLeave -> System.EventHandler? -System.Windows.Forms.AxHost.DragOver -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.AxHost.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void -System.Windows.Forms.AxHost.EditMode.get -> bool -System.Windows.Forms.AxHost.EnabledChanged -> System.EventHandler? -System.Windows.Forms.AxHost.EndInit() -> void -System.Windows.Forms.AxHost.FontChanged -> System.EventHandler? -System.Windows.Forms.AxHost.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.AxHost.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.AxHost.HasAboutBox.get -> bool -System.Windows.Forms.AxHost.HasPropertyPages() -> bool -System.Windows.Forms.AxHost.HelpRequested -> System.Windows.Forms.HelpEventHandler? -System.Windows.Forms.AxHost.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.AxHost.ImeMode.set -> void -System.Windows.Forms.AxHost.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.AxHost.InvalidActiveXStateException -System.Windows.Forms.AxHost.InvalidActiveXStateException.InvalidActiveXStateException() -> void -System.Windows.Forms.AxHost.InvalidActiveXStateException.InvalidActiveXStateException(string? name, System.Windows.Forms.AxHost.ActiveXInvokeKind kind) -> void -System.Windows.Forms.AxHost.InvokeEditMode() -> void -System.Windows.Forms.AxHost.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.AxHost.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.AxHost.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.AxHost.Layout -> System.Windows.Forms.LayoutEventHandler? -System.Windows.Forms.AxHost.MakeDirty() -> void -System.Windows.Forms.AxHost.MouseClick -> System.EventHandler? -System.Windows.Forms.AxHost.MouseDoubleClick -> System.EventHandler? -System.Windows.Forms.AxHost.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.AxHost.MouseEnter -> System.EventHandler? -System.Windows.Forms.AxHost.MouseHover -> System.EventHandler? -System.Windows.Forms.AxHost.MouseLeave -> System.EventHandler? -System.Windows.Forms.AxHost.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.AxHost.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.AxHost.MouseWheel -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.AxHost.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.AxHost.PropsValid() -> bool -System.Windows.Forms.AxHost.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? -System.Windows.Forms.AxHost.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? -System.Windows.Forms.AxHost.RaiseOnMouseDown(short button, short shift, float x, float y) -> void -System.Windows.Forms.AxHost.RaiseOnMouseDown(short button, short shift, int x, int y) -> void -System.Windows.Forms.AxHost.RaiseOnMouseMove(short button, short shift, float x, float y) -> void -System.Windows.Forms.AxHost.RaiseOnMouseMove(short button, short shift, int x, int y) -> void -System.Windows.Forms.AxHost.RaiseOnMouseUp(short button, short shift, float x, float y) -> void -System.Windows.Forms.AxHost.RaiseOnMouseUp(short button, short shift, int x, int y) -> void -System.Windows.Forms.AxHost.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.AxHost.ShowAboutBox() -> void -System.Windows.Forms.AxHost.ShowPropertyPages() -> void -System.Windows.Forms.AxHost.State -System.Windows.Forms.AxHost.State.Dispose() -> void -System.Windows.Forms.AxHost.State.State(System.IO.Stream! ms, int storageType, bool manualUpdate, string? licKey) -> void -System.Windows.Forms.AxHost.State.State(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -System.Windows.Forms.AxHost.StateConverter -System.Windows.Forms.AxHost.StateConverter.StateConverter() -> void -System.Windows.Forms.AxHost.StyleChanged -> System.EventHandler? -System.Windows.Forms.AxHost.TextChanged -> System.EventHandler? -System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute -System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.TypeLibraryTimeStampAttribute(string! timestamp) -> void -System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.Value.get -> System.DateTime -System.Windows.Forms.BaseCollection -System.Windows.Forms.BaseCollection.BaseCollection() -> void -System.Windows.Forms.BaseCollection.CopyTo(System.Array! ar, int index) -> void -System.Windows.Forms.BaseCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.BaseCollection.IsReadOnly.get -> bool -System.Windows.Forms.BaseCollection.IsSynchronized.get -> bool -System.Windows.Forms.BaseCollection.SyncRoot.get -> object! -System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.Charging = 8 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.Critical = 4 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.High = 1 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.Low = 2 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.NoSystemBattery = 128 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BatteryChargeStatus.Unknown = 255 -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.BindableComponent -System.Windows.Forms.BindableComponent.BindableComponent() -> void -System.Windows.Forms.BindableComponent.BindingContext.get -> System.Windows.Forms.BindingContext? -System.Windows.Forms.BindableComponent.BindingContext.set -> void -System.Windows.Forms.BindableComponent.BindingContextChanged -> System.EventHandler! -System.Windows.Forms.BindableComponent.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! -System.Windows.Forms.Binding -System.Windows.Forms.Binding.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler -System.Windows.Forms.Binding.BindingMemberInfo.get -> System.Windows.Forms.BindingMemberInfo -System.Windows.Forms.Binding.ControlUpdateMode.get -> System.Windows.Forms.ControlUpdateMode -System.Windows.Forms.Binding.ControlUpdateMode.set -> void -System.Windows.Forms.Binding.DataSourceUpdateMode.get -> System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.Binding.DataSourceUpdateMode.set -> void -System.Windows.Forms.Binding.Format -> System.Windows.Forms.ConvertEventHandler -System.Windows.Forms.Binding.FormattingEnabled.get -> bool -System.Windows.Forms.Binding.FormattingEnabled.set -> void -System.Windows.Forms.Binding.IsBinding.get -> bool -System.Windows.Forms.Binding.Parse -> System.Windows.Forms.ConvertEventHandler -System.Windows.Forms.Binding.ReadValue() -> void -System.Windows.Forms.Binding.WriteValue() -> void -System.Windows.Forms.BindingCompleteContext -System.Windows.Forms.BindingCompleteContext.ControlUpdate = 0 -> System.Windows.Forms.BindingCompleteContext -System.Windows.Forms.BindingCompleteContext.DataSourceUpdate = 1 -> System.Windows.Forms.BindingCompleteContext -System.Windows.Forms.BindingCompleteEventArgs -System.Windows.Forms.BindingCompleteEventArgs.Binding.get -> System.Windows.Forms.Binding? -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteContext.get -> System.Windows.Forms.BindingCompleteContext -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context) -> void -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText) -> void -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText, System.Exception? exception) -> void -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText, System.Exception? exception, bool cancel) -> void -System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteState.get -> System.Windows.Forms.BindingCompleteState -System.Windows.Forms.BindingCompleteEventArgs.ErrorText.get -> string! -System.Windows.Forms.BindingCompleteEventArgs.Exception.get -> System.Exception? -System.Windows.Forms.BindingCompleteEventHandler -System.Windows.Forms.BindingCompleteState -System.Windows.Forms.BindingCompleteState.DataError = 1 -> System.Windows.Forms.BindingCompleteState -System.Windows.Forms.BindingCompleteState.Exception = 2 -> System.Windows.Forms.BindingCompleteState -System.Windows.Forms.BindingCompleteState.Success = 0 -> System.Windows.Forms.BindingCompleteState -System.Windows.Forms.BindingContext -System.Windows.Forms.BindingContext.Add(object! dataSource, System.Windows.Forms.BindingManagerBase! listManager) -> void -System.Windows.Forms.BindingContext.BindingContext() -> void -System.Windows.Forms.BindingContext.Clear() -> void -System.Windows.Forms.BindingContext.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? -System.Windows.Forms.BindingContext.Contains(object! dataSource) -> bool -System.Windows.Forms.BindingContext.Contains(object! dataSource, string? dataMember) -> bool -System.Windows.Forms.BindingContext.IsReadOnly.get -> bool -System.Windows.Forms.BindingContext.Remove(object! dataSource) -> void -System.Windows.Forms.BindingContext.this[object! dataSource, string? dataMember].get -> System.Windows.Forms.BindingManagerBase! -System.Windows.Forms.BindingContext.this[object! dataSource].get -> System.Windows.Forms.BindingManagerBase! -System.Windows.Forms.BindingManagerBase -System.Windows.Forms.BindingManagerBase.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler! -System.Windows.Forms.BindingManagerBase.BindingManagerBase() -> void -System.Windows.Forms.BindingManagerBase.Bindings.get -> System.Windows.Forms.BindingsCollection! -System.Windows.Forms.BindingManagerBase.CurrentChanged -> System.EventHandler! -System.Windows.Forms.BindingManagerBase.CurrentItemChanged -> System.EventHandler! -System.Windows.Forms.BindingManagerBase.DataError -> System.Windows.Forms.BindingManagerDataErrorEventHandler! -System.Windows.Forms.BindingManagerBase.IsBindingSuspended.get -> bool -System.Windows.Forms.BindingManagerBase.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs! args) -> void -System.Windows.Forms.BindingManagerBase.onCurrentChangedHandler -> System.EventHandler? -System.Windows.Forms.BindingManagerBase.OnDataError(System.Exception! e) -> void -System.Windows.Forms.BindingManagerBase.onPositionChangedHandler -> System.EventHandler? -System.Windows.Forms.BindingManagerBase.PositionChanged -> System.EventHandler! -System.Windows.Forms.BindingManagerBase.PullData() -> void -System.Windows.Forms.BindingManagerBase.PushData() -> void -System.Windows.Forms.BindingManagerDataErrorEventArgs -System.Windows.Forms.BindingManagerDataErrorEventArgs.BindingManagerDataErrorEventArgs(System.Exception! exception) -> void -System.Windows.Forms.BindingManagerDataErrorEventArgs.Exception.get -> System.Exception! -System.Windows.Forms.BindingManagerDataErrorEventHandler -System.Windows.Forms.BindingMemberInfo -System.Windows.Forms.BindingMemberInfo.BindingField.get -> string! -System.Windows.Forms.BindingMemberInfo.BindingMember.get -> string! -System.Windows.Forms.BindingMemberInfo.BindingMemberInfo() -> void -System.Windows.Forms.BindingMemberInfo.BindingMemberInfo(string? dataMember) -> void -System.Windows.Forms.BindingMemberInfo.BindingPath.get -> string! -System.Windows.Forms.BindingMemberInfo.Equals(System.Windows.Forms.BindingMemberInfo other) -> bool -System.Windows.Forms.BindingNavigator -System.Windows.Forms.BindingNavigator.AddNewItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.AddNewItem.set -> void -System.Windows.Forms.BindingNavigator.BeginInit() -> void -System.Windows.Forms.BindingNavigator.BindingNavigator() -> void -System.Windows.Forms.BindingNavigator.BindingNavigator(bool addStandardItems) -> void -System.Windows.Forms.BindingNavigator.BindingNavigator(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.BindingNavigator.BindingNavigator(System.Windows.Forms.BindingSource? bindingSource) -> void -System.Windows.Forms.BindingNavigator.BindingSource.get -> System.Windows.Forms.BindingSource? -System.Windows.Forms.BindingNavigator.BindingSource.set -> void -System.Windows.Forms.BindingNavigator.CountItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.CountItem.set -> void -System.Windows.Forms.BindingNavigator.CountItemFormat.get -> string! -System.Windows.Forms.BindingNavigator.CountItemFormat.set -> void -System.Windows.Forms.BindingNavigator.DeleteItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.DeleteItem.set -> void -System.Windows.Forms.BindingNavigator.EndInit() -> void -System.Windows.Forms.BindingNavigator.MoveFirstItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.MoveFirstItem.set -> void -System.Windows.Forms.BindingNavigator.MoveLastItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.MoveLastItem.set -> void -System.Windows.Forms.BindingNavigator.MoveNextItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.MoveNextItem.set -> void -System.Windows.Forms.BindingNavigator.MovePreviousItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.MovePreviousItem.set -> void -System.Windows.Forms.BindingNavigator.PositionItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.BindingNavigator.PositionItem.set -> void -System.Windows.Forms.BindingNavigator.RefreshItems -> System.EventHandler? -System.Windows.Forms.BindingNavigator.Validate() -> bool -System.Windows.Forms.BindingsCollection -System.Windows.Forms.BindingsCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? -System.Windows.Forms.BindingsCollection.CollectionChanging -> System.ComponentModel.CollectionChangeEventHandler? -System.Windows.Forms.BindingsCollection.this[int index].get -> System.Windows.Forms.Binding! -System.Windows.Forms.BindingSource -System.Windows.Forms.BindingSource.AddingNew -> System.ComponentModel.AddingNewEventHandler -System.Windows.Forms.BindingSource.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler -System.Windows.Forms.BindingSource.BindingSource() -> void -System.Windows.Forms.BindingSource.CancelEdit() -> void -System.Windows.Forms.BindingSource.CurrentChanged -> System.EventHandler -System.Windows.Forms.BindingSource.CurrentItemChanged -> System.EventHandler -System.Windows.Forms.BindingSource.DataError -> System.Windows.Forms.BindingManagerDataErrorEventHandler -System.Windows.Forms.BindingSource.DataMemberChanged -> System.EventHandler -System.Windows.Forms.BindingSource.DataSourceChanged -> System.EventHandler -System.Windows.Forms.BindingSource.EndEdit() -> void -System.Windows.Forms.BindingSource.IsBindingSuspended.get -> bool -System.Windows.Forms.BindingSource.ListChanged -> System.ComponentModel.ListChangedEventHandler -System.Windows.Forms.BindingSource.MoveFirst() -> void -System.Windows.Forms.BindingSource.MoveLast() -> void -System.Windows.Forms.BindingSource.MoveNext() -> void -System.Windows.Forms.BindingSource.MovePrevious() -> void -System.Windows.Forms.BindingSource.Position.get -> int -System.Windows.Forms.BindingSource.Position.set -> void -System.Windows.Forms.BindingSource.PositionChanged -> System.EventHandler -System.Windows.Forms.BindingSource.RaiseListChangedEvents.get -> bool -System.Windows.Forms.BindingSource.RaiseListChangedEvents.set -> void -System.Windows.Forms.BindingSource.RemoveCurrent() -> void -System.Windows.Forms.BindingSource.ResetBindings(bool metadataChanged) -> void -System.Windows.Forms.BindingSource.ResetCurrentItem() -> void -System.Windows.Forms.BindingSource.ResetItem(int itemIndex) -> void -System.Windows.Forms.BindingSource.ResumeBinding() -> void -System.Windows.Forms.BindingSource.SuspendBinding() -> void -System.Windows.Forms.BootMode -System.Windows.Forms.BootMode.FailSafe = 1 -> System.Windows.Forms.BootMode -System.Windows.Forms.BootMode.FailSafeWithNetwork = 2 -> System.Windows.Forms.BootMode -System.Windows.Forms.BootMode.Normal = 0 -> System.Windows.Forms.BootMode -System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.All = System.Windows.Forms.Border3DSide.Left | System.Windows.Forms.Border3DSide.Top | System.Windows.Forms.Border3DSide.Right | System.Windows.Forms.Border3DSide.Bottom | System.Windows.Forms.Border3DSide.Middle -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.Bottom = 8 -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.Left = 1 -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.Middle = 2048 -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.Right = 4 -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DSide.Top = 2 -> System.Windows.Forms.Border3DSide -System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Adjust = 8192 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Bump = 9 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Etched = 6 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Flat = 16394 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Raised = 5 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.RaisedInner = 4 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.RaisedOuter = 1 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.Sunken = 10 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.SunkenInner = 8 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.Border3DStyle.SunkenOuter = 2 -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.BorderStyle -System.Windows.Forms.BorderStyle.Fixed3D = 2 -> System.Windows.Forms.BorderStyle -System.Windows.Forms.BorderStyle.FixedSingle = 1 -> System.Windows.Forms.BorderStyle -System.Windows.Forms.BorderStyle.None = 0 -> System.Windows.Forms.BorderStyle -System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.All = System.Windows.Forms.BoundsSpecified.Location | System.Windows.Forms.BoundsSpecified.Size -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.Height = 8 -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.Location = System.Windows.Forms.BoundsSpecified.X | System.Windows.Forms.BoundsSpecified.Y -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.None = 0 -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.Size = System.Windows.Forms.BoundsSpecified.Width | System.Windows.Forms.BoundsSpecified.Height -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.Width = 4 -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.X = 1 -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.BoundsSpecified.Y = 2 -> System.Windows.Forms.BoundsSpecified -System.Windows.Forms.Button -System.Windows.Forms.Button.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.Button.AutoSizeMode.set -> void -System.Windows.Forms.Button.Button() -> void -System.Windows.Forms.Button.DoubleClick -> System.EventHandler? -System.Windows.Forms.Button.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Button.PerformClick() -> void -System.Windows.Forms.ButtonBase -System.Windows.Forms.ButtonBase.AutoEllipsis.get -> bool -System.Windows.Forms.ButtonBase.AutoEllipsis.set -> void -System.Windows.Forms.ButtonBase.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ButtonBase.ButtonBase() -> void -System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject -System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.ButtonBaseAccessibleObject(System.Windows.Forms.Control! owner) -> void -System.Windows.Forms.ButtonBase.Command.get -> System.Windows.Input.ICommand? -System.Windows.Forms.ButtonBase.Command.set -> void -System.Windows.Forms.ButtonBase.CommandCanExecuteChanged -> System.EventHandler? -System.Windows.Forms.ButtonBase.CommandChanged -> System.EventHandler? -System.Windows.Forms.ButtonBase.CommandParameter.get -> object? -System.Windows.Forms.ButtonBase.CommandParameter.set -> void -System.Windows.Forms.ButtonBase.CommandParameterChanged -> System.EventHandler? -System.Windows.Forms.ButtonBase.FlatAppearance.get -> System.Windows.Forms.FlatButtonAppearance! -System.Windows.Forms.ButtonBase.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.ButtonBase.FlatStyle.set -> void -System.Windows.Forms.ButtonBase.Image.get -> System.Drawing.Image? -System.Windows.Forms.ButtonBase.Image.set -> void -System.Windows.Forms.ButtonBase.ImageAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ButtonBase.ImageAlign.set -> void -System.Windows.Forms.ButtonBase.ImageIndex.get -> int -System.Windows.Forms.ButtonBase.ImageIndex.set -> void -System.Windows.Forms.ButtonBase.ImageKey.get -> string! -System.Windows.Forms.ButtonBase.ImageKey.set -> void -System.Windows.Forms.ButtonBase.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ButtonBase.ImageList.set -> void -System.Windows.Forms.ButtonBase.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.ButtonBase.ImeMode.set -> void -System.Windows.Forms.ButtonBase.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.ButtonBase.IsDefault.get -> bool -System.Windows.Forms.ButtonBase.IsDefault.set -> void -System.Windows.Forms.ButtonBase.ResetFlagsandPaint() -> void -System.Windows.Forms.ButtonBase.TextImageRelation.get -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.ButtonBase.TextImageRelation.set -> void -System.Windows.Forms.ButtonBase.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.ButtonBase.UseCompatibleTextRendering.set -> void -System.Windows.Forms.ButtonBase.UseMnemonic.get -> bool -System.Windows.Forms.ButtonBase.UseMnemonic.set -> void -System.Windows.Forms.ButtonBase.UseVisualStyleBackColor.get -> bool -System.Windows.Forms.ButtonBase.UseVisualStyleBackColor.set -> void -System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.Dashed = 2 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.Dotted = 1 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.Inset = 4 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.None = 0 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.Outset = 5 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonBorderStyle.Solid = 3 -> System.Windows.Forms.ButtonBorderStyle -System.Windows.Forms.ButtonRenderer -System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.All = System.Windows.Forms.ButtonState.Inactive | System.Windows.Forms.ButtonState.Pushed | System.Windows.Forms.ButtonState.Checked | System.Windows.Forms.ButtonState.Flat -> System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.Checked = 1024 -> System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.Flat = 16384 -> System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.Inactive = 256 -> System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.Normal = 0 -> System.Windows.Forms.ButtonState -System.Windows.Forms.ButtonState.Pushed = 512 -> System.Windows.Forms.ButtonState -System.Windows.Forms.CacheVirtualItemsEventArgs -System.Windows.Forms.CacheVirtualItemsEventArgs.CacheVirtualItemsEventArgs(int startIndex, int endIndex) -> void -System.Windows.Forms.CacheVirtualItemsEventArgs.EndIndex.get -> int -System.Windows.Forms.CacheVirtualItemsEventArgs.StartIndex.get -> int -System.Windows.Forms.CacheVirtualItemsEventHandler -System.Windows.Forms.CaptionButton -System.Windows.Forms.CaptionButton.Close = 0 -> System.Windows.Forms.CaptionButton -System.Windows.Forms.CaptionButton.Help = 4 -> System.Windows.Forms.CaptionButton -System.Windows.Forms.CaptionButton.Maximize = 2 -> System.Windows.Forms.CaptionButton -System.Windows.Forms.CaptionButton.Minimize = 1 -> System.Windows.Forms.CaptionButton -System.Windows.Forms.CaptionButton.Restore = 3 -> System.Windows.Forms.CaptionButton -System.Windows.Forms.CharacterCasing -System.Windows.Forms.CharacterCasing.Lower = 2 -> System.Windows.Forms.CharacterCasing -System.Windows.Forms.CharacterCasing.Normal = 0 -> System.Windows.Forms.CharacterCasing -System.Windows.Forms.CharacterCasing.Upper = 1 -> System.Windows.Forms.CharacterCasing -System.Windows.Forms.CheckBox -System.Windows.Forms.CheckBox.Appearance.get -> System.Windows.Forms.Appearance -System.Windows.Forms.CheckBox.Appearance.set -> void -System.Windows.Forms.CheckBox.AppearanceChanged -> System.EventHandler? -System.Windows.Forms.CheckBox.AutoCheck.get -> bool -System.Windows.Forms.CheckBox.AutoCheck.set -> void -System.Windows.Forms.CheckBox.CheckAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.CheckBox.CheckAlign.set -> void -System.Windows.Forms.CheckBox.CheckBox() -> void -System.Windows.Forms.CheckBox.CheckBoxAccessibleObject -System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.CheckBoxAccessibleObject(System.Windows.Forms.Control! owner) -> void -System.Windows.Forms.CheckBox.Checked.get -> bool -System.Windows.Forms.CheckBox.Checked.set -> void -System.Windows.Forms.CheckBox.CheckedChanged -> System.EventHandler? -System.Windows.Forms.CheckBox.CheckState.get -> System.Windows.Forms.CheckState -System.Windows.Forms.CheckBox.CheckState.set -> void -System.Windows.Forms.CheckBox.CheckStateChanged -> System.EventHandler? -System.Windows.Forms.CheckBox.DoubleClick -> System.EventHandler? -System.Windows.Forms.CheckBox.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.CheckBox.ThreeState.get -> bool -System.Windows.Forms.CheckBox.ThreeState.set -> void -System.Windows.Forms.CheckBoxRenderer -System.Windows.Forms.CheckedListBox -System.Windows.Forms.CheckedListBox.CheckedIndexCollection -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Contains(int index) -> bool -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Count.get -> int -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(int index) -> int -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IsReadOnly.get -> bool -System.Windows.Forms.CheckedListBox.CheckedIndexCollection.this[int index].get -> int -System.Windows.Forms.CheckedListBox.CheckedIndices.get -> System.Windows.Forms.CheckedListBox.CheckedIndexCollection! -System.Windows.Forms.CheckedListBox.CheckedItemCollection -System.Windows.Forms.CheckedListBox.CheckedItemCollection.Contains(object? item) -> bool -System.Windows.Forms.CheckedListBox.CheckedItemCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.CheckedListBox.CheckedItemCollection.Count.get -> int -System.Windows.Forms.CheckedListBox.CheckedItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.CheckedListBox.CheckedItemCollection.IndexOf(object? item) -> int -System.Windows.Forms.CheckedListBox.CheckedItemCollection.IsReadOnly.get -> bool -System.Windows.Forms.CheckedListBox.CheckedItemCollection.this[int index].get -> object? -System.Windows.Forms.CheckedListBox.CheckedItemCollection.this[int index].set -> void -System.Windows.Forms.CheckedListBox.CheckedItems.get -> System.Windows.Forms.CheckedListBox.CheckedItemCollection! -System.Windows.Forms.CheckedListBox.CheckedListBox() -> void -System.Windows.Forms.CheckedListBox.CheckOnClick.get -> bool -System.Windows.Forms.CheckedListBox.CheckOnClick.set -> void -System.Windows.Forms.CheckedListBox.Click -> System.EventHandler? -System.Windows.Forms.CheckedListBox.DataSource.get -> object? -System.Windows.Forms.CheckedListBox.DataSource.set -> void -System.Windows.Forms.CheckedListBox.DataSourceChanged -> System.EventHandler? -System.Windows.Forms.CheckedListBox.DisplayMember.get -> string! -System.Windows.Forms.CheckedListBox.DisplayMember.set -> void -System.Windows.Forms.CheckedListBox.DisplayMemberChanged -> System.EventHandler? -System.Windows.Forms.CheckedListBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? -System.Windows.Forms.CheckedListBox.GetItemChecked(int index) -> bool -System.Windows.Forms.CheckedListBox.GetItemCheckState(int index) -> System.Windows.Forms.CheckState -System.Windows.Forms.CheckedListBox.ItemCheck -> System.Windows.Forms.ItemCheckEventHandler? -System.Windows.Forms.CheckedListBox.Items.get -> System.Windows.Forms.CheckedListBox.ObjectCollection! -System.Windows.Forms.CheckedListBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? -System.Windows.Forms.CheckedListBox.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.CheckedListBox.ObjectCollection -System.Windows.Forms.CheckedListBox.ObjectCollection.Add(object! item, bool isChecked) -> int -System.Windows.Forms.CheckedListBox.ObjectCollection.Add(object! item, System.Windows.Forms.CheckState check) -> int -System.Windows.Forms.CheckedListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.CheckedListBox! owner) -> void -System.Windows.Forms.CheckedListBox.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.CheckedListBox.Padding.set -> void -System.Windows.Forms.CheckedListBox.SetItemChecked(int index, bool value) -> void -System.Windows.Forms.CheckedListBox.SetItemCheckState(int index, System.Windows.Forms.CheckState value) -> void -System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes.get -> bool -System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes.set -> void -System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering.set -> void -System.Windows.Forms.CheckedListBox.ValueMember.get -> string! -System.Windows.Forms.CheckedListBox.ValueMember.set -> void -System.Windows.Forms.CheckedListBox.ValueMemberChanged -> System.EventHandler? -System.Windows.Forms.CheckState -System.Windows.Forms.CheckState.Checked = 1 -> System.Windows.Forms.CheckState -System.Windows.Forms.CheckState.Indeterminate = 2 -> System.Windows.Forms.CheckState -System.Windows.Forms.CheckState.Unchecked = 0 -> System.Windows.Forms.CheckState -System.Windows.Forms.Clipboard -System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.ApplicationExitCall = 6 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.FormOwnerClosing = 5 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.MdiFormClosing = 2 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.None = 0 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.TaskManagerClosing = 4 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.UserClosing = 3 -> System.Windows.Forms.CloseReason -System.Windows.Forms.CloseReason.WindowsShutDown = 1 -> System.Windows.Forms.CloseReason -System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDepth.Depth16Bit = 16 -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDepth.Depth24Bit = 24 -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDepth.Depth32Bit = 32 -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDepth.Depth4Bit = 4 -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDepth.Depth8Bit = 8 -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ColorDialog -System.Windows.Forms.ColorDialog.Color.get -> System.Drawing.Color -System.Windows.Forms.ColorDialog.Color.set -> void -System.Windows.Forms.ColorDialog.ColorDialog() -> void -System.Windows.Forms.ColorDialog.CustomColors.get -> int[]! -System.Windows.Forms.ColorDialog.CustomColors.set -> void -System.Windows.Forms.ColumnClickEventArgs -System.Windows.Forms.ColumnClickEventArgs.Column.get -> int -System.Windows.Forms.ColumnClickEventArgs.ColumnClickEventArgs(int column) -> void -System.Windows.Forms.ColumnClickEventHandler -System.Windows.Forms.ColumnHeader -System.Windows.Forms.ColumnHeader.AutoResize(System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void -System.Windows.Forms.ColumnHeader.Clone() -> object! -System.Windows.Forms.ColumnHeader.ColumnHeader() -> void -System.Windows.Forms.ColumnHeader.ColumnHeader(int imageIndex) -> void -System.Windows.Forms.ColumnHeader.ColumnHeader(string! imageKey) -> void -System.Windows.Forms.ColumnHeader.DisplayIndex.get -> int -System.Windows.Forms.ColumnHeader.DisplayIndex.set -> void -System.Windows.Forms.ColumnHeader.ImageIndex.get -> int -System.Windows.Forms.ColumnHeader.ImageIndex.set -> void -System.Windows.Forms.ColumnHeader.ImageKey.get -> string! -System.Windows.Forms.ColumnHeader.ImageKey.set -> void -System.Windows.Forms.ColumnHeader.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ColumnHeader.Index.get -> int -System.Windows.Forms.ColumnHeader.ListView.get -> System.Windows.Forms.ListView? -System.Windows.Forms.ColumnHeader.Name.get -> string? -System.Windows.Forms.ColumnHeader.Name.set -> void -System.Windows.Forms.ColumnHeader.Tag.get -> object? -System.Windows.Forms.ColumnHeader.Tag.set -> void -System.Windows.Forms.ColumnHeader.Text.get -> string! -System.Windows.Forms.ColumnHeader.Text.set -> void -System.Windows.Forms.ColumnHeader.TextAlign.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.ColumnHeader.TextAlign.set -> void -System.Windows.Forms.ColumnHeader.Width.get -> int -System.Windows.Forms.ColumnHeader.Width.set -> void -System.Windows.Forms.ColumnHeaderAutoResizeStyle -System.Windows.Forms.ColumnHeaderAutoResizeStyle.ColumnContent = 2 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle -System.Windows.Forms.ColumnHeaderAutoResizeStyle.HeaderSize = 1 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle -System.Windows.Forms.ColumnHeaderAutoResizeStyle.None = 0 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle -System.Windows.Forms.ColumnHeaderConverter -System.Windows.Forms.ColumnHeaderConverter.ColumnHeaderConverter() -> void -System.Windows.Forms.ColumnHeaderStyle -System.Windows.Forms.ColumnHeaderStyle.Clickable = 2 -> System.Windows.Forms.ColumnHeaderStyle -System.Windows.Forms.ColumnHeaderStyle.Nonclickable = 1 -> System.Windows.Forms.ColumnHeaderStyle -System.Windows.Forms.ColumnHeaderStyle.None = 0 -> System.Windows.Forms.ColumnHeaderStyle -System.Windows.Forms.ColumnReorderedEventArgs -System.Windows.Forms.ColumnReorderedEventArgs.ColumnReorderedEventArgs(int oldDisplayIndex, int newDisplayIndex, System.Windows.Forms.ColumnHeader? header) -> void -System.Windows.Forms.ColumnReorderedEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? -System.Windows.Forms.ColumnReorderedEventArgs.NewDisplayIndex.get -> int -System.Windows.Forms.ColumnReorderedEventArgs.OldDisplayIndex.get -> int -System.Windows.Forms.ColumnReorderedEventHandler -System.Windows.Forms.ColumnStyle -System.Windows.Forms.ColumnStyle.ColumnStyle() -> void -System.Windows.Forms.ColumnStyle.ColumnStyle(System.Windows.Forms.SizeType sizeType) -> void -System.Windows.Forms.ColumnStyle.ColumnStyle(System.Windows.Forms.SizeType sizeType, float width) -> void -System.Windows.Forms.ColumnStyle.Width.get -> float -System.Windows.Forms.ColumnStyle.Width.set -> void -System.Windows.Forms.ColumnWidthChangedEventArgs -System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnIndex.get -> int -System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnWidthChangedEventArgs(int columnIndex) -> void -System.Windows.Forms.ColumnWidthChangedEventHandler -System.Windows.Forms.ColumnWidthChangingEventArgs -System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnIndex.get -> int -System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnWidthChangingEventArgs(int columnIndex, int newWidth) -> void -System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnWidthChangingEventArgs(int columnIndex, int newWidth, bool cancel) -> void -System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth.get -> int -System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth.set -> void -System.Windows.Forms.ColumnWidthChangingEventHandler -System.Windows.Forms.ComboBox -System.Windows.Forms.ComboBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! -System.Windows.Forms.ComboBox.AutoCompleteCustomSource.set -> void -System.Windows.Forms.ComboBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.ComboBox.AutoCompleteMode.set -> void -System.Windows.Forms.ComboBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.ComboBox.AutoCompleteSource.set -> void -System.Windows.Forms.ComboBox.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ComboBox.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ComboBox.BeginUpdate() -> void -System.Windows.Forms.ComboBox.ChildAccessibleObject -System.Windows.Forms.ComboBox.ChildAccessibleObject.ChildAccessibleObject(System.Windows.Forms.ComboBox! owner, nint handle) -> void -System.Windows.Forms.ComboBox.ComboBox() -> void -System.Windows.Forms.ComboBox.DataSource.get -> object? -System.Windows.Forms.ComboBox.DataSource.set -> void -System.Windows.Forms.ComboBox.DoubleClick -> System.EventHandler? -System.Windows.Forms.ComboBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? -System.Windows.Forms.ComboBox.DrawMode.get -> System.Windows.Forms.DrawMode -System.Windows.Forms.ComboBox.DrawMode.set -> void -System.Windows.Forms.ComboBox.DropDown -> System.EventHandler? -System.Windows.Forms.ComboBox.DropDownClosed -> System.EventHandler? -System.Windows.Forms.ComboBox.DropDownHeight.get -> int -System.Windows.Forms.ComboBox.DropDownHeight.set -> void -System.Windows.Forms.ComboBox.DropDownStyle.get -> System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.ComboBox.DropDownStyle.set -> void -System.Windows.Forms.ComboBox.DropDownStyleChanged -> System.EventHandler? -System.Windows.Forms.ComboBox.DropDownWidth.get -> int -System.Windows.Forms.ComboBox.DropDownWidth.set -> void -System.Windows.Forms.ComboBox.DroppedDown.get -> bool -System.Windows.Forms.ComboBox.DroppedDown.set -> void -System.Windows.Forms.ComboBox.EndUpdate() -> void -System.Windows.Forms.ComboBox.FindString(string? s) -> int -System.Windows.Forms.ComboBox.FindString(string? s, int startIndex) -> int -System.Windows.Forms.ComboBox.FindStringExact(string? s) -> int -System.Windows.Forms.ComboBox.FindStringExact(string? s, int startIndex) -> int -System.Windows.Forms.ComboBox.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.ComboBox.FlatStyle.set -> void -System.Windows.Forms.ComboBox.GetItemHeight(int index) -> int -System.Windows.Forms.ComboBox.IntegralHeight.get -> bool -System.Windows.Forms.ComboBox.IntegralHeight.set -> void -System.Windows.Forms.ComboBox.ItemHeight.get -> int -System.Windows.Forms.ComboBox.ItemHeight.set -> void -System.Windows.Forms.ComboBox.Items.get -> System.Windows.Forms.ComboBox.ObjectCollection! -System.Windows.Forms.ComboBox.MaxDropDownItems.get -> int -System.Windows.Forms.ComboBox.MaxDropDownItems.set -> void -System.Windows.Forms.ComboBox.MaxLength.get -> int -System.Windows.Forms.ComboBox.MaxLength.set -> void -System.Windows.Forms.ComboBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? -System.Windows.Forms.ComboBox.ObjectCollection -System.Windows.Forms.ComboBox.ObjectCollection.Add(object! item) -> int -System.Windows.Forms.ComboBox.ObjectCollection.AddRange(object![]! items) -> void -System.Windows.Forms.ComboBox.ObjectCollection.Clear() -> void -System.Windows.Forms.ComboBox.ObjectCollection.Contains(object? value) -> bool -System.Windows.Forms.ComboBox.ObjectCollection.CopyTo(object![]! destination, int arrayIndex) -> void -System.Windows.Forms.ComboBox.ObjectCollection.Count.get -> int -System.Windows.Forms.ComboBox.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ComboBox.ObjectCollection.IndexOf(object? value) -> int -System.Windows.Forms.ComboBox.ObjectCollection.Insert(int index, object? item) -> void -System.Windows.Forms.ComboBox.ObjectCollection.IsReadOnly.get -> bool -System.Windows.Forms.ComboBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ComboBox! owner) -> void -System.Windows.Forms.ComboBox.ObjectCollection.Remove(object? value) -> void -System.Windows.Forms.ComboBox.ObjectCollection.RemoveAt(int index) -> void -System.Windows.Forms.ComboBox.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.ComboBox.Padding.set -> void -System.Windows.Forms.ComboBox.PaddingChanged -> System.EventHandler? -System.Windows.Forms.ComboBox.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ComboBox.PreferredHeight.get -> int -System.Windows.Forms.ComboBox.Select(int start, int length) -> void -System.Windows.Forms.ComboBox.SelectAll() -> void -System.Windows.Forms.ComboBox.SelectedIndexChanged -> System.EventHandler? -System.Windows.Forms.ComboBox.SelectedItem.get -> object? -System.Windows.Forms.ComboBox.SelectedItem.set -> void -System.Windows.Forms.ComboBox.SelectedText.get -> string! -System.Windows.Forms.ComboBox.SelectedText.set -> void -System.Windows.Forms.ComboBox.SelectionChangeCommitted -> System.EventHandler? -System.Windows.Forms.ComboBox.SelectionLength.get -> int -System.Windows.Forms.ComboBox.SelectionLength.set -> void -System.Windows.Forms.ComboBox.SelectionStart.get -> int -System.Windows.Forms.ComboBox.SelectionStart.set -> void -System.Windows.Forms.ComboBox.Sorted.get -> bool -System.Windows.Forms.ComboBox.Sorted.set -> void -System.Windows.Forms.ComboBox.TextUpdate -> System.EventHandler? -System.Windows.Forms.ComboBoxRenderer -System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.ComboBoxStyle.DropDown = 1 -> System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.ComboBoxStyle.DropDownList = 2 -> System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.ComboBoxStyle.Simple = 0 -> System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.CommonDialog -System.Windows.Forms.CommonDialog.CommonDialog() -> void -System.Windows.Forms.CommonDialog.HelpRequest -> System.EventHandler? -System.Windows.Forms.CommonDialog.ShowDialog() -> System.Windows.Forms.DialogResult -System.Windows.Forms.CommonDialog.ShowDialog(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult -System.Windows.Forms.CommonDialog.Tag.get -> object? -System.Windows.Forms.CommonDialog.Tag.set -> void -System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant -System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant.Com2Variant() -> void -System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService -System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService.ShowPropertyPage(string! title, object! component, int dispid, System.Guid pageGuid, nint parentHandle) -> void -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.ComComponentNameChanged -> System.ComponentModel.Design.ComponentRenameEventHandler? -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.DropDownDone() -> void -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.EnsurePendingChangesCommitted() -> bool -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.HandleF4() -> void -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.InPropertySet.get -> bool -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.LoadState(Microsoft.Win32.RegistryKey? key) -> void -System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.SaveState(Microsoft.Win32.RegistryKey? key) -> void -System.Windows.Forms.ContainerControl -System.Windows.Forms.ContainerControl.ActiveControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.ContainerControl.ActiveControl.set -> void -System.Windows.Forms.ContainerControl.AutoScaleDimensions.get -> System.Drawing.SizeF -System.Windows.Forms.ContainerControl.AutoScaleDimensions.set -> void -System.Windows.Forms.ContainerControl.AutoScaleFactor.get -> System.Drawing.SizeF -System.Windows.Forms.ContainerControl.AutoScaleMode.get -> System.Windows.Forms.AutoScaleMode -System.Windows.Forms.ContainerControl.AutoScaleMode.set -> void -System.Windows.Forms.ContainerControl.AutoValidateChanged -> System.EventHandler? -System.Windows.Forms.ContainerControl.ContainerControl() -> void -System.Windows.Forms.ContainerControl.CurrentAutoScaleDimensions.get -> System.Drawing.SizeF -System.Windows.Forms.ContainerControl.ParentForm.get -> System.Windows.Forms.Form? -System.Windows.Forms.ContainerControl.PerformAutoScale() -> void -System.Windows.Forms.ContainerControl.Validate() -> bool -System.Windows.Forms.ContainerControl.Validate(bool checkAutoValidate) -> bool -System.Windows.Forms.ContentsResizedEventArgs -System.Windows.Forms.ContentsResizedEventArgs.ContentsResizedEventArgs(System.Drawing.Rectangle newRectangle) -> void -System.Windows.Forms.ContentsResizedEventArgs.NewRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ContentsResizedEventHandler -System.Windows.Forms.ContextMenuStrip -System.Windows.Forms.ContextMenuStrip.ContextMenuStrip() -> void -System.Windows.Forms.ContextMenuStrip.ContextMenuStrip(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.ContextMenuStrip.SourceControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.Control -System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int childID) -> void -System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID) -> void -System.Windows.Forms.Control.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject! -System.Windows.Forms.Control.AccessibleDefaultActionDescription.get -> string? -System.Windows.Forms.Control.AccessibleDefaultActionDescription.set -> void -System.Windows.Forms.Control.AccessibleDescription.get -> string? -System.Windows.Forms.Control.AccessibleDescription.set -> void -System.Windows.Forms.Control.AccessibleName.get -> string? -System.Windows.Forms.Control.AccessibleName.set -> void -System.Windows.Forms.Control.AccessibleRole.get -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.Control.AccessibleRole.set -> void -System.Windows.Forms.Control.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Control.BackColorChanged -> System.EventHandler? -System.Windows.Forms.Control.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.Control.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.Control.BeginInvoke(System.Action! method) -> System.IAsyncResult! -System.Windows.Forms.Control.BeginInvoke(System.Delegate! method) -> System.IAsyncResult! -System.Windows.Forms.Control.BeginInvoke(System.Delegate! method, params object?[]? args) -> System.IAsyncResult! -System.Windows.Forms.Control.BindingContextChanged -> System.EventHandler? -System.Windows.Forms.Control.Bottom.get -> int -System.Windows.Forms.Control.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.Control.Bounds.set -> void -System.Windows.Forms.Control.BringToFront() -> void -System.Windows.Forms.Control.CanFocus.get -> bool -System.Windows.Forms.Control.CanSelect.get -> bool -System.Windows.Forms.Control.Capture.get -> bool -System.Windows.Forms.Control.Capture.set -> void -System.Windows.Forms.Control.CausesValidation.get -> bool -System.Windows.Forms.Control.CausesValidation.set -> void -System.Windows.Forms.Control.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.Control.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? -System.Windows.Forms.Control.Click -> System.EventHandler? -System.Windows.Forms.Control.ClientRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.Control.ClientSize.get -> System.Drawing.Size -System.Windows.Forms.Control.ClientSize.set -> void -System.Windows.Forms.Control.ClientSizeChanged -> System.EventHandler? -System.Windows.Forms.Control.CompanyName.get -> string! -System.Windows.Forms.Control.Contains(System.Windows.Forms.Control? ctl) -> bool -System.Windows.Forms.Control.ContainsFocus.get -> bool -System.Windows.Forms.Control.ContextMenuStripChanged -> System.EventHandler? -System.Windows.Forms.Control.Control() -> void -System.Windows.Forms.Control.Control(string? text) -> void -System.Windows.Forms.Control.Control(string? text, int left, int top, int width, int height) -> void -System.Windows.Forms.Control.Control(System.Windows.Forms.Control? parent, string? text) -> void -System.Windows.Forms.Control.Control(System.Windows.Forms.Control? parent, string? text, int left, int top, int width, int height) -> void -System.Windows.Forms.Control.ControlAccessibleObject -System.Windows.Forms.Control.ControlAccessibleObject.ControlAccessibleObject(System.Windows.Forms.Control! ownerControl) -> void -System.Windows.Forms.Control.ControlAccessibleObject.Handle.get -> nint -System.Windows.Forms.Control.ControlAccessibleObject.Handle.set -> void -System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent) -> void -System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int childID) -> void -System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID) -> void -System.Windows.Forms.Control.ControlAccessibleObject.Owner.get -> System.Windows.Forms.Control? -System.Windows.Forms.Control.ControlAdded -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.Control.ControlCollection -System.Windows.Forms.Control.ControlCollection.Contains(System.Windows.Forms.Control? control) -> bool -System.Windows.Forms.Control.ControlCollection.ControlCollection(System.Windows.Forms.Control! owner) -> void -System.Windows.Forms.Control.ControlCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.Control![]! -System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control! child) -> int -System.Windows.Forms.Control.ControlCollection.IndexOf(System.Windows.Forms.Control? control) -> int -System.Windows.Forms.Control.ControlCollection.Owner.get -> System.Windows.Forms.Control! -System.Windows.Forms.Control.ControlCollection.RemoveAt(int index) -> void -System.Windows.Forms.Control.ControlRemoved -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.Control.Controls.get -> System.Windows.Forms.Control.ControlCollection! -System.Windows.Forms.Control.CreateControl() -> void -System.Windows.Forms.Control.Created.get -> bool -System.Windows.Forms.Control.CreateGraphics() -> System.Drawing.Graphics! -System.Windows.Forms.Control.CursorChanged -> System.EventHandler? -System.Windows.Forms.Control.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! -System.Windows.Forms.Control.DataContextChanged -> System.EventHandler? -System.Windows.Forms.Control.DeviceDpi.get -> int -System.Windows.Forms.Control.Disposing.get -> bool -System.Windows.Forms.Control.DockChanged -> System.EventHandler? -System.Windows.Forms.Control.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects) -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.Control.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.Control.DoubleClick -> System.EventHandler? -System.Windows.Forms.Control.DpiChangedAfterParent -> System.EventHandler? -System.Windows.Forms.Control.DpiChangedBeforeParent -> System.EventHandler? -System.Windows.Forms.Control.DragDrop -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.Control.DragEnter -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.Control.DragLeave -> System.EventHandler? -System.Windows.Forms.Control.DragOver -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void -System.Windows.Forms.Control.Enabled.get -> bool -System.Windows.Forms.Control.Enabled.set -> void -System.Windows.Forms.Control.EnabledChanged -> System.EventHandler? -System.Windows.Forms.Control.EndInvoke(System.IAsyncResult! asyncResult) -> object? -System.Windows.Forms.Control.Enter -> System.EventHandler? -System.Windows.Forms.Control.FindForm() -> System.Windows.Forms.Form? -System.Windows.Forms.Control.Focus() -> bool -System.Windows.Forms.Control.FontChanged -> System.EventHandler? -System.Windows.Forms.Control.FontHeight.get -> int -System.Windows.Forms.Control.FontHeight.set -> void -System.Windows.Forms.Control.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.Control.GetAutoSizeMode() -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point pt) -> System.Windows.Forms.Control? -System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue) -> System.Windows.Forms.Control? -System.Windows.Forms.Control.GetContainerControl() -> System.Windows.Forms.IContainerControl? -System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control? ctl, bool forward) -> System.Windows.Forms.Control? -System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles flag) -> bool -System.Windows.Forms.Control.GetTopLevel() -> bool -System.Windows.Forms.Control.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.Control.GotFocus -> System.EventHandler? -System.Windows.Forms.Control.Handle.get -> nint -System.Windows.Forms.Control.HandleCreated -> System.EventHandler? -System.Windows.Forms.Control.HandleDestroyed -> System.EventHandler? -System.Windows.Forms.Control.HasChildren.get -> bool -System.Windows.Forms.Control.Height.get -> int -System.Windows.Forms.Control.Height.set -> void -System.Windows.Forms.Control.HelpRequested -> System.Windows.Forms.HelpEventHandler? -System.Windows.Forms.Control.Hide() -> void -System.Windows.Forms.Control.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.Control.ImeMode.set -> void -System.Windows.Forms.Control.ImeModeChanged -> System.EventHandler! -System.Windows.Forms.Control.Invalidate() -> void -System.Windows.Forms.Control.Invalidate(bool invalidateChildren) -> void -System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle rc) -> void -System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) -> void -System.Windows.Forms.Control.Invalidate(System.Drawing.Region? region) -> void -System.Windows.Forms.Control.Invalidate(System.Drawing.Region? region, bool invalidateChildren) -> void -System.Windows.Forms.Control.Invalidated -> System.Windows.Forms.InvalidateEventHandler? -System.Windows.Forms.Control.Invoke(System.Action! method) -> void -System.Windows.Forms.Control.Invoke(System.Delegate! method) -> object! -System.Windows.Forms.Control.Invoke(System.Delegate! method, params object?[]? args) -> object! -System.Windows.Forms.Control.Invoke(System.Func! method) -> T -System.Windows.Forms.Control.InvokeGotFocus(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void -System.Windows.Forms.Control.InvokeLostFocus(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void -System.Windows.Forms.Control.InvokeOnClick(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void -System.Windows.Forms.Control.InvokePaint(System.Windows.Forms.Control! c, System.Windows.Forms.PaintEventArgs! e) -> void -System.Windows.Forms.Control.InvokePaintBackground(System.Windows.Forms.Control! c, System.Windows.Forms.PaintEventArgs! e) -> void -System.Windows.Forms.Control.InvokeRequired.get -> bool -System.Windows.Forms.Control.IsAccessible.get -> bool -System.Windows.Forms.Control.IsAccessible.set -> void -System.Windows.Forms.Control.IsAncestorSiteInDesignMode.get -> bool -System.Windows.Forms.Control.IsDisposed.get -> bool -System.Windows.Forms.Control.IsHandleCreated.get -> bool -System.Windows.Forms.Control.IsMirrored.get -> bool -System.Windows.Forms.Control.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Control.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.Control.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Control.Layout -> System.Windows.Forms.LayoutEventHandler? -System.Windows.Forms.Control.Leave -> System.EventHandler? -System.Windows.Forms.Control.Left.get -> int -System.Windows.Forms.Control.Left.set -> void -System.Windows.Forms.Control.Location.get -> System.Drawing.Point -System.Windows.Forms.Control.Location.set -> void -System.Windows.Forms.Control.LocationChanged -> System.EventHandler? -System.Windows.Forms.Control.LogicalToDeviceUnits(int value) -> int -System.Windows.Forms.Control.LogicalToDeviceUnits(System.Drawing.Size value) -> System.Drawing.Size -System.Windows.Forms.Control.LostFocus -> System.EventHandler? -System.Windows.Forms.Control.Margin.get -> System.Windows.Forms.Padding -System.Windows.Forms.Control.Margin.set -> void -System.Windows.Forms.Control.MarginChanged -> System.EventHandler? -System.Windows.Forms.Control.MouseCaptureChanged -> System.EventHandler? -System.Windows.Forms.Control.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.MouseEnter -> System.EventHandler? -System.Windows.Forms.Control.MouseHover -> System.EventHandler? -System.Windows.Forms.Control.MouseLeave -> System.EventHandler? -System.Windows.Forms.Control.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.MouseWheel -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.Control.Move -> System.EventHandler? -System.Windows.Forms.Control.Name.get -> string! -System.Windows.Forms.Control.Name.set -> void -System.Windows.Forms.Control.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.Control.Padding.set -> void -System.Windows.Forms.Control.PaddingChanged -> System.EventHandler? -System.Windows.Forms.Control.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.Control.Parent.get -> System.Windows.Forms.Control? -System.Windows.Forms.Control.Parent.set -> void -System.Windows.Forms.Control.ParentChanged -> System.EventHandler? -System.Windows.Forms.Control.PerformLayout() -> void -System.Windows.Forms.Control.PerformLayout(System.Windows.Forms.Control? affectedControl, string? affectedProperty) -> void -System.Windows.Forms.Control.PointToClient(System.Drawing.Point p) -> System.Drawing.Point -System.Windows.Forms.Control.PointToScreen(System.Drawing.Point p) -> System.Drawing.Point -System.Windows.Forms.Control.PreferredSize.get -> System.Drawing.Size -System.Windows.Forms.Control.PreProcessControlMessage(ref System.Windows.Forms.Message msg) -> System.Windows.Forms.PreProcessControlState -System.Windows.Forms.Control.PreviewKeyDown -> System.Windows.Forms.PreviewKeyDownEventHandler? -System.Windows.Forms.Control.ProductName.get -> string! -System.Windows.Forms.Control.ProductVersion.get -> string! -System.Windows.Forms.Control.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? -System.Windows.Forms.Control.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? -System.Windows.Forms.Control.RaiseDragEvent(object! key, System.Windows.Forms.DragEventArgs! e) -> void -System.Windows.Forms.Control.RaiseKeyEvent(object! key, System.Windows.Forms.KeyEventArgs! e) -> void -System.Windows.Forms.Control.RaiseMouseEvent(object! key, System.Windows.Forms.MouseEventArgs! e) -> void -System.Windows.Forms.Control.RaisePaintEvent(object! key, System.Windows.Forms.PaintEventArgs! e) -> void -System.Windows.Forms.Control.RecreateHandle() -> void -System.Windows.Forms.Control.RecreatingHandle.get -> bool -System.Windows.Forms.Control.RectangleToClient(System.Drawing.Rectangle r) -> System.Drawing.Rectangle -System.Windows.Forms.Control.RectangleToScreen(System.Drawing.Rectangle r) -> System.Drawing.Rectangle -System.Windows.Forms.Control.Region.get -> System.Drawing.Region? -System.Windows.Forms.Control.Region.set -> void -System.Windows.Forms.Control.RegionChanged -> System.EventHandler? -System.Windows.Forms.Control.RenderRightToLeft.get -> bool -System.Windows.Forms.Control.ResetBindings() -> void -System.Windows.Forms.Control.ResetImeMode() -> void -System.Windows.Forms.Control.ResetMouseEventArgs() -> void -System.Windows.Forms.Control.Resize -> System.EventHandler? -System.Windows.Forms.Control.ResizeRedraw.get -> bool -System.Windows.Forms.Control.ResizeRedraw.set -> void -System.Windows.Forms.Control.ResumeLayout() -> void -System.Windows.Forms.Control.ResumeLayout(bool performLayout) -> void -System.Windows.Forms.Control.Right.get -> int -System.Windows.Forms.Control.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.Control.RtlTranslateAlignment(System.Drawing.ContentAlignment align) -> System.Drawing.ContentAlignment -System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.HorizontalAlignment align) -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.LeftRightAlignment align) -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.Control.RtlTranslateContent(System.Drawing.ContentAlignment align) -> System.Drawing.ContentAlignment -System.Windows.Forms.Control.RtlTranslateHorizontal(System.Windows.Forms.HorizontalAlignment align) -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.Control.RtlTranslateLeftRight(System.Windows.Forms.LeftRightAlignment align) -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.Control.Scale(float dx, float dy) -> void -System.Windows.Forms.Control.Scale(float ratio) -> void -System.Windows.Forms.Control.Scale(System.Drawing.SizeF factor) -> void -System.Windows.Forms.Control.ScaleBitmapLogicalToDevice(ref System.Drawing.Bitmap! logicalBitmap) -> void -System.Windows.Forms.Control.Select() -> void -System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control? ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) -> bool -System.Windows.Forms.Control.SendToBack() -> void -System.Windows.Forms.Control.SetAutoSizeMode(System.Windows.Forms.AutoSizeMode mode) -> void -System.Windows.Forms.Control.SetBounds(int x, int y, int width, int height) -> void -System.Windows.Forms.Control.SetBounds(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles flag, bool value) -> void -System.Windows.Forms.Control.SetTopLevel(bool value) -> void -System.Windows.Forms.Control.Show() -> void -System.Windows.Forms.Control.Size.get -> System.Drawing.Size -System.Windows.Forms.Control.Size.set -> void -System.Windows.Forms.Control.SizeChanged -> System.EventHandler? -System.Windows.Forms.Control.StyleChanged -> System.EventHandler? -System.Windows.Forms.Control.SuspendLayout() -> void -System.Windows.Forms.Control.SystemColorsChanged -> System.EventHandler? -System.Windows.Forms.Control.TabIndex.get -> int -System.Windows.Forms.Control.TabIndex.set -> void -System.Windows.Forms.Control.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.Control.TabStop.get -> bool -System.Windows.Forms.Control.TabStop.set -> void -System.Windows.Forms.Control.TabStopChanged -> System.EventHandler? -System.Windows.Forms.Control.Tag.get -> object? -System.Windows.Forms.Control.Tag.set -> void -System.Windows.Forms.Control.TextChanged -> System.EventHandler? -System.Windows.Forms.Control.Top.get -> int -System.Windows.Forms.Control.Top.set -> void -System.Windows.Forms.Control.TopLevelControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.Control.Update() -> void -System.Windows.Forms.Control.UpdateBounds() -> void -System.Windows.Forms.Control.UpdateBounds(int x, int y, int width, int height) -> void -System.Windows.Forms.Control.UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) -> void -System.Windows.Forms.Control.UpdateStyles() -> void -System.Windows.Forms.Control.UpdateZOrder() -> void -System.Windows.Forms.Control.UseWaitCursor.get -> bool -System.Windows.Forms.Control.UseWaitCursor.set -> void -System.Windows.Forms.Control.Validated -> System.EventHandler? -System.Windows.Forms.Control.Validating -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.Control.Visible.get -> bool -System.Windows.Forms.Control.Visible.set -> void -System.Windows.Forms.Control.VisibleChanged -> System.EventHandler? -System.Windows.Forms.Control.Width.get -> int -System.Windows.Forms.Control.Width.set -> void -System.Windows.Forms.Control.WindowTarget.get -> System.Windows.Forms.IWindowTarget! -System.Windows.Forms.Control.WindowTarget.set -> void -System.Windows.Forms.ControlBindingsCollection -System.Windows.Forms.ControlBindingsCollection.Clear() -> void -System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode.get -> System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode.set -> void -System.Windows.Forms.ControlBindingsCollection.RemoveAt(int index) -> void -System.Windows.Forms.ControlEventArgs -System.Windows.Forms.ControlEventArgs.Control.get -> System.Windows.Forms.Control? -System.Windows.Forms.ControlEventArgs.ControlEventArgs(System.Windows.Forms.Control? control) -> void -System.Windows.Forms.ControlEventHandler -System.Windows.Forms.ControlPaint -System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.AllPaintingInWmPaint = 8192 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.CacheText = 16384 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.ContainerControl = 1 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.DoubleBuffer = 65536 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.EnableNotifyMessage = 32768 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.FixedHeight = 64 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.FixedWidth = 32 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.Opaque = 4 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.OptimizedDoubleBuffer = 131072 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.ResizeRedraw = 16 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.Selectable = 512 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.StandardClick = 256 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.StandardDoubleClick = 4096 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.SupportsTransparentBackColor = 2048 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.UserMouse = 1024 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.UserPaint = 2 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlStyles.UseTextForAccessibility = 262144 -> System.Windows.Forms.ControlStyles -System.Windows.Forms.ControlUpdateMode -System.Windows.Forms.ControlUpdateMode.Never = 1 -> System.Windows.Forms.ControlUpdateMode -System.Windows.Forms.ControlUpdateMode.OnPropertyChanged = 0 -> System.Windows.Forms.ControlUpdateMode -System.Windows.Forms.ConvertEventArgs -System.Windows.Forms.ConvertEventArgs.ConvertEventArgs(object? value, System.Type? desiredType) -> void -System.Windows.Forms.ConvertEventArgs.DesiredType.get -> System.Type? -System.Windows.Forms.ConvertEventArgs.Value.get -> object? -System.Windows.Forms.ConvertEventArgs.Value.set -> void -System.Windows.Forms.ConvertEventHandler -System.Windows.Forms.CreateParams -System.Windows.Forms.CreateParams.Caption.get -> string? -System.Windows.Forms.CreateParams.Caption.set -> void -System.Windows.Forms.CreateParams.ClassName.get -> string? -System.Windows.Forms.CreateParams.ClassName.set -> void -System.Windows.Forms.CreateParams.ClassStyle.get -> int -System.Windows.Forms.CreateParams.ClassStyle.set -> void -System.Windows.Forms.CreateParams.CreateParams() -> void -System.Windows.Forms.CreateParams.ExStyle.get -> int -System.Windows.Forms.CreateParams.ExStyle.set -> void -System.Windows.Forms.CreateParams.Height.get -> int -System.Windows.Forms.CreateParams.Height.set -> void -System.Windows.Forms.CreateParams.Param.get -> object? -System.Windows.Forms.CreateParams.Param.set -> void -System.Windows.Forms.CreateParams.Parent.get -> nint -System.Windows.Forms.CreateParams.Parent.set -> void -System.Windows.Forms.CreateParams.Style.get -> int -System.Windows.Forms.CreateParams.Style.set -> void -System.Windows.Forms.CreateParams.Width.get -> int -System.Windows.Forms.CreateParams.Width.set -> void -System.Windows.Forms.CreateParams.X.get -> int -System.Windows.Forms.CreateParams.X.set -> void -System.Windows.Forms.CreateParams.Y.get -> int -System.Windows.Forms.CreateParams.Y.set -> void -System.Windows.Forms.CurrencyManager -System.Windows.Forms.CurrencyManager.ItemChanged -> System.Windows.Forms.ItemChangedEventHandler -System.Windows.Forms.CurrencyManager.ListChanged -> System.ComponentModel.ListChangedEventHandler -System.Windows.Forms.CurrencyManager.MetaDataChanged -> System.EventHandler -System.Windows.Forms.CurrencyManager.Refresh() -> void -System.Windows.Forms.Cursor -System.Windows.Forms.Cursor.CopyHandle() -> nint -System.Windows.Forms.Cursor.Cursor(nint handle) -> void -System.Windows.Forms.Cursor.Cursor(string! fileName) -> void -System.Windows.Forms.Cursor.Cursor(System.IO.Stream! stream) -> void -System.Windows.Forms.Cursor.Cursor(System.Type! type, string! resource) -> void -System.Windows.Forms.Cursor.Dispose() -> void -System.Windows.Forms.Cursor.Draw(System.Drawing.Graphics! g, System.Drawing.Rectangle targetRect) -> void -System.Windows.Forms.Cursor.DrawStretched(System.Drawing.Graphics! g, System.Drawing.Rectangle targetRect) -> void -System.Windows.Forms.Cursor.Handle.get -> nint -System.Windows.Forms.Cursor.HotSpot.get -> System.Drawing.Point -System.Windows.Forms.Cursor.Size.get -> System.Drawing.Size -System.Windows.Forms.Cursor.Tag.get -> object? -System.Windows.Forms.Cursor.Tag.set -> void -System.Windows.Forms.CursorConverter -System.Windows.Forms.CursorConverter.CursorConverter() -> void -System.Windows.Forms.Cursors -System.Windows.Forms.DataFormats -System.Windows.Forms.DataFormats.Format -System.Windows.Forms.DataFormats.Format.Format(string! name, int id) -> void -System.Windows.Forms.DataFormats.Format.Id.get -> int -System.Windows.Forms.DataFormats.Format.Name.get -> string! -System.Windows.Forms.DataGridView -System.Windows.Forms.DataGridView.AllowUserToAddRows.get -> bool -System.Windows.Forms.DataGridView.AllowUserToAddRows.set -> void -System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AllowUserToDeleteRows.get -> bool -System.Windows.Forms.DataGridView.AllowUserToDeleteRows.set -> void -System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AllowUserToOrderColumns.get -> bool -System.Windows.Forms.DataGridView.AllowUserToOrderColumns.set -> void -System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AllowUserToResizeColumns.get -> bool -System.Windows.Forms.DataGridView.AllowUserToResizeColumns.set -> void -System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AllowUserToResizeRows.get -> bool -System.Windows.Forms.DataGridView.AllowUserToResizeRows.set -> void -System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AreAllCellsSelected(bool includeInvisibleCells) -> bool -System.Windows.Forms.DataGridView.AutoGenerateColumns.get -> bool -System.Windows.Forms.DataGridView.AutoGenerateColumns.set -> void -System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged -> System.EventHandler -System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex) -> void -System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode) -> void -System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode, bool fixedHeight) -> void -System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight() -> void -System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(bool fixedRowHeadersWidth, bool fixedColumnsWidth) -> void -System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(int columnIndex) -> void -System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(int columnIndex, bool fixedRowHeadersWidth, bool fixedColumnWidth) -> void -System.Windows.Forms.DataGridView.AutoResizeColumns() -> void -System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode) -> void -System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode, bool fixedHeight) -> void -System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex) -> void -System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode) -> void -System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> void -System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode) -> void -System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowHeight) -> void -System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode) -> void -System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowsHeight) -> void -System.Windows.Forms.DataGridView.AutoResizeRows() -> void -System.Windows.Forms.DataGridView.AutoResizeRows(int rowIndexStart, int rowsCount, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> void -System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode) -> void -System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode, bool fixedWidth) -> void -System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged -> System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler -System.Windows.Forms.DataGridView.AutoSizeColumnsMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridView.AutoSizeColumnsMode.set -> void -System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged -> System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler -System.Windows.Forms.DataGridView.AutoSizeRowsMode.get -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridView.AutoSizeRowsMode.set -> void -System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler -System.Windows.Forms.DataGridView.BackColorChanged -> System.EventHandler -System.Windows.Forms.DataGridView.BackgroundColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridView.BackgroundColor.set -> void -System.Windows.Forms.DataGridView.BackgroundColorChanged -> System.EventHandler -System.Windows.Forms.DataGridView.BackgroundImageChanged -> System.EventHandler -System.Windows.Forms.DataGridView.BackgroundImageLayoutChanged -> System.EventHandler -System.Windows.Forms.DataGridView.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.DataGridView.BorderStyle.set -> void -System.Windows.Forms.DataGridView.BorderStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.CancelEdit() -> bool -System.Windows.Forms.DataGridView.CancelRowEdit -> System.Windows.Forms.QuestionEventHandler -System.Windows.Forms.DataGridView.CellBeginEdit -> System.Windows.Forms.DataGridViewCellCancelEventHandler -System.Windows.Forms.DataGridView.CellBorderStyle.get -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridView.CellBorderStyle.set -> void -System.Windows.Forms.DataGridView.CellBorderStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.CellClick -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellContentClick -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellContentDoubleClick -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellContextMenuStripChanged -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellContextMenuStripNeeded -> System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler -System.Windows.Forms.DataGridView.CellDoubleClick -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellEndEdit -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellEnter -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellErrorTextChanged -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellErrorTextNeeded -> System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler -System.Windows.Forms.DataGridView.CellFormatting -> System.Windows.Forms.DataGridViewCellFormattingEventHandler -System.Windows.Forms.DataGridView.CellLeave -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.CellMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.CellMouseDown -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.CellMouseEnter -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellMouseLeave -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellMouseMove -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.CellMouseUp -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.CellPainting -> System.Windows.Forms.DataGridViewCellPaintingEventHandler -System.Windows.Forms.DataGridView.CellParsing -> System.Windows.Forms.DataGridViewCellParsingEventHandler -System.Windows.Forms.DataGridView.CellStateChanged -> System.Windows.Forms.DataGridViewCellStateChangedEventHandler -System.Windows.Forms.DataGridView.CellStyleChanged -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellStyleContentChanged -> System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler -System.Windows.Forms.DataGridView.CellToolTipTextChanged -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellToolTipTextNeeded -> System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler -System.Windows.Forms.DataGridView.CellValidated -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellValidating -> System.Windows.Forms.DataGridViewCellValidatingEventHandler -System.Windows.Forms.DataGridView.CellValueChanged -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.CellValueNeeded -> System.Windows.Forms.DataGridViewCellValueEventHandler -System.Windows.Forms.DataGridView.CellValuePushed -> System.Windows.Forms.DataGridViewCellValueEventHandler -System.Windows.Forms.DataGridView.ClearSelection() -> void -System.Windows.Forms.DataGridView.ClearSelection(int columnIndexException, int rowIndexException, bool selectExceptionElement) -> void -System.Windows.Forms.DataGridView.ClipboardCopyMode.get -> System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridView.ClipboardCopyMode.set -> void -System.Windows.Forms.DataGridView.ColumnAdded -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnCount.get -> int -System.Windows.Forms.DataGridView.ColumnCount.set -> void -System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnDividerDoubleClick -> System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler -System.Windows.Forms.DataGridView.ColumnDividerWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnHeaderCellChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnHeaderMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle.set -> void -System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.ColumnHeadersHeight.get -> int -System.Windows.Forms.DataGridView.ColumnHeadersHeight.set -> void -System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged -> System.EventHandler -System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode.get -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode -System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode.set -> void -System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler -System.Windows.Forms.DataGridView.ColumnHeadersVisible.get -> bool -System.Windows.Forms.DataGridView.ColumnHeadersVisible.set -> void -System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnNameChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnRemoved -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnSortModeChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnStateChanged -> System.Windows.Forms.DataGridViewColumnStateChangedEventHandler -System.Windows.Forms.DataGridView.ColumnToolTipTextChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.ColumnWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts context) -> bool -System.Windows.Forms.DataGridView.CurrentCellAddress.get -> System.Drawing.Point -System.Windows.Forms.DataGridView.CurrentCellChanged -> System.EventHandler -System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged -> System.EventHandler -System.Windows.Forms.DataGridView.DataBindingComplete -> System.Windows.Forms.DataGridViewBindingCompleteEventHandler -System.Windows.Forms.DataGridView.DataError -> System.Windows.Forms.DataGridViewDataErrorEventHandler -System.Windows.Forms.DataGridView.DataGridView() -> void -System.Windows.Forms.DataGridView.DataGridViewAccessibleObject -System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.DataGridViewAccessibleObject(System.Windows.Forms.DataGridView! owner) -> void -System.Windows.Forms.DataGridView.DataGridViewControlCollection -System.Windows.Forms.DataGridView.DataGridViewControlCollection.CopyTo(System.Windows.Forms.Control![]! array, int index) -> void -System.Windows.Forms.DataGridView.DataGridViewControlCollection.DataGridViewControlCollection(System.Windows.Forms.DataGridView! owner) -> void -System.Windows.Forms.DataGridView.DataGridViewControlCollection.Insert(int index, System.Windows.Forms.Control! value) -> void -System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject -System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.DataGridViewTopRowAccessibleObject() -> void -System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.DataGridViewTopRowAccessibleObject(System.Windows.Forms.DataGridView! owner) -> void -System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner.get -> System.Windows.Forms.DataGridView? -System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner.set -> void -System.Windows.Forms.DataGridView.DataMemberChanged -> System.EventHandler -System.Windows.Forms.DataGridView.DataSourceChanged -> System.EventHandler -System.Windows.Forms.DataGridView.DefaultCellStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.DefaultValuesNeeded -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.DisplayedColumnCount(bool includePartialColumns) -> int -System.Windows.Forms.DataGridView.DisplayedRowCount(bool includePartialRow) -> int -System.Windows.Forms.DataGridView.EditingControlShowing -> System.Windows.Forms.DataGridViewEditingControlShowingEventHandler -System.Windows.Forms.DataGridView.EditMode.get -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridView.EditMode.set -> void -System.Windows.Forms.DataGridView.EditModeChanged -> System.EventHandler -System.Windows.Forms.DataGridView.EnableHeadersVisualStyles.get -> bool -System.Windows.Forms.DataGridView.EnableHeadersVisualStyles.set -> void -System.Windows.Forms.DataGridView.EndEdit() -> bool -System.Windows.Forms.DataGridView.EndEdit(System.Windows.Forms.DataGridViewDataErrorContexts context) -> bool -System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnHiddenWidth.get -> int -System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex.get -> int -System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex.set -> void -System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex.get -> int -System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex.set -> void -System.Windows.Forms.DataGridView.FontChanged -> System.EventHandler -System.Windows.Forms.DataGridView.ForeColorChanged -> System.EventHandler -System.Windows.Forms.DataGridView.GetCellCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridView.GetCellDisplayRectangle(int columnIndex, int rowIndex, bool cutOverflow) -> System.Drawing.Rectangle -System.Windows.Forms.DataGridView.GetColumnDisplayRectangle(int columnIndex, bool cutOverflow) -> System.Drawing.Rectangle -System.Windows.Forms.DataGridView.GetRowDisplayRectangle(int rowIndex, bool cutOverflow) -> System.Drawing.Rectangle -System.Windows.Forms.DataGridView.GridColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridView.GridColor.set -> void -System.Windows.Forms.DataGridView.GridColorChanged -> System.EventHandler -System.Windows.Forms.DataGridView.HitTestInfo -System.Windows.Forms.DataGridView.HitTestInfo.ColumnIndex.get -> int -System.Windows.Forms.DataGridView.HitTestInfo.ColumnX.get -> int -System.Windows.Forms.DataGridView.HitTestInfo.RowIndex.get -> int -System.Windows.Forms.DataGridView.HitTestInfo.RowY.get -> int -System.Windows.Forms.DataGridView.HitTestInfo.Type.get -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridView.HorizontalScrollingOffset.get -> int -System.Windows.Forms.DataGridView.HorizontalScrollingOffset.set -> void -System.Windows.Forms.DataGridView.InvalidateCell(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridView.InvalidateColumn(int columnIndex) -> void -System.Windows.Forms.DataGridView.InvalidateRow(int rowIndex) -> void -System.Windows.Forms.DataGridView.IsCurrentCellDirty.get -> bool -System.Windows.Forms.DataGridView.IsCurrentCellInEditMode.get -> bool -System.Windows.Forms.DataGridView.IsCurrentRowDirty.get -> bool -System.Windows.Forms.DataGridView.MultiSelect.get -> bool -System.Windows.Forms.DataGridView.MultiSelect.set -> void -System.Windows.Forms.DataGridView.MultiSelectChanged -> System.EventHandler -System.Windows.Forms.DataGridView.NewRowIndex.get -> int -System.Windows.Forms.DataGridView.NewRowNeeded -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.DataGridView.Padding.set -> void -System.Windows.Forms.DataGridView.PaddingChanged -> System.EventHandler -System.Windows.Forms.DataGridView.ProcessAKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessControlShiftF10Keys(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessDeleteKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessDownKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessEndKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessEnterKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessEscapeKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessF2Key(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessF3Key(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessHomeKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessInsertKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessLeftKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessNextKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessPriorKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessRightKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessSpaceKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessTabKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessUpKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ProcessZeroKey(System.Windows.Forms.Keys keyData) -> bool -System.Windows.Forms.DataGridView.ReadOnly.get -> bool -System.Windows.Forms.DataGridView.ReadOnly.set -> void -System.Windows.Forms.DataGridView.ReadOnlyChanged -> System.EventHandler -System.Windows.Forms.DataGridView.RefreshEdit() -> bool -System.Windows.Forms.DataGridView.RowContextMenuStripChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowContextMenuStripNeeded -> System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler -System.Windows.Forms.DataGridView.RowCount.get -> int -System.Windows.Forms.DataGridView.RowCount.set -> void -System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowDirtyStateNeeded -> System.Windows.Forms.QuestionEventHandler -System.Windows.Forms.DataGridView.RowDividerDoubleClick -> System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler -System.Windows.Forms.DataGridView.RowDividerHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowEnter -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.RowErrorTextChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowErrorTextNeeded -> System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler -System.Windows.Forms.DataGridView.RowHeaderCellChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowHeaderMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridView.RowHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridView.RowHeadersBorderStyle.set -> void -System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.RowHeadersVisible.get -> bool -System.Windows.Forms.DataGridView.RowHeadersVisible.set -> void -System.Windows.Forms.DataGridView.RowHeadersWidth.get -> int -System.Windows.Forms.DataGridView.RowHeadersWidth.set -> void -System.Windows.Forms.DataGridView.RowHeadersWidthChanged -> System.EventHandler -System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode.get -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode.set -> void -System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler -System.Windows.Forms.DataGridView.RowHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowHeightInfoNeeded -> System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler -System.Windows.Forms.DataGridView.RowHeightInfoPushed -> System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler -System.Windows.Forms.DataGridView.RowLeave -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.RowMinimumHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowPostPaint -> System.Windows.Forms.DataGridViewRowPostPaintEventHandler -System.Windows.Forms.DataGridView.RowPrePaint -> System.Windows.Forms.DataGridViewRowPrePaintEventHandler -System.Windows.Forms.DataGridView.RowsAdded -> System.Windows.Forms.DataGridViewRowsAddedEventHandler -System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.RowsRemoved -> System.Windows.Forms.DataGridViewRowsRemovedEventHandler -System.Windows.Forms.DataGridView.RowStateChanged -> System.Windows.Forms.DataGridViewRowStateChangedEventHandler -System.Windows.Forms.DataGridView.RowUnshared -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.RowValidated -> System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridView.RowValidating -> System.Windows.Forms.DataGridViewCellCancelEventHandler -System.Windows.Forms.DataGridView.Scroll -> System.Windows.Forms.ScrollEventHandler -System.Windows.Forms.DataGridView.ScrollBars.get -> System.Windows.Forms.ScrollBars -System.Windows.Forms.DataGridView.ScrollBars.set -> void -System.Windows.Forms.DataGridView.SelectAll() -> void -System.Windows.Forms.DataGridView.SelectionChanged -> System.EventHandler -System.Windows.Forms.DataGridView.SelectionMode.get -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridView.SelectionMode.set -> void -System.Windows.Forms.DataGridView.ShowCellErrors.get -> bool -System.Windows.Forms.DataGridView.ShowCellErrors.set -> void -System.Windows.Forms.DataGridView.ShowCellToolTips.get -> bool -System.Windows.Forms.DataGridView.ShowCellToolTips.set -> void -System.Windows.Forms.DataGridView.ShowEditingIcon.get -> bool -System.Windows.Forms.DataGridView.ShowEditingIcon.set -> void -System.Windows.Forms.DataGridView.ShowRowErrors.get -> bool -System.Windows.Forms.DataGridView.ShowRowErrors.set -> void -System.Windows.Forms.DataGridView.SortCompare -> System.Windows.Forms.DataGridViewSortCompareEventHandler -System.Windows.Forms.DataGridView.Sorted -> System.EventHandler -System.Windows.Forms.DataGridView.SortOrder.get -> System.Windows.Forms.SortOrder -System.Windows.Forms.DataGridView.StandardTab.get -> bool -System.Windows.Forms.DataGridView.StandardTab.set -> void -System.Windows.Forms.DataGridView.StyleChanged -> System.EventHandler -System.Windows.Forms.DataGridView.TextChanged -> System.EventHandler -System.Windows.Forms.DataGridView.UpdateCellErrorText(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridView.UpdateCellValue(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridView.UpdateRowErrorText(int rowIndex) -> void -System.Windows.Forms.DataGridView.UpdateRowErrorText(int rowIndexStart, int rowIndexEnd) -> void -System.Windows.Forms.DataGridView.UpdateRowHeightInfo(int rowIndex, bool updateToEnd) -> void -System.Windows.Forms.DataGridView.UserAddedRow -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.UserDeletedRow -> System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridView.UserDeletingRow -> System.Windows.Forms.DataGridViewRowCancelEventHandler -System.Windows.Forms.DataGridView.VerticalScrollingOffset.get -> int -System.Windows.Forms.DataGridView.VirtualMode.get -> bool -System.Windows.Forms.DataGridView.VirtualMode.set -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.All.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.All.set -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom.set -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle.DataGridViewAdvancedBorderStyle() -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left.set -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right.set -> void -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top.set -> void -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Inset = 3 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble = 4 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.None = 1 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet = 0 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Outset = 5 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble = 6 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetPartial = 7 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single = 2 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle -System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells = 6 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader = 4 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells = 10 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader = 8 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill = 16 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.None = 1 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet = 0 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs -System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn? -System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.DataGridViewAutoSizeColumnModeEventArgs(System.Windows.Forms.DataGridViewColumn? dataGridViewColumn, System.Windows.Forms.DataGridViewAutoSizeColumnMode previousMode) -> void -System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.PreviousMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler -System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells = 6 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader = 4 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells = 10 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCellsExceptHeader = 8 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill = 16 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None = 1 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode -System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs -System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.DataGridViewAutoSizeColumnsModeEventArgs(System.Windows.Forms.DataGridViewAutoSizeColumnMode[]? previousModes) -> void -System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode[]? -System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler -System.Windows.Forms.DataGridViewAutoSizeModeEventArgs -System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.DataGridViewAutoSizeModeEventArgs(bool previousModeAutoSized) -> void -System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.PreviousModeAutoSized.get -> bool -System.Windows.Forms.DataGridViewAutoSizeModeEventHandler -System.Windows.Forms.DataGridViewAutoSizeRowMode -System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCells = 3 -> System.Windows.Forms.DataGridViewAutoSizeRowMode -System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCellsExceptHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeRowMode -System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader = 1 -> System.Windows.Forms.DataGridViewAutoSizeRowMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells = 7 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders = 6 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders = 5 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells = 11 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders = 10 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders = 9 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewAutoSizeRowsMode.None = 0 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode -System.Windows.Forms.DataGridViewBand -System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType.get -> System.Type! -System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType.set -> void -System.Windows.Forms.DataGridViewBand.Dispose() -> void -System.Windows.Forms.DataGridViewBand.HasDefaultCellStyle.get -> bool -System.Windows.Forms.DataGridViewBand.Index.get -> int -System.Windows.Forms.DataGridViewBand.Tag.get -> object? -System.Windows.Forms.DataGridViewBand.Tag.set -> void -System.Windows.Forms.DataGridViewBindingCompleteEventArgs -System.Windows.Forms.DataGridViewBindingCompleteEventArgs.DataGridViewBindingCompleteEventArgs(System.ComponentModel.ListChangedType listChangedType) -> void -System.Windows.Forms.DataGridViewBindingCompleteEventArgs.ListChangedType.get -> System.ComponentModel.ListChangedType -System.Windows.Forms.DataGridViewBindingCompleteEventHandler -System.Windows.Forms.DataGridViewButtonCell -System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCell() -> void -System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject -System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DataGridViewButtonCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewButtonCell.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewButtonCell.FlatStyle.set -> void -System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue.get -> bool -System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue.set -> void -System.Windows.Forms.DataGridViewButtonColumn -System.Windows.Forms.DataGridViewButtonColumn.DataGridViewButtonColumn() -> void -System.Windows.Forms.DataGridViewButtonColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewButtonColumn.FlatStyle.set -> void -System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue.get -> bool -System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue.set -> void -System.Windows.Forms.DataGridViewCell -System.Windows.Forms.DataGridViewCell.~DataGridViewCell() -> void -System.Windows.Forms.DataGridViewCell.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCell.ContentBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewCell.DataGridViewCell() -> void -System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject -System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DataGridViewCellAccessibleObject() -> void -System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DataGridViewCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner.get -> System.Windows.Forms.DataGridViewCell? -System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner.set -> void -System.Windows.Forms.DataGridViewCell.Dispose() -> void -System.Windows.Forms.DataGridViewCell.ErrorIconBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewCell.GetContentBounds(int rowIndex) -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewCell.HasStyle.get -> bool -System.Windows.Forms.DataGridViewCell.InheritedState.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewCell.IsInEditMode.get -> bool -System.Windows.Forms.DataGridViewCell.PreferredSize.get -> System.Drawing.Size -System.Windows.Forms.DataGridViewCell.RowIndex.get -> int -System.Windows.Forms.DataGridViewCell.Size.get -> System.Drawing.Size -System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.Custom = 0 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.None = 4 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.Raised = 2 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.RaisedHorizontal = 9 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.RaisedVertical = 6 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.Single = 1 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal = 8 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical = 5 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.Sunken = 3 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.SunkenHorizontal = 10 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical = 7 -> System.Windows.Forms.DataGridViewCellBorderStyle -System.Windows.Forms.DataGridViewCellCancelEventArgs -System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellCancelEventArgs.DataGridViewCellCancelEventArgs(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellCancelEventHandler -System.Windows.Forms.DataGridViewCellCollection -System.Windows.Forms.DataGridViewCellCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler -System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs -System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip.set -> void -System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.DataGridViewCellContextMenuStripNeededEventArgs(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler -System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs -System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText.get -> string? -System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText.set -> void -System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler -System.Windows.Forms.DataGridViewCellEventArgs -System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellEventArgs.DataGridViewCellEventArgs(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridViewCellEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellEventHandler -System.Windows.Forms.DataGridViewCellFormattingEventArgs -System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? -System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle.set -> void -System.Windows.Forms.DataGridViewCellFormattingEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellFormattingEventArgs.DataGridViewCellFormattingEventArgs(int columnIndex, int rowIndex, object? value, System.Type? desiredType, System.Windows.Forms.DataGridViewCellStyle? cellStyle) -> void -System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied.get -> bool -System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied.set -> void -System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellFormattingEventHandler -System.Windows.Forms.DataGridViewCellMouseEventArgs -System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellMouseEventArgs.DataGridViewCellMouseEventArgs(int columnIndex, int rowIndex, int localX, int localY, System.Windows.Forms.MouseEventArgs? e) -> void -System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellMouseEventHandler -System.Windows.Forms.DataGridViewCellPaintingEventArgs -System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewCellPaintingEventArgs.ClipBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellPaintingEventArgs.Paint(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void -System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintContent(System.Drawing.Rectangle clipBounds) -> void -System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintParts.get -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellPaintingEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewCellPaintingEventHandler -System.Windows.Forms.DataGridViewCellParsingEventArgs -System.Windows.Forms.DataGridViewCellParsingEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellParsingEventArgs.DataGridViewCellParsingEventArgs(int rowIndex, int columnIndex, object? value, System.Type? desiredType, System.Windows.Forms.DataGridViewCellStyle? inheritedCellStyle) -> void -System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? -System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle.set -> void -System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied.get -> bool -System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied.set -> void -System.Windows.Forms.DataGridViewCellParsingEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellParsingEventHandler -System.Windows.Forms.DataGridViewCellStateChangedEventArgs -System.Windows.Forms.DataGridViewCellStateChangedEventArgs.Cell.get -> System.Windows.Forms.DataGridViewCell! -System.Windows.Forms.DataGridViewCellStateChangedEventArgs.DataGridViewCellStateChangedEventArgs(System.Windows.Forms.DataGridViewCell! dataGridViewCell, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void -System.Windows.Forms.DataGridViewCellStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewCellStateChangedEventHandler -System.Windows.Forms.DataGridViewCellStyle -System.Windows.Forms.DataGridViewCellStyle.Alignment.get -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewCellStyle.Alignment.set -> void -System.Windows.Forms.DataGridViewCellStyle.BackColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewCellStyle.BackColor.set -> void -System.Windows.Forms.DataGridViewCellStyle.DataGridViewCellStyle() -> void -System.Windows.Forms.DataGridViewCellStyle.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewCellStyle.ForeColor.set -> void -System.Windows.Forms.DataGridViewCellStyle.IsDataSourceNullValueDefault.get -> bool -System.Windows.Forms.DataGridViewCellStyle.IsFormatProviderDefault.get -> bool -System.Windows.Forms.DataGridViewCellStyle.IsNullValueDefault.get -> bool -System.Windows.Forms.DataGridViewCellStyle.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.DataGridViewCellStyle.Padding.set -> void -System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor.set -> void -System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor.set -> void -System.Windows.Forms.DataGridViewCellStyle.WrapMode.get -> System.Windows.Forms.DataGridViewTriState -System.Windows.Forms.DataGridViewCellStyle.WrapMode.set -> void -System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs -System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! -System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyleScope.get -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler -System.Windows.Forms.DataGridViewCellStyleConverter -System.Windows.Forms.DataGridViewCellStyleConverter.DataGridViewCellStyleConverter() -> void -System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.AlternatingRows = 128 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.Cell = 1 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.Column = 2 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.ColumnHeaders = 16 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.DataGridView = 8 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.None = 0 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.Row = 4 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.RowHeaders = 32 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellStyleScopes.Rows = 64 -> System.Windows.Forms.DataGridViewCellStyleScopes -System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs -System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText.get -> string? -System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText.set -> void -System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler -System.Windows.Forms.DataGridViewCellValidatingEventArgs -System.Windows.Forms.DataGridViewCellValidatingEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellValidatingEventArgs.FormattedValue.get -> object? -System.Windows.Forms.DataGridViewCellValidatingEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellValidatingEventHandler -System.Windows.Forms.DataGridViewCellValueEventArgs -System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewCellValueEventArgs.DataGridViewCellValueEventArgs(int columnIndex, int rowIndex) -> void -System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewCellValueEventArgs.Value.get -> object? -System.Windows.Forms.DataGridViewCellValueEventArgs.Value.set -> void -System.Windows.Forms.DataGridViewCellValueEventHandler -System.Windows.Forms.DataGridViewCheckBoxCell -System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCell() -> void -System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCell(bool threeState) -> void -System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject -System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DataGridViewCheckBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle.set -> void -System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState.get -> bool -System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState.set -> void -System.Windows.Forms.DataGridViewCheckBoxColumn -System.Windows.Forms.DataGridViewCheckBoxColumn.DataGridViewCheckBoxColumn() -> void -System.Windows.Forms.DataGridViewCheckBoxColumn.DataGridViewCheckBoxColumn(bool threeState) -> void -System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle.set -> void -System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState.get -> bool -System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState.set -> void -System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridViewClipboardCopyMode.Disable = 0 -> System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText = 3 -> System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText = 1 -> System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText = 2 -> System.Windows.Forms.DataGridViewClipboardCopyMode -System.Windows.Forms.DataGridViewColumn -System.Windows.Forms.DataGridViewColumn.AutoSizeMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewColumn.AutoSizeMode.set -> void -System.Windows.Forms.DataGridViewColumn.DataGridViewColumn() -> void -System.Windows.Forms.DataGridViewColumn.DisplayIndex.get -> int -System.Windows.Forms.DataGridViewColumn.DisplayIndex.set -> void -System.Windows.Forms.DataGridViewColumn.Disposed -> System.EventHandler -System.Windows.Forms.DataGridViewColumn.DividerWidth.get -> int -System.Windows.Forms.DataGridViewColumn.DividerWidth.set -> void -System.Windows.Forms.DataGridViewColumn.FillWeight.get -> float -System.Windows.Forms.DataGridViewColumn.FillWeight.set -> void -System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode -System.Windows.Forms.DataGridViewColumn.IsDataBound.get -> bool -System.Windows.Forms.DataGridViewColumn.MinimumWidth.get -> int -System.Windows.Forms.DataGridViewColumn.MinimumWidth.set -> void -System.Windows.Forms.DataGridViewColumn.SortMode.get -> System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewColumn.SortMode.set -> void -System.Windows.Forms.DataGridViewColumn.Width.get -> int -System.Windows.Forms.DataGridViewColumn.Width.set -> void -System.Windows.Forms.DataGridViewColumnCollection -System.Windows.Forms.DataGridViewColumnCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler -System.Windows.Forms.DataGridViewColumnCollection.GetColumnCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewColumnCollection.GetColumnsWidth(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute -System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.DataGridViewColumnDesignTimeVisibleAttribute() -> void -System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.DataGridViewColumnDesignTimeVisibleAttribute(bool visible) -> void -System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible.get -> bool -System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs -System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.DataGridViewColumnDividerDoubleClickEventArgs(int columnIndex, System.Windows.Forms.HandledMouseEventArgs? e) -> void -System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler -System.Windows.Forms.DataGridViewColumnEventArgs -System.Windows.Forms.DataGridViewColumnEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! -System.Windows.Forms.DataGridViewColumnEventArgs.DataGridViewColumnEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> void -System.Windows.Forms.DataGridViewColumnEventHandler -System.Windows.Forms.DataGridViewColumnHeaderCell -System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCell() -> void -System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject -System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DataGridViewColumnHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewColumnHeaderCell? owner) -> void -System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection.get -> System.Windows.Forms.SortOrder -System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection.set -> void -System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode -System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize = 2 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode -System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing = 1 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode -System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing = 0 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode -System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewColumnSortMode.Automatic = 1 -> System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewColumnSortMode.NotSortable = 0 -> System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewColumnSortMode.Programmatic = 2 -> System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewColumnStateChangedEventArgs -System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! -System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.DataGridViewColumnStateChangedEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void -System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewColumnStateChangedEventHandler -System.Windows.Forms.DataGridViewComboBoxCell -System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCell() -> void -System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject -System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.DataGridViewComboBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle.get -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle.set -> void -System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly.get -> bool -System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly.set -> void -System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle.set -> void -System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection -System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Clear() -> void -System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Count.get -> int -System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IsReadOnly.get -> bool -System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.RemoveAt(int index) -> void -System.Windows.Forms.DataGridViewComboBoxColumn -System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete.get -> bool -System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.DataGridViewComboBoxColumn() -> void -System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle.get -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly.get -> bool -System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth.get -> int -System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems.get -> int -System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems.set -> void -System.Windows.Forms.DataGridViewComboBoxColumn.Sorted.get -> bool -System.Windows.Forms.DataGridViewComboBoxColumn.Sorted.set -> void -System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox = 0 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton = 1 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxDisplayStyle.Nothing = 2 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle -System.Windows.Forms.DataGridViewComboBoxEditingControl -System.Windows.Forms.DataGridViewComboBoxEditingControl.DataGridViewComboBoxEditingControl() -> void -System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.BottomCenter = 512 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.BottomLeft = 256 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.BottomRight = 1024 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter = 32 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft = 16 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.MiddleRight = 64 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.NotSet = 0 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.TopCenter = 2 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.TopLeft = 1 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewContentAlignment.TopRight = 4 -> System.Windows.Forms.DataGridViewContentAlignment -System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.ClipboardContent = 16384 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.Commit = 512 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.CurrentCellChange = 4096 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.Display = 2 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.Formatting = 1 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.InitialValueRestoration = 1024 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.LeaveControl = 2048 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.Parsing = 256 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.PreferredSize = 4 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.RowDeletion = 8 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorContexts.Scroll = 8192 -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorEventArgs -System.Windows.Forms.DataGridViewDataErrorEventArgs.Context.get -> System.Windows.Forms.DataGridViewDataErrorContexts -System.Windows.Forms.DataGridViewDataErrorEventArgs.DataGridViewDataErrorEventArgs(System.Exception? exception, int columnIndex, int rowIndex, System.Windows.Forms.DataGridViewDataErrorContexts context) -> void -System.Windows.Forms.DataGridViewDataErrorEventArgs.Exception.get -> System.Exception? -System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException.get -> bool -System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException.set -> void -System.Windows.Forms.DataGridViewDataErrorEventHandler -System.Windows.Forms.DataGridViewEditingControlShowingEventArgs -System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! -System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle.set -> void -System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.Control.get -> System.Windows.Forms.Control! -System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.DataGridViewEditingControlShowingEventArgs(System.Windows.Forms.Control! control, System.Windows.Forms.DataGridViewCellStyle! cellStyle) -> void -System.Windows.Forms.DataGridViewEditingControlShowingEventHandler -System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewEditMode.EditOnEnter = 0 -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewEditMode.EditOnF2 = 3 -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewEditMode.EditOnKeystroke = 1 -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2 = 2 -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewEditMode.EditProgrammatically = 4 -> System.Windows.Forms.DataGridViewEditMode -System.Windows.Forms.DataGridViewElement -System.Windows.Forms.DataGridViewElement.DataGridView.get -> System.Windows.Forms.DataGridView? -System.Windows.Forms.DataGridViewElement.DataGridViewElement() -> void -System.Windows.Forms.DataGridViewElement.RaiseCellClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void -System.Windows.Forms.DataGridViewElement.RaiseCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void -System.Windows.Forms.DataGridViewElement.RaiseCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void -System.Windows.Forms.DataGridViewElement.RaiseCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void -System.Windows.Forms.DataGridViewElement.RaiseDataError(System.Windows.Forms.DataGridViewDataErrorEventArgs! e) -> void -System.Windows.Forms.DataGridViewElement.RaiseMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.Displayed = 1 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.Frozen = 2 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.None = 0 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.ReadOnly = 4 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.Resizable = 8 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.ResizableSet = 16 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.Selected = 32 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewElementStates.Visible = 64 -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom = 0 -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderBorderStyle.None = 4 -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised = 2 -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderBorderStyle.Single = 1 -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken = 3 -> System.Windows.Forms.DataGridViewHeaderBorderStyle -System.Windows.Forms.DataGridViewHeaderCell -System.Windows.Forms.DataGridViewHeaderCell.ButtonState.get -> System.Windows.Forms.ButtonState -System.Windows.Forms.DataGridViewHeaderCell.DataGridViewHeaderCell() -> void -System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.Cell = 1 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.HorizontalScrollBar = 5 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.None = 0 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.RowHeader = 3 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.TopLeftHeader = 4 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewHitTestType.VerticalScrollBar = 6 -> System.Windows.Forms.DataGridViewHitTestType -System.Windows.Forms.DataGridViewImageCell -System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCell() -> void -System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCell(bool valueIsIcon) -> void -System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject -System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DataGridViewImageCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewImageCell.ImageLayout.get -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageCell.ImageLayout.set -> void -System.Windows.Forms.DataGridViewImageCell.ValueIsIcon.get -> bool -System.Windows.Forms.DataGridViewImageCell.ValueIsIcon.set -> void -System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageCellLayout.Normal = 1 -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageCellLayout.NotSet = 0 -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageCellLayout.Stretch = 2 -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageCellLayout.Zoom = 3 -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageColumn -System.Windows.Forms.DataGridViewImageColumn.DataGridViewImageColumn() -> void -System.Windows.Forms.DataGridViewImageColumn.DataGridViewImageColumn(bool valuesAreIcons) -> void -System.Windows.Forms.DataGridViewImageColumn.ImageLayout.get -> System.Windows.Forms.DataGridViewImageCellLayout -System.Windows.Forms.DataGridViewImageColumn.ImageLayout.set -> void -System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons.get -> bool -System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons.set -> void -System.Windows.Forms.DataGridViewLinkCell -System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor.set -> void -System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCell() -> void -System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject -System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DataGridViewLinkCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewLinkCell.LinkBehavior.get -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.DataGridViewLinkCell.LinkBehavior.set -> void -System.Windows.Forms.DataGridViewLinkCell.LinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkCell.LinkColor.set -> void -System.Windows.Forms.DataGridViewLinkCell.LinkVisited.get -> bool -System.Windows.Forms.DataGridViewLinkCell.LinkVisited.set -> void -System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState.get -> bool -System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState.set -> void -System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue.get -> bool -System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue.set -> void -System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor.set -> void -System.Windows.Forms.DataGridViewLinkColumn -System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor.set -> void -System.Windows.Forms.DataGridViewLinkColumn.DataGridViewLinkColumn() -> void -System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior.get -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior.set -> void -System.Windows.Forms.DataGridViewLinkColumn.LinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkColumn.LinkColor.set -> void -System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState.get -> bool -System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState.set -> void -System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue.get -> bool -System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue.set -> void -System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor.get -> System.Drawing.Color -System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor.set -> void -System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.All = System.Windows.Forms.DataGridViewPaintParts.Background | System.Windows.Forms.DataGridViewPaintParts.Border | System.Windows.Forms.DataGridViewPaintParts.ContentBackground | System.Windows.Forms.DataGridViewPaintParts.ContentForeground | System.Windows.Forms.DataGridViewPaintParts.ErrorIcon | System.Windows.Forms.DataGridViewPaintParts.Focus | System.Windows.Forms.DataGridViewPaintParts.SelectionBackground -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.Background = 1 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.Border = 2 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.ContentBackground = 4 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.ContentForeground = 8 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.ErrorIcon = 16 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.Focus = 32 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.None = 0 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewPaintParts.SelectionBackground = 64 -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewRow -System.Windows.Forms.DataGridViewRow.DataGridViewRow() -> void -System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject -System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.DataGridViewRowAccessibleObject() -> void -System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.DataGridViewRowAccessibleObject(System.Windows.Forms.DataGridViewRow! owner) -> void -System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner.get -> System.Windows.Forms.DataGridViewRow? -System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner.set -> void -System.Windows.Forms.DataGridViewRow.DividerHeight.get -> int -System.Windows.Forms.DataGridViewRow.DividerHeight.set -> void -System.Windows.Forms.DataGridViewRow.Height.get -> int -System.Windows.Forms.DataGridViewRow.Height.set -> void -System.Windows.Forms.DataGridViewRow.IsNewRow.get -> bool -System.Windows.Forms.DataGridViewRow.MinimumHeight.get -> int -System.Windows.Forms.DataGridViewRow.MinimumHeight.set -> void -System.Windows.Forms.DataGridViewRowCancelEventArgs -System.Windows.Forms.DataGridViewRowCancelEventArgs.DataGridViewRowCancelEventArgs(System.Windows.Forms.DataGridViewRow? dataGridViewRow) -> void -System.Windows.Forms.DataGridViewRowCancelEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow? -System.Windows.Forms.DataGridViewRowCancelEventArgs.Row.set -> void -System.Windows.Forms.DataGridViewRowCancelEventHandler -System.Windows.Forms.DataGridViewRowCollection -System.Windows.Forms.DataGridViewRowCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler -System.Windows.Forms.DataGridViewRowCollection.Count.get -> int -System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetLastRow(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetNextRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetNextRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowCollection.GetRowsHeight(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip.set -> void -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.DataGridViewRowContextMenuStripNeededEventArgs(int rowIndex) -> void -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler -System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs -System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.DataGridViewRowDividerDoubleClickEventArgs(int rowIndex, System.Windows.Forms.HandledMouseEventArgs! e) -> void -System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler -System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs -System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText.get -> string? -System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText.set -> void -System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler -System.Windows.Forms.DataGridViewRowEventArgs -System.Windows.Forms.DataGridViewRowEventArgs.DataGridViewRowEventArgs(System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> void -System.Windows.Forms.DataGridViewRowEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow! -System.Windows.Forms.DataGridViewRowEventHandler -System.Windows.Forms.DataGridViewRowHeaderCell -System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCell() -> void -System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject -System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DataGridViewRowHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewRowHeaderCell? owner) -> void -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders = 2 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders = 3 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToFirstHeader = 4 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing = 1 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing = 0 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height.set -> void -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight.set -> void -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler -System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs -System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.Height.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.MinimumHeight.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler -System.Windows.Forms.DataGridViewRowPostPaintEventArgs -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds.set -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DataGridViewRowPostPaintEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, string? errorText, System.Windows.Forms.DataGridViewCellStyle! inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DrawFocus(System.Drawing.Rectangle bounds, bool cellsPaintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ErrorText.get -> string? -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.InheritedRowStyle.get -> System.Windows.Forms.DataGridViewCellStyle! -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsFirstDisplayedRow.get -> bool -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsLastVisibleRow.get -> bool -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCells(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsContent(System.Drawing.Rectangle clipBounds) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(bool paintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowPostPaintEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewRowPostPaintEventHandler -System.Windows.Forms.DataGridViewRowPrePaintEventArgs -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds.set -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DataGridViewRowPrePaintEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, string? errorText, System.Windows.Forms.DataGridViewCellStyle! inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DrawFocus(System.Drawing.Rectangle bounds, bool cellsPaintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ErrorText.get -> string? -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.InheritedRowStyle.get -> System.Windows.Forms.DataGridViewCellStyle! -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsFirstDisplayedRow.get -> bool -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsLastVisibleRow.get -> bool -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCells(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsContent(System.Drawing.Rectangle clipBounds) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(bool paintSelectionBackground) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts paintParts) -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts.get -> System.Windows.Forms.DataGridViewPaintParts -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts.set -> void -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowPrePaintEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewRowPrePaintEventHandler -System.Windows.Forms.DataGridViewRowsAddedEventArgs -System.Windows.Forms.DataGridViewRowsAddedEventArgs.DataGridViewRowsAddedEventArgs(int rowIndex, int rowCount) -> void -System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowCount.get -> int -System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowsAddedEventHandler -System.Windows.Forms.DataGridViewRowsRemovedEventArgs -System.Windows.Forms.DataGridViewRowsRemovedEventArgs.DataGridViewRowsRemovedEventArgs(int rowIndex, int rowCount) -> void -System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowCount.get -> int -System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowIndex.get -> int -System.Windows.Forms.DataGridViewRowsRemovedEventHandler -System.Windows.Forms.DataGridViewRowStateChangedEventArgs -System.Windows.Forms.DataGridViewRowStateChangedEventArgs.DataGridViewRowStateChangedEventArgs(System.Windows.Forms.DataGridViewRow! dataGridViewRow, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void -System.Windows.Forms.DataGridViewRowStateChangedEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow! -System.Windows.Forms.DataGridViewRowStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates -System.Windows.Forms.DataGridViewRowStateChangedEventHandler -System.Windows.Forms.DataGridViewSelectedCellCollection -System.Windows.Forms.DataGridViewSelectedCellCollection.Clear() -> void -System.Windows.Forms.DataGridViewSelectedColumnCollection -System.Windows.Forms.DataGridViewSelectedColumnCollection.Clear() -> void -System.Windows.Forms.DataGridViewSelectedColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> bool -System.Windows.Forms.DataGridViewSelectedColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn![]! array, int index) -> void -System.Windows.Forms.DataGridViewSelectedColumnCollection.Insert(int index, System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> void -System.Windows.Forms.DataGridViewSelectedColumnCollection.this[int index].get -> System.Windows.Forms.DataGridViewColumn! -System.Windows.Forms.DataGridViewSelectedRowCollection -System.Windows.Forms.DataGridViewSelectedRowCollection.Clear() -> void -System.Windows.Forms.DataGridViewSelectedRowCollection.Contains(System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> bool -System.Windows.Forms.DataGridViewSelectedRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow![]! array, int index) -> void -System.Windows.Forms.DataGridViewSelectedRowCollection.Insert(int index, System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> void -System.Windows.Forms.DataGridViewSelectedRowCollection.this[int index].get -> System.Windows.Forms.DataGridViewRow! -System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSelectionMode.CellSelect = 0 -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect = 4 -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect = 2 -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect = 1 -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect = 3 -> System.Windows.Forms.DataGridViewSelectionMode -System.Windows.Forms.DataGridViewSortCompareEventArgs -System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue1.get -> object! -System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue2.get -> object! -System.Windows.Forms.DataGridViewSortCompareEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! -System.Windows.Forms.DataGridViewSortCompareEventArgs.DataGridViewSortCompareEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn, object! cellValue1, object! cellValue2, int rowIndex1, int rowIndex2) -> void -System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex1.get -> int -System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex2.get -> int -System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult.get -> int -System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult.set -> void -System.Windows.Forms.DataGridViewSortCompareEventHandler -System.Windows.Forms.DataGridViewTextBoxCell -System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCell() -> void -System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject -System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.DataGridViewTextBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void -System.Windows.Forms.DataGridViewTextBoxColumn -System.Windows.Forms.DataGridViewTextBoxColumn.DataGridViewTextBoxColumn() -> void -System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength.get -> int -System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength.set -> void -System.Windows.Forms.DataGridViewTextBoxColumn.SortMode.get -> System.Windows.Forms.DataGridViewColumnSortMode -System.Windows.Forms.DataGridViewTextBoxColumn.SortMode.set -> void -System.Windows.Forms.DataGridViewTextBoxEditingControl -System.Windows.Forms.DataGridViewTextBoxEditingControl.DataGridViewTextBoxEditingControl() -> void -System.Windows.Forms.DataGridViewTopLeftHeaderCell -System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCell() -> void -System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject -System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DataGridViewTopLeftHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewTopLeftHeaderCell! owner) -> void -System.Windows.Forms.DataGridViewTriState -System.Windows.Forms.DataGridViewTriState.False = 2 -> System.Windows.Forms.DataGridViewTriState -System.Windows.Forms.DataGridViewTriState.NotSet = 0 -> System.Windows.Forms.DataGridViewTriState -System.Windows.Forms.DataGridViewTriState.True = 1 -> System.Windows.Forms.DataGridViewTriState -System.Windows.Forms.DataObject -System.Windows.Forms.DataObject.DataObject() -> void -System.Windows.Forms.DataObject.DataObject(object! data) -> void -System.Windows.Forms.DataObject.DataObject(string! format, object! data) -> void -System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.DataSourceUpdateMode.Never = 2 -> System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged = 1 -> System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.DataSourceUpdateMode.OnValidation = 0 -> System.Windows.Forms.DataSourceUpdateMode -System.Windows.Forms.DateBoldEventArgs -System.Windows.Forms.DateBoldEventArgs.DaysToBold.get -> int[]? -System.Windows.Forms.DateBoldEventArgs.DaysToBold.set -> void -System.Windows.Forms.DateBoldEventArgs.Size.get -> int -System.Windows.Forms.DateBoldEventArgs.StartDate.get -> System.DateTime -System.Windows.Forms.DateBoldEventHandler -System.Windows.Forms.DateRangeEventArgs -System.Windows.Forms.DateRangeEventArgs.DateRangeEventArgs(System.DateTime start, System.DateTime end) -> void -System.Windows.Forms.DateRangeEventArgs.End.get -> System.DateTime -System.Windows.Forms.DateRangeEventArgs.Start.get -> System.DateTime -System.Windows.Forms.DateRangeEventHandler -System.Windows.Forms.DateTimePicker -System.Windows.Forms.DateTimePicker.BackColorChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.CalendarFont.get -> System.Drawing.Font! -System.Windows.Forms.DateTimePicker.CalendarFont.set -> void -System.Windows.Forms.DateTimePicker.CalendarForeColor.get -> System.Drawing.Color -System.Windows.Forms.DateTimePicker.CalendarForeColor.set -> void -System.Windows.Forms.DateTimePicker.CalendarMonthBackground.get -> System.Drawing.Color -System.Windows.Forms.DateTimePicker.CalendarMonthBackground.set -> void -System.Windows.Forms.DateTimePicker.CalendarTitleBackColor.get -> System.Drawing.Color -System.Windows.Forms.DateTimePicker.CalendarTitleBackColor.set -> void -System.Windows.Forms.DateTimePicker.CalendarTitleForeColor.get -> System.Drawing.Color -System.Windows.Forms.DateTimePicker.CalendarTitleForeColor.set -> void -System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor.get -> System.Drawing.Color -System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor.set -> void -System.Windows.Forms.DateTimePicker.Checked.get -> bool -System.Windows.Forms.DateTimePicker.Checked.set -> void -System.Windows.Forms.DateTimePicker.Click -> System.EventHandler? -System.Windows.Forms.DateTimePicker.CloseUp -> System.EventHandler? -System.Windows.Forms.DateTimePicker.CustomFormat.get -> string? -System.Windows.Forms.DateTimePicker.CustomFormat.set -> void -System.Windows.Forms.DateTimePicker.DateTimePicker() -> void -System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject -System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DateTimePickerAccessibleObject(System.Windows.Forms.DateTimePicker! owner) -> void -System.Windows.Forms.DateTimePicker.DoubleClick -> System.EventHandler? -System.Windows.Forms.DateTimePicker.DropDown -> System.EventHandler? -System.Windows.Forms.DateTimePicker.DropDownAlign.get -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.DateTimePicker.DropDownAlign.set -> void -System.Windows.Forms.DateTimePicker.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.Format.get -> System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.DateTimePicker.Format.set -> void -System.Windows.Forms.DateTimePicker.FormatChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.MaxDate.get -> System.DateTime -System.Windows.Forms.DateTimePicker.MaxDate.set -> void -System.Windows.Forms.DateTimePicker.MinDate.get -> System.DateTime -System.Windows.Forms.DateTimePicker.MinDate.set -> void -System.Windows.Forms.DateTimePicker.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.DateTimePicker.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.DateTimePicker.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.DateTimePicker.Padding.set -> void -System.Windows.Forms.DateTimePicker.PaddingChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.DateTimePicker.PreferredHeight.get -> int -System.Windows.Forms.DateTimePicker.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.ShowCheckBox.get -> bool -System.Windows.Forms.DateTimePicker.ShowCheckBox.set -> void -System.Windows.Forms.DateTimePicker.ShowUpDown.get -> bool -System.Windows.Forms.DateTimePicker.ShowUpDown.set -> void -System.Windows.Forms.DateTimePicker.TextChanged -> System.EventHandler? -System.Windows.Forms.DateTimePicker.Value.get -> System.DateTime -System.Windows.Forms.DateTimePicker.Value.set -> void -System.Windows.Forms.DateTimePicker.ValueChanged -> System.EventHandler? -System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.DateTimePickerFormat.Custom = 8 -> System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.DateTimePickerFormat.Long = 1 -> System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.DateTimePickerFormat.Short = 2 -> System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.DateTimePickerFormat.Time = 4 -> System.Windows.Forms.DateTimePickerFormat -System.Windows.Forms.Day -System.Windows.Forms.Day.Default = 7 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Friday = 4 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Monday = 0 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Saturday = 5 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Sunday = 6 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Thursday = 3 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Tuesday = 1 -> System.Windows.Forms.Day -System.Windows.Forms.Day.Wednesday = 2 -> System.Windows.Forms.Day -System.Windows.Forms.Design.ComponentEditorForm -System.Windows.Forms.Design.ComponentEditorForm.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Design.ComponentEditorForm.ComponentEditorForm(object! component, System.Type![]! pageTypes) -> void -System.Windows.Forms.Design.ComponentEditorPage -System.Windows.Forms.Design.ComponentEditorPage.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate.get -> bool -System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate.set -> void -System.Windows.Forms.Design.ComponentEditorPage.Component.get -> System.ComponentModel.IComponent? -System.Windows.Forms.Design.ComponentEditorPage.Component.set -> void -System.Windows.Forms.Design.ComponentEditorPage.ComponentEditorPage() -> void -System.Windows.Forms.Design.ComponentEditorPage.EnterLoadingMode() -> void -System.Windows.Forms.Design.ComponentEditorPage.ExitLoadingMode() -> void -System.Windows.Forms.Design.ComponentEditorPage.FirstActivate.get -> bool -System.Windows.Forms.Design.ComponentEditorPage.FirstActivate.set -> void -System.Windows.Forms.Design.ComponentEditorPage.GetSelectedComponent() -> System.ComponentModel.IComponent? -System.Windows.Forms.Design.ComponentEditorPage.Icon.get -> System.Drawing.Icon! -System.Windows.Forms.Design.ComponentEditorPage.Icon.set -> void -System.Windows.Forms.Design.ComponentEditorPage.IsFirstActivate() -> bool -System.Windows.Forms.Design.ComponentEditorPage.IsLoading() -> bool -System.Windows.Forms.Design.ComponentEditorPage.Loading.get -> int -System.Windows.Forms.Design.ComponentEditorPage.Loading.set -> void -System.Windows.Forms.Design.ComponentEditorPage.LoadRequired.get -> bool -System.Windows.Forms.Design.ComponentEditorPage.LoadRequired.set -> void -System.Windows.Forms.Design.ComponentEditorPage.PageSite.get -> System.Windows.Forms.IComponentEditorPageSite? -System.Windows.Forms.Design.ComponentEditorPage.PageSite.set -> void -System.Windows.Forms.Design.EventsTab -System.Windows.Forms.Design.EventsTab.EventsTab(System.IServiceProvider? sp) -> void -System.Windows.Forms.Design.IUIService -System.Windows.Forms.Design.IUIService.CanShowComponentEditor(object! component) -> bool -System.Windows.Forms.Design.IUIService.GetDialogOwnerWindow() -> System.Windows.Forms.IWin32Window! -System.Windows.Forms.Design.IUIService.SetUIDirty() -> void -System.Windows.Forms.Design.IUIService.ShowComponentEditor(object! component, System.Windows.Forms.IWin32Window! parent) -> bool -System.Windows.Forms.Design.IUIService.ShowDialog(System.Windows.Forms.Form! form) -> System.Windows.Forms.DialogResult -System.Windows.Forms.Design.IUIService.ShowError(string! message) -> void -System.Windows.Forms.Design.IUIService.ShowError(System.Exception! ex) -> void -System.Windows.Forms.Design.IUIService.ShowError(System.Exception! ex, string! message) -> void -System.Windows.Forms.Design.IUIService.ShowMessage(string! message) -> void -System.Windows.Forms.Design.IUIService.ShowMessage(string! message, string! caption) -> void -System.Windows.Forms.Design.IUIService.ShowMessage(string! message, string! caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult -System.Windows.Forms.Design.IUIService.ShowToolWindow(System.Guid toolWindow) -> bool -System.Windows.Forms.Design.IUIService.Styles.get -> System.Collections.IDictionary! -System.Windows.Forms.Design.IWindowsFormsEditorService -System.Windows.Forms.Design.IWindowsFormsEditorService.CloseDropDown() -> void -System.Windows.Forms.Design.IWindowsFormsEditorService.DropDownControl(System.Windows.Forms.Control? control) -> void -System.Windows.Forms.Design.IWindowsFormsEditorService.ShowDialog(System.Windows.Forms.Form! dialog) -> System.Windows.Forms.DialogResult -System.Windows.Forms.Design.PropertyTab -System.Windows.Forms.Design.PropertyTab.~PropertyTab() -> void -System.Windows.Forms.Design.PropertyTab.PropertyTab() -> void -System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.All = System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip = 4 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip = 2 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.None = 0 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip = 8 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip = 1 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute -System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ItemAdditionVisibility.get -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability -System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ToolStripItemDesignerAvailabilityAttribute() -> void -System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ToolStripItemDesignerAvailabilityAttribute(System.Windows.Forms.Design.ToolStripItemDesignerAvailability visibility) -> void -System.Windows.Forms.Design.WindowsFormsComponentEditor -System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(object! component, System.Windows.Forms.IWin32Window? owner) -> bool -System.Windows.Forms.Design.WindowsFormsComponentEditor.WindowsFormsComponentEditor() -> void -System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Abort = 3 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Cancel = 2 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Continue = 11 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Ignore = 5 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.No = 7 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.None = 0 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.OK = 1 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Retry = 4 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.TryAgain = 10 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DialogResult.Yes = 6 -> System.Windows.Forms.DialogResult -System.Windows.Forms.DockingAttribute -System.Windows.Forms.DockingAttribute.DockingAttribute() -> void -System.Windows.Forms.DockingAttribute.DockingAttribute(System.Windows.Forms.DockingBehavior dockingBehavior) -> void -System.Windows.Forms.DockingAttribute.DockingBehavior.get -> System.Windows.Forms.DockingBehavior -System.Windows.Forms.DockingBehavior -System.Windows.Forms.DockingBehavior.Ask = 1 -> System.Windows.Forms.DockingBehavior -System.Windows.Forms.DockingBehavior.AutoDock = 2 -> System.Windows.Forms.DockingBehavior -System.Windows.Forms.DockingBehavior.Never = 0 -> System.Windows.Forms.DockingBehavior -System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.Bottom = 2 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.Fill = 5 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.Left = 3 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.None = 0 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.Right = 4 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DockStyle.Top = 1 -> System.Windows.Forms.DockStyle -System.Windows.Forms.DomainUpDown -System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject -System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.DomainItemAccessibleObject(string? name, System.Windows.Forms.AccessibleObject! parent) -> void -System.Windows.Forms.DomainUpDown.DomainUpDown() -> void -System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject -System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.DomainUpDownAccessibleObject(System.Windows.Forms.DomainUpDown! owner) -> void -System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection -System.Windows.Forms.DomainUpDown.Items.get -> System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection! -System.Windows.Forms.DomainUpDown.OnSelectedItemChanged(object? source, System.EventArgs! e) -> void -System.Windows.Forms.DomainUpDown.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.DomainUpDown.Padding.set -> void -System.Windows.Forms.DomainUpDown.PaddingChanged -> System.EventHandler? -System.Windows.Forms.DomainUpDown.SelectedIndex.get -> int -System.Windows.Forms.DomainUpDown.SelectedIndex.set -> void -System.Windows.Forms.DomainUpDown.SelectedItem.get -> object? -System.Windows.Forms.DomainUpDown.SelectedItem.set -> void -System.Windows.Forms.DomainUpDown.SelectedItemChanged -> System.EventHandler? -System.Windows.Forms.DomainUpDown.Sorted.get -> bool -System.Windows.Forms.DomainUpDown.Sorted.set -> void -System.Windows.Forms.DomainUpDown.Wrap.get -> bool -System.Windows.Forms.DomainUpDown.Wrap.set -> void -System.Windows.Forms.DpiChangedEventArgs -System.Windows.Forms.DpiChangedEventArgs.DeviceDpiNew.get -> int -System.Windows.Forms.DpiChangedEventArgs.DeviceDpiOld.get -> int -System.Windows.Forms.DpiChangedEventArgs.SuggestedRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.DpiChangedEventHandler -System.Windows.Forms.DragAction -System.Windows.Forms.DragAction.Cancel = 2 -> System.Windows.Forms.DragAction -System.Windows.Forms.DragAction.Continue = 0 -> System.Windows.Forms.DragAction -System.Windows.Forms.DragAction.Drop = 1 -> System.Windows.Forms.DragAction -System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.All = System.Windows.Forms.DragDropEffects.Scroll | System.Windows.Forms.DragDropEffects.Copy | System.Windows.Forms.DragDropEffects.Move -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.Copy = 1 -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.Link = 4 -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.Move = 2 -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.None = 0 -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragDropEffects.Scroll = -2147483648 -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragEventArgs -System.Windows.Forms.DragEventArgs.AllowedEffect.get -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragEventArgs.Data.get -> System.Windows.Forms.IDataObject? -System.Windows.Forms.DragEventArgs.DragEventArgs(System.Windows.Forms.IDataObject? data, int keyState, int x, int y, System.Windows.Forms.DragDropEffects allowedEffect, System.Windows.Forms.DragDropEffects effect) -> void -System.Windows.Forms.DragEventArgs.DragEventArgs(System.Windows.Forms.IDataObject? data, int keyState, int x, int y, System.Windows.Forms.DragDropEffects allowedEffect, System.Windows.Forms.DragDropEffects effect, System.Windows.Forms.DropImageType dropImageType, string? message, string? messageReplacementToken) -> void -System.Windows.Forms.DragEventArgs.DropImageType.get -> System.Windows.Forms.DropImageType -System.Windows.Forms.DragEventArgs.DropImageType.set -> void -System.Windows.Forms.DragEventArgs.Effect.get -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.DragEventArgs.Effect.set -> void -System.Windows.Forms.DragEventArgs.KeyState.get -> int -System.Windows.Forms.DragEventArgs.Message.get -> string? -System.Windows.Forms.DragEventArgs.Message.set -> void -System.Windows.Forms.DragEventArgs.MessageReplacementToken.get -> string? -System.Windows.Forms.DragEventArgs.MessageReplacementToken.set -> void -System.Windows.Forms.DragEventArgs.X.get -> int -System.Windows.Forms.DragEventArgs.Y.get -> int -System.Windows.Forms.DragEventHandler -System.Windows.Forms.DrawItemEventArgs -System.Windows.Forms.DrawItemEventArgs.BackColor.get -> System.Drawing.Color -System.Windows.Forms.DrawItemEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawItemEventArgs.Dispose() -> void -System.Windows.Forms.DrawItemEventArgs.DrawItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state) -> void -System.Windows.Forms.DrawItemEventArgs.DrawItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void -System.Windows.Forms.DrawItemEventArgs.Font.get -> System.Drawing.Font? -System.Windows.Forms.DrawItemEventArgs.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.DrawItemEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawItemEventArgs.Index.get -> int -System.Windows.Forms.DrawItemEventArgs.State.get -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemEventHandler -System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Checked = 8 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.ComboBoxEdit = 4096 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Default = 32 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Disabled = 4 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Focus = 16 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Grayed = 2 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.HotLight = 64 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Inactive = 128 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.NoAccelerator = 256 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.NoFocusRect = 512 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.None = 0 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawItemState.Selected = 1 -> System.Windows.Forms.DrawItemState -System.Windows.Forms.DrawListViewColumnHeaderEventArgs -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.BackColor.get -> System.Drawing.Color -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawBackground() -> void -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault.get -> bool -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault.set -> void -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawListViewColumnHeaderEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, int columnIndex, System.Windows.Forms.ColumnHeader? header, System.Windows.Forms.ListViewItemStates state, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText() -> void -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Font.get -> System.Drawing.Font? -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? -System.Windows.Forms.DrawListViewColumnHeaderEventArgs.State.get -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.DrawListViewColumnHeaderEventHandler -System.Windows.Forms.DrawListViewItemEventArgs -System.Windows.Forms.DrawListViewItemEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawListViewItemEventArgs.DrawBackground() -> void -System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault.get -> bool -System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault.set -> void -System.Windows.Forms.DrawListViewItemEventArgs.DrawFocusRectangle() -> void -System.Windows.Forms.DrawListViewItemEventArgs.DrawListViewItemEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.ListViewItem! item, System.Drawing.Rectangle bounds, int itemIndex, System.Windows.Forms.ListViewItemStates state) -> void -System.Windows.Forms.DrawListViewItemEventArgs.DrawText() -> void -System.Windows.Forms.DrawListViewItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void -System.Windows.Forms.DrawListViewItemEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawListViewItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.DrawListViewItemEventArgs.ItemIndex.get -> int -System.Windows.Forms.DrawListViewItemEventArgs.State.get -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.DrawListViewItemEventHandler -System.Windows.Forms.DrawListViewSubItemEventArgs -System.Windows.Forms.DrawListViewSubItemEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawListViewSubItemEventArgs.ColumnIndex.get -> int -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawBackground() -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault.get -> bool -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault.set -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawFocusRectangle(System.Drawing.Rectangle bounds) -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawListViewSubItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Windows.Forms.ListViewItem? item, System.Windows.Forms.ListViewItem.ListViewSubItem? subItem, int itemIndex, int columnIndex, System.Windows.Forms.ColumnHeader? header, System.Windows.Forms.ListViewItemStates itemState) -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText() -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void -System.Windows.Forms.DrawListViewSubItemEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawListViewSubItemEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? -System.Windows.Forms.DrawListViewSubItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.DrawListViewSubItemEventArgs.ItemIndex.get -> int -System.Windows.Forms.DrawListViewSubItemEventArgs.ItemState.get -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.DrawListViewSubItemEventArgs.SubItem.get -> System.Windows.Forms.ListViewItem.ListViewSubItem? -System.Windows.Forms.DrawListViewSubItemEventHandler -System.Windows.Forms.DrawMode -System.Windows.Forms.DrawMode.Normal = 0 -> System.Windows.Forms.DrawMode -System.Windows.Forms.DrawMode.OwnerDrawFixed = 1 -> System.Windows.Forms.DrawMode -System.Windows.Forms.DrawMode.OwnerDrawVariable = 2 -> System.Windows.Forms.DrawMode -System.Windows.Forms.DrawToolTipEventArgs -System.Windows.Forms.DrawToolTipEventArgs.AssociatedControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.DrawToolTipEventArgs.AssociatedWindow.get -> System.Windows.Forms.IWin32Window? -System.Windows.Forms.DrawToolTipEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawToolTipEventArgs.DrawBackground() -> void -System.Windows.Forms.DrawToolTipEventArgs.DrawBorder() -> void -System.Windows.Forms.DrawToolTipEventArgs.DrawText() -> void -System.Windows.Forms.DrawToolTipEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void -System.Windows.Forms.DrawToolTipEventArgs.DrawToolTipEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.IWin32Window? associatedWindow, System.Windows.Forms.Control? associatedControl, System.Drawing.Rectangle bounds, string? toolTipText, System.Drawing.Color backColor, System.Drawing.Color foreColor, System.Drawing.Font? font) -> void -System.Windows.Forms.DrawToolTipEventArgs.Font.get -> System.Drawing.Font? -System.Windows.Forms.DrawToolTipEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawToolTipEventArgs.ToolTipText.get -> string? -System.Windows.Forms.DrawToolTipEventHandler -System.Windows.Forms.DrawTreeNodeEventArgs -System.Windows.Forms.DrawTreeNodeEventArgs.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault.get -> bool -System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault.set -> void -System.Windows.Forms.DrawTreeNodeEventArgs.DrawTreeNodeEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.TreeNode? node, System.Drawing.Rectangle bounds, System.Windows.Forms.TreeNodeStates state) -> void -System.Windows.Forms.DrawTreeNodeEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.DrawTreeNodeEventArgs.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.DrawTreeNodeEventArgs.State.get -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.DrawTreeNodeEventHandler -System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Copy = 1 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Invalid = -1 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Label = 6 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Link = 4 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Move = 2 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.NoImage = 8 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.None = 0 -> System.Windows.Forms.DropImageType -System.Windows.Forms.DropImageType.Warning = 7 -> System.Windows.Forms.DropImageType -System.Windows.Forms.ErrorBlinkStyle -System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink = 1 -> System.Windows.Forms.ErrorBlinkStyle -System.Windows.Forms.ErrorBlinkStyle.BlinkIfDifferentError = 0 -> System.Windows.Forms.ErrorBlinkStyle -System.Windows.Forms.ErrorBlinkStyle.NeverBlink = 2 -> System.Windows.Forms.ErrorBlinkStyle -System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.BottomLeft = 4 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.BottomRight = 5 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.MiddleLeft = 2 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.MiddleRight = 3 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.TopLeft = 0 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorIconAlignment.TopRight = 1 -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorProvider -System.Windows.Forms.ErrorProvider.BindToDataAndErrors(object? newDataSource, string? newDataMember) -> void -System.Windows.Forms.ErrorProvider.BlinkRate.get -> int -System.Windows.Forms.ErrorProvider.BlinkRate.set -> void -System.Windows.Forms.ErrorProvider.BlinkStyle.get -> System.Windows.Forms.ErrorBlinkStyle -System.Windows.Forms.ErrorProvider.BlinkStyle.set -> void -System.Windows.Forms.ErrorProvider.CanExtend(object? extendee) -> bool -System.Windows.Forms.ErrorProvider.Clear() -> void -System.Windows.Forms.ErrorProvider.ContainerControl.get -> System.Windows.Forms.ContainerControl? -System.Windows.Forms.ErrorProvider.ContainerControl.set -> void -System.Windows.Forms.ErrorProvider.DataMember.get -> string? -System.Windows.Forms.ErrorProvider.DataMember.set -> void -System.Windows.Forms.ErrorProvider.DataSource.get -> object? -System.Windows.Forms.ErrorProvider.DataSource.set -> void -System.Windows.Forms.ErrorProvider.ErrorProvider() -> void -System.Windows.Forms.ErrorProvider.ErrorProvider(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.ErrorProvider.ErrorProvider(System.Windows.Forms.ContainerControl! parentControl) -> void -System.Windows.Forms.ErrorProvider.GetError(System.Windows.Forms.Control! control) -> string! -System.Windows.Forms.ErrorProvider.GetIconAlignment(System.Windows.Forms.Control! control) -> System.Windows.Forms.ErrorIconAlignment -System.Windows.Forms.ErrorProvider.GetIconPadding(System.Windows.Forms.Control! control) -> int -System.Windows.Forms.ErrorProvider.HasErrors.get -> bool -System.Windows.Forms.ErrorProvider.Icon.get -> System.Drawing.Icon! -System.Windows.Forms.ErrorProvider.Icon.set -> void -System.Windows.Forms.ErrorProvider.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.ErrorProvider.SetError(System.Windows.Forms.Control! control, string? value) -> void -System.Windows.Forms.ErrorProvider.SetIconAlignment(System.Windows.Forms.Control! control, System.Windows.Forms.ErrorIconAlignment value) -> void -System.Windows.Forms.ErrorProvider.SetIconPadding(System.Windows.Forms.Control! control, int padding) -> void -System.Windows.Forms.ErrorProvider.Tag.get -> object? -System.Windows.Forms.ErrorProvider.Tag.set -> void -System.Windows.Forms.ErrorProvider.UpdateBinding() -> void -System.Windows.Forms.FeatureSupport -System.Windows.Forms.FeatureSupport.FeatureSupport() -> void -System.Windows.Forms.FileDialog -System.Windows.Forms.FileDialog.AddExtension.get -> bool -System.Windows.Forms.FileDialog.AddExtension.set -> void -System.Windows.Forms.FileDialog.AddToRecent.get -> bool -System.Windows.Forms.FileDialog.AddToRecent.set -> void -System.Windows.Forms.FileDialog.AutoUpgradeEnabled.get -> bool -System.Windows.Forms.FileDialog.AutoUpgradeEnabled.set -> void -System.Windows.Forms.FileDialog.CheckPathExists.get -> bool -System.Windows.Forms.FileDialog.CheckPathExists.set -> void -System.Windows.Forms.FileDialog.ClientGuid.get -> System.Guid? -System.Windows.Forms.FileDialog.ClientGuid.set -> void -System.Windows.Forms.FileDialog.CustomPlaces.get -> System.Windows.Forms.FileDialogCustomPlacesCollection! -System.Windows.Forms.FileDialog.DefaultExt.get -> string! -System.Windows.Forms.FileDialog.DefaultExt.set -> void -System.Windows.Forms.FileDialog.DereferenceLinks.get -> bool -System.Windows.Forms.FileDialog.DereferenceLinks.set -> void -System.Windows.Forms.FileDialog.FileName.get -> string! -System.Windows.Forms.FileDialog.FileName.set -> void -System.Windows.Forms.FileDialog.FileNames.get -> string![]! -System.Windows.Forms.FileDialog.FileOk -> System.ComponentModel.CancelEventHandler! -System.Windows.Forms.FileDialog.Filter.get -> string! -System.Windows.Forms.FileDialog.Filter.set -> void -System.Windows.Forms.FileDialog.FilterIndex.get -> int -System.Windows.Forms.FileDialog.FilterIndex.set -> void -System.Windows.Forms.FileDialog.InitialDirectory.get -> string! -System.Windows.Forms.FileDialog.InitialDirectory.set -> void -System.Windows.Forms.FileDialog.OkRequiresInteraction.get -> bool -System.Windows.Forms.FileDialog.OkRequiresInteraction.set -> void -System.Windows.Forms.FileDialog.RestoreDirectory.get -> bool -System.Windows.Forms.FileDialog.RestoreDirectory.set -> void -System.Windows.Forms.FileDialog.ShowHelp.get -> bool -System.Windows.Forms.FileDialog.ShowHelp.set -> void -System.Windows.Forms.FileDialog.ShowHiddenFiles.get -> bool -System.Windows.Forms.FileDialog.ShowHiddenFiles.set -> void -System.Windows.Forms.FileDialog.ShowPinnedPlaces.get -> bool -System.Windows.Forms.FileDialog.ShowPinnedPlaces.set -> void -System.Windows.Forms.FileDialog.SupportMultiDottedExtensions.get -> bool -System.Windows.Forms.FileDialog.SupportMultiDottedExtensions.set -> void -System.Windows.Forms.FileDialog.Title.get -> string! -System.Windows.Forms.FileDialog.Title.set -> void -System.Windows.Forms.FileDialog.ValidateNames.get -> bool -System.Windows.Forms.FileDialog.ValidateNames.set -> void -System.Windows.Forms.FixedPanel -System.Windows.Forms.FixedPanel.None = 0 -> System.Windows.Forms.FixedPanel -System.Windows.Forms.FixedPanel.Panel1 = 1 -> System.Windows.Forms.FixedPanel -System.Windows.Forms.FixedPanel.Panel2 = 2 -> System.Windows.Forms.FixedPanel -System.Windows.Forms.FlatButtonAppearance -System.Windows.Forms.FlatButtonAppearance.BorderColor.get -> System.Drawing.Color -System.Windows.Forms.FlatButtonAppearance.BorderColor.set -> void -System.Windows.Forms.FlatButtonAppearance.BorderSize.get -> int -System.Windows.Forms.FlatButtonAppearance.BorderSize.set -> void -System.Windows.Forms.FlatButtonAppearance.CheckedBackColor.get -> System.Drawing.Color -System.Windows.Forms.FlatButtonAppearance.CheckedBackColor.set -> void -System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor.get -> System.Drawing.Color -System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor.set -> void -System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor.get -> System.Drawing.Color -System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor.set -> void -System.Windows.Forms.FlatStyle -System.Windows.Forms.FlatStyle.Flat = 0 -> System.Windows.Forms.FlatStyle -System.Windows.Forms.FlatStyle.Popup = 1 -> System.Windows.Forms.FlatStyle -System.Windows.Forms.FlatStyle.Standard = 2 -> System.Windows.Forms.FlatStyle -System.Windows.Forms.FlatStyle.System = 3 -> System.Windows.Forms.FlatStyle -System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowDirection.BottomUp = 3 -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowDirection.LeftToRight = 0 -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowDirection.RightToLeft = 2 -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowDirection.TopDown = 1 -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowLayoutPanel -System.Windows.Forms.FlowLayoutPanel.FlowDirection.get -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowLayoutPanel.FlowDirection.set -> void -System.Windows.Forms.FlowLayoutPanel.FlowLayoutPanel() -> void -System.Windows.Forms.FlowLayoutPanel.GetFlowBreak(System.Windows.Forms.Control! control) -> bool -System.Windows.Forms.FlowLayoutPanel.SetFlowBreak(System.Windows.Forms.Control! control, bool value) -> void -System.Windows.Forms.FlowLayoutPanel.WrapContents.get -> bool -System.Windows.Forms.FlowLayoutPanel.WrapContents.set -> void -System.Windows.Forms.FlowLayoutSettings -System.Windows.Forms.FlowLayoutSettings.FlowDirection.get -> System.Windows.Forms.FlowDirection -System.Windows.Forms.FlowLayoutSettings.FlowDirection.set -> void -System.Windows.Forms.FlowLayoutSettings.GetFlowBreak(object! child) -> bool -System.Windows.Forms.FlowLayoutSettings.SetFlowBreak(object! child, bool value) -> void -System.Windows.Forms.FlowLayoutSettings.WrapContents.get -> bool -System.Windows.Forms.FlowLayoutSettings.WrapContents.set -> void -System.Windows.Forms.FolderBrowserDialog -System.Windows.Forms.FolderBrowserDialog.AddToRecent.get -> bool -System.Windows.Forms.FolderBrowserDialog.AddToRecent.set -> void -System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled.get -> bool -System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled.set -> void -System.Windows.Forms.FolderBrowserDialog.ClientGuid.get -> System.Guid? -System.Windows.Forms.FolderBrowserDialog.ClientGuid.set -> void -System.Windows.Forms.FolderBrowserDialog.Description.get -> string! -System.Windows.Forms.FolderBrowserDialog.Description.set -> void -System.Windows.Forms.FolderBrowserDialog.FolderBrowserDialog() -> void -System.Windows.Forms.FolderBrowserDialog.HelpRequest -> System.EventHandler? -System.Windows.Forms.FolderBrowserDialog.InitialDirectory.get -> string! -System.Windows.Forms.FolderBrowserDialog.InitialDirectory.set -> void -System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction.get -> bool -System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction.set -> void -System.Windows.Forms.FolderBrowserDialog.RootFolder.get -> System.Environment.SpecialFolder -System.Windows.Forms.FolderBrowserDialog.RootFolder.set -> void -System.Windows.Forms.FolderBrowserDialog.SelectedPath.get -> string! -System.Windows.Forms.FolderBrowserDialog.SelectedPath.set -> void -System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles.get -> bool -System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles.set -> void -System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton.get -> bool -System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton.set -> void -System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces.get -> bool -System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces.set -> void -System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle.get -> bool -System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle.set -> void -System.Windows.Forms.FontDialog -System.Windows.Forms.FontDialog.AllowScriptChange.get -> bool -System.Windows.Forms.FontDialog.AllowScriptChange.set -> void -System.Windows.Forms.FontDialog.AllowSimulations.get -> bool -System.Windows.Forms.FontDialog.AllowSimulations.set -> void -System.Windows.Forms.FontDialog.AllowVectorFonts.get -> bool -System.Windows.Forms.FontDialog.AllowVectorFonts.set -> void -System.Windows.Forms.FontDialog.AllowVerticalFonts.get -> bool -System.Windows.Forms.FontDialog.AllowVerticalFonts.set -> void -System.Windows.Forms.FontDialog.Apply -> System.EventHandler? -System.Windows.Forms.FontDialog.Color.get -> System.Drawing.Color -System.Windows.Forms.FontDialog.Color.set -> void -System.Windows.Forms.FontDialog.FixedPitchOnly.get -> bool -System.Windows.Forms.FontDialog.FixedPitchOnly.set -> void -System.Windows.Forms.FontDialog.Font.get -> System.Drawing.Font! -System.Windows.Forms.FontDialog.Font.set -> void -System.Windows.Forms.FontDialog.FontDialog() -> void -System.Windows.Forms.FontDialog.FontMustExist.get -> bool -System.Windows.Forms.FontDialog.FontMustExist.set -> void -System.Windows.Forms.FontDialog.MaxSize.get -> int -System.Windows.Forms.FontDialog.MaxSize.set -> void -System.Windows.Forms.FontDialog.MinSize.get -> int -System.Windows.Forms.FontDialog.MinSize.set -> void -System.Windows.Forms.FontDialog.Options.get -> int -System.Windows.Forms.FontDialog.ScriptsOnly.get -> bool -System.Windows.Forms.FontDialog.ScriptsOnly.set -> void -System.Windows.Forms.FontDialog.ShowApply.get -> bool -System.Windows.Forms.FontDialog.ShowApply.set -> void -System.Windows.Forms.FontDialog.ShowColor.get -> bool -System.Windows.Forms.FontDialog.ShowColor.set -> void -System.Windows.Forms.FontDialog.ShowEffects.get -> bool -System.Windows.Forms.FontDialog.ShowEffects.set -> void -System.Windows.Forms.FontDialog.ShowHelp.get -> bool -System.Windows.Forms.FontDialog.ShowHelp.set -> void -System.Windows.Forms.Form -System.Windows.Forms.Form.AcceptButton.get -> System.Windows.Forms.IButtonControl? -System.Windows.Forms.Form.AcceptButton.set -> void -System.Windows.Forms.Form.Activate() -> void -System.Windows.Forms.Form.Activated -> System.EventHandler? -System.Windows.Forms.Form.ActivateMdiChild(System.Windows.Forms.Form? form) -> void -System.Windows.Forms.Form.ActiveMdiChild.get -> System.Windows.Forms.Form? -System.Windows.Forms.Form.AddOwnedForm(System.Windows.Forms.Form? ownedForm) -> void -System.Windows.Forms.Form.AllowTransparency.get -> bool -System.Windows.Forms.Form.AllowTransparency.set -> void -System.Windows.Forms.Form.ApplyAutoScaling() -> void -System.Windows.Forms.Form.AutoScale.get -> bool -System.Windows.Forms.Form.AutoScale.set -> void -System.Windows.Forms.Form.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Form.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.Form.AutoSizeMode.set -> void -System.Windows.Forms.Form.AutoValidateChanged -> System.EventHandler? -System.Windows.Forms.Form.CancelButton.get -> System.Windows.Forms.IButtonControl? -System.Windows.Forms.Form.CancelButton.set -> void -System.Windows.Forms.Form.CenterToParent() -> void -System.Windows.Forms.Form.CenterToScreen() -> void -System.Windows.Forms.Form.ClientSize.get -> System.Drawing.Size -System.Windows.Forms.Form.ClientSize.set -> void -System.Windows.Forms.Form.Close() -> void -System.Windows.Forms.Form.Closed -> System.EventHandler? -System.Windows.Forms.Form.Closing -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.Form.ControlBox.get -> bool -System.Windows.Forms.Form.ControlBox.set -> void -System.Windows.Forms.Form.ControlCollection -System.Windows.Forms.Form.ControlCollection.ControlCollection(System.Windows.Forms.Form! owner) -> void -System.Windows.Forms.Form.Deactivate -> System.EventHandler? -System.Windows.Forms.Form.DesktopBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.Form.DesktopBounds.set -> void -System.Windows.Forms.Form.DesktopLocation.get -> System.Drawing.Point -System.Windows.Forms.Form.DesktopLocation.set -> void -System.Windows.Forms.Form.DialogResult.get -> System.Windows.Forms.DialogResult -System.Windows.Forms.Form.DialogResult.set -> void -System.Windows.Forms.Form.DpiChanged -> System.Windows.Forms.DpiChangedEventHandler? -System.Windows.Forms.Form.Form() -> void -System.Windows.Forms.Form.FormBorderStyle.get -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.Form.FormBorderStyle.set -> void -System.Windows.Forms.Form.FormClosed -> System.Windows.Forms.FormClosedEventHandler? -System.Windows.Forms.Form.FormClosing -> System.Windows.Forms.FormClosingEventHandler? -System.Windows.Forms.Form.HelpButton.get -> bool -System.Windows.Forms.Form.HelpButton.set -> void -System.Windows.Forms.Form.HelpButtonClicked -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.Form.Icon.get -> System.Drawing.Icon? -System.Windows.Forms.Form.Icon.set -> void -System.Windows.Forms.Form.InputLanguageChanged -> System.Windows.Forms.InputLanguageChangedEventHandler? -System.Windows.Forms.Form.InputLanguageChanging -> System.Windows.Forms.InputLanguageChangingEventHandler? -System.Windows.Forms.Form.IsMdiChild.get -> bool -System.Windows.Forms.Form.IsMdiContainer.get -> bool -System.Windows.Forms.Form.IsMdiContainer.set -> void -System.Windows.Forms.Form.IsRestrictedWindow.get -> bool -System.Windows.Forms.Form.KeyPreview.get -> bool -System.Windows.Forms.Form.KeyPreview.set -> void -System.Windows.Forms.Form.LayoutMdi(System.Windows.Forms.MdiLayout value) -> void -System.Windows.Forms.Form.Load -> System.EventHandler? -System.Windows.Forms.Form.Location.get -> System.Drawing.Point -System.Windows.Forms.Form.Location.set -> void -System.Windows.Forms.Form.MainMenuStrip.get -> System.Windows.Forms.MenuStrip? -System.Windows.Forms.Form.MainMenuStrip.set -> void -System.Windows.Forms.Form.Margin.get -> System.Windows.Forms.Padding -System.Windows.Forms.Form.Margin.set -> void -System.Windows.Forms.Form.MarginChanged -> System.EventHandler? -System.Windows.Forms.Form.MaximizeBox.get -> bool -System.Windows.Forms.Form.MaximizeBox.set -> void -System.Windows.Forms.Form.MaximizedBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.Form.MaximizedBounds.set -> void -System.Windows.Forms.Form.MaximizedBoundsChanged -> System.EventHandler? -System.Windows.Forms.Form.MaximumSizeChanged -> System.EventHandler? -System.Windows.Forms.Form.MdiChildActivate -> System.EventHandler? -System.Windows.Forms.Form.MdiChildren.get -> System.Windows.Forms.Form![]! -System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom.get -> bool -System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom.set -> void -System.Windows.Forms.Form.MdiParent.get -> System.Windows.Forms.Form? -System.Windows.Forms.Form.MdiParent.set -> void -System.Windows.Forms.Form.MenuComplete -> System.EventHandler? -System.Windows.Forms.Form.MenuStart -> System.EventHandler? -System.Windows.Forms.Form.MinimizeBox.get -> bool -System.Windows.Forms.Form.MinimizeBox.set -> void -System.Windows.Forms.Form.MinimumSizeChanged -> System.EventHandler? -System.Windows.Forms.Form.Modal.get -> bool -System.Windows.Forms.Form.Opacity.get -> double -System.Windows.Forms.Form.Opacity.set -> void -System.Windows.Forms.Form.OwnedForms.get -> System.Windows.Forms.Form![]! -System.Windows.Forms.Form.Owner.get -> System.Windows.Forms.Form? -System.Windows.Forms.Form.Owner.set -> void -System.Windows.Forms.Form.RemoveOwnedForm(System.Windows.Forms.Form? ownedForm) -> void -System.Windows.Forms.Form.ResizeBegin -> System.EventHandler? -System.Windows.Forms.Form.ResizeEnd -> System.EventHandler? -System.Windows.Forms.Form.RestoreBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.Form.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.Form.SetDesktopBounds(int x, int y, int width, int height) -> void -System.Windows.Forms.Form.SetDesktopLocation(int x, int y) -> void -System.Windows.Forms.Form.Show(System.Windows.Forms.IWin32Window? owner) -> void -System.Windows.Forms.Form.ShowDialog() -> System.Windows.Forms.DialogResult -System.Windows.Forms.Form.ShowDialog(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult -System.Windows.Forms.Form.ShowIcon.get -> bool -System.Windows.Forms.Form.ShowIcon.set -> void -System.Windows.Forms.Form.ShowInTaskbar.get -> bool -System.Windows.Forms.Form.ShowInTaskbar.set -> void -System.Windows.Forms.Form.Shown -> System.EventHandler? -System.Windows.Forms.Form.Size.get -> System.Drawing.Size -System.Windows.Forms.Form.Size.set -> void -System.Windows.Forms.Form.SizeGripStyle.get -> System.Windows.Forms.SizeGripStyle -System.Windows.Forms.Form.SizeGripStyle.set -> void -System.Windows.Forms.Form.StartPosition.get -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.Form.StartPosition.set -> void -System.Windows.Forms.Form.TabIndex.get -> int -System.Windows.Forms.Form.TabIndex.set -> void -System.Windows.Forms.Form.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.Form.TabStop.get -> bool -System.Windows.Forms.Form.TabStop.set -> void -System.Windows.Forms.Form.TabStopChanged -> System.EventHandler? -System.Windows.Forms.Form.TopLevel.get -> bool -System.Windows.Forms.Form.TopLevel.set -> void -System.Windows.Forms.Form.TopMost.get -> bool -System.Windows.Forms.Form.TopMost.set -> void -System.Windows.Forms.Form.TransparencyKey.get -> System.Drawing.Color -System.Windows.Forms.Form.TransparencyKey.set -> void -System.Windows.Forms.Form.WindowState.get -> System.Windows.Forms.FormWindowState -System.Windows.Forms.Form.WindowState.set -> void -System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.Fixed3D = 2 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.FixedDialog = 3 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.FixedSingle = 1 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.FixedToolWindow = 5 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.None = 0 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.Sizable = 4 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormBorderStyle.SizableToolWindow = 6 -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.FormClosedEventArgs -System.Windows.Forms.FormClosedEventArgs.CloseReason.get -> System.Windows.Forms.CloseReason -System.Windows.Forms.FormClosedEventArgs.FormClosedEventArgs(System.Windows.Forms.CloseReason closeReason) -> void -System.Windows.Forms.FormClosedEventHandler -System.Windows.Forms.FormClosingEventArgs -System.Windows.Forms.FormClosingEventArgs.CloseReason.get -> System.Windows.Forms.CloseReason -System.Windows.Forms.FormClosingEventArgs.FormClosingEventArgs(System.Windows.Forms.CloseReason closeReason, bool cancel) -> void -System.Windows.Forms.FormClosingEventHandler -System.Windows.Forms.FormCollection -System.Windows.Forms.FormCollection.FormCollection() -> void -System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormStartPosition.CenterParent = 4 -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormStartPosition.CenterScreen = 1 -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormStartPosition.Manual = 0 -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormStartPosition.WindowsDefaultBounds = 3 -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormStartPosition.WindowsDefaultLocation = 2 -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.FormWindowState -System.Windows.Forms.FormWindowState.Maximized = 2 -> System.Windows.Forms.FormWindowState -System.Windows.Forms.FormWindowState.Minimized = 1 -> System.Windows.Forms.FormWindowState -System.Windows.Forms.FormWindowState.Normal = 0 -> System.Windows.Forms.FormWindowState -System.Windows.Forms.FrameStyle -System.Windows.Forms.FrameStyle.Dashed = 0 -> System.Windows.Forms.FrameStyle -System.Windows.Forms.FrameStyle.Thick = 1 -> System.Windows.Forms.FrameStyle -System.Windows.Forms.GetChildAtPointSkip -System.Windows.Forms.GetChildAtPointSkip.Disabled = 2 -> System.Windows.Forms.GetChildAtPointSkip -System.Windows.Forms.GetChildAtPointSkip.Invisible = 1 -> System.Windows.Forms.GetChildAtPointSkip -System.Windows.Forms.GetChildAtPointSkip.None = 0 -> System.Windows.Forms.GetChildAtPointSkip -System.Windows.Forms.GetChildAtPointSkip.Transparent = 4 -> System.Windows.Forms.GetChildAtPointSkip -System.Windows.Forms.GiveFeedbackEventArgs -System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset.get -> System.Drawing.Point -System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset.set -> void -System.Windows.Forms.GiveFeedbackEventArgs.DragImage.get -> System.Drawing.Bitmap? -System.Windows.Forms.GiveFeedbackEventArgs.DragImage.set -> void -System.Windows.Forms.GiveFeedbackEventArgs.Effect.get -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.GiveFeedbackEventArgs.GiveFeedbackEventArgs(System.Windows.Forms.DragDropEffects effect, bool useDefaultCursors) -> void -System.Windows.Forms.GiveFeedbackEventArgs.GiveFeedbackEventArgs(System.Windows.Forms.DragDropEffects effect, bool useDefaultCursors, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> void -System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors.get -> bool -System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors.set -> void -System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage.get -> bool -System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage.set -> void -System.Windows.Forms.GiveFeedbackEventHandler -System.Windows.Forms.GridItem -System.Windows.Forms.GridItem.GridItem() -> void -System.Windows.Forms.GridItem.Tag.get -> object? -System.Windows.Forms.GridItem.Tag.set -> void -System.Windows.Forms.GridItemCollection -System.Windows.Forms.GridItemCollection.Count.get -> int -System.Windows.Forms.GridItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.GridItemCollection.this[int index].get -> System.Windows.Forms.GridItem! -System.Windows.Forms.GridItemCollection.this[string! label].get -> System.Windows.Forms.GridItem? -System.Windows.Forms.GridItemType -System.Windows.Forms.GridItemType.ArrayValue = 2 -> System.Windows.Forms.GridItemType -System.Windows.Forms.GridItemType.Category = 1 -> System.Windows.Forms.GridItemType -System.Windows.Forms.GridItemType.Property = 0 -> System.Windows.Forms.GridItemType -System.Windows.Forms.GridItemType.Root = 3 -> System.Windows.Forms.GridItemType -System.Windows.Forms.GroupBox -System.Windows.Forms.GroupBox.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.GroupBox.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.GroupBox.AutoSizeMode.set -> void -System.Windows.Forms.GroupBox.Click -> System.EventHandler? -System.Windows.Forms.GroupBox.DoubleClick -> System.EventHandler? -System.Windows.Forms.GroupBox.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.GroupBox.FlatStyle.set -> void -System.Windows.Forms.GroupBox.GroupBox() -> void -System.Windows.Forms.GroupBox.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.GroupBox.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.GroupBox.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.GroupBox.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.GroupBox.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.GroupBox.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.GroupBox.MouseEnter -> System.EventHandler? -System.Windows.Forms.GroupBox.MouseLeave -> System.EventHandler? -System.Windows.Forms.GroupBox.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.GroupBox.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.GroupBox.TabStop.get -> bool -System.Windows.Forms.GroupBox.TabStop.set -> void -System.Windows.Forms.GroupBox.TabStopChanged -> System.EventHandler? -System.Windows.Forms.GroupBox.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.GroupBox.UseCompatibleTextRendering.set -> void -System.Windows.Forms.GroupBoxRenderer -System.Windows.Forms.HandledMouseEventArgs -System.Windows.Forms.HandledMouseEventArgs.Handled.get -> bool -System.Windows.Forms.HandledMouseEventArgs.Handled.set -> void -System.Windows.Forms.HandledMouseEventArgs.HandledMouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta) -> void -System.Windows.Forms.HandledMouseEventArgs.HandledMouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta, bool defaultHandledValue) -> void -System.Windows.Forms.Help -System.Windows.Forms.HelpEventArgs -System.Windows.Forms.HelpEventArgs.Handled.get -> bool -System.Windows.Forms.HelpEventArgs.Handled.set -> void -System.Windows.Forms.HelpEventArgs.HelpEventArgs(System.Drawing.Point mousePos) -> void -System.Windows.Forms.HelpEventArgs.MousePos.get -> System.Drawing.Point -System.Windows.Forms.HelpEventHandler -System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.AssociateIndex = -2147483643 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.Find = -2147483644 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.Index = -2147483645 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.KeywordIndex = -2147483642 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.TableOfContents = -2147483646 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.Topic = -2147483647 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpNavigator.TopicId = -2147483641 -> System.Windows.Forms.HelpNavigator -System.Windows.Forms.HelpProvider -System.Windows.Forms.HelpProvider.HelpProvider() -> void -System.Windows.Forms.HelpProvider.Tag.get -> object? -System.Windows.Forms.HelpProvider.Tag.set -> void -System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.HorizontalAlignment.Center = 2 -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.HorizontalAlignment.Left = 0 -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.HorizontalAlignment.Right = 1 -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.HScrollBar -System.Windows.Forms.HScrollBar.HScrollBar() -> void -System.Windows.Forms.HScrollProperties -System.Windows.Forms.HScrollProperties.HScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void -System.Windows.Forms.HtmlDocument -System.Windows.Forms.HtmlDocument.ActiveElement.get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlDocument.ActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.HtmlDocument.ActiveLinkColor.set -> void -System.Windows.Forms.HtmlDocument.All.get -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlDocument.AttachEventHandler(string! eventName, System.EventHandler! eventHandler) -> void -System.Windows.Forms.HtmlDocument.BackColor.get -> System.Drawing.Color -System.Windows.Forms.HtmlDocument.BackColor.set -> void -System.Windows.Forms.HtmlDocument.Body.get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlDocument.Click -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.ContextMenuShowing -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.Cookie.get -> string! -System.Windows.Forms.HtmlDocument.Cookie.set -> void -System.Windows.Forms.HtmlDocument.CreateElement(string! elementTag) -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlDocument.DefaultEncoding.get -> string! -System.Windows.Forms.HtmlDocument.DetachEventHandler(string! eventName, System.EventHandler! eventHandler) -> void -System.Windows.Forms.HtmlDocument.Domain.get -> string! -System.Windows.Forms.HtmlDocument.Domain.set -> void -System.Windows.Forms.HtmlDocument.DomDocument.get -> object! -System.Windows.Forms.HtmlDocument.Encoding.get -> string! -System.Windows.Forms.HtmlDocument.Encoding.set -> void -System.Windows.Forms.HtmlDocument.ExecCommand(string! command, bool showUI, object! value) -> void -System.Windows.Forms.HtmlDocument.Focus() -> void -System.Windows.Forms.HtmlDocument.Focused.get -> bool -System.Windows.Forms.HtmlDocument.Focusing -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.HtmlDocument.ForeColor.set -> void -System.Windows.Forms.HtmlDocument.Forms.get -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlDocument.GetElementById(string! id) -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlDocument.GetElementFromPoint(System.Drawing.Point point) -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlDocument.GetElementsByTagName(string! tagName) -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlDocument.Images.get -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlDocument.InvokeScript(string! scriptName) -> object? -System.Windows.Forms.HtmlDocument.InvokeScript(string! scriptName, object![]? args) -> object? -System.Windows.Forms.HtmlDocument.LinkColor.get -> System.Drawing.Color -System.Windows.Forms.HtmlDocument.LinkColor.set -> void -System.Windows.Forms.HtmlDocument.Links.get -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlDocument.LosingFocus -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.MouseDown -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.MouseLeave -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.MouseMove -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.MouseOver -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.MouseUp -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.OpenNew(bool replaceInHistory) -> System.Windows.Forms.HtmlDocument? -System.Windows.Forms.HtmlDocument.RightToLeft.get -> bool -System.Windows.Forms.HtmlDocument.RightToLeft.set -> void -System.Windows.Forms.HtmlDocument.Stop -> System.Windows.Forms.HtmlElementEventHandler? -System.Windows.Forms.HtmlDocument.Title.get -> string! -System.Windows.Forms.HtmlDocument.Title.set -> void -System.Windows.Forms.HtmlDocument.Url.get -> System.Uri? -System.Windows.Forms.HtmlDocument.VisitedLinkColor.get -> System.Drawing.Color -System.Windows.Forms.HtmlDocument.VisitedLinkColor.set -> void -System.Windows.Forms.HtmlDocument.Window.get -> System.Windows.Forms.HtmlWindow? -System.Windows.Forms.HtmlDocument.Write(string! text) -> void -System.Windows.Forms.HtmlElement -System.Windows.Forms.HtmlElement.CanHaveChildren.get -> bool -System.Windows.Forms.HtmlElement.Click -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.ClientRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.HtmlElement.DoubleClick -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.Drag -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.DragEnd -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.DragLeave -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.DragOver -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.Enabled.get -> bool -System.Windows.Forms.HtmlElement.Enabled.set -> void -System.Windows.Forms.HtmlElement.Focus() -> void -System.Windows.Forms.HtmlElement.Focusing -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.GotFocus -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.KeyDown -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.KeyPress -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.KeyUp -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.LosingFocus -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.LostFocus -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseDown -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseEnter -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseLeave -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseMove -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseOver -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.MouseUp -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElement.OffsetRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.HtmlElement.RemoveFocus() -> void -System.Windows.Forms.HtmlElement.ScrollIntoView(bool alignWithTop) -> void -System.Windows.Forms.HtmlElement.ScrollLeft.get -> int -System.Windows.Forms.HtmlElement.ScrollLeft.set -> void -System.Windows.Forms.HtmlElement.ScrollRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.HtmlElement.ScrollTop.get -> int -System.Windows.Forms.HtmlElement.ScrollTop.set -> void -System.Windows.Forms.HtmlElement.TabIndex.get -> short -System.Windows.Forms.HtmlElement.TabIndex.set -> void -System.Windows.Forms.HtmlElementCollection -System.Windows.Forms.HtmlElementCollection.Count.get -> int -System.Windows.Forms.HtmlElementCollection.GetElementsByName(string! name) -> System.Windows.Forms.HtmlElementCollection! -System.Windows.Forms.HtmlElementCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.HtmlElementCollection.this[int index].get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlElementCollection.this[string! elementId].get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlElementErrorEventArgs -System.Windows.Forms.HtmlElementErrorEventArgs.Description.get -> string! -System.Windows.Forms.HtmlElementErrorEventArgs.Handled.get -> bool -System.Windows.Forms.HtmlElementErrorEventArgs.Handled.set -> void -System.Windows.Forms.HtmlElementErrorEventArgs.LineNumber.get -> int -System.Windows.Forms.HtmlElementErrorEventArgs.Url.get -> System.Uri! -System.Windows.Forms.HtmlElementErrorEventHandler -System.Windows.Forms.HtmlElementEventArgs -System.Windows.Forms.HtmlElementEventArgs.AltKeyPressed.get -> bool -System.Windows.Forms.HtmlElementEventArgs.BubbleEvent.get -> bool -System.Windows.Forms.HtmlElementEventArgs.BubbleEvent.set -> void -System.Windows.Forms.HtmlElementEventArgs.ClientMousePosition.get -> System.Drawing.Point -System.Windows.Forms.HtmlElementEventArgs.CtrlKeyPressed.get -> bool -System.Windows.Forms.HtmlElementEventArgs.EventType.get -> string! -System.Windows.Forms.HtmlElementEventArgs.FromElement.get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlElementEventArgs.KeyPressedCode.get -> int -System.Windows.Forms.HtmlElementEventArgs.MouseButtonsPressed.get -> System.Windows.Forms.MouseButtons -System.Windows.Forms.HtmlElementEventArgs.MousePosition.get -> System.Drawing.Point -System.Windows.Forms.HtmlElementEventArgs.OffsetMousePosition.get -> System.Drawing.Point -System.Windows.Forms.HtmlElementEventArgs.ReturnValue.get -> bool -System.Windows.Forms.HtmlElementEventArgs.ReturnValue.set -> void -System.Windows.Forms.HtmlElementEventArgs.ShiftKeyPressed.get -> bool -System.Windows.Forms.HtmlElementEventArgs.ToElement.get -> System.Windows.Forms.HtmlElement? -System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlElementInsertionOrientation -System.Windows.Forms.HtmlElementInsertionOrientation.AfterBegin = 1 -> System.Windows.Forms.HtmlElementInsertionOrientation -System.Windows.Forms.HtmlElementInsertionOrientation.AfterEnd = 3 -> System.Windows.Forms.HtmlElementInsertionOrientation -System.Windows.Forms.HtmlElementInsertionOrientation.BeforeBegin = 0 -> System.Windows.Forms.HtmlElementInsertionOrientation -System.Windows.Forms.HtmlElementInsertionOrientation.BeforeEnd = 2 -> System.Windows.Forms.HtmlElementInsertionOrientation -System.Windows.Forms.HtmlHistory -System.Windows.Forms.HtmlHistory.Back(int numberBack) -> void -System.Windows.Forms.HtmlHistory.Dispose() -> void -System.Windows.Forms.HtmlHistory.DomHistory.get -> object! -System.Windows.Forms.HtmlHistory.Forward(int numberForward) -> void -System.Windows.Forms.HtmlHistory.Go(int relativePosition) -> void -System.Windows.Forms.HtmlHistory.Go(string! urlString) -> void -System.Windows.Forms.HtmlHistory.Go(System.Uri! url) -> void -System.Windows.Forms.HtmlHistory.Length.get -> int -System.Windows.Forms.HtmlWindow -System.Windows.Forms.HtmlWindow.Close() -> void -System.Windows.Forms.HtmlWindow.Error -> System.Windows.Forms.HtmlElementErrorEventHandler -System.Windows.Forms.HtmlWindow.Focus() -> void -System.Windows.Forms.HtmlWindow.GotFocus -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindow.IsClosed.get -> bool -System.Windows.Forms.HtmlWindow.Load -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindow.LostFocus -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindow.MoveTo(int x, int y) -> void -System.Windows.Forms.HtmlWindow.MoveTo(System.Drawing.Point point) -> void -System.Windows.Forms.HtmlWindow.Position.get -> System.Drawing.Point -System.Windows.Forms.HtmlWindow.RemoveFocus() -> void -System.Windows.Forms.HtmlWindow.Resize -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindow.ResizeTo(int width, int height) -> void -System.Windows.Forms.HtmlWindow.ResizeTo(System.Drawing.Size size) -> void -System.Windows.Forms.HtmlWindow.Scroll -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindow.ScrollTo(int x, int y) -> void -System.Windows.Forms.HtmlWindow.ScrollTo(System.Drawing.Point point) -> void -System.Windows.Forms.HtmlWindow.Size.get -> System.Drawing.Size -System.Windows.Forms.HtmlWindow.Size.set -> void -System.Windows.Forms.HtmlWindow.Unload -> System.Windows.Forms.HtmlElementEventHandler -System.Windows.Forms.HtmlWindowCollection -System.Windows.Forms.HtmlWindowCollection.Count.get -> int -System.Windows.Forms.HtmlWindowCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.HtmlWindowCollection.this[int index].get -> System.Windows.Forms.HtmlWindow? -System.Windows.Forms.HtmlWindowCollection.this[string! windowId].get -> System.Windows.Forms.HtmlWindow? -System.Windows.Forms.IBindableComponent -System.Windows.Forms.IBindableComponent.BindingContext.get -> System.Windows.Forms.BindingContext? -System.Windows.Forms.IBindableComponent.BindingContext.set -> void -System.Windows.Forms.IBindableComponent.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! -System.Windows.Forms.IButtonControl -System.Windows.Forms.IButtonControl.DialogResult.get -> System.Windows.Forms.DialogResult -System.Windows.Forms.IButtonControl.DialogResult.set -> void -System.Windows.Forms.IButtonControl.NotifyDefault(bool value) -> void -System.Windows.Forms.IButtonControl.PerformClick() -> void -System.Windows.Forms.ICommandExecutor -System.Windows.Forms.ICommandExecutor.Execute() -> void -System.Windows.Forms.IComponentEditorPageSite -System.Windows.Forms.IComponentEditorPageSite.GetControl() -> System.Windows.Forms.Control! -System.Windows.Forms.IComponentEditorPageSite.SetDirty() -> void -System.Windows.Forms.IContainerControl -System.Windows.Forms.IContainerControl.ActivateControl(System.Windows.Forms.Control! active) -> bool -System.Windows.Forms.IContainerControl.ActiveControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.IContainerControl.ActiveControl.set -> void -System.Windows.Forms.ICurrencyManagerProvider -System.Windows.Forms.ICurrencyManagerProvider.CurrencyManager.get -> System.Windows.Forms.CurrencyManager? -System.Windows.Forms.ICurrencyManagerProvider.GetRelatedCurrencyManager(string? dataMember) -> System.Windows.Forms.CurrencyManager? -System.Windows.Forms.IDataGridColumnStyleEditingNotificationService -System.Windows.Forms.IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing(System.Windows.Forms.Control! editingControl) -> void -System.Windows.Forms.IDataGridViewEditingCell -System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue.get -> object! -System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue.set -> void -System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged.get -> bool -System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged.set -> void -System.Windows.Forms.IDataGridViewEditingCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! -System.Windows.Forms.IDataGridViewEditingCell.PrepareEditingCellForEdit(bool selectAll) -> void -System.Windows.Forms.IDataGridViewEditingControl -System.Windows.Forms.IDataGridViewEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void -System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? -System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView.set -> void -System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue.get -> object! -System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue.set -> void -System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex.get -> int -System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex.set -> void -System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged.get -> bool -System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged.set -> void -System.Windows.Forms.IDataGridViewEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool -System.Windows.Forms.IDataGridViewEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! -System.Windows.Forms.IDataGridViewEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! -System.Windows.Forms.IDataGridViewEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void -System.Windows.Forms.IDataGridViewEditingControl.RepositionEditingControlOnValueChange.get -> bool -System.Windows.Forms.IDataObject -System.Windows.Forms.IDataObject.GetData(string! format) -> object? -System.Windows.Forms.IDataObject.GetData(string! format, bool autoConvert) -> object? -System.Windows.Forms.IDataObject.GetData(System.Type! format) -> object? -System.Windows.Forms.IDataObject.GetDataPresent(string! format) -> bool -System.Windows.Forms.IDataObject.GetDataPresent(string! format, bool autoConvert) -> bool -System.Windows.Forms.IDataObject.GetDataPresent(System.Type! format) -> bool -System.Windows.Forms.IDataObject.GetFormats() -> string![]! -System.Windows.Forms.IDataObject.GetFormats(bool autoConvert) -> string![]! -System.Windows.Forms.IDataObject.SetData(object? data) -> void -System.Windows.Forms.IDataObject.SetData(string! format, bool autoConvert, object? data) -> void -System.Windows.Forms.IDataObject.SetData(string! format, object? data) -> void -System.Windows.Forms.IDataObject.SetData(System.Type! format, object? data) -> void -System.Windows.Forms.IDropTarget -System.Windows.Forms.IDropTarget.OnDragDrop(System.Windows.Forms.DragEventArgs! e) -> void -System.Windows.Forms.IDropTarget.OnDragEnter(System.Windows.Forms.DragEventArgs! e) -> void -System.Windows.Forms.IDropTarget.OnDragLeave(System.EventArgs! e) -> void -System.Windows.Forms.IDropTarget.OnDragOver(System.Windows.Forms.DragEventArgs! e) -> void -System.Windows.Forms.IFeatureSupport -System.Windows.Forms.IFeatureSupport.GetVersionPresent(object! feature) -> System.Version? -System.Windows.Forms.IFeatureSupport.IsPresent(object! feature) -> bool -System.Windows.Forms.IFeatureSupport.IsPresent(object! feature, System.Version! minimumVersion) -> bool -System.Windows.Forms.IFileReaderService -System.Windows.Forms.IFileReaderService.OpenFileFromSource(string! relativePath) -> System.IO.Stream! -System.Windows.Forms.ImageIndexConverter -System.Windows.Forms.ImageIndexConverter.ImageIndexConverter() -> void -System.Windows.Forms.ImageKeyConverter -System.Windows.Forms.ImageKeyConverter.ImageKeyConverter() -> void -System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageLayout.Center = 2 -> System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageLayout.None = 0 -> System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageLayout.Stretch = 3 -> System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageLayout.Tile = 1 -> System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageLayout.Zoom = 4 -> System.Windows.Forms.ImageLayout -System.Windows.Forms.ImageList -System.Windows.Forms.ImageList.ColorDepth.get -> System.Windows.Forms.ColorDepth -System.Windows.Forms.ImageList.ColorDepth.set -> void -System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, int x, int y, int index) -> void -System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, int x, int y, int width, int height, int index) -> void -System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, System.Drawing.Point pt, int index) -> void -System.Windows.Forms.ImageList.Handle.get -> nint -System.Windows.Forms.ImageList.HandleCreated.get -> bool -System.Windows.Forms.ImageList.ImageCollection -System.Windows.Forms.ImageList.ImageCollection.Add(string! key, System.Drawing.Icon! icon) -> void -System.Windows.Forms.ImageList.ImageCollection.Add(string! key, System.Drawing.Image! image) -> void -System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Icon! value) -> void -System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image! value) -> void -System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image! value, System.Drawing.Color transparentColor) -> int -System.Windows.Forms.ImageList.ImageCollection.AddRange(System.Drawing.Image![]! images) -> void -System.Windows.Forms.ImageList.ImageCollection.AddStrip(System.Drawing.Image! value) -> int -System.Windows.Forms.ImageList.ImageCollection.Clear() -> void -System.Windows.Forms.ImageList.ImageCollection.Contains(System.Drawing.Image! image) -> bool -System.Windows.Forms.ImageList.ImageCollection.ContainsKey(string! key) -> bool -System.Windows.Forms.ImageList.ImageCollection.Count.get -> int -System.Windows.Forms.ImageList.ImageCollection.Empty.get -> bool -System.Windows.Forms.ImageList.ImageCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ImageList.ImageCollection.IndexOf(System.Drawing.Image! image) -> int -System.Windows.Forms.ImageList.ImageCollection.IndexOfKey(string! key) -> int -System.Windows.Forms.ImageList.ImageCollection.IsReadOnly.get -> bool -System.Windows.Forms.ImageList.ImageCollection.Keys.get -> System.Collections.Specialized.StringCollection! -System.Windows.Forms.ImageList.ImageCollection.Remove(System.Drawing.Image! image) -> void -System.Windows.Forms.ImageList.ImageCollection.RemoveAt(int index) -> void -System.Windows.Forms.ImageList.ImageCollection.RemoveByKey(string! key) -> void -System.Windows.Forms.ImageList.ImageCollection.SetKeyName(int index, string! name) -> void -System.Windows.Forms.ImageList.ImageCollection.this[int index].get -> System.Drawing.Image! -System.Windows.Forms.ImageList.ImageCollection.this[int index].set -> void -System.Windows.Forms.ImageList.ImageCollection.this[string! key].get -> System.Drawing.Image? -System.Windows.Forms.ImageList.ImageList() -> void -System.Windows.Forms.ImageList.ImageList(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.ImageList.Images.get -> System.Windows.Forms.ImageList.ImageCollection! -System.Windows.Forms.ImageList.ImageSize.get -> System.Drawing.Size -System.Windows.Forms.ImageList.ImageSize.set -> void -System.Windows.Forms.ImageList.ImageStream.get -> System.Windows.Forms.ImageListStreamer? -System.Windows.Forms.ImageList.ImageStream.set -> void -System.Windows.Forms.ImageList.RecreateHandle -> System.EventHandler? -System.Windows.Forms.ImageList.Tag.get -> object? -System.Windows.Forms.ImageList.Tag.set -> void -System.Windows.Forms.ImageList.TransparentColor.get -> System.Drawing.Color -System.Windows.Forms.ImageList.TransparentColor.set -> void -System.Windows.Forms.ImageListStreamer -System.Windows.Forms.ImageListStreamer.Dispose() -> void -System.Windows.Forms.ImageListStreamer.GetObjectData(System.Runtime.Serialization.SerializationInfo! si, System.Runtime.Serialization.StreamingContext context) -> void -System.Windows.Forms.ImeContext -System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Alpha = 8 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.AlphaFull = 7 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Close = 11 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Disable = 3 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Hangul = 10 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.HangulFull = 9 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Hiragana = 4 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Inherit = -1 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Katakana = 5 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.KatakanaHalf = 6 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.NoControl = 0 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.Off = 2 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.On = 1 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeMode.OnHalf = 12 -> System.Windows.Forms.ImeMode -System.Windows.Forms.ImeModeConversion -System.Windows.Forms.ImeModeConversion.ImeModeConversion() -> void -System.Windows.Forms.IMessageFilter -System.Windows.Forms.IMessageFilter.PreFilterMessage(ref System.Windows.Forms.Message m) -> bool -System.Windows.Forms.InputLanguage -System.Windows.Forms.InputLanguage.Culture.get -> System.Globalization.CultureInfo! -System.Windows.Forms.InputLanguage.Handle.get -> nint -System.Windows.Forms.InputLanguage.LayoutName.get -> string! -System.Windows.Forms.InputLanguageChangedEventArgs -System.Windows.Forms.InputLanguageChangedEventArgs.CharSet.get -> byte -System.Windows.Forms.InputLanguageChangedEventArgs.Culture.get -> System.Globalization.CultureInfo! -System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguage.get -> System.Windows.Forms.InputLanguage! -System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(System.Globalization.CultureInfo! culture, byte charSet) -> void -System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(System.Windows.Forms.InputLanguage! inputLanguage, byte charSet) -> void -System.Windows.Forms.InputLanguageChangedEventHandler -System.Windows.Forms.InputLanguageChangingEventArgs -System.Windows.Forms.InputLanguageChangingEventArgs.Culture.get -> System.Globalization.CultureInfo! -System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguage.get -> System.Windows.Forms.InputLanguage! -System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguageChangingEventArgs(System.Globalization.CultureInfo! culture, bool sysCharSet) -> void -System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguageChangingEventArgs(System.Windows.Forms.InputLanguage! inputLanguage, bool sysCharSet) -> void -System.Windows.Forms.InputLanguageChangingEventArgs.SysCharSet.get -> bool -System.Windows.Forms.InputLanguageChangingEventHandler -System.Windows.Forms.InputLanguageCollection -System.Windows.Forms.InputLanguageCollection.Contains(System.Windows.Forms.InputLanguage? value) -> bool -System.Windows.Forms.InputLanguageCollection.CopyTo(System.Windows.Forms.InputLanguage![]! array, int index) -> void -System.Windows.Forms.InputLanguageCollection.IndexOf(System.Windows.Forms.InputLanguage? value) -> int -System.Windows.Forms.InputLanguageCollection.this[int index].get -> System.Windows.Forms.InputLanguage! -System.Windows.Forms.InsertKeyMode -System.Windows.Forms.InsertKeyMode.Default = 0 -> System.Windows.Forms.InsertKeyMode -System.Windows.Forms.InsertKeyMode.Insert = 1 -> System.Windows.Forms.InsertKeyMode -System.Windows.Forms.InsertKeyMode.Overwrite = 2 -> System.Windows.Forms.InsertKeyMode -System.Windows.Forms.InvalidateEventArgs -System.Windows.Forms.InvalidateEventArgs.InvalidateEventArgs(System.Drawing.Rectangle invalidRect) -> void -System.Windows.Forms.InvalidateEventArgs.InvalidRect.get -> System.Drawing.Rectangle -System.Windows.Forms.InvalidateEventHandler -System.Windows.Forms.ItemActivation -System.Windows.Forms.ItemActivation.OneClick = 1 -> System.Windows.Forms.ItemActivation -System.Windows.Forms.ItemActivation.Standard = 0 -> System.Windows.Forms.ItemActivation -System.Windows.Forms.ItemActivation.TwoClick = 2 -> System.Windows.Forms.ItemActivation -System.Windows.Forms.ItemBoundsPortion -System.Windows.Forms.ItemBoundsPortion.Entire = 0 -> System.Windows.Forms.ItemBoundsPortion -System.Windows.Forms.ItemBoundsPortion.Icon = 1 -> System.Windows.Forms.ItemBoundsPortion -System.Windows.Forms.ItemBoundsPortion.ItemOnly = 3 -> System.Windows.Forms.ItemBoundsPortion -System.Windows.Forms.ItemBoundsPortion.Label = 2 -> System.Windows.Forms.ItemBoundsPortion -System.Windows.Forms.ItemChangedEventArgs -System.Windows.Forms.ItemChangedEventArgs.Index.get -> int -System.Windows.Forms.ItemChangedEventHandler -System.Windows.Forms.ItemCheckedEventArgs -System.Windows.Forms.ItemCheckedEventArgs.Item.get -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ItemCheckedEventArgs.ItemCheckedEventArgs(System.Windows.Forms.ListViewItem! item) -> void -System.Windows.Forms.ItemCheckedEventHandler -System.Windows.Forms.ItemCheckEventArgs -System.Windows.Forms.ItemCheckEventArgs.CurrentValue.get -> System.Windows.Forms.CheckState -System.Windows.Forms.ItemCheckEventArgs.Index.get -> int -System.Windows.Forms.ItemCheckEventArgs.ItemCheckEventArgs(int index, System.Windows.Forms.CheckState newCheckValue, System.Windows.Forms.CheckState currentValue) -> void -System.Windows.Forms.ItemCheckEventArgs.NewValue.get -> System.Windows.Forms.CheckState -System.Windows.Forms.ItemCheckEventArgs.NewValue.set -> void -System.Windows.Forms.ItemCheckEventHandler -System.Windows.Forms.ItemDragEventArgs -System.Windows.Forms.ItemDragEventArgs.Button.get -> System.Windows.Forms.MouseButtons -System.Windows.Forms.ItemDragEventArgs.Item.get -> object? -System.Windows.Forms.ItemDragEventArgs.ItemDragEventArgs(System.Windows.Forms.MouseButtons button) -> void -System.Windows.Forms.ItemDragEventArgs.ItemDragEventArgs(System.Windows.Forms.MouseButtons button, object? item) -> void -System.Windows.Forms.ItemDragEventHandler -System.Windows.Forms.IWin32Window -System.Windows.Forms.IWin32Window.Handle.get -> nint -System.Windows.Forms.IWindowTarget -System.Windows.Forms.IWindowTarget.OnHandleChange(nint newHandle) -> void -System.Windows.Forms.IWindowTarget.OnMessage(ref System.Windows.Forms.Message m) -> void -System.Windows.Forms.KeyEventArgs -System.Windows.Forms.KeyEventArgs.Control.get -> bool -System.Windows.Forms.KeyEventArgs.Handled.get -> bool -System.Windows.Forms.KeyEventArgs.Handled.set -> void -System.Windows.Forms.KeyEventArgs.KeyCode.get -> System.Windows.Forms.Keys -System.Windows.Forms.KeyEventArgs.KeyData.get -> System.Windows.Forms.Keys -System.Windows.Forms.KeyEventArgs.KeyEventArgs(System.Windows.Forms.Keys keyData) -> void -System.Windows.Forms.KeyEventArgs.KeyValue.get -> int -System.Windows.Forms.KeyEventArgs.Modifiers.get -> System.Windows.Forms.Keys -System.Windows.Forms.KeyEventArgs.SuppressKeyPress.get -> bool -System.Windows.Forms.KeyEventArgs.SuppressKeyPress.set -> void -System.Windows.Forms.KeyEventHandler -System.Windows.Forms.KeyPressEventArgs -System.Windows.Forms.KeyPressEventArgs.Handled.get -> bool -System.Windows.Forms.KeyPressEventArgs.Handled.set -> void -System.Windows.Forms.KeyPressEventArgs.KeyChar.get -> char -System.Windows.Forms.KeyPressEventArgs.KeyChar.set -> void -System.Windows.Forms.KeyPressEventArgs.KeyPressEventArgs(char keyChar) -> void -System.Windows.Forms.KeyPressEventHandler -System.Windows.Forms.Keys -System.Windows.Forms.Keys.A = 65 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Add = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Multiply -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Alt = 262144 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Apps = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RWin -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Attn = System.Windows.Forms.Keys.Capital | System.Windows.Forms.Keys.Oem102 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.B = 66 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Back = 8 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserBack = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LMenu -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserFavorites = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserSearch -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserForward = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserBack -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserHome = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserRefresh = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserSearch = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.BrowserStop = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.C = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.B -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Cancel = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Capital = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.CapsLock = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Clear = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Control = 131072 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.ControlKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Crsel = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Attn -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D = 68 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D0 = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D3 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D2 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D4 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D5 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D4 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D6 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D4 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D7 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D6 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D8 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.D9 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D8 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Decimal = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Separator -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Delete = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.PrintScreen -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Divide = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Decimal -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Down = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.E = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.End = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Next -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Enter = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Clear -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.EraseEof = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Escape = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.HanjaMode -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Execute = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Print -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Exsel = System.Windows.Forms.Keys.D8 | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F1 = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F10 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F11 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F12 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F11 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F13 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F14 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F13 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F15 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F13 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F16 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F15 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F17 = 128 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F18 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F19 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F20 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F19 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F21 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F22 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F21 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F23 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F21 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F24 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F23 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F3 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F4 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F5 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F6 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F7 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F8 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F7 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.F9 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.FinalMode = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.G = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.H = 72 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.HanguelMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.HangulMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.HanjaMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Help = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Delete -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Home = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.I = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.IMEAccept = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.IMEAceept = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.IMEConvert = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.IMEModeChange = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.IMEAccept -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.IMENonconvert = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Insert = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.PrintScreen -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.J = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.JunjaMode = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.HanguelMode -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.K = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.J -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.KanaMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.KanjiMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.KeyCode = 65535 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.L = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LaunchApplication1 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LaunchApplication2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LaunchApplication1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LaunchMail = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LButton = 1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LControlKey = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Left = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Home -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LineFeed = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LMenu = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LShiftKey = System.Windows.Forms.Keys.Space | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.LWin = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Z -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.M = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.L -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.MButton = 4 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.MediaNextTrack = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.MediaPlayPause = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.MediaPreviousTrack = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.MediaStop = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Menu = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Modifiers = -65536 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Multiply = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.N = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.L -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Next = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NoName = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.None = 0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumLock = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad0 = 96 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad3 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad2 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad4 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad5 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad4 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad6 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad4 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad7 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad6 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad8 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.NumPad9 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.O = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.N -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem1 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem102 = System.Windows.Forms.Keys.Next | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.OemPeriod -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem3 = 192 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem4 = System.Windows.Forms.Keys.Escape | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem5 = System.Windows.Forms.Keys.IMEConvert | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem6 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem7 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oem8 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem7 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemBackslash = System.Windows.Forms.Keys.Next | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemClear = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NoName -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemCloseBrackets = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oemcomma = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemMinus = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oemcomma -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemOpenBrackets = System.Windows.Forms.Keys.Escape | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemPeriod = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oemcomma -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemPipe = System.Windows.Forms.Keys.IMEConvert | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oemplus = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem1 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemQuestion = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.OemPeriod -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemQuotes = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.OemSemicolon = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Oemtilde = 192 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.P = 80 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Pa1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NoName -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Packet = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.ProcessKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.PageDown = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.PageUp = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Pause = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Menu -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Play = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Print = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.PrintScreen = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Prior = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.ProcessKey = System.Windows.Forms.Keys.Left | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Q = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.R = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.RButton = 2 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.RControlKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LControlKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Return = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Clear -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Right = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Up -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.RMenu = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LMenu -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.RShiftKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.RWin = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.S = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.R -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Scroll = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumLock -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Select = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.SelectMedia = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Separator = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Shift = 65536 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.ShiftKey = 16 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Sleep = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Apps -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Snapshot = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Space = 32 -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Subtract = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Separator -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.T = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Tab = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.U = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.T -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Up = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Home -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.V = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.T -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.VolumeDown = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.BrowserHome -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.VolumeMute = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserHome -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.VolumeUp = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.VolumeDown -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.W = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.V -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.X = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.XButton1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MButton -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.XButton2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Y = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Z = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys -System.Windows.Forms.Keys.Zoom = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Play -> System.Windows.Forms.Keys -System.Windows.Forms.KeysConverter -System.Windows.Forms.KeysConverter.Compare(object? a, object? b) -> int -System.Windows.Forms.KeysConverter.KeysConverter() -> void -System.Windows.Forms.Label -System.Windows.Forms.Label.AutoEllipsis.get -> bool -System.Windows.Forms.Label.AutoEllipsis.set -> void -System.Windows.Forms.Label.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Label.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.Label.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.Label.CalcImageRenderBounds(System.Drawing.Image! image, System.Drawing.Rectangle r, System.Drawing.ContentAlignment align) -> System.Drawing.Rectangle -System.Windows.Forms.Label.DrawImage(System.Drawing.Graphics! g, System.Drawing.Image! image, System.Drawing.Rectangle r, System.Drawing.ContentAlignment align) -> void -System.Windows.Forms.Label.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.Label.FlatStyle.set -> void -System.Windows.Forms.Label.Image.get -> System.Drawing.Image? -System.Windows.Forms.Label.Image.set -> void -System.Windows.Forms.Label.ImageAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.Label.ImageAlign.set -> void -System.Windows.Forms.Label.ImageIndex.get -> int -System.Windows.Forms.Label.ImageIndex.set -> void -System.Windows.Forms.Label.ImageKey.get -> string? -System.Windows.Forms.Label.ImageKey.set -> void -System.Windows.Forms.Label.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.Label.ImageList.set -> void -System.Windows.Forms.Label.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.Label.ImeMode.set -> void -System.Windows.Forms.Label.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.Label.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Label.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.Label.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Label.Label() -> void -System.Windows.Forms.Label.LiveSetting.get -> System.Windows.Forms.Automation.AutomationLiveSetting -System.Windows.Forms.Label.LiveSetting.set -> void -System.Windows.Forms.Label.TabStop.get -> bool -System.Windows.Forms.Label.TabStop.set -> void -System.Windows.Forms.Label.TabStopChanged -> System.EventHandler? -System.Windows.Forms.Label.TextAlignChanged -> System.EventHandler? -System.Windows.Forms.Label.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.Label.UseCompatibleTextRendering.set -> void -System.Windows.Forms.Label.UseMnemonic.get -> bool -System.Windows.Forms.Label.UseMnemonic.set -> void -System.Windows.Forms.LabelEditEventArgs -System.Windows.Forms.LabelEditEventArgs.CancelEdit.get -> bool -System.Windows.Forms.LabelEditEventArgs.CancelEdit.set -> void -System.Windows.Forms.LabelEditEventArgs.Item.get -> int -System.Windows.Forms.LabelEditEventArgs.Label.get -> string? -System.Windows.Forms.LabelEditEventArgs.LabelEditEventArgs(int item) -> void -System.Windows.Forms.LabelEditEventArgs.LabelEditEventArgs(int item, string? label) -> void -System.Windows.Forms.LabelEditEventHandler -System.Windows.Forms.Layout.ArrangedElementCollection -System.Windows.Forms.Layout.ArrangedElementCollection.CopyTo(System.Array! array, int index) -> void -System.Windows.Forms.Layout.LayoutEngine -System.Windows.Forms.Layout.LayoutEngine.LayoutEngine() -> void -System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter -System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.TableLayoutSettingsTypeConverter() -> void -System.Windows.Forms.LayoutEventArgs -System.Windows.Forms.LayoutEventArgs.AffectedComponent.get -> System.ComponentModel.IComponent? -System.Windows.Forms.LayoutEventArgs.AffectedControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.LayoutEventArgs.AffectedProperty.get -> string? -System.Windows.Forms.LayoutEventArgs.LayoutEventArgs(System.ComponentModel.IComponent? affectedComponent, string? affectedProperty) -> void -System.Windows.Forms.LayoutEventArgs.LayoutEventArgs(System.Windows.Forms.Control? affectedControl, string? affectedProperty) -> void -System.Windows.Forms.LayoutEventHandler -System.Windows.Forms.LayoutSettings -System.Windows.Forms.LayoutSettings.LayoutSettings() -> void -System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.LeftRightAlignment.Left = 0 -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.LeftRightAlignment.Right = 1 -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.LinkArea -System.Windows.Forms.LinkArea.Equals(System.Windows.Forms.LinkArea other) -> bool -System.Windows.Forms.LinkArea.IsEmpty.get -> bool -System.Windows.Forms.LinkArea.Length.get -> int -System.Windows.Forms.LinkArea.Length.set -> void -System.Windows.Forms.LinkArea.LinkArea() -> void -System.Windows.Forms.LinkArea.LinkArea(int start, int length) -> void -System.Windows.Forms.LinkArea.LinkAreaConverter -System.Windows.Forms.LinkArea.LinkAreaConverter.LinkAreaConverter() -> void -System.Windows.Forms.LinkArea.Start.get -> int -System.Windows.Forms.LinkArea.Start.set -> void -System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkBehavior.AlwaysUnderline = 1 -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkBehavior.HoverUnderline = 2 -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkBehavior.NeverUnderline = 3 -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkBehavior.SystemDefault = 0 -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkClickedEventArgs -System.Windows.Forms.LinkClickedEventArgs.LinkClickedEventArgs(string? linkText) -> void -System.Windows.Forms.LinkClickedEventArgs.LinkClickedEventArgs(string? linkText, int linkStart, int linkLength) -> void -System.Windows.Forms.LinkClickedEventArgs.LinkLength.get -> int -System.Windows.Forms.LinkClickedEventArgs.LinkStart.get -> int -System.Windows.Forms.LinkClickedEventArgs.LinkText.get -> string? -System.Windows.Forms.LinkClickedEventHandler -System.Windows.Forms.LinkConverter -System.Windows.Forms.LinkConverter.LinkConverter() -> void -System.Windows.Forms.LinkLabel -System.Windows.Forms.LinkLabel.ActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.LinkLabel.ActiveLinkColor.set -> void -System.Windows.Forms.LinkLabel.DisabledLinkColor.get -> System.Drawing.Color -System.Windows.Forms.LinkLabel.DisabledLinkColor.set -> void -System.Windows.Forms.LinkLabel.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.LinkLabel.FlatStyle.set -> void -System.Windows.Forms.LinkLabel.Link -System.Windows.Forms.LinkLabel.Link.Description.get -> string? -System.Windows.Forms.LinkLabel.Link.Description.set -> void -System.Windows.Forms.LinkLabel.Link.Enabled.get -> bool -System.Windows.Forms.LinkLabel.Link.Enabled.set -> void -System.Windows.Forms.LinkLabel.Link.Length.get -> int -System.Windows.Forms.LinkLabel.Link.Length.set -> void -System.Windows.Forms.LinkLabel.Link.Link() -> void -System.Windows.Forms.LinkLabel.Link.Link(int start, int length) -> void -System.Windows.Forms.LinkLabel.Link.Link(int start, int length, object? linkData) -> void -System.Windows.Forms.LinkLabel.Link.LinkData.get -> object? -System.Windows.Forms.LinkLabel.Link.LinkData.set -> void -System.Windows.Forms.LinkLabel.Link.Name.get -> string! -System.Windows.Forms.LinkLabel.Link.Name.set -> void -System.Windows.Forms.LinkLabel.Link.Start.get -> int -System.Windows.Forms.LinkLabel.Link.Start.set -> void -System.Windows.Forms.LinkLabel.Link.Tag.get -> object? -System.Windows.Forms.LinkLabel.Link.Tag.set -> void -System.Windows.Forms.LinkLabel.Link.Visited.get -> bool -System.Windows.Forms.LinkLabel.Link.Visited.set -> void -System.Windows.Forms.LinkLabel.LinkArea.get -> System.Windows.Forms.LinkArea -System.Windows.Forms.LinkLabel.LinkArea.set -> void -System.Windows.Forms.LinkLabel.LinkBehavior.get -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.LinkLabel.LinkBehavior.set -> void -System.Windows.Forms.LinkLabel.LinkClicked -> System.Windows.Forms.LinkLabelLinkClickedEventHandler? -System.Windows.Forms.LinkLabel.LinkCollection -System.Windows.Forms.LinkLabel.LinkCollection.Add(int start, int length) -> System.Windows.Forms.LinkLabel.Link! -System.Windows.Forms.LinkLabel.LinkCollection.Add(int start, int length, object? linkData) -> System.Windows.Forms.LinkLabel.Link! -System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Windows.Forms.LinkLabel.Link! value) -> int -System.Windows.Forms.LinkLabel.LinkCollection.Contains(System.Windows.Forms.LinkLabel.Link! link) -> bool -System.Windows.Forms.LinkLabel.LinkCollection.Count.get -> int -System.Windows.Forms.LinkLabel.LinkCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.LinkLabel.LinkCollection.IndexOf(System.Windows.Forms.LinkLabel.Link! link) -> int -System.Windows.Forms.LinkLabel.LinkCollection.IsReadOnly.get -> bool -System.Windows.Forms.LinkLabel.LinkCollection.LinkCollection(System.Windows.Forms.LinkLabel! owner) -> void -System.Windows.Forms.LinkLabel.LinkCollection.LinksAdded.get -> bool -System.Windows.Forms.LinkLabel.LinkCollection.Remove(System.Windows.Forms.LinkLabel.Link! value) -> void -System.Windows.Forms.LinkLabel.LinkCollection.RemoveAt(int index) -> void -System.Windows.Forms.LinkLabel.LinkColor.get -> System.Drawing.Color -System.Windows.Forms.LinkLabel.LinkColor.set -> void -System.Windows.Forms.LinkLabel.LinkLabel() -> void -System.Windows.Forms.LinkLabel.Links.get -> System.Windows.Forms.LinkLabel.LinkCollection! -System.Windows.Forms.LinkLabel.LinkVisited.get -> bool -System.Windows.Forms.LinkLabel.LinkVisited.set -> void -System.Windows.Forms.LinkLabel.OverrideCursor.get -> System.Windows.Forms.Cursor? -System.Windows.Forms.LinkLabel.OverrideCursor.set -> void -System.Windows.Forms.LinkLabel.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.LinkLabel.Padding.set -> void -System.Windows.Forms.LinkLabel.PointInLink(int x, int y) -> System.Windows.Forms.LinkLabel.Link? -System.Windows.Forms.LinkLabel.TabStop.get -> bool -System.Windows.Forms.LinkLabel.TabStop.set -> void -System.Windows.Forms.LinkLabel.TabStopChanged -> System.EventHandler? -System.Windows.Forms.LinkLabel.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.LinkLabel.UseCompatibleTextRendering.set -> void -System.Windows.Forms.LinkLabel.VisitedLinkColor.get -> System.Drawing.Color -System.Windows.Forms.LinkLabel.VisitedLinkColor.set -> void -System.Windows.Forms.LinkLabelLinkClickedEventArgs -System.Windows.Forms.LinkLabelLinkClickedEventArgs.Button.get -> System.Windows.Forms.MouseButtons -System.Windows.Forms.LinkLabelLinkClickedEventArgs.Link.get -> System.Windows.Forms.LinkLabel.Link? -System.Windows.Forms.LinkLabelLinkClickedEventArgs.LinkLabelLinkClickedEventArgs(System.Windows.Forms.LinkLabel.Link? link) -> void -System.Windows.Forms.LinkLabelLinkClickedEventArgs.LinkLabelLinkClickedEventArgs(System.Windows.Forms.LinkLabel.Link? link, System.Windows.Forms.MouseButtons button) -> void -System.Windows.Forms.LinkLabelLinkClickedEventHandler -System.Windows.Forms.LinkState -System.Windows.Forms.LinkState.Active = 2 -> System.Windows.Forms.LinkState -System.Windows.Forms.LinkState.Hover = 1 -> System.Windows.Forms.LinkState -System.Windows.Forms.LinkState.Normal = 0 -> System.Windows.Forms.LinkState -System.Windows.Forms.LinkState.Visited = 4 -> System.Windows.Forms.LinkState -System.Windows.Forms.ListBindingConverter -System.Windows.Forms.ListBindingConverter.ListBindingConverter() -> void -System.Windows.Forms.ListBindingHelper -System.Windows.Forms.ListBox -System.Windows.Forms.ListBox.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ListBox.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ListBox.BeginUpdate() -> void -System.Windows.Forms.ListBox.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.ListBox.BorderStyle.set -> void -System.Windows.Forms.ListBox.ClearSelected() -> void -System.Windows.Forms.ListBox.Click -> System.EventHandler? -System.Windows.Forms.ListBox.ColumnWidth.get -> int -System.Windows.Forms.ListBox.ColumnWidth.set -> void -System.Windows.Forms.ListBox.CustomTabOffsets.get -> System.Windows.Forms.ListBox.IntegerCollection! -System.Windows.Forms.ListBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? -System.Windows.Forms.ListBox.EndUpdate() -> void -System.Windows.Forms.ListBox.FindString(string! s) -> int -System.Windows.Forms.ListBox.FindString(string! s, int startIndex) -> int -System.Windows.Forms.ListBox.FindStringExact(string! s) -> int -System.Windows.Forms.ListBox.FindStringExact(string! s, int startIndex) -> int -System.Windows.Forms.ListBox.GetItemHeight(int index) -> int -System.Windows.Forms.ListBox.GetItemRectangle(int index) -> System.Drawing.Rectangle -System.Windows.Forms.ListBox.GetSelected(int index) -> bool -System.Windows.Forms.ListBox.HorizontalExtent.get -> int -System.Windows.Forms.ListBox.HorizontalExtent.set -> void -System.Windows.Forms.ListBox.HorizontalScrollbar.get -> bool -System.Windows.Forms.ListBox.HorizontalScrollbar.set -> void -System.Windows.Forms.ListBox.IndexFromPoint(int x, int y) -> int -System.Windows.Forms.ListBox.IndexFromPoint(System.Drawing.Point p) -> int -System.Windows.Forms.ListBox.IntegerCollection -System.Windows.Forms.ListBox.IntegerCollection.Add(int item) -> int -System.Windows.Forms.ListBox.IntegerCollection.AddRange(int[]! items) -> void -System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Windows.Forms.ListBox.IntegerCollection! value) -> void -System.Windows.Forms.ListBox.IntegerCollection.Clear() -> void -System.Windows.Forms.ListBox.IntegerCollection.Contains(int item) -> bool -System.Windows.Forms.ListBox.IntegerCollection.CopyTo(System.Array! destination, int index) -> void -System.Windows.Forms.ListBox.IntegerCollection.Count.get -> int -System.Windows.Forms.ListBox.IntegerCollection.IndexOf(int item) -> int -System.Windows.Forms.ListBox.IntegerCollection.IntegerCollection(System.Windows.Forms.ListBox! owner) -> void -System.Windows.Forms.ListBox.IntegerCollection.Remove(int item) -> void -System.Windows.Forms.ListBox.IntegerCollection.RemoveAt(int index) -> void -System.Windows.Forms.ListBox.IntegerCollection.this[int index].get -> int -System.Windows.Forms.ListBox.IntegerCollection.this[int index].set -> void -System.Windows.Forms.ListBox.IntegralHeight.get -> bool -System.Windows.Forms.ListBox.IntegralHeight.set -> void -System.Windows.Forms.ListBox.Items.get -> System.Windows.Forms.ListBox.ObjectCollection! -System.Windows.Forms.ListBox.ListBox() -> void -System.Windows.Forms.ListBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? -System.Windows.Forms.ListBox.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ListBox.MultiColumn.get -> bool -System.Windows.Forms.ListBox.MultiColumn.set -> void -System.Windows.Forms.ListBox.ObjectCollection -System.Windows.Forms.ListBox.ObjectCollection.Add(object! item) -> int -System.Windows.Forms.ListBox.ObjectCollection.AddRange(object![]! items) -> void -System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Windows.Forms.ListBox.ObjectCollection! value) -> void -System.Windows.Forms.ListBox.ObjectCollection.Contains(object! value) -> bool -System.Windows.Forms.ListBox.ObjectCollection.CopyTo(object![]! destination, int arrayIndex) -> void -System.Windows.Forms.ListBox.ObjectCollection.Count.get -> int -System.Windows.Forms.ListBox.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListBox.ObjectCollection.IndexOf(object! value) -> int -System.Windows.Forms.ListBox.ObjectCollection.Insert(int index, object! item) -> void -System.Windows.Forms.ListBox.ObjectCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner) -> void -System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner, object![]! value) -> void -System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner, System.Windows.Forms.ListBox.ObjectCollection! value) -> void -System.Windows.Forms.ListBox.ObjectCollection.Remove(object! value) -> void -System.Windows.Forms.ListBox.ObjectCollection.RemoveAt(int index) -> void -System.Windows.Forms.ListBox.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.ListBox.Padding.set -> void -System.Windows.Forms.ListBox.PaddingChanged -> System.EventHandler? -System.Windows.Forms.ListBox.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ListBox.PreferredHeight.get -> int -System.Windows.Forms.ListBox.ScrollAlwaysVisible.get -> bool -System.Windows.Forms.ListBox.ScrollAlwaysVisible.set -> void -System.Windows.Forms.ListBox.SelectedIndexChanged -> System.EventHandler? -System.Windows.Forms.ListBox.SelectedIndexCollection -System.Windows.Forms.ListBox.SelectedIndexCollection.Add(int index) -> void -System.Windows.Forms.ListBox.SelectedIndexCollection.Clear() -> void -System.Windows.Forms.ListBox.SelectedIndexCollection.Contains(int selectedIndex) -> bool -System.Windows.Forms.ListBox.SelectedIndexCollection.CopyTo(System.Array! destination, int index) -> void -System.Windows.Forms.ListBox.SelectedIndexCollection.Count.get -> int -System.Windows.Forms.ListBox.SelectedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListBox.SelectedIndexCollection.IndexOf(int selectedIndex) -> int -System.Windows.Forms.ListBox.SelectedIndexCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListBox.SelectedIndexCollection.Remove(int index) -> void -System.Windows.Forms.ListBox.SelectedIndexCollection.SelectedIndexCollection(System.Windows.Forms.ListBox! owner) -> void -System.Windows.Forms.ListBox.SelectedIndexCollection.this[int index].get -> int -System.Windows.Forms.ListBox.SelectedIndices.get -> System.Windows.Forms.ListBox.SelectedIndexCollection! -System.Windows.Forms.ListBox.SelectedItem.get -> object? -System.Windows.Forms.ListBox.SelectedItem.set -> void -System.Windows.Forms.ListBox.SelectedItems.get -> System.Windows.Forms.ListBox.SelectedObjectCollection! -System.Windows.Forms.ListBox.SelectedObjectCollection -System.Windows.Forms.ListBox.SelectedObjectCollection.Add(object! value) -> void -System.Windows.Forms.ListBox.SelectedObjectCollection.Clear() -> void -System.Windows.Forms.ListBox.SelectedObjectCollection.Contains(object? selectedObject) -> bool -System.Windows.Forms.ListBox.SelectedObjectCollection.CopyTo(System.Array! destination, int index) -> void -System.Windows.Forms.ListBox.SelectedObjectCollection.Count.get -> int -System.Windows.Forms.ListBox.SelectedObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListBox.SelectedObjectCollection.IndexOf(object? selectedObject) -> int -System.Windows.Forms.ListBox.SelectedObjectCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListBox.SelectedObjectCollection.Remove(object! value) -> void -System.Windows.Forms.ListBox.SelectedObjectCollection.SelectedObjectCollection(System.Windows.Forms.ListBox! owner) -> void -System.Windows.Forms.ListBox.SelectedObjectCollection.this[int index].get -> object? -System.Windows.Forms.ListBox.SelectedObjectCollection.this[int index].set -> void -System.Windows.Forms.ListBox.SetSelected(int index, bool value) -> void -System.Windows.Forms.ListBox.Sorted.get -> bool -System.Windows.Forms.ListBox.Sorted.set -> void -System.Windows.Forms.ListBox.TextChanged -> System.EventHandler? -System.Windows.Forms.ListBox.TopIndex.get -> int -System.Windows.Forms.ListBox.TopIndex.set -> void -System.Windows.Forms.ListBox.UseCustomTabOffsets.get -> bool -System.Windows.Forms.ListBox.UseCustomTabOffsets.set -> void -System.Windows.Forms.ListBox.UseTabStops.get -> bool -System.Windows.Forms.ListBox.UseTabStops.set -> void -System.Windows.Forms.ListControl -System.Windows.Forms.ListControl.DataManager.get -> System.Windows.Forms.CurrencyManager? -System.Windows.Forms.ListControl.DataSource.get -> object? -System.Windows.Forms.ListControl.DataSource.set -> void -System.Windows.Forms.ListControl.DataSourceChanged -> System.EventHandler? -System.Windows.Forms.ListControl.DisplayMember.get -> string! -System.Windows.Forms.ListControl.DisplayMember.set -> void -System.Windows.Forms.ListControl.DisplayMemberChanged -> System.EventHandler? -System.Windows.Forms.ListControl.FilterItemOnProperty(object? item) -> object? -System.Windows.Forms.ListControl.FilterItemOnProperty(object? item, string? field) -> object? -System.Windows.Forms.ListControl.Format -> System.Windows.Forms.ListControlConvertEventHandler? -System.Windows.Forms.ListControl.FormatInfo.get -> System.IFormatProvider? -System.Windows.Forms.ListControl.FormatInfo.set -> void -System.Windows.Forms.ListControl.FormatInfoChanged -> System.EventHandler? -System.Windows.Forms.ListControl.FormatString.get -> string! -System.Windows.Forms.ListControl.FormatString.set -> void -System.Windows.Forms.ListControl.FormatStringChanged -> System.EventHandler? -System.Windows.Forms.ListControl.FormattingEnabled.get -> bool -System.Windows.Forms.ListControl.FormattingEnabled.set -> void -System.Windows.Forms.ListControl.FormattingEnabledChanged -> System.EventHandler? -System.Windows.Forms.ListControl.GetItemText(object? item) -> string? -System.Windows.Forms.ListControl.ListControl() -> void -System.Windows.Forms.ListControl.SelectedValue.get -> object? -System.Windows.Forms.ListControl.SelectedValue.set -> void -System.Windows.Forms.ListControl.SelectedValueChanged -> System.EventHandler? -System.Windows.Forms.ListControl.ValueMember.get -> string! -System.Windows.Forms.ListControl.ValueMember.set -> void -System.Windows.Forms.ListControl.ValueMemberChanged -> System.EventHandler? -System.Windows.Forms.ListControlConvertEventArgs -System.Windows.Forms.ListControlConvertEventArgs.ListControlConvertEventArgs(object? value, System.Type? desiredType, object? listItem) -> void -System.Windows.Forms.ListControlConvertEventArgs.ListItem.get -> object? -System.Windows.Forms.ListControlConvertEventHandler -System.Windows.Forms.ListView -System.Windows.Forms.ListView.Activation.get -> System.Windows.Forms.ItemActivation -System.Windows.Forms.ListView.Activation.set -> void -System.Windows.Forms.ListView.AfterLabelEdit -> System.Windows.Forms.LabelEditEventHandler? -System.Windows.Forms.ListView.Alignment.get -> System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListView.Alignment.set -> void -System.Windows.Forms.ListView.AllowColumnReorder.get -> bool -System.Windows.Forms.ListView.AllowColumnReorder.set -> void -System.Windows.Forms.ListView.ArrangeIcons() -> void -System.Windows.Forms.ListView.ArrangeIcons(System.Windows.Forms.ListViewAlignment value) -> void -System.Windows.Forms.ListView.AutoArrange.get -> bool -System.Windows.Forms.ListView.AutoArrange.set -> void -System.Windows.Forms.ListView.AutoResizeColumn(int columnIndex, System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void -System.Windows.Forms.ListView.AutoResizeColumns(System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void -System.Windows.Forms.ListView.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ListView.BackgroundImageTiled.get -> bool -System.Windows.Forms.ListView.BackgroundImageTiled.set -> void -System.Windows.Forms.ListView.BeforeLabelEdit -> System.Windows.Forms.LabelEditEventHandler? -System.Windows.Forms.ListView.BeginUpdate() -> void -System.Windows.Forms.ListView.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.ListView.BorderStyle.set -> void -System.Windows.Forms.ListView.CacheVirtualItems -> System.Windows.Forms.CacheVirtualItemsEventHandler? -System.Windows.Forms.ListView.CheckBoxes.get -> bool -System.Windows.Forms.ListView.CheckBoxes.set -> void -System.Windows.Forms.ListView.CheckedIndexCollection -System.Windows.Forms.ListView.CheckedIndexCollection.CheckedIndexCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.CheckedIndexCollection.Contains(int checkedIndex) -> bool -System.Windows.Forms.ListView.CheckedIndexCollection.Count.get -> int -System.Windows.Forms.ListView.CheckedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.CheckedIndexCollection.IndexOf(int checkedIndex) -> int -System.Windows.Forms.ListView.CheckedIndexCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.CheckedIndexCollection.this[int index].get -> int -System.Windows.Forms.ListView.CheckedIndices.get -> System.Windows.Forms.ListView.CheckedIndexCollection! -System.Windows.Forms.ListView.CheckedItems.get -> System.Windows.Forms.ListView.CheckedListViewItemCollection! -System.Windows.Forms.ListView.CheckedListViewItemCollection -System.Windows.Forms.ListView.CheckedListViewItemCollection.CheckedListViewItemCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.CheckedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem? item) -> bool -System.Windows.Forms.ListView.CheckedListViewItemCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.ListView.CheckedListViewItemCollection.Count.get -> int -System.Windows.Forms.ListView.CheckedListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem! item) -> int -System.Windows.Forms.ListView.CheckedListViewItemCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.CheckedListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.Clear() -> void -System.Windows.Forms.ListView.ColumnClick -> System.Windows.Forms.ColumnClickEventHandler? -System.Windows.Forms.ListView.ColumnHeaderCollection -System.Windows.Forms.ListView.ColumnHeaderCollection.ColumnHeaderCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Contains(System.Windows.Forms.ColumnHeader? value) -> bool -System.Windows.Forms.ListView.ColumnHeaderCollection.Count.get -> int -System.Windows.Forms.ListView.ColumnHeaderCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOf(System.Windows.Forms.ColumnHeader? value) -> int -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, int imageIndex) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, string! imageKey) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text, int width) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, System.Windows.Forms.ColumnHeader! value) -> void -System.Windows.Forms.ListView.ColumnHeaderCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.ColumnReordered -> System.Windows.Forms.ColumnReorderedEventHandler? -System.Windows.Forms.ListView.Columns.get -> System.Windows.Forms.ListView.ColumnHeaderCollection! -System.Windows.Forms.ListView.ColumnWidthChanged -> System.Windows.Forms.ColumnWidthChangedEventHandler? -System.Windows.Forms.ListView.ColumnWidthChanging -> System.Windows.Forms.ColumnWidthChangingEventHandler? -System.Windows.Forms.ListView.DrawColumnHeader -> System.Windows.Forms.DrawListViewColumnHeaderEventHandler? -System.Windows.Forms.ListView.DrawItem -> System.Windows.Forms.DrawListViewItemEventHandler? -System.Windows.Forms.ListView.DrawSubItem -> System.Windows.Forms.DrawListViewSubItemEventHandler? -System.Windows.Forms.ListView.EndUpdate() -> void -System.Windows.Forms.ListView.EnsureVisible(int index) -> void -System.Windows.Forms.ListView.FindItemWithText(string! text) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FindItemWithText(string! text, bool includeSubItemsInSearch, int startIndex) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FindItemWithText(string! text, bool includeSubItemsInSearch, int startIndex, bool isPrefixSearch) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint dir, System.Drawing.Point point) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint searchDirection, int x, int y) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FocusedItem.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.FocusedItem.set -> void -System.Windows.Forms.ListView.FullRowSelect.get -> bool -System.Windows.Forms.ListView.FullRowSelect.set -> void -System.Windows.Forms.ListView.GetItemAt(int x, int y) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.GetItemRect(int index) -> System.Drawing.Rectangle -System.Windows.Forms.ListView.GetItemRect(int index, System.Windows.Forms.ItemBoundsPortion portion) -> System.Drawing.Rectangle -System.Windows.Forms.ListView.GridLines.get -> bool -System.Windows.Forms.ListView.GridLines.set -> void -System.Windows.Forms.ListView.GroupCollapsedStateChanged -> System.EventHandler? -System.Windows.Forms.ListView.GroupImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ListView.GroupImageList.set -> void -System.Windows.Forms.ListView.Groups.get -> System.Windows.Forms.ListViewGroupCollection! -System.Windows.Forms.ListView.GroupTaskLinkClick -> System.EventHandler? -System.Windows.Forms.ListView.HeaderStyle.get -> System.Windows.Forms.ColumnHeaderStyle -System.Windows.Forms.ListView.HeaderStyle.set -> void -System.Windows.Forms.ListView.HideSelection.get -> bool -System.Windows.Forms.ListView.HideSelection.set -> void -System.Windows.Forms.ListView.HitTest(int x, int y) -> System.Windows.Forms.ListViewHitTestInfo! -System.Windows.Forms.ListView.HitTest(System.Drawing.Point point) -> System.Windows.Forms.ListViewHitTestInfo! -System.Windows.Forms.ListView.HotTracking.get -> bool -System.Windows.Forms.ListView.HotTracking.set -> void -System.Windows.Forms.ListView.HoverSelection.get -> bool -System.Windows.Forms.ListView.HoverSelection.set -> void -System.Windows.Forms.ListView.InsertionMark.get -> System.Windows.Forms.ListViewInsertionMark! -System.Windows.Forms.ListView.ItemActivate -> System.EventHandler? -System.Windows.Forms.ListView.ItemCheck -> System.Windows.Forms.ItemCheckEventHandler? -System.Windows.Forms.ListView.ItemChecked -> System.Windows.Forms.ItemCheckedEventHandler? -System.Windows.Forms.ListView.ItemDrag -> System.Windows.Forms.ItemDragEventHandler? -System.Windows.Forms.ListView.ItemMouseHover -> System.Windows.Forms.ListViewItemMouseHoverEventHandler? -System.Windows.Forms.ListView.Items.get -> System.Windows.Forms.ListView.ListViewItemCollection! -System.Windows.Forms.ListView.ItemSelectionChanged -> System.Windows.Forms.ListViewItemSelectionChangedEventHandler? -System.Windows.Forms.ListView.LabelEdit.get -> bool -System.Windows.Forms.ListView.LabelEdit.set -> void -System.Windows.Forms.ListView.LabelWrap.get -> bool -System.Windows.Forms.ListView.LabelWrap.set -> void -System.Windows.Forms.ListView.LargeImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ListView.LargeImageList.set -> void -System.Windows.Forms.ListView.ListView() -> void -System.Windows.Forms.ListView.ListViewItemCollection -System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListView.ListViewItemCollection! items) -> void -System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListViewItem![]! items) -> void -System.Windows.Forms.ListView.ListViewItemCollection.Contains(System.Windows.Forms.ListViewItem! item) -> bool -System.Windows.Forms.ListView.ListViewItemCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.ListView.ListViewItemCollection.Count.get -> int -System.Windows.Forms.ListView.ListViewItemCollection.Find(string! key, bool searchAllSubItems) -> System.Windows.Forms.ListViewItem![]! -System.Windows.Forms.ListView.ListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.ListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem! item) -> int -System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text) -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, System.Windows.Forms.ListViewItem! item) -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.ListViewItemCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.ListViewItemCollection.ListViewItemCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.ListViewItemSorter.get -> System.Collections.IComparer? -System.Windows.Forms.ListView.ListViewItemSorter.set -> void -System.Windows.Forms.ListView.MultiSelect.get -> bool -System.Windows.Forms.ListView.MultiSelect.set -> void -System.Windows.Forms.ListView.OwnerDraw.get -> bool -System.Windows.Forms.ListView.OwnerDraw.set -> void -System.Windows.Forms.ListView.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.ListView.Padding.set -> void -System.Windows.Forms.ListView.PaddingChanged -> System.EventHandler? -System.Windows.Forms.ListView.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ListView.RealizeProperties() -> void -System.Windows.Forms.ListView.RedrawItems(int startIndex, int endIndex, bool invalidateOnly) -> void -System.Windows.Forms.ListView.RetrieveVirtualItem -> System.Windows.Forms.RetrieveVirtualItemEventHandler? -System.Windows.Forms.ListView.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.ListView.Scrollable.get -> bool -System.Windows.Forms.ListView.Scrollable.set -> void -System.Windows.Forms.ListView.SearchForVirtualItem -> System.Windows.Forms.SearchForVirtualItemEventHandler? -System.Windows.Forms.ListView.SelectedIndexChanged -> System.EventHandler? -System.Windows.Forms.ListView.SelectedIndexCollection -System.Windows.Forms.ListView.SelectedIndexCollection.Add(int itemIndex) -> int -System.Windows.Forms.ListView.SelectedIndexCollection.Clear() -> void -System.Windows.Forms.ListView.SelectedIndexCollection.Contains(int selectedIndex) -> bool -System.Windows.Forms.ListView.SelectedIndexCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.ListView.SelectedIndexCollection.Count.get -> int -System.Windows.Forms.ListView.SelectedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.SelectedIndexCollection.IndexOf(int selectedIndex) -> int -System.Windows.Forms.ListView.SelectedIndexCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.SelectedIndexCollection.Remove(int itemIndex) -> void -System.Windows.Forms.ListView.SelectedIndexCollection.SelectedIndexCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.SelectedIndexCollection.this[int index].get -> int -System.Windows.Forms.ListView.SelectedIndices.get -> System.Windows.Forms.ListView.SelectedIndexCollection! -System.Windows.Forms.ListView.SelectedItems.get -> System.Windows.Forms.ListView.SelectedListViewItemCollection! -System.Windows.Forms.ListView.SelectedListViewItemCollection -System.Windows.Forms.ListView.SelectedListViewItemCollection.Clear() -> void -System.Windows.Forms.ListView.SelectedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem? item) -> bool -System.Windows.Forms.ListView.SelectedListViewItemCollection.CopyTo(System.Array! dest, int index) -> void -System.Windows.Forms.ListView.SelectedListViewItemCollection.Count.get -> int -System.Windows.Forms.ListView.SelectedListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem? item) -> int -System.Windows.Forms.ListView.SelectedListViewItemCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListView.SelectedListViewItemCollection.SelectedListViewItemCollection(System.Windows.Forms.ListView! owner) -> void -System.Windows.Forms.ListView.SelectedListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! -System.Windows.Forms.ListView.ShowGroups.get -> bool -System.Windows.Forms.ListView.ShowGroups.set -> void -System.Windows.Forms.ListView.ShowItemToolTips.get -> bool -System.Windows.Forms.ListView.ShowItemToolTips.set -> void -System.Windows.Forms.ListView.SmallImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ListView.SmallImageList.set -> void -System.Windows.Forms.ListView.Sort() -> void -System.Windows.Forms.ListView.Sorting.get -> System.Windows.Forms.SortOrder -System.Windows.Forms.ListView.Sorting.set -> void -System.Windows.Forms.ListView.StateImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ListView.StateImageList.set -> void -System.Windows.Forms.ListView.TextChanged -> System.EventHandler? -System.Windows.Forms.ListView.TileSize.get -> System.Drawing.Size -System.Windows.Forms.ListView.TileSize.set -> void -System.Windows.Forms.ListView.TopItem.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListView.TopItem.set -> void -System.Windows.Forms.ListView.UpdateExtendedStyles() -> void -System.Windows.Forms.ListView.UseCompatibleStateImageBehavior.get -> bool -System.Windows.Forms.ListView.UseCompatibleStateImageBehavior.set -> void -System.Windows.Forms.ListView.View.get -> System.Windows.Forms.View -System.Windows.Forms.ListView.View.set -> void -System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged -> System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler? -System.Windows.Forms.ListView.VirtualListSize.get -> int -System.Windows.Forms.ListView.VirtualListSize.set -> void -System.Windows.Forms.ListView.VirtualMode.get -> bool -System.Windows.Forms.ListView.VirtualMode.set -> void -System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListViewAlignment.Default = 0 -> System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListViewAlignment.Left = 1 -> System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListViewAlignment.SnapToGrid = 5 -> System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListViewAlignment.Top = 2 -> System.Windows.Forms.ListViewAlignment -System.Windows.Forms.ListViewGroup -System.Windows.Forms.ListViewGroup.CollapsedState.get -> System.Windows.Forms.ListViewGroupCollapsedState -System.Windows.Forms.ListViewGroup.CollapsedState.set -> void -System.Windows.Forms.ListViewGroup.Footer.get -> string! -System.Windows.Forms.ListViewGroup.Footer.set -> void -System.Windows.Forms.ListViewGroup.FooterAlignment.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.ListViewGroup.FooterAlignment.set -> void -System.Windows.Forms.ListViewGroup.Header.get -> string! -System.Windows.Forms.ListViewGroup.Header.set -> void -System.Windows.Forms.ListViewGroup.HeaderAlignment.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.ListViewGroup.HeaderAlignment.set -> void -System.Windows.Forms.ListViewGroup.Items.get -> System.Windows.Forms.ListView.ListViewItemCollection! -System.Windows.Forms.ListViewGroup.ListView.get -> System.Windows.Forms.ListView? -System.Windows.Forms.ListViewGroup.ListViewGroup() -> void -System.Windows.Forms.ListViewGroup.ListViewGroup(string? header) -> void -System.Windows.Forms.ListViewGroup.ListViewGroup(string? header, System.Windows.Forms.HorizontalAlignment headerAlignment) -> void -System.Windows.Forms.ListViewGroup.ListViewGroup(string? key, string? headerText) -> void -System.Windows.Forms.ListViewGroup.Name.get -> string? -System.Windows.Forms.ListViewGroup.Name.set -> void -System.Windows.Forms.ListViewGroup.Subtitle.get -> string! -System.Windows.Forms.ListViewGroup.Subtitle.set -> void -System.Windows.Forms.ListViewGroup.Tag.get -> object? -System.Windows.Forms.ListViewGroup.Tag.set -> void -System.Windows.Forms.ListViewGroup.TaskLink.get -> string! -System.Windows.Forms.ListViewGroup.TaskLink.set -> void -System.Windows.Forms.ListViewGroup.TitleImageIndex.get -> int -System.Windows.Forms.ListViewGroup.TitleImageIndex.set -> void -System.Windows.Forms.ListViewGroup.TitleImageKey.get -> string! -System.Windows.Forms.ListViewGroup.TitleImageKey.set -> void -System.Windows.Forms.ListViewGroupCollapsedState -System.Windows.Forms.ListViewGroupCollapsedState.Collapsed = 2 -> System.Windows.Forms.ListViewGroupCollapsedState -System.Windows.Forms.ListViewGroupCollapsedState.Default = 0 -> System.Windows.Forms.ListViewGroupCollapsedState -System.Windows.Forms.ListViewGroupCollapsedState.Expanded = 1 -> System.Windows.Forms.ListViewGroupCollapsedState -System.Windows.Forms.ListViewGroupCollection -System.Windows.Forms.ListViewGroupCollection.Add(string? key, string? headerText) -> System.Windows.Forms.ListViewGroup! -System.Windows.Forms.ListViewGroupCollection.Add(System.Windows.Forms.ListViewGroup! group) -> int -System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroup![]! groups) -> void -System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroupCollection! groups) -> void -System.Windows.Forms.ListViewGroupCollection.Clear() -> void -System.Windows.Forms.ListViewGroupCollection.Contains(System.Windows.Forms.ListViewGroup! value) -> bool -System.Windows.Forms.ListViewGroupCollection.CopyTo(System.Array! array, int index) -> void -System.Windows.Forms.ListViewGroupCollection.Count.get -> int -System.Windows.Forms.ListViewGroupCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListViewGroupCollection.IndexOf(System.Windows.Forms.ListViewGroup! value) -> int -System.Windows.Forms.ListViewGroupCollection.Insert(int index, System.Windows.Forms.ListViewGroup! group) -> void -System.Windows.Forms.ListViewGroupCollection.Remove(System.Windows.Forms.ListViewGroup! group) -> void -System.Windows.Forms.ListViewGroupCollection.RemoveAt(int index) -> void -System.Windows.Forms.ListViewGroupCollection.this[int index].get -> System.Windows.Forms.ListViewGroup! -System.Windows.Forms.ListViewGroupCollection.this[int index].set -> void -System.Windows.Forms.ListViewGroupCollection.this[string! key].get -> System.Windows.Forms.ListViewGroup? -System.Windows.Forms.ListViewGroupCollection.this[string! key].set -> void -System.Windows.Forms.ListViewGroupEventArgs -System.Windows.Forms.ListViewGroupEventArgs.GroupIndex.get -> int -System.Windows.Forms.ListViewGroupEventArgs.ListViewGroupEventArgs(int groupIndex) -> void -System.Windows.Forms.ListViewHitTestInfo -System.Windows.Forms.ListViewHitTestInfo.Item.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListViewHitTestInfo.ListViewHitTestInfo(System.Windows.Forms.ListViewItem? hitItem, System.Windows.Forms.ListViewItem.ListViewSubItem? hitSubItem, System.Windows.Forms.ListViewHitTestLocations hitLocation) -> void -System.Windows.Forms.ListViewHitTestInfo.Location.get -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestInfo.SubItem.get -> System.Windows.Forms.ListViewItem.ListViewSubItem? -System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.AboveClientArea = 256 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.BelowClientArea = 16 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.Image = 2 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.Label = 4 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.LeftOfClientArea = 64 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.None = 1 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.RightOfClientArea = 32 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewHitTestLocations.StateImage = 512 -> System.Windows.Forms.ListViewHitTestLocations -System.Windows.Forms.ListViewInsertionMark -System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem.get -> bool -System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem.set -> void -System.Windows.Forms.ListViewInsertionMark.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ListViewInsertionMark.Color.get -> System.Drawing.Color -System.Windows.Forms.ListViewInsertionMark.Color.set -> void -System.Windows.Forms.ListViewInsertionMark.Index.get -> int -System.Windows.Forms.ListViewInsertionMark.Index.set -> void -System.Windows.Forms.ListViewInsertionMark.NearestIndex(System.Drawing.Point pt) -> int -System.Windows.Forms.ListViewItem -System.Windows.Forms.ListViewItem.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ListViewItem.BackColor.set -> void -System.Windows.Forms.ListViewItem.BeginEdit() -> void -System.Windows.Forms.ListViewItem.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ListViewItem.Checked.get -> bool -System.Windows.Forms.ListViewItem.Checked.set -> void -System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint searchDirection) -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListViewItem.Focused.get -> bool -System.Windows.Forms.ListViewItem.Focused.set -> void -System.Windows.Forms.ListViewItem.Font.get -> System.Drawing.Font! -System.Windows.Forms.ListViewItem.Font.set -> void -System.Windows.Forms.ListViewItem.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.ListViewItem.ForeColor.set -> void -System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion portion) -> System.Drawing.Rectangle -System.Windows.Forms.ListViewItem.GetSubItemAt(int x, int y) -> System.Windows.Forms.ListViewItem.ListViewSubItem? -System.Windows.Forms.ListViewItem.Group.get -> System.Windows.Forms.ListViewGroup? -System.Windows.Forms.ListViewItem.Group.set -> void -System.Windows.Forms.ListViewItem.ImageIndex.get -> int -System.Windows.Forms.ListViewItem.ImageIndex.set -> void -System.Windows.Forms.ListViewItem.ImageKey.get -> string! -System.Windows.Forms.ListViewItem.ImageKey.set -> void -System.Windows.Forms.ListViewItem.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ListViewItem.IndentCount.get -> int -System.Windows.Forms.ListViewItem.IndentCount.set -> void -System.Windows.Forms.ListViewItem.Index.get -> int -System.Windows.Forms.ListViewItem.ListView.get -> System.Windows.Forms.ListView? -System.Windows.Forms.ListViewItem.ListViewItem() -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text, int imageIndex) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text, string? imageKey) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(string? text, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, int imageIndex) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, string? imageKey) -> void -System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void -System.Windows.Forms.ListViewItem.ListViewSubItem -System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ListViewItem.ListViewSubItem.Font.get -> System.Drawing.Font! -System.Windows.Forms.ListViewItem.ListViewSubItem.Font.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem() -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem(System.Windows.Forms.ListViewItem? owner, string? text) -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem(System.Windows.Forms.ListViewItem? owner, string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.Name.get -> string! -System.Windows.Forms.ListViewItem.ListViewSubItem.Name.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.ResetStyle() -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.Tag.get -> object? -System.Windows.Forms.ListViewItem.ListViewSubItem.Tag.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItem.Text.get -> string! -System.Windows.Forms.ListViewItem.ListViewSubItem.Text.set -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(string? text) -> System.Windows.Forms.ListViewItem.ListViewSubItem! -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> System.Windows.Forms.ListViewItem.ListViewSubItem! -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.Windows.Forms.ListViewItem.ListViewSubItem! item) -> System.Windows.Forms.ListViewItem.ListViewSubItem! -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(string![]! items) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(string![]! items, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.Windows.Forms.ListViewItem.ListViewSubItem![]! items) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Clear() -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Contains(System.Windows.Forms.ListViewItem.ListViewSubItem? subItem) -> bool -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count.get -> int -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOf(System.Windows.Forms.ListViewItem.ListViewSubItem? subItem) -> int -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Insert(int index, System.Windows.Forms.ListViewItem.ListViewSubItem! item) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IsReadOnly.get -> bool -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ListViewSubItemCollection(System.Windows.Forms.ListViewItem! owner) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Remove(System.Windows.Forms.ListViewItem.ListViewSubItem? item) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveAt(int index) -> void -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem.ListViewSubItem! -System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[int index].set -> void -System.Windows.Forms.ListViewItem.Name.get -> string! -System.Windows.Forms.ListViewItem.Name.set -> void -System.Windows.Forms.ListViewItem.Position.get -> System.Drawing.Point -System.Windows.Forms.ListViewItem.Position.set -> void -System.Windows.Forms.ListViewItem.Selected.get -> bool -System.Windows.Forms.ListViewItem.Selected.set -> void -System.Windows.Forms.ListViewItem.StateImageIndex.get -> int -System.Windows.Forms.ListViewItem.StateImageIndex.set -> void -System.Windows.Forms.ListViewItem.SubItems.get -> System.Windows.Forms.ListViewItem.ListViewSubItemCollection! -System.Windows.Forms.ListViewItem.Tag.get -> object? -System.Windows.Forms.ListViewItem.Tag.set -> void -System.Windows.Forms.ListViewItem.Text.get -> string! -System.Windows.Forms.ListViewItem.Text.set -> void -System.Windows.Forms.ListViewItem.ToolTipText.get -> string! -System.Windows.Forms.ListViewItem.ToolTipText.set -> void -System.Windows.Forms.ListViewItem.UseItemStyleForSubItems.get -> bool -System.Windows.Forms.ListViewItem.UseItemStyleForSubItems.set -> void -System.Windows.Forms.ListViewItemConverter -System.Windows.Forms.ListViewItemConverter.ListViewItemConverter() -> void -System.Windows.Forms.ListViewItemMouseHoverEventArgs -System.Windows.Forms.ListViewItemMouseHoverEventArgs.Item.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListViewItemMouseHoverEventArgs.ListViewItemMouseHoverEventArgs(System.Windows.Forms.ListViewItem? item) -> void -System.Windows.Forms.ListViewItemMouseHoverEventHandler -System.Windows.Forms.ListViewItemSelectionChangedEventArgs -System.Windows.Forms.ListViewItemSelectionChangedEventArgs.IsSelected.get -> bool -System.Windows.Forms.ListViewItemSelectionChangedEventArgs.Item.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ItemIndex.get -> int -System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ListViewItemSelectionChangedEventArgs(System.Windows.Forms.ListViewItem? item, int itemIndex, bool isSelected) -> void -System.Windows.Forms.ListViewItemSelectionChangedEventHandler -System.Windows.Forms.ListViewItemStateImageIndexConverter -System.Windows.Forms.ListViewItemStateImageIndexConverter.ListViewItemStateImageIndexConverter() -> void -System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Checked = 8 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Default = 32 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Focused = 16 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Grayed = 2 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Hot = 64 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Indeterminate = 256 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Marked = 128 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.Selected = 1 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewItemStates.ShowKeyboardCues = 512 -> System.Windows.Forms.ListViewItemStates -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.EndIndex.get -> int -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.IsSelected.get -> bool -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.ListViewVirtualItemsSelectionRangeChangedEventArgs(int startIndex, int endIndex, bool isSelected) -> void -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.StartIndex.get -> int -System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler -System.Windows.Forms.MaskedTextBox -System.Windows.Forms.MaskedTextBox.AcceptsTab.get -> bool -System.Windows.Forms.MaskedTextBox.AcceptsTab.set -> void -System.Windows.Forms.MaskedTextBox.AcceptsTabChanged -> System.EventHandler? -System.Windows.Forms.MaskedTextBox.AllowPromptAsInput.get -> bool -System.Windows.Forms.MaskedTextBox.AllowPromptAsInput.set -> void -System.Windows.Forms.MaskedTextBox.AsciiOnly.get -> bool -System.Windows.Forms.MaskedTextBox.AsciiOnly.set -> void -System.Windows.Forms.MaskedTextBox.BeepOnError.get -> bool -System.Windows.Forms.MaskedTextBox.BeepOnError.set -> void -System.Windows.Forms.MaskedTextBox.CanUndo.get -> bool -System.Windows.Forms.MaskedTextBox.ClearUndo() -> void -System.Windows.Forms.MaskedTextBox.Culture.get -> System.Globalization.CultureInfo! -System.Windows.Forms.MaskedTextBox.Culture.set -> void -System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat.get -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat.set -> void -System.Windows.Forms.MaskedTextBox.FormatProvider.get -> System.IFormatProvider? -System.Windows.Forms.MaskedTextBox.FormatProvider.set -> void -System.Windows.Forms.MaskedTextBox.GetFirstCharIndexFromLine(int lineNumber) -> int -System.Windows.Forms.MaskedTextBox.GetFirstCharIndexOfCurrentLine() -> int -System.Windows.Forms.MaskedTextBox.HidePromptOnLeave.get -> bool -System.Windows.Forms.MaskedTextBox.HidePromptOnLeave.set -> void -System.Windows.Forms.MaskedTextBox.InsertKeyMode.get -> System.Windows.Forms.InsertKeyMode -System.Windows.Forms.MaskedTextBox.InsertKeyMode.set -> void -System.Windows.Forms.MaskedTextBox.IsOverwriteMode.get -> bool -System.Windows.Forms.MaskedTextBox.IsOverwriteModeChanged -> System.EventHandler? -System.Windows.Forms.MaskedTextBox.Lines.get -> string![]! -System.Windows.Forms.MaskedTextBox.Lines.set -> void -System.Windows.Forms.MaskedTextBox.Mask.get -> string! -System.Windows.Forms.MaskedTextBox.Mask.set -> void -System.Windows.Forms.MaskedTextBox.MaskChanged -> System.EventHandler? -System.Windows.Forms.MaskedTextBox.MaskCompleted.get -> bool -System.Windows.Forms.MaskedTextBox.MaskedTextBox() -> void -System.Windows.Forms.MaskedTextBox.MaskedTextBox(string! mask) -> void -System.Windows.Forms.MaskedTextBox.MaskedTextBox(System.ComponentModel.MaskedTextProvider! maskedTextProvider) -> void -System.Windows.Forms.MaskedTextBox.MaskedTextProvider.get -> System.ComponentModel.MaskedTextProvider? -System.Windows.Forms.MaskedTextBox.MaskFull.get -> bool -System.Windows.Forms.MaskedTextBox.MaskInputRejected -> System.Windows.Forms.MaskInputRejectedEventHandler? -System.Windows.Forms.MaskedTextBox.MultilineChanged -> System.EventHandler? -System.Windows.Forms.MaskedTextBox.PasswordChar.get -> char -System.Windows.Forms.MaskedTextBox.PasswordChar.set -> void -System.Windows.Forms.MaskedTextBox.PromptChar.get -> char -System.Windows.Forms.MaskedTextBox.PromptChar.set -> void -System.Windows.Forms.MaskedTextBox.ReadOnly.get -> bool -System.Windows.Forms.MaskedTextBox.ReadOnly.set -> void -System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure.get -> bool -System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure.set -> void -System.Windows.Forms.MaskedTextBox.ResetOnPrompt.get -> bool -System.Windows.Forms.MaskedTextBox.ResetOnPrompt.set -> void -System.Windows.Forms.MaskedTextBox.ResetOnSpace.get -> bool -System.Windows.Forms.MaskedTextBox.ResetOnSpace.set -> void -System.Windows.Forms.MaskedTextBox.ScrollToCaret() -> void -System.Windows.Forms.MaskedTextBox.SkipLiterals.get -> bool -System.Windows.Forms.MaskedTextBox.SkipLiterals.set -> void -System.Windows.Forms.MaskedTextBox.TextAlign.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.MaskedTextBox.TextAlign.set -> void -System.Windows.Forms.MaskedTextBox.TextAlignChanged -> System.EventHandler? -System.Windows.Forms.MaskedTextBox.TextMaskFormat.get -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskedTextBox.TextMaskFormat.set -> void -System.Windows.Forms.MaskedTextBox.TypeValidationCompleted -> System.Windows.Forms.TypeValidationEventHandler? -System.Windows.Forms.MaskedTextBox.Undo() -> void -System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar.get -> bool -System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar.set -> void -System.Windows.Forms.MaskedTextBox.ValidateText() -> object? -System.Windows.Forms.MaskedTextBox.ValidatingType.get -> System.Type? -System.Windows.Forms.MaskedTextBox.ValidatingType.set -> void -System.Windows.Forms.MaskedTextBox.WordWrap.get -> bool -System.Windows.Forms.MaskedTextBox.WordWrap.set -> void -System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals = 0 -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskFormat.IncludeLiterals = 2 -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskFormat.IncludePrompt = 1 -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskFormat.IncludePromptAndLiterals = 3 -> System.Windows.Forms.MaskFormat -System.Windows.Forms.MaskInputRejectedEventArgs -System.Windows.Forms.MaskInputRejectedEventArgs.MaskInputRejectedEventArgs(int position, System.ComponentModel.MaskedTextResultHint rejectionHint) -> void -System.Windows.Forms.MaskInputRejectedEventArgs.Position.get -> int -System.Windows.Forms.MaskInputRejectedEventArgs.RejectionHint.get -> System.ComponentModel.MaskedTextResultHint -System.Windows.Forms.MaskInputRejectedEventHandler -System.Windows.Forms.MdiClient -System.Windows.Forms.MdiClient.ControlCollection -System.Windows.Forms.MdiClient.ControlCollection.ControlCollection(System.Windows.Forms.MdiClient! owner) -> void -System.Windows.Forms.MdiClient.LayoutMdi(System.Windows.Forms.MdiLayout value) -> void -System.Windows.Forms.MdiClient.MdiChildren.get -> System.Windows.Forms.Form![]! -System.Windows.Forms.MdiClient.MdiClient() -> void -System.Windows.Forms.MdiLayout -System.Windows.Forms.MdiLayout.ArrangeIcons = 3 -> System.Windows.Forms.MdiLayout -System.Windows.Forms.MdiLayout.Cascade = 0 -> System.Windows.Forms.MdiLayout -System.Windows.Forms.MdiLayout.TileHorizontal = 1 -> System.Windows.Forms.MdiLayout -System.Windows.Forms.MdiLayout.TileVertical = 2 -> System.Windows.Forms.MdiLayout -System.Windows.Forms.MeasureItemEventArgs -System.Windows.Forms.MeasureItemEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.MeasureItemEventArgs.Index.get -> int -System.Windows.Forms.MeasureItemEventArgs.ItemHeight.get -> int -System.Windows.Forms.MeasureItemEventArgs.ItemHeight.set -> void -System.Windows.Forms.MeasureItemEventArgs.ItemWidth.get -> int -System.Windows.Forms.MeasureItemEventArgs.ItemWidth.set -> void -System.Windows.Forms.MeasureItemEventArgs.MeasureItemEventArgs(System.Drawing.Graphics! graphics, int index) -> void -System.Windows.Forms.MeasureItemEventArgs.MeasureItemEventArgs(System.Drawing.Graphics! graphics, int index, int itemHeight) -> void -System.Windows.Forms.MeasureItemEventHandler -System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuGlyph.Arrow = 0 -> System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuGlyph.Bullet = 2 -> System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuGlyph.Checkmark = 1 -> System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuGlyph.Max = 2 -> System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuGlyph.Min = 0 -> System.Windows.Forms.MenuGlyph -System.Windows.Forms.MenuStrip -System.Windows.Forms.MenuStrip.CanOverflow.get -> bool -System.Windows.Forms.MenuStrip.CanOverflow.set -> void -System.Windows.Forms.MenuStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.MenuStrip.GripStyle.set -> void -System.Windows.Forms.MenuStrip.MdiWindowListItem.get -> System.Windows.Forms.ToolStripMenuItem? -System.Windows.Forms.MenuStrip.MdiWindowListItem.set -> void -System.Windows.Forms.MenuStrip.MenuActivate -> System.EventHandler? -System.Windows.Forms.MenuStrip.MenuDeactivate -> System.EventHandler? -System.Windows.Forms.MenuStrip.MenuStrip() -> void -System.Windows.Forms.MenuStrip.ShowItemToolTips.get -> bool -System.Windows.Forms.MenuStrip.ShowItemToolTips.set -> void -System.Windows.Forms.MenuStrip.Stretch.get -> bool -System.Windows.Forms.MenuStrip.Stretch.set -> void -System.Windows.Forms.MergeAction -System.Windows.Forms.MergeAction.Append = 0 -> System.Windows.Forms.MergeAction -System.Windows.Forms.MergeAction.Insert = 1 -> System.Windows.Forms.MergeAction -System.Windows.Forms.MergeAction.MatchOnly = 4 -> System.Windows.Forms.MergeAction -System.Windows.Forms.MergeAction.Remove = 3 -> System.Windows.Forms.MergeAction -System.Windows.Forms.MergeAction.Replace = 2 -> System.Windows.Forms.MergeAction -System.Windows.Forms.MessageBox -System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore = 2 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.CancelTryContinue = 6 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.OK = 0 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.OKCancel = 1 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.RetryCancel = 5 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.YesNo = 4 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxButtons.YesNoCancel = 3 -> System.Windows.Forms.MessageBoxButtons -System.Windows.Forms.MessageBoxDefaultButton -System.Windows.Forms.MessageBoxDefaultButton.Button1 = 0 -> System.Windows.Forms.MessageBoxDefaultButton -System.Windows.Forms.MessageBoxDefaultButton.Button2 = 256 -> System.Windows.Forms.MessageBoxDefaultButton -System.Windows.Forms.MessageBoxDefaultButton.Button3 = 512 -> System.Windows.Forms.MessageBoxDefaultButton -System.Windows.Forms.MessageBoxDefaultButton.Button4 = 768 -> System.Windows.Forms.MessageBoxDefaultButton -System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Asterisk = 64 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Error = 16 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Exclamation = 48 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Hand = 16 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Information = 64 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.None = 0 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Question = 32 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Stop = 16 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxIcon.Warning = 48 -> System.Windows.Forms.MessageBoxIcon -System.Windows.Forms.MessageBoxOptions -System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly = 131072 -> System.Windows.Forms.MessageBoxOptions -System.Windows.Forms.MessageBoxOptions.RightAlign = 524288 -> System.Windows.Forms.MessageBoxOptions -System.Windows.Forms.MessageBoxOptions.RtlReading = 1048576 -> System.Windows.Forms.MessageBoxOptions -System.Windows.Forms.MessageBoxOptions.ServiceNotification = 2097152 -> System.Windows.Forms.MessageBoxOptions -System.Windows.Forms.MethodInvoker -System.Windows.Forms.MonthCalendar -System.Windows.Forms.MonthCalendar.AddAnnuallyBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.AddBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.AddMonthlyBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates.get -> System.DateTime[]! -System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates.set -> void -System.Windows.Forms.MonthCalendar.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.BoldedDates.get -> System.DateTime[]! -System.Windows.Forms.MonthCalendar.BoldedDates.set -> void -System.Windows.Forms.MonthCalendar.CalendarDimensions.get -> System.Drawing.Size -System.Windows.Forms.MonthCalendar.CalendarDimensions.set -> void -System.Windows.Forms.MonthCalendar.Click -> System.EventHandler? -System.Windows.Forms.MonthCalendar.DateChanged -> System.Windows.Forms.DateRangeEventHandler? -System.Windows.Forms.MonthCalendar.DateSelected -> System.Windows.Forms.DateRangeEventHandler? -System.Windows.Forms.MonthCalendar.DoubleClick -> System.EventHandler? -System.Windows.Forms.MonthCalendar.FirstDayOfWeek.get -> System.Windows.Forms.Day -System.Windows.Forms.MonthCalendar.FirstDayOfWeek.set -> void -System.Windows.Forms.MonthCalendar.GetDisplayRange(bool visible) -> System.Windows.Forms.SelectionRange! -System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.CalendarBackground = 6 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.Date = 7 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.DayOfWeek = 10 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.NextMonthButton = 4 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.NextMonthDate = 8 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.Nowhere = 0 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.PrevMonthButton = 5 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.PrevMonthDate = 9 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.TitleBackground = 1 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.TitleMonth = 2 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.TitleYear = 3 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.TodayLink = 12 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitArea.WeekNumbers = 11 -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitTest(int x, int y) -> System.Windows.Forms.MonthCalendar.HitTestInfo! -System.Windows.Forms.MonthCalendar.HitTest(System.Drawing.Point point) -> System.Windows.Forms.MonthCalendar.HitTestInfo! -System.Windows.Forms.MonthCalendar.HitTestInfo -System.Windows.Forms.MonthCalendar.HitTestInfo.HitArea.get -> System.Windows.Forms.MonthCalendar.HitArea -System.Windows.Forms.MonthCalendar.HitTestInfo.Point.get -> System.Drawing.Point -System.Windows.Forms.MonthCalendar.HitTestInfo.Time.get -> System.DateTime -System.Windows.Forms.MonthCalendar.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.MonthCalendar.ImeMode.set -> void -System.Windows.Forms.MonthCalendar.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.MaxDate.get -> System.DateTime -System.Windows.Forms.MonthCalendar.MaxDate.set -> void -System.Windows.Forms.MonthCalendar.MaxSelectionCount.get -> int -System.Windows.Forms.MonthCalendar.MaxSelectionCount.set -> void -System.Windows.Forms.MonthCalendar.MinDate.get -> System.DateTime -System.Windows.Forms.MonthCalendar.MinDate.set -> void -System.Windows.Forms.MonthCalendar.MonthCalendar() -> void -System.Windows.Forms.MonthCalendar.MonthlyBoldedDates.get -> System.DateTime[]! -System.Windows.Forms.MonthCalendar.MonthlyBoldedDates.set -> void -System.Windows.Forms.MonthCalendar.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.MonthCalendar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.MonthCalendar.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.MonthCalendar.Padding.set -> void -System.Windows.Forms.MonthCalendar.PaddingChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.MonthCalendar.RemoveAllAnnuallyBoldedDates() -> void -System.Windows.Forms.MonthCalendar.RemoveAllBoldedDates() -> void -System.Windows.Forms.MonthCalendar.RemoveAllMonthlyBoldedDates() -> void -System.Windows.Forms.MonthCalendar.RemoveAnnuallyBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.RemoveBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.RemoveMonthlyBoldedDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.ScrollChange.get -> int -System.Windows.Forms.MonthCalendar.ScrollChange.set -> void -System.Windows.Forms.MonthCalendar.SelectionEnd.get -> System.DateTime -System.Windows.Forms.MonthCalendar.SelectionEnd.set -> void -System.Windows.Forms.MonthCalendar.SelectionRange.get -> System.Windows.Forms.SelectionRange! -System.Windows.Forms.MonthCalendar.SelectionRange.set -> void -System.Windows.Forms.MonthCalendar.SelectionStart.get -> System.DateTime -System.Windows.Forms.MonthCalendar.SelectionStart.set -> void -System.Windows.Forms.MonthCalendar.SetCalendarDimensions(int x, int y) -> void -System.Windows.Forms.MonthCalendar.SetDate(System.DateTime date) -> void -System.Windows.Forms.MonthCalendar.SetSelectionRange(System.DateTime date1, System.DateTime date2) -> void -System.Windows.Forms.MonthCalendar.ShowToday.get -> bool -System.Windows.Forms.MonthCalendar.ShowToday.set -> void -System.Windows.Forms.MonthCalendar.ShowTodayCircle.get -> bool -System.Windows.Forms.MonthCalendar.ShowTodayCircle.set -> void -System.Windows.Forms.MonthCalendar.ShowWeekNumbers.get -> bool -System.Windows.Forms.MonthCalendar.ShowWeekNumbers.set -> void -System.Windows.Forms.MonthCalendar.SingleMonthSize.get -> System.Drawing.Size -System.Windows.Forms.MonthCalendar.Size.get -> System.Drawing.Size -System.Windows.Forms.MonthCalendar.Size.set -> void -System.Windows.Forms.MonthCalendar.TextChanged -> System.EventHandler? -System.Windows.Forms.MonthCalendar.TitleBackColor.get -> System.Drawing.Color -System.Windows.Forms.MonthCalendar.TitleBackColor.set -> void -System.Windows.Forms.MonthCalendar.TitleForeColor.get -> System.Drawing.Color -System.Windows.Forms.MonthCalendar.TitleForeColor.set -> void -System.Windows.Forms.MonthCalendar.TodayDate.get -> System.DateTime -System.Windows.Forms.MonthCalendar.TodayDate.set -> void -System.Windows.Forms.MonthCalendar.TodayDateSet.get -> bool -System.Windows.Forms.MonthCalendar.TrailingForeColor.get -> System.Drawing.Color -System.Windows.Forms.MonthCalendar.TrailingForeColor.set -> void -System.Windows.Forms.MonthCalendar.UpdateBoldedDates() -> void -System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.Left = 1048576 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.Middle = 4194304 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.None = 0 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.Right = 2097152 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.XButton1 = 8388608 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseButtons.XButton2 = 16777216 -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseEventArgs -System.Windows.Forms.MouseEventArgs.Button.get -> System.Windows.Forms.MouseButtons -System.Windows.Forms.MouseEventArgs.Clicks.get -> int -System.Windows.Forms.MouseEventArgs.Delta.get -> int -System.Windows.Forms.MouseEventArgs.Location.get -> System.Drawing.Point -System.Windows.Forms.MouseEventArgs.MouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta) -> void -System.Windows.Forms.MouseEventArgs.X.get -> int -System.Windows.Forms.MouseEventArgs.Y.get -> int -System.Windows.Forms.MouseEventHandler -System.Windows.Forms.NativeWindow -System.Windows.Forms.NativeWindow.~NativeWindow() -> void -System.Windows.Forms.NativeWindow.AssignHandle(nint handle) -> void -System.Windows.Forms.NativeWindow.DefWndProc(ref System.Windows.Forms.Message m) -> void -System.Windows.Forms.NativeWindow.Handle.get -> nint -System.Windows.Forms.NativeWindow.NativeWindow() -> void -System.Windows.Forms.NavigateEventArgs -System.Windows.Forms.NavigateEventArgs.Forward.get -> bool -System.Windows.Forms.NavigateEventArgs.NavigateEventArgs(bool isForward) -> void -System.Windows.Forms.NavigateEventHandler -System.Windows.Forms.NodeLabelEditEventArgs -System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit.get -> bool -System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit.set -> void -System.Windows.Forms.NodeLabelEditEventArgs.Label.get -> string? -System.Windows.Forms.NodeLabelEditEventArgs.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.NodeLabelEditEventArgs.NodeLabelEditEventArgs(System.Windows.Forms.TreeNode? node) -> void -System.Windows.Forms.NodeLabelEditEventArgs.NodeLabelEditEventArgs(System.Windows.Forms.TreeNode? node, string? label) -> void -System.Windows.Forms.NodeLabelEditEventHandler -System.Windows.Forms.NotifyIcon -System.Windows.Forms.NotifyIcon.BalloonTipClicked -> System.EventHandler? -System.Windows.Forms.NotifyIcon.BalloonTipClosed -> System.EventHandler? -System.Windows.Forms.NotifyIcon.BalloonTipIcon.get -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.NotifyIcon.BalloonTipIcon.set -> void -System.Windows.Forms.NotifyIcon.BalloonTipShown -> System.EventHandler? -System.Windows.Forms.NotifyIcon.BalloonTipText.get -> string! -System.Windows.Forms.NotifyIcon.BalloonTipText.set -> void -System.Windows.Forms.NotifyIcon.BalloonTipTitle.get -> string! -System.Windows.Forms.NotifyIcon.BalloonTipTitle.set -> void -System.Windows.Forms.NotifyIcon.Click -> System.EventHandler? -System.Windows.Forms.NotifyIcon.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -System.Windows.Forms.NotifyIcon.ContextMenuStrip.set -> void -System.Windows.Forms.NotifyIcon.DoubleClick -> System.EventHandler? -System.Windows.Forms.NotifyIcon.Icon.get -> System.Drawing.Icon? -System.Windows.Forms.NotifyIcon.Icon.set -> void -System.Windows.Forms.NotifyIcon.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.NotifyIcon.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.NotifyIcon.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.NotifyIcon.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.NotifyIcon.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.NotifyIcon.NotifyIcon() -> void -System.Windows.Forms.NotifyIcon.NotifyIcon(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.NotifyIcon.ShowBalloonTip(int timeout) -> void -System.Windows.Forms.NotifyIcon.ShowBalloonTip(int timeout, string! tipTitle, string! tipText, System.Windows.Forms.ToolTipIcon tipIcon) -> void -System.Windows.Forms.NotifyIcon.Tag.get -> object? -System.Windows.Forms.NotifyIcon.Tag.set -> void -System.Windows.Forms.NotifyIcon.Text.get -> string! -System.Windows.Forms.NotifyIcon.Text.set -> void -System.Windows.Forms.NotifyIcon.Visible.get -> bool -System.Windows.Forms.NotifyIcon.Visible.set -> void -System.Windows.Forms.NumericUpDown -System.Windows.Forms.NumericUpDown.Accelerations.get -> System.Windows.Forms.NumericUpDownAccelerationCollection! -System.Windows.Forms.NumericUpDown.BeginInit() -> void -System.Windows.Forms.NumericUpDown.DecimalPlaces.get -> int -System.Windows.Forms.NumericUpDown.DecimalPlaces.set -> void -System.Windows.Forms.NumericUpDown.EndInit() -> void -System.Windows.Forms.NumericUpDown.Hexadecimal.get -> bool -System.Windows.Forms.NumericUpDown.Hexadecimal.set -> void -System.Windows.Forms.NumericUpDown.Increment.get -> decimal -System.Windows.Forms.NumericUpDown.Increment.set -> void -System.Windows.Forms.NumericUpDown.Maximum.get -> decimal -System.Windows.Forms.NumericUpDown.Maximum.set -> void -System.Windows.Forms.NumericUpDown.Minimum.get -> decimal -System.Windows.Forms.NumericUpDown.Minimum.set -> void -System.Windows.Forms.NumericUpDown.NumericUpDown() -> void -System.Windows.Forms.NumericUpDown.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.NumericUpDown.Padding.set -> void -System.Windows.Forms.NumericUpDown.PaddingChanged -> System.EventHandler? -System.Windows.Forms.NumericUpDown.ParseEditText() -> void -System.Windows.Forms.NumericUpDown.TextChanged -> System.EventHandler? -System.Windows.Forms.NumericUpDown.ThousandsSeparator.get -> bool -System.Windows.Forms.NumericUpDown.ThousandsSeparator.set -> void -System.Windows.Forms.NumericUpDown.Value.get -> decimal -System.Windows.Forms.NumericUpDown.Value.set -> void -System.Windows.Forms.NumericUpDown.ValueChanged -> System.EventHandler? -System.Windows.Forms.NumericUpDownAcceleration -System.Windows.Forms.NumericUpDownAcceleration.Increment.get -> decimal -System.Windows.Forms.NumericUpDownAcceleration.Increment.set -> void -System.Windows.Forms.NumericUpDownAcceleration.NumericUpDownAcceleration(int seconds, decimal increment) -> void -System.Windows.Forms.NumericUpDownAcceleration.Seconds.get -> int -System.Windows.Forms.NumericUpDownAcceleration.Seconds.set -> void -System.Windows.Forms.NumericUpDownAccelerationCollection -System.Windows.Forms.NumericUpDownAccelerationCollection.Add(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> void -System.Windows.Forms.NumericUpDownAccelerationCollection.AddRange(params System.Windows.Forms.NumericUpDownAcceleration![]! accelerations) -> void -System.Windows.Forms.NumericUpDownAccelerationCollection.Clear() -> void -System.Windows.Forms.NumericUpDownAccelerationCollection.Contains(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> bool -System.Windows.Forms.NumericUpDownAccelerationCollection.CopyTo(System.Windows.Forms.NumericUpDownAcceleration![]! array, int index) -> void -System.Windows.Forms.NumericUpDownAccelerationCollection.Count.get -> int -System.Windows.Forms.NumericUpDownAccelerationCollection.IsReadOnly.get -> bool -System.Windows.Forms.NumericUpDownAccelerationCollection.NumericUpDownAccelerationCollection() -> void -System.Windows.Forms.NumericUpDownAccelerationCollection.Remove(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> bool -System.Windows.Forms.NumericUpDownAccelerationCollection.this[int index].get -> System.Windows.Forms.NumericUpDownAcceleration! -System.Windows.Forms.OpacityConverter -System.Windows.Forms.OpacityConverter.OpacityConverter() -> void -System.Windows.Forms.OpenFileDialog -System.Windows.Forms.OpenFileDialog.Multiselect.get -> bool -System.Windows.Forms.OpenFileDialog.Multiselect.set -> void -System.Windows.Forms.OpenFileDialog.OpenFile() -> System.IO.Stream! -System.Windows.Forms.OpenFileDialog.OpenFileDialog() -> void -System.Windows.Forms.OpenFileDialog.ReadOnlyChecked.get -> bool -System.Windows.Forms.OpenFileDialog.ReadOnlyChecked.set -> void -System.Windows.Forms.OpenFileDialog.SafeFileName.get -> string! -System.Windows.Forms.OpenFileDialog.SafeFileNames.get -> string![]! -System.Windows.Forms.OpenFileDialog.SelectReadOnly.get -> bool -System.Windows.Forms.OpenFileDialog.SelectReadOnly.set -> void -System.Windows.Forms.OpenFileDialog.ShowPreview.get -> bool -System.Windows.Forms.OpenFileDialog.ShowPreview.set -> void -System.Windows.Forms.OpenFileDialog.ShowReadOnly.get -> bool -System.Windows.Forms.OpenFileDialog.ShowReadOnly.set -> void -System.Windows.Forms.Orientation -System.Windows.Forms.Orientation.Horizontal = 0 -> System.Windows.Forms.Orientation -System.Windows.Forms.Orientation.Vertical = 1 -> System.Windows.Forms.Orientation -System.Windows.Forms.OSFeature -System.Windows.Forms.OSFeature.OSFeature() -> void -System.Windows.Forms.OwnerDrawPropertyBag -System.Windows.Forms.OwnerDrawPropertyBag.BackColor.get -> System.Drawing.Color -System.Windows.Forms.OwnerDrawPropertyBag.BackColor.set -> void -System.Windows.Forms.OwnerDrawPropertyBag.Font.get -> System.Drawing.Font? -System.Windows.Forms.OwnerDrawPropertyBag.Font.set -> void -System.Windows.Forms.OwnerDrawPropertyBag.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.OwnerDrawPropertyBag.ForeColor.set -> void -System.Windows.Forms.OwnerDrawPropertyBag.OwnerDrawPropertyBag(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -System.Windows.Forms.PageSetupDialog -System.Windows.Forms.PageSetupDialog.AllowMargins.get -> bool -System.Windows.Forms.PageSetupDialog.AllowMargins.set -> void -System.Windows.Forms.PageSetupDialog.AllowOrientation.get -> bool -System.Windows.Forms.PageSetupDialog.AllowOrientation.set -> void -System.Windows.Forms.PageSetupDialog.AllowPaper.get -> bool -System.Windows.Forms.PageSetupDialog.AllowPaper.set -> void -System.Windows.Forms.PageSetupDialog.AllowPrinter.get -> bool -System.Windows.Forms.PageSetupDialog.AllowPrinter.set -> void -System.Windows.Forms.PageSetupDialog.Document.get -> System.Drawing.Printing.PrintDocument? -System.Windows.Forms.PageSetupDialog.Document.set -> void -System.Windows.Forms.PageSetupDialog.EnableMetric.get -> bool -System.Windows.Forms.PageSetupDialog.EnableMetric.set -> void -System.Windows.Forms.PageSetupDialog.MinMargins.get -> System.Drawing.Printing.Margins? -System.Windows.Forms.PageSetupDialog.MinMargins.set -> void -System.Windows.Forms.PageSetupDialog.PageSettings.get -> System.Drawing.Printing.PageSettings? -System.Windows.Forms.PageSetupDialog.PageSettings.set -> void -System.Windows.Forms.PageSetupDialog.PageSetupDialog() -> void -System.Windows.Forms.PageSetupDialog.PrinterSettings.get -> System.Drawing.Printing.PrinterSettings? -System.Windows.Forms.PageSetupDialog.PrinterSettings.set -> void -System.Windows.Forms.PageSetupDialog.ShowHelp.get -> bool -System.Windows.Forms.PageSetupDialog.ShowHelp.set -> void -System.Windows.Forms.PageSetupDialog.ShowNetwork.get -> bool -System.Windows.Forms.PageSetupDialog.ShowNetwork.set -> void -System.Windows.Forms.PaintEventArgs -System.Windows.Forms.PaintEventArgs.~PaintEventArgs() -> void -System.Windows.Forms.PaintEventArgs.ClipRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.PaintEventArgs.Dispose() -> void -System.Windows.Forms.PaintEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.PaintEventArgs.PaintEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipRect) -> void -System.Windows.Forms.PaintEventHandler -System.Windows.Forms.Panel -System.Windows.Forms.Panel.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.Panel.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.Panel.BorderStyle.set -> void -System.Windows.Forms.Panel.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Panel.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.Panel.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Panel.Panel() -> void -System.Windows.Forms.Panel.TabStop.get -> bool -System.Windows.Forms.Panel.TabStop.set -> void -System.Windows.Forms.Panel.TextChanged -> System.EventHandler? -System.Windows.Forms.PictureBox -System.Windows.Forms.PictureBox.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.PictureBox.BorderStyle.set -> void -System.Windows.Forms.PictureBox.CancelAsync() -> void -System.Windows.Forms.PictureBox.CausesValidation.get -> bool -System.Windows.Forms.PictureBox.CausesValidation.set -> void -System.Windows.Forms.PictureBox.CausesValidationChanged -> System.EventHandler -System.Windows.Forms.PictureBox.Enter -> System.EventHandler -System.Windows.Forms.PictureBox.FontChanged -> System.EventHandler -System.Windows.Forms.PictureBox.ForeColorChanged -> System.EventHandler -System.Windows.Forms.PictureBox.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.PictureBox.ImeMode.set -> void -System.Windows.Forms.PictureBox.ImeModeChanged -> System.EventHandler -System.Windows.Forms.PictureBox.KeyDown -> System.Windows.Forms.KeyEventHandler -System.Windows.Forms.PictureBox.KeyPress -> System.Windows.Forms.KeyPressEventHandler -System.Windows.Forms.PictureBox.KeyUp -> System.Windows.Forms.KeyEventHandler -System.Windows.Forms.PictureBox.Leave -> System.EventHandler -System.Windows.Forms.PictureBox.Load() -> void -System.Windows.Forms.PictureBox.LoadAsync() -> void -System.Windows.Forms.PictureBox.LoadCompleted -> System.ComponentModel.AsyncCompletedEventHandler -System.Windows.Forms.PictureBox.LoadProgressChanged -> System.ComponentModel.ProgressChangedEventHandler -System.Windows.Forms.PictureBox.PictureBox() -> void -System.Windows.Forms.PictureBox.RightToLeftChanged -> System.EventHandler -System.Windows.Forms.PictureBox.SizeMode.get -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBox.SizeMode.set -> void -System.Windows.Forms.PictureBox.SizeModeChanged -> System.EventHandler -System.Windows.Forms.PictureBox.TabIndex.get -> int -System.Windows.Forms.PictureBox.TabIndex.set -> void -System.Windows.Forms.PictureBox.TabIndexChanged -> System.EventHandler -System.Windows.Forms.PictureBox.TabStop.get -> bool -System.Windows.Forms.PictureBox.TabStop.set -> void -System.Windows.Forms.PictureBox.TabStopChanged -> System.EventHandler -System.Windows.Forms.PictureBox.TextChanged -> System.EventHandler -System.Windows.Forms.PictureBox.WaitOnLoad.get -> bool -System.Windows.Forms.PictureBox.WaitOnLoad.set -> void -System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBoxSizeMode.AutoSize = 2 -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBoxSizeMode.CenterImage = 3 -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBoxSizeMode.Normal = 0 -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBoxSizeMode.StretchImage = 1 -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PictureBoxSizeMode.Zoom = 4 -> System.Windows.Forms.PictureBoxSizeMode -System.Windows.Forms.PopupEventArgs -System.Windows.Forms.PopupEventArgs.AssociatedControl.get -> System.Windows.Forms.Control? -System.Windows.Forms.PopupEventArgs.AssociatedWindow.get -> System.Windows.Forms.IWin32Window? -System.Windows.Forms.PopupEventArgs.IsBalloon.get -> bool -System.Windows.Forms.PopupEventArgs.PopupEventArgs(System.Windows.Forms.IWin32Window? associatedWindow, System.Windows.Forms.Control? associatedControl, bool isBalloon, System.Drawing.Size size) -> void -System.Windows.Forms.PopupEventArgs.ToolTipSize.get -> System.Drawing.Size -System.Windows.Forms.PopupEventArgs.ToolTipSize.set -> void -System.Windows.Forms.PopupEventHandler -System.Windows.Forms.PowerLineStatus -System.Windows.Forms.PowerLineStatus.Offline = 0 -> System.Windows.Forms.PowerLineStatus -System.Windows.Forms.PowerLineStatus.Online = 1 -> System.Windows.Forms.PowerLineStatus -System.Windows.Forms.PowerLineStatus.Unknown = 255 -> System.Windows.Forms.PowerLineStatus -System.Windows.Forms.PowerState -System.Windows.Forms.PowerState.Hibernate = 1 -> System.Windows.Forms.PowerState -System.Windows.Forms.PowerState.Suspend = 0 -> System.Windows.Forms.PowerState -System.Windows.Forms.PowerStatus -System.Windows.Forms.PowerStatus.BatteryChargeStatus.get -> System.Windows.Forms.BatteryChargeStatus -System.Windows.Forms.PowerStatus.BatteryFullLifetime.get -> int -System.Windows.Forms.PowerStatus.BatteryLifePercent.get -> float -System.Windows.Forms.PowerStatus.BatteryLifeRemaining.get -> int -System.Windows.Forms.PowerStatus.PowerLineStatus.get -> System.Windows.Forms.PowerLineStatus -System.Windows.Forms.PreProcessControlState -System.Windows.Forms.PreProcessControlState.MessageNeeded = 1 -> System.Windows.Forms.PreProcessControlState -System.Windows.Forms.PreProcessControlState.MessageNotNeeded = 2 -> System.Windows.Forms.PreProcessControlState -System.Windows.Forms.PreProcessControlState.MessageProcessed = 0 -> System.Windows.Forms.PreProcessControlState -System.Windows.Forms.PreviewKeyDownEventArgs -System.Windows.Forms.PreviewKeyDownEventArgs.Alt.get -> bool -System.Windows.Forms.PreviewKeyDownEventArgs.Control.get -> bool -System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey.get -> bool -System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey.set -> void -System.Windows.Forms.PreviewKeyDownEventArgs.KeyCode.get -> System.Windows.Forms.Keys -System.Windows.Forms.PreviewKeyDownEventArgs.KeyData.get -> System.Windows.Forms.Keys -System.Windows.Forms.PreviewKeyDownEventArgs.KeyValue.get -> int -System.Windows.Forms.PreviewKeyDownEventArgs.Modifiers.get -> System.Windows.Forms.Keys -System.Windows.Forms.PreviewKeyDownEventArgs.PreviewKeyDownEventArgs(System.Windows.Forms.Keys keyData) -> void -System.Windows.Forms.PreviewKeyDownEventArgs.Shift.get -> bool -System.Windows.Forms.PreviewKeyDownEventHandler -System.Windows.Forms.PrintControllerWithStatusDialog -System.Windows.Forms.PrintControllerWithStatusDialog.PrintControllerWithStatusDialog(System.Drawing.Printing.PrintController! underlyingController) -> void -System.Windows.Forms.PrintControllerWithStatusDialog.PrintControllerWithStatusDialog(System.Drawing.Printing.PrintController! underlyingController, string! dialogTitle) -> void -System.Windows.Forms.PrintDialog -System.Windows.Forms.PrintDialog.AllowCurrentPage.get -> bool -System.Windows.Forms.PrintDialog.AllowCurrentPage.set -> void -System.Windows.Forms.PrintDialog.AllowPrintToFile.get -> bool -System.Windows.Forms.PrintDialog.AllowPrintToFile.set -> void -System.Windows.Forms.PrintDialog.AllowSelection.get -> bool -System.Windows.Forms.PrintDialog.AllowSelection.set -> void -System.Windows.Forms.PrintDialog.AllowSomePages.get -> bool -System.Windows.Forms.PrintDialog.AllowSomePages.set -> void -System.Windows.Forms.PrintDialog.Document.get -> System.Drawing.Printing.PrintDocument? -System.Windows.Forms.PrintDialog.Document.set -> void -System.Windows.Forms.PrintDialog.PrintDialog() -> void -System.Windows.Forms.PrintDialog.PrinterSettings.get -> System.Drawing.Printing.PrinterSettings! -System.Windows.Forms.PrintDialog.PrinterSettings.set -> void -System.Windows.Forms.PrintDialog.PrintToFile.get -> bool -System.Windows.Forms.PrintDialog.PrintToFile.set -> void -System.Windows.Forms.PrintDialog.ShowHelp.get -> bool -System.Windows.Forms.PrintDialog.ShowHelp.set -> void -System.Windows.Forms.PrintDialog.ShowNetwork.get -> bool -System.Windows.Forms.PrintDialog.ShowNetwork.set -> void -System.Windows.Forms.PrintDialog.UseEXDialog.get -> bool -System.Windows.Forms.PrintDialog.UseEXDialog.set -> void -System.Windows.Forms.PrintPreviewControl -System.Windows.Forms.PrintPreviewControl.AutoZoom.get -> bool -System.Windows.Forms.PrintPreviewControl.AutoZoom.set -> void -System.Windows.Forms.PrintPreviewControl.Columns.get -> int -System.Windows.Forms.PrintPreviewControl.Columns.set -> void -System.Windows.Forms.PrintPreviewControl.Document.get -> System.Drawing.Printing.PrintDocument? -System.Windows.Forms.PrintPreviewControl.Document.set -> void -System.Windows.Forms.PrintPreviewControl.InvalidatePreview() -> void -System.Windows.Forms.PrintPreviewControl.PrintPreviewControl() -> void -System.Windows.Forms.PrintPreviewControl.Rows.get -> int -System.Windows.Forms.PrintPreviewControl.Rows.set -> void -System.Windows.Forms.PrintPreviewControl.StartPage.get -> int -System.Windows.Forms.PrintPreviewControl.StartPage.set -> void -System.Windows.Forms.PrintPreviewControl.StartPageChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewControl.TabStop.get -> bool -System.Windows.Forms.PrintPreviewControl.TabStop.set -> void -System.Windows.Forms.PrintPreviewControl.TextChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewControl.UseAntiAlias.get -> bool -System.Windows.Forms.PrintPreviewControl.UseAntiAlias.set -> void -System.Windows.Forms.PrintPreviewControl.Zoom.get -> double -System.Windows.Forms.PrintPreviewControl.Zoom.set -> void -System.Windows.Forms.PrintPreviewDialog -System.Windows.Forms.PrintPreviewDialog.AcceptButton.get -> System.Windows.Forms.IButtonControl? -System.Windows.Forms.PrintPreviewDialog.AcceptButton.set -> void -System.Windows.Forms.PrintPreviewDialog.AccessibleDescription.get -> string? -System.Windows.Forms.PrintPreviewDialog.AccessibleDescription.set -> void -System.Windows.Forms.PrintPreviewDialog.AccessibleName.get -> string? -System.Windows.Forms.PrintPreviewDialog.AccessibleName.set -> void -System.Windows.Forms.PrintPreviewDialog.AccessibleRole.get -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.PrintPreviewDialog.AccessibleRole.set -> void -System.Windows.Forms.PrintPreviewDialog.AutoScale.get -> bool -System.Windows.Forms.PrintPreviewDialog.AutoScale.set -> void -System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin.set -> void -System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize.set -> void -System.Windows.Forms.PrintPreviewDialog.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.AutoValidateChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.BackColorChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.CancelButton.get -> System.Windows.Forms.IButtonControl? -System.Windows.Forms.PrintPreviewDialog.CancelButton.set -> void -System.Windows.Forms.PrintPreviewDialog.CausesValidation.get -> bool -System.Windows.Forms.PrintPreviewDialog.CausesValidation.set -> void -System.Windows.Forms.PrintPreviewDialog.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.ContextMenuStripChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.ControlBox.get -> bool -System.Windows.Forms.PrintPreviewDialog.ControlBox.set -> void -System.Windows.Forms.PrintPreviewDialog.CursorChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! -System.Windows.Forms.PrintPreviewDialog.DockChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! -System.Windows.Forms.PrintPreviewDialog.Document.get -> System.Drawing.Printing.PrintDocument? -System.Windows.Forms.PrintPreviewDialog.Document.set -> void -System.Windows.Forms.PrintPreviewDialog.Enabled.get -> bool -System.Windows.Forms.PrintPreviewDialog.Enabled.set -> void -System.Windows.Forms.PrintPreviewDialog.EnabledChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.FontChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.FormBorderStyle.get -> System.Windows.Forms.FormBorderStyle -System.Windows.Forms.PrintPreviewDialog.FormBorderStyle.set -> void -System.Windows.Forms.PrintPreviewDialog.HelpButton.get -> bool -System.Windows.Forms.PrintPreviewDialog.HelpButton.set -> void -System.Windows.Forms.PrintPreviewDialog.Icon.get -> System.Drawing.Icon? -System.Windows.Forms.PrintPreviewDialog.Icon.set -> void -System.Windows.Forms.PrintPreviewDialog.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.PrintPreviewDialog.ImeMode.set -> void -System.Windows.Forms.PrintPreviewDialog.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.IsMdiContainer.get -> bool -System.Windows.Forms.PrintPreviewDialog.IsMdiContainer.set -> void -System.Windows.Forms.PrintPreviewDialog.KeyPreview.get -> bool -System.Windows.Forms.PrintPreviewDialog.KeyPreview.set -> void -System.Windows.Forms.PrintPreviewDialog.Location.get -> System.Drawing.Point -System.Windows.Forms.PrintPreviewDialog.Location.set -> void -System.Windows.Forms.PrintPreviewDialog.LocationChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.Margin.get -> System.Windows.Forms.Padding -System.Windows.Forms.PrintPreviewDialog.Margin.set -> void -System.Windows.Forms.PrintPreviewDialog.MarginChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.MaximizeBox.get -> bool -System.Windows.Forms.PrintPreviewDialog.MaximizeBox.set -> void -System.Windows.Forms.PrintPreviewDialog.MaximumSize.get -> System.Drawing.Size -System.Windows.Forms.PrintPreviewDialog.MaximumSize.set -> void -System.Windows.Forms.PrintPreviewDialog.MaximumSizeChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.MinimizeBox.get -> bool -System.Windows.Forms.PrintPreviewDialog.MinimizeBox.set -> void -System.Windows.Forms.PrintPreviewDialog.MinimumSize.get -> System.Drawing.Size -System.Windows.Forms.PrintPreviewDialog.MinimumSize.set -> void -System.Windows.Forms.PrintPreviewDialog.MinimumSizeChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.Opacity.get -> double -System.Windows.Forms.PrintPreviewDialog.Opacity.set -> void -System.Windows.Forms.PrintPreviewDialog.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.PrintPreviewDialog.Padding.set -> void -System.Windows.Forms.PrintPreviewDialog.PaddingChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.PrintPreviewControl.get -> System.Windows.Forms.PrintPreviewControl! -System.Windows.Forms.PrintPreviewDialog.PrintPreviewDialog() -> void -System.Windows.Forms.PrintPreviewDialog.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar.get -> bool -System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar.set -> void -System.Windows.Forms.PrintPreviewDialog.Size.get -> System.Drawing.Size -System.Windows.Forms.PrintPreviewDialog.Size.set -> void -System.Windows.Forms.PrintPreviewDialog.SizeChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.SizeGripStyle.get -> System.Windows.Forms.SizeGripStyle -System.Windows.Forms.PrintPreviewDialog.SizeGripStyle.set -> void -System.Windows.Forms.PrintPreviewDialog.StartPosition.get -> System.Windows.Forms.FormStartPosition -System.Windows.Forms.PrintPreviewDialog.StartPosition.set -> void -System.Windows.Forms.PrintPreviewDialog.TabStop.get -> bool -System.Windows.Forms.PrintPreviewDialog.TabStop.set -> void -System.Windows.Forms.PrintPreviewDialog.TabStopChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.Tag.get -> object? -System.Windows.Forms.PrintPreviewDialog.Tag.set -> void -System.Windows.Forms.PrintPreviewDialog.TextChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.TopMost.get -> bool -System.Windows.Forms.PrintPreviewDialog.TopMost.set -> void -System.Windows.Forms.PrintPreviewDialog.TransparencyKey.get -> System.Drawing.Color -System.Windows.Forms.PrintPreviewDialog.TransparencyKey.set -> void -System.Windows.Forms.PrintPreviewDialog.UseAntiAlias.get -> bool -System.Windows.Forms.PrintPreviewDialog.UseAntiAlias.set -> void -System.Windows.Forms.PrintPreviewDialog.UseWaitCursor.get -> bool -System.Windows.Forms.PrintPreviewDialog.UseWaitCursor.set -> void -System.Windows.Forms.PrintPreviewDialog.Visible.get -> bool -System.Windows.Forms.PrintPreviewDialog.Visible.set -> void -System.Windows.Forms.PrintPreviewDialog.VisibleChanged -> System.EventHandler? -System.Windows.Forms.PrintPreviewDialog.WindowState.get -> System.Windows.Forms.FormWindowState -System.Windows.Forms.PrintPreviewDialog.WindowState.set -> void -System.Windows.Forms.ProfessionalColors -System.Windows.Forms.ProfessionalColorTable -System.Windows.Forms.ProfessionalColorTable.ProfessionalColorTable() -> void -System.Windows.Forms.ProfessionalColorTable.UseSystemColors.get -> bool -System.Windows.Forms.ProfessionalColorTable.UseSystemColors.set -> void -System.Windows.Forms.ProgressBar -System.Windows.Forms.ProgressBar.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.CausesValidation.get -> bool -System.Windows.Forms.ProgressBar.CausesValidation.set -> void -System.Windows.Forms.ProgressBar.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.DoubleClick -> System.EventHandler? -System.Windows.Forms.ProgressBar.Enter -> System.EventHandler? -System.Windows.Forms.ProgressBar.FontChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.ProgressBar.ImeMode.set -> void -System.Windows.Forms.ProgressBar.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.Increment(int value) -> void -System.Windows.Forms.ProgressBar.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ProgressBar.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.ProgressBar.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ProgressBar.Leave -> System.EventHandler? -System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed.get -> int -System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed.set -> void -System.Windows.Forms.ProgressBar.Maximum.get -> int -System.Windows.Forms.ProgressBar.Maximum.set -> void -System.Windows.Forms.ProgressBar.Minimum.get -> int -System.Windows.Forms.ProgressBar.Minimum.set -> void -System.Windows.Forms.ProgressBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ProgressBar.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.ProgressBar.Padding.set -> void -System.Windows.Forms.ProgressBar.PaddingChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ProgressBar.PerformStep() -> void -System.Windows.Forms.ProgressBar.ProgressBar() -> void -System.Windows.Forms.ProgressBar.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.Step.get -> int -System.Windows.Forms.ProgressBar.Step.set -> void -System.Windows.Forms.ProgressBar.Style.get -> System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.ProgressBar.Style.set -> void -System.Windows.Forms.ProgressBar.TabStop.get -> bool -System.Windows.Forms.ProgressBar.TabStop.set -> void -System.Windows.Forms.ProgressBar.TabStopChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.TextChanged -> System.EventHandler? -System.Windows.Forms.ProgressBar.Value.get -> int -System.Windows.Forms.ProgressBar.Value.set -> void -System.Windows.Forms.ProgressBarRenderer -System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.ProgressBarStyle.Blocks = 0 -> System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.ProgressBarStyle.Continuous = 1 -> System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.ProgressBarStyle.Marquee = 2 -> System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.PropertyGrid -System.Windows.Forms.PropertyGrid.BackgroundImageChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.BackgroundImageLayoutChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs.get -> bool -System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs.set -> void -System.Windows.Forms.PropertyGrid.CategoryForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CategoryForeColor.set -> void -System.Windows.Forms.PropertyGrid.CategorySplitterColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CategorySplitterColor.set -> void -System.Windows.Forms.PropertyGrid.CollapseAllGridItems() -> void -System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor.set -> void -System.Windows.Forms.PropertyGrid.CommandsBackColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsBackColor.set -> void -System.Windows.Forms.PropertyGrid.CommandsBorderColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsBorderColor.set -> void -System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor.set -> void -System.Windows.Forms.PropertyGrid.CommandsForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsForeColor.set -> void -System.Windows.Forms.PropertyGrid.CommandsLinkColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.CommandsLinkColor.set -> void -System.Windows.Forms.PropertyGrid.ContextMenuDefaultLocation.get -> System.Drawing.Point -System.Windows.Forms.PropertyGrid.DisabledItemForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.DisabledItemForeColor.set -> void -System.Windows.Forms.PropertyGrid.DrawFlatToolbar.get -> bool -System.Windows.Forms.PropertyGrid.DrawFlatToolbar.set -> void -System.Windows.Forms.PropertyGrid.ExpandAllGridItems() -> void -System.Windows.Forms.PropertyGrid.ForeColorChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.HelpBackColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.HelpBackColor.set -> void -System.Windows.Forms.PropertyGrid.HelpBorderColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.HelpBorderColor.set -> void -System.Windows.Forms.PropertyGrid.HelpForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.HelpForeColor.set -> void -System.Windows.Forms.PropertyGrid.KeyDown -> System.Windows.Forms.KeyEventHandler -System.Windows.Forms.PropertyGrid.KeyPress -> System.Windows.Forms.KeyPressEventHandler -System.Windows.Forms.PropertyGrid.KeyUp -> System.Windows.Forms.KeyEventHandler -System.Windows.Forms.PropertyGrid.LargeButtons.get -> bool -System.Windows.Forms.PropertyGrid.LargeButtons.set -> void -System.Windows.Forms.PropertyGrid.LineColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.LineColor.set -> void -System.Windows.Forms.PropertyGrid.MouseDown -> System.Windows.Forms.MouseEventHandler -System.Windows.Forms.PropertyGrid.MouseEnter -> System.EventHandler -System.Windows.Forms.PropertyGrid.MouseLeave -> System.EventHandler -System.Windows.Forms.PropertyGrid.MouseMove -> System.Windows.Forms.MouseEventHandler -System.Windows.Forms.PropertyGrid.MouseUp -> System.Windows.Forms.MouseEventHandler -System.Windows.Forms.PropertyGrid.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.PropertyGrid.Padding.set -> void -System.Windows.Forms.PropertyGrid.PaddingChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.PropertyGrid() -> void -System.Windows.Forms.PropertyGrid.PropertySort.get -> System.Windows.Forms.PropertySort -System.Windows.Forms.PropertyGrid.PropertySort.set -> void -System.Windows.Forms.PropertyGrid.PropertySortChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.PropertyTabChanged -> System.Windows.Forms.PropertyTabChangedEventHandler -System.Windows.Forms.PropertyGrid.PropertyTabCollection -System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type! propertyTabType) -> void -System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type! propertyTabType, System.ComponentModel.PropertyTabScope tabScope) -> void -System.Windows.Forms.PropertyGrid.PropertyTabCollection.Clear(System.ComponentModel.PropertyTabScope tabScope) -> void -System.Windows.Forms.PropertyGrid.PropertyTabCollection.Count.get -> int -System.Windows.Forms.PropertyGrid.PropertyTabCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.PropertyGrid.PropertyTabCollection.RemoveTabType(System.Type! propertyTabType) -> void -System.Windows.Forms.PropertyGrid.PropertyTabCollection.this[int index].get -> System.Windows.Forms.Design.PropertyTab! -System.Windows.Forms.PropertyGrid.PropertyValueChanged -> System.Windows.Forms.PropertyValueChangedEventHandler -System.Windows.Forms.PropertyGrid.RefreshTabs(System.ComponentModel.PropertyTabScope tabScope) -> void -System.Windows.Forms.PropertyGrid.ResetSelectedProperty() -> void -System.Windows.Forms.PropertyGrid.SelectedGridItemChanged -> System.Windows.Forms.SelectedGridItemChangedEventHandler -System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor.set -> void -System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor.set -> void -System.Windows.Forms.PropertyGrid.SelectedObjectsChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.ShowEventsButton(bool value) -> void -System.Windows.Forms.PropertyGrid.TextChanged -> System.EventHandler -System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering.get -> bool -System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering.set -> void -System.Windows.Forms.PropertyGrid.ViewBackColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.ViewBackColor.set -> void -System.Windows.Forms.PropertyGrid.ViewBorderColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.ViewBorderColor.set -> void -System.Windows.Forms.PropertyGrid.ViewForeColor.get -> System.Drawing.Color -System.Windows.Forms.PropertyGrid.ViewForeColor.set -> void -System.Windows.Forms.PropertyGridInternal.IRootGridEntry -System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes.get -> System.ComponentModel.AttributeCollection! -System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes.set -> void -System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ResetBrowsableAttributes() -> void -System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ShowCategories(bool showCategories) -> void -System.Windows.Forms.PropertyGridInternal.PropertiesTab -System.Windows.Forms.PropertyGridInternal.PropertiesTab.PropertiesTab() -> void -System.Windows.Forms.PropertyGridInternal.PropertyGridCommands -System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.PropertyGridCommands() -> void -System.Windows.Forms.PropertyManager -System.Windows.Forms.PropertyManager.PropertyManager() -> void -System.Windows.Forms.PropertySort -System.Windows.Forms.PropertySort.Alphabetical = 1 -> System.Windows.Forms.PropertySort -System.Windows.Forms.PropertySort.Categorized = 2 -> System.Windows.Forms.PropertySort -System.Windows.Forms.PropertySort.CategorizedAlphabetical = 3 -> System.Windows.Forms.PropertySort -System.Windows.Forms.PropertySort.NoSort = 0 -> System.Windows.Forms.PropertySort -System.Windows.Forms.PropertyTabChangedEventArgs -System.Windows.Forms.PropertyTabChangedEventArgs.NewTab.get -> System.Windows.Forms.Design.PropertyTab? -System.Windows.Forms.PropertyTabChangedEventArgs.OldTab.get -> System.Windows.Forms.Design.PropertyTab? -System.Windows.Forms.PropertyTabChangedEventArgs.PropertyTabChangedEventArgs(System.Windows.Forms.Design.PropertyTab? oldTab, System.Windows.Forms.Design.PropertyTab? newTab) -> void -System.Windows.Forms.PropertyTabChangedEventHandler -System.Windows.Forms.PropertyValueChangedEventArgs -System.Windows.Forms.PropertyValueChangedEventArgs.ChangedItem.get -> System.Windows.Forms.GridItem? -System.Windows.Forms.PropertyValueChangedEventArgs.OldValue.get -> object? -System.Windows.Forms.PropertyValueChangedEventArgs.PropertyValueChangedEventArgs(System.Windows.Forms.GridItem? changedItem, object? oldValue) -> void -System.Windows.Forms.PropertyValueChangedEventHandler -System.Windows.Forms.QueryAccessibilityHelpEventArgs -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword.get -> string? -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword.set -> void -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace.get -> string? -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace.set -> void -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString.get -> string? -System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString.set -> void -System.Windows.Forms.QueryAccessibilityHelpEventArgs.QueryAccessibilityHelpEventArgs() -> void -System.Windows.Forms.QueryAccessibilityHelpEventArgs.QueryAccessibilityHelpEventArgs(string? helpNamespace, string? helpString, string? helpKeyword) -> void -System.Windows.Forms.QueryAccessibilityHelpEventHandler -System.Windows.Forms.QueryContinueDragEventArgs -System.Windows.Forms.QueryContinueDragEventArgs.Action.get -> System.Windows.Forms.DragAction -System.Windows.Forms.QueryContinueDragEventArgs.Action.set -> void -System.Windows.Forms.QueryContinueDragEventArgs.EscapePressed.get -> bool -System.Windows.Forms.QueryContinueDragEventArgs.KeyState.get -> int -System.Windows.Forms.QueryContinueDragEventArgs.QueryContinueDragEventArgs(int keyState, bool escapePressed, System.Windows.Forms.DragAction action) -> void -System.Windows.Forms.QueryContinueDragEventHandler -System.Windows.Forms.QuestionEventArgs -System.Windows.Forms.QuestionEventArgs.QuestionEventArgs() -> void -System.Windows.Forms.QuestionEventArgs.QuestionEventArgs(bool response) -> void -System.Windows.Forms.QuestionEventArgs.Response.get -> bool -System.Windows.Forms.QuestionEventArgs.Response.set -> void -System.Windows.Forms.QuestionEventHandler -System.Windows.Forms.RadioButton -System.Windows.Forms.RadioButton.Appearance.get -> System.Windows.Forms.Appearance -System.Windows.Forms.RadioButton.Appearance.set -> void -System.Windows.Forms.RadioButton.AppearanceChanged -> System.EventHandler? -System.Windows.Forms.RadioButton.AutoCheck.get -> bool -System.Windows.Forms.RadioButton.AutoCheck.set -> void -System.Windows.Forms.RadioButton.CheckAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.RadioButton.CheckAlign.set -> void -System.Windows.Forms.RadioButton.Checked.get -> bool -System.Windows.Forms.RadioButton.Checked.set -> void -System.Windows.Forms.RadioButton.CheckedChanged -> System.EventHandler? -System.Windows.Forms.RadioButton.DoubleClick -> System.EventHandler? -System.Windows.Forms.RadioButton.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.RadioButton.PerformClick() -> void -System.Windows.Forms.RadioButton.RadioButton() -> void -System.Windows.Forms.RadioButton.RadioButtonAccessibleObject -System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.RadioButtonAccessibleObject(System.Windows.Forms.RadioButton! owner) -> void -System.Windows.Forms.RadioButton.TabStop.get -> bool -System.Windows.Forms.RadioButton.TabStop.set -> void -System.Windows.Forms.RadioButtonRenderer -System.Windows.Forms.RelatedImageListAttribute -System.Windows.Forms.RelatedImageListAttribute.RelatedImageList.get -> string? -System.Windows.Forms.RelatedImageListAttribute.RelatedImageListAttribute(string? relatedImageList) -> void -System.Windows.Forms.RetrieveVirtualItemEventArgs -System.Windows.Forms.RetrieveVirtualItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem? -System.Windows.Forms.RetrieveVirtualItemEventArgs.Item.set -> void -System.Windows.Forms.RetrieveVirtualItemEventArgs.ItemIndex.get -> int -System.Windows.Forms.RetrieveVirtualItemEventArgs.RetrieveVirtualItemEventArgs(int itemIndex) -> void -System.Windows.Forms.RetrieveVirtualItemEventHandler -System.Windows.Forms.RichTextBox -System.Windows.Forms.RichTextBox.AutoWordSelection.get -> bool -System.Windows.Forms.RichTextBox.AutoWordSelection.set -> void -System.Windows.Forms.RichTextBox.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.RichTextBox.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.RichTextBox.BulletIndent.get -> int -System.Windows.Forms.RichTextBox.BulletIndent.set -> void -System.Windows.Forms.RichTextBox.CanPaste(System.Windows.Forms.DataFormats.Format! clipFormat) -> bool -System.Windows.Forms.RichTextBox.CanRedo.get -> bool -System.Windows.Forms.RichTextBox.ContentsResized -> System.Windows.Forms.ContentsResizedEventHandler? -System.Windows.Forms.RichTextBox.DetectUrls.get -> bool -System.Windows.Forms.RichTextBox.DetectUrls.set -> void -System.Windows.Forms.RichTextBox.DragDrop -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.RichTextBox.DragEnter -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.RichTextBox.DragLeave -> System.EventHandler? -System.Windows.Forms.RichTextBox.DragOver -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.RichTextBox.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void -System.Windows.Forms.RichTextBox.EnableAutoDragDrop.get -> bool -System.Windows.Forms.RichTextBox.EnableAutoDragDrop.set -> void -System.Windows.Forms.RichTextBox.Find(char[]! characterSet) -> int -System.Windows.Forms.RichTextBox.Find(char[]! characterSet, int start) -> int -System.Windows.Forms.RichTextBox.Find(char[]! characterSet, int start, int end) -> int -System.Windows.Forms.RichTextBox.Find(string! str) -> int -System.Windows.Forms.RichTextBox.Find(string! str, int start, int end, System.Windows.Forms.RichTextBoxFinds options) -> int -System.Windows.Forms.RichTextBox.Find(string! str, int start, System.Windows.Forms.RichTextBoxFinds options) -> int -System.Windows.Forms.RichTextBox.Find(string! str, System.Windows.Forms.RichTextBoxFinds options) -> int -System.Windows.Forms.RichTextBox.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.RichTextBox.HScroll -> System.EventHandler? -System.Windows.Forms.RichTextBox.ImeChange -> System.EventHandler? -System.Windows.Forms.RichTextBox.LanguageOption.get -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBox.LanguageOption.set -> void -System.Windows.Forms.RichTextBox.LinkClicked -> System.Windows.Forms.LinkClickedEventHandler? -System.Windows.Forms.RichTextBox.LoadFile(string! path) -> void -System.Windows.Forms.RichTextBox.LoadFile(string! path, System.Windows.Forms.RichTextBoxStreamType fileType) -> void -System.Windows.Forms.RichTextBox.LoadFile(System.IO.Stream! data, System.Windows.Forms.RichTextBoxStreamType fileType) -> void -System.Windows.Forms.RichTextBox.Paste(System.Windows.Forms.DataFormats.Format! clipFormat) -> void -System.Windows.Forms.RichTextBox.Protected -> System.EventHandler? -System.Windows.Forms.RichTextBox.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? -System.Windows.Forms.RichTextBox.Redo() -> void -System.Windows.Forms.RichTextBox.RedoActionName.get -> string! -System.Windows.Forms.RichTextBox.RichTextBox() -> void -System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled.get -> bool -System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled.set -> void -System.Windows.Forms.RichTextBox.RightMargin.get -> int -System.Windows.Forms.RichTextBox.RightMargin.set -> void -System.Windows.Forms.RichTextBox.Rtf.get -> string? -System.Windows.Forms.RichTextBox.Rtf.set -> void -System.Windows.Forms.RichTextBox.SaveFile(string! path) -> void -System.Windows.Forms.RichTextBox.SaveFile(string! path, System.Windows.Forms.RichTextBoxStreamType fileType) -> void -System.Windows.Forms.RichTextBox.SaveFile(System.IO.Stream! data, System.Windows.Forms.RichTextBoxStreamType fileType) -> void -System.Windows.Forms.RichTextBox.ScrollBars.get -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBox.ScrollBars.set -> void -System.Windows.Forms.RichTextBox.SelectedRtf.get -> string! -System.Windows.Forms.RichTextBox.SelectedRtf.set -> void -System.Windows.Forms.RichTextBox.SelectionAlignment.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.RichTextBox.SelectionAlignment.set -> void -System.Windows.Forms.RichTextBox.SelectionBackColor.get -> System.Drawing.Color -System.Windows.Forms.RichTextBox.SelectionBackColor.set -> void -System.Windows.Forms.RichTextBox.SelectionBullet.get -> bool -System.Windows.Forms.RichTextBox.SelectionBullet.set -> void -System.Windows.Forms.RichTextBox.SelectionChanged -> System.EventHandler? -System.Windows.Forms.RichTextBox.SelectionCharOffset.get -> int -System.Windows.Forms.RichTextBox.SelectionCharOffset.set -> void -System.Windows.Forms.RichTextBox.SelectionColor.get -> System.Drawing.Color -System.Windows.Forms.RichTextBox.SelectionColor.set -> void -System.Windows.Forms.RichTextBox.SelectionFont.get -> System.Drawing.Font? -System.Windows.Forms.RichTextBox.SelectionFont.set -> void -System.Windows.Forms.RichTextBox.SelectionHangingIndent.get -> int -System.Windows.Forms.RichTextBox.SelectionHangingIndent.set -> void -System.Windows.Forms.RichTextBox.SelectionIndent.get -> int -System.Windows.Forms.RichTextBox.SelectionIndent.set -> void -System.Windows.Forms.RichTextBox.SelectionProtected.get -> bool -System.Windows.Forms.RichTextBox.SelectionProtected.set -> void -System.Windows.Forms.RichTextBox.SelectionRightIndent.get -> int -System.Windows.Forms.RichTextBox.SelectionRightIndent.set -> void -System.Windows.Forms.RichTextBox.SelectionTabs.get -> int[]! -System.Windows.Forms.RichTextBox.SelectionTabs.set -> void -System.Windows.Forms.RichTextBox.SelectionType.get -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBox.ShowSelectionMargin.get -> bool -System.Windows.Forms.RichTextBox.ShowSelectionMargin.set -> void -System.Windows.Forms.RichTextBox.UndoActionName.get -> string! -System.Windows.Forms.RichTextBox.VScroll -> System.EventHandler? -System.Windows.Forms.RichTextBox.ZoomFactor.get -> float -System.Windows.Forms.RichTextBox.ZoomFactor.set -> void -System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxFinds.MatchCase = 4 -> System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxFinds.NoHighlight = 8 -> System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxFinds.None = 0 -> System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxFinds.Reverse = 16 -> System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxFinds.WholeWord = 2 -> System.Windows.Forms.RichTextBoxFinds -System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.AutoFont = 2 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.AutoFontSizeAdjust = 16 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.AutoKeyboard = 1 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.DualFont = 128 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.ImeAlwaysSendNotify = 8 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.ImeCancelComplete = 4 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxLanguageOptions.UIFonts = 32 -> System.Windows.Forms.RichTextBoxLanguageOptions -System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.Both = 3 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth = 19 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal = 17 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical = 18 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.Horizontal = 1 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.None = 0 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxScrollBars.Vertical = 2 -> System.Windows.Forms.RichTextBoxScrollBars -System.Windows.Forms.RichTextBoxSelectionAttribute -System.Windows.Forms.RichTextBoxSelectionAttribute.All = 1 -> System.Windows.Forms.RichTextBoxSelectionAttribute -System.Windows.Forms.RichTextBoxSelectionAttribute.Mixed = -1 -> System.Windows.Forms.RichTextBoxSelectionAttribute -System.Windows.Forms.RichTextBoxSelectionAttribute.None = 0 -> System.Windows.Forms.RichTextBoxSelectionAttribute -System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxSelectionTypes.Empty = 0 -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxSelectionTypes.MultiChar = 4 -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxSelectionTypes.MultiObject = 8 -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxSelectionTypes.Object = 2 -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxSelectionTypes.Text = 1 -> System.Windows.Forms.RichTextBoxSelectionTypes -System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxStreamType.PlainText = 1 -> System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxStreamType.RichNoOleObjs = 2 -> System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxStreamType.RichText = 0 -> System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxStreamType.TextTextOleObjs = 3 -> System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxStreamType.UnicodePlainText = 4 -> System.Windows.Forms.RichTextBoxStreamType -System.Windows.Forms.RichTextBoxWordPunctuations -System.Windows.Forms.RichTextBoxWordPunctuations.All = 896 -> System.Windows.Forms.RichTextBoxWordPunctuations -System.Windows.Forms.RichTextBoxWordPunctuations.Custom = 512 -> System.Windows.Forms.RichTextBoxWordPunctuations -System.Windows.Forms.RichTextBoxWordPunctuations.Level1 = 128 -> System.Windows.Forms.RichTextBoxWordPunctuations -System.Windows.Forms.RichTextBoxWordPunctuations.Level2 = 256 -> System.Windows.Forms.RichTextBoxWordPunctuations -System.Windows.Forms.RightToLeft -System.Windows.Forms.RightToLeft.Inherit = 2 -> System.Windows.Forms.RightToLeft -System.Windows.Forms.RightToLeft.No = 0 -> System.Windows.Forms.RightToLeft -System.Windows.Forms.RightToLeft.Yes = 1 -> System.Windows.Forms.RightToLeft -System.Windows.Forms.RowStyle -System.Windows.Forms.RowStyle.Height.get -> float -System.Windows.Forms.RowStyle.Height.set -> void -System.Windows.Forms.RowStyle.RowStyle() -> void -System.Windows.Forms.RowStyle.RowStyle(System.Windows.Forms.SizeType sizeType) -> void -System.Windows.Forms.RowStyle.RowStyle(System.Windows.Forms.SizeType sizeType, float height) -> void -System.Windows.Forms.SaveFileDialog -System.Windows.Forms.SaveFileDialog.CheckWriteAccess.get -> bool -System.Windows.Forms.SaveFileDialog.CheckWriteAccess.set -> void -System.Windows.Forms.SaveFileDialog.CreatePrompt.get -> bool -System.Windows.Forms.SaveFileDialog.CreatePrompt.set -> void -System.Windows.Forms.SaveFileDialog.ExpandedMode.get -> bool -System.Windows.Forms.SaveFileDialog.ExpandedMode.set -> void -System.Windows.Forms.SaveFileDialog.OpenFile() -> System.IO.Stream! -System.Windows.Forms.SaveFileDialog.OverwritePrompt.get -> bool -System.Windows.Forms.SaveFileDialog.OverwritePrompt.set -> void -System.Windows.Forms.SaveFileDialog.SaveFileDialog() -> void -System.Windows.Forms.Screen -System.Windows.Forms.Screen.BitsPerPixel.get -> int -System.Windows.Forms.Screen.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.Screen.DeviceName.get -> string! -System.Windows.Forms.Screen.Primary.get -> bool -System.Windows.Forms.Screen.WorkingArea.get -> System.Drawing.Rectangle -System.Windows.Forms.ScrollableControl -System.Windows.Forms.ScrollableControl.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.ScrollableControl.AutoScrollMargin.set -> void -System.Windows.Forms.ScrollableControl.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.ScrollableControl.AutoScrollMinSize.set -> void -System.Windows.Forms.ScrollableControl.AutoScrollPosition.get -> System.Drawing.Point -System.Windows.Forms.ScrollableControl.AutoScrollPosition.set -> void -System.Windows.Forms.ScrollableControl.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! -System.Windows.Forms.ScrollableControl.DockPaddingEdges -System.Windows.Forms.ScrollableControl.DockPaddingEdges.All.get -> int -System.Windows.Forms.ScrollableControl.DockPaddingEdges.All.set -> void -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom.get -> int -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom.set -> void -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left.get -> int -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left.set -> void -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right.get -> int -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right.set -> void -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top.get -> int -System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top.set -> void -System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter -System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.DockPaddingEdgesConverter() -> void -System.Windows.Forms.ScrollableControl.GetScrollState(int bit) -> bool -System.Windows.Forms.ScrollableControl.HorizontalScroll.get -> System.Windows.Forms.HScrollProperties! -System.Windows.Forms.ScrollableControl.HScroll.get -> bool -System.Windows.Forms.ScrollableControl.HScroll.set -> void -System.Windows.Forms.ScrollableControl.Scroll -> System.Windows.Forms.ScrollEventHandler? -System.Windows.Forms.ScrollableControl.ScrollableControl() -> void -System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control? activeControl) -> void -System.Windows.Forms.ScrollableControl.SetAutoScrollMargin(int x, int y) -> void -System.Windows.Forms.ScrollableControl.SetDisplayRectLocation(int x, int y) -> void -System.Windows.Forms.ScrollableControl.SetScrollState(int bit, bool value) -> void -System.Windows.Forms.ScrollableControl.VerticalScroll.get -> System.Windows.Forms.VScrollProperties! -System.Windows.Forms.ScrollableControl.VScroll.get -> bool -System.Windows.Forms.ScrollableControl.VScroll.set -> void -System.Windows.Forms.ScrollBar -System.Windows.Forms.ScrollBar.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.BackColorChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.Click -> System.EventHandler? -System.Windows.Forms.ScrollBar.DoubleClick -> System.EventHandler? -System.Windows.Forms.ScrollBar.FontChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.ScrollBar.ImeMode.set -> void -System.Windows.Forms.ScrollBar.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.LargeChange.get -> int -System.Windows.Forms.ScrollBar.LargeChange.set -> void -System.Windows.Forms.ScrollBar.Maximum.get -> int -System.Windows.Forms.ScrollBar.Maximum.set -> void -System.Windows.Forms.ScrollBar.Minimum.get -> int -System.Windows.Forms.ScrollBar.Minimum.set -> void -System.Windows.Forms.ScrollBar.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ScrollBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ScrollBar.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ScrollBar.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ScrollBar.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ScrollBar.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange.get -> bool -System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange.set -> void -System.Windows.Forms.ScrollBar.Scroll -> System.Windows.Forms.ScrollEventHandler? -System.Windows.Forms.ScrollBar.ScrollBar() -> void -System.Windows.Forms.ScrollBar.SmallChange.get -> int -System.Windows.Forms.ScrollBar.SmallChange.set -> void -System.Windows.Forms.ScrollBar.TabStop.get -> bool -System.Windows.Forms.ScrollBar.TabStop.set -> void -System.Windows.Forms.ScrollBar.TextChanged -> System.EventHandler? -System.Windows.Forms.ScrollBar.UpdateScrollInfo() -> void -System.Windows.Forms.ScrollBar.Value.get -> int -System.Windows.Forms.ScrollBar.Value.set -> void -System.Windows.Forms.ScrollBar.ValueChanged -> System.EventHandler? -System.Windows.Forms.ScrollBarRenderer -System.Windows.Forms.ScrollBars -System.Windows.Forms.ScrollBars.Both = 3 -> System.Windows.Forms.ScrollBars -System.Windows.Forms.ScrollBars.Horizontal = 1 -> System.Windows.Forms.ScrollBars -System.Windows.Forms.ScrollBars.None = 0 -> System.Windows.Forms.ScrollBars -System.Windows.Forms.ScrollBars.Vertical = 2 -> System.Windows.Forms.ScrollBars -System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Down = 1 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Left = 2 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Max = 3 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Min = 0 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Right = 3 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollButton.Up = 0 -> System.Windows.Forms.ScrollButton -System.Windows.Forms.ScrollEventArgs -System.Windows.Forms.ScrollEventArgs.NewValue.get -> int -System.Windows.Forms.ScrollEventArgs.NewValue.set -> void -System.Windows.Forms.ScrollEventArgs.OldValue.get -> int -System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int newValue) -> void -System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int newValue, System.Windows.Forms.ScrollOrientation scroll) -> void -System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int oldValue, int newValue) -> void -System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int oldValue, int newValue, System.Windows.Forms.ScrollOrientation scroll) -> void -System.Windows.Forms.ScrollEventArgs.ScrollOrientation.get -> System.Windows.Forms.ScrollOrientation -System.Windows.Forms.ScrollEventArgs.Type.get -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventHandler -System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.EndScroll = 8 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.First = 6 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.LargeDecrement = 2 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.LargeIncrement = 3 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.Last = 7 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.SmallDecrement = 0 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.SmallIncrement = 1 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.ThumbPosition = 4 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollEventType.ThumbTrack = 5 -> System.Windows.Forms.ScrollEventType -System.Windows.Forms.ScrollOrientation -System.Windows.Forms.ScrollOrientation.HorizontalScroll = 0 -> System.Windows.Forms.ScrollOrientation -System.Windows.Forms.ScrollOrientation.VerticalScroll = 1 -> System.Windows.Forms.ScrollOrientation -System.Windows.Forms.ScrollProperties -System.Windows.Forms.ScrollProperties.Enabled.get -> bool -System.Windows.Forms.ScrollProperties.Enabled.set -> void -System.Windows.Forms.ScrollProperties.LargeChange.get -> int -System.Windows.Forms.ScrollProperties.LargeChange.set -> void -System.Windows.Forms.ScrollProperties.Maximum.get -> int -System.Windows.Forms.ScrollProperties.Maximum.set -> void -System.Windows.Forms.ScrollProperties.Minimum.get -> int -System.Windows.Forms.ScrollProperties.Minimum.set -> void -System.Windows.Forms.ScrollProperties.ParentControl.get -> System.Windows.Forms.ScrollableControl? -System.Windows.Forms.ScrollProperties.ScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void -System.Windows.Forms.ScrollProperties.SmallChange.get -> int -System.Windows.Forms.ScrollProperties.SmallChange.set -> void -System.Windows.Forms.ScrollProperties.Value.get -> int -System.Windows.Forms.ScrollProperties.Value.set -> void -System.Windows.Forms.ScrollProperties.Visible.get -> bool -System.Windows.Forms.ScrollProperties.Visible.set -> void -System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchDirectionHint.Down = 40 -> System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchDirectionHint.Left = 37 -> System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchDirectionHint.Right = 39 -> System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchDirectionHint.Up = 38 -> System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchForVirtualItemEventArgs -System.Windows.Forms.SearchForVirtualItemEventArgs.Direction.get -> System.Windows.Forms.SearchDirectionHint -System.Windows.Forms.SearchForVirtualItemEventArgs.IncludeSubItemsInSearch.get -> bool -System.Windows.Forms.SearchForVirtualItemEventArgs.Index.get -> int -System.Windows.Forms.SearchForVirtualItemEventArgs.Index.set -> void -System.Windows.Forms.SearchForVirtualItemEventArgs.IsPrefixSearch.get -> bool -System.Windows.Forms.SearchForVirtualItemEventArgs.IsTextSearch.get -> bool -System.Windows.Forms.SearchForVirtualItemEventArgs.SearchForVirtualItemEventArgs(bool isTextSearch, bool isPrefixSearch, bool includeSubItemsInSearch, string? text, System.Drawing.Point startingPoint, System.Windows.Forms.SearchDirectionHint direction, int startIndex) -> void -System.Windows.Forms.SearchForVirtualItemEventArgs.StartIndex.get -> int -System.Windows.Forms.SearchForVirtualItemEventArgs.StartingPoint.get -> System.Drawing.Point -System.Windows.Forms.SearchForVirtualItemEventArgs.Text.get -> string? -System.Windows.Forms.SearchForVirtualItemEventHandler -System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Alias = 4 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Computer = 9 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.DeletedAccount = 6 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Domain = 3 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Group = 2 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Invalid = 7 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.Unknown = 8 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.User = 1 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SecurityIDType.WellKnownGroup = 5 -> System.Windows.Forms.SecurityIDType -System.Windows.Forms.SelectedGridItemChangedEventArgs -System.Windows.Forms.SelectedGridItemChangedEventArgs.NewSelection.get -> System.Windows.Forms.GridItem? -System.Windows.Forms.SelectedGridItemChangedEventArgs.OldSelection.get -> System.Windows.Forms.GridItem? -System.Windows.Forms.SelectedGridItemChangedEventArgs.SelectedGridItemChangedEventArgs(System.Windows.Forms.GridItem? oldSel, System.Windows.Forms.GridItem? newSel) -> void -System.Windows.Forms.SelectedGridItemChangedEventHandler -System.Windows.Forms.SelectionMode -System.Windows.Forms.SelectionMode.MultiExtended = 3 -> System.Windows.Forms.SelectionMode -System.Windows.Forms.SelectionMode.MultiSimple = 2 -> System.Windows.Forms.SelectionMode -System.Windows.Forms.SelectionMode.None = 0 -> System.Windows.Forms.SelectionMode -System.Windows.Forms.SelectionMode.One = 1 -> System.Windows.Forms.SelectionMode -System.Windows.Forms.SelectionRange -System.Windows.Forms.SelectionRange.End.get -> System.DateTime -System.Windows.Forms.SelectionRange.End.set -> void -System.Windows.Forms.SelectionRange.SelectionRange() -> void -System.Windows.Forms.SelectionRange.SelectionRange(System.DateTime lower, System.DateTime upper) -> void -System.Windows.Forms.SelectionRange.SelectionRange(System.Windows.Forms.SelectionRange! range) -> void -System.Windows.Forms.SelectionRange.Start.get -> System.DateTime -System.Windows.Forms.SelectionRange.Start.set -> void -System.Windows.Forms.SelectionRangeConverter -System.Windows.Forms.SelectionRangeConverter.SelectionRangeConverter() -> void -System.Windows.Forms.SendKeys -System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt0 = 262192 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt1 = 262193 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt2 = 262194 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt3 = 262195 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt4 = 262196 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt5 = 262197 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt6 = 262198 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt7 = 262199 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt8 = 262200 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Alt9 = 262201 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltBksp = 262152 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltDownArrow = 262184 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF1 = 262256 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF10 = 262265 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF11 = 262266 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF12 = 262267 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF2 = 262257 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF3 = 262258 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF4 = 262259 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF5 = 262260 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF6 = 262261 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF7 = 262262 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF8 = 262263 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltF9 = 262264 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltLeftArrow = 262181 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltRightArrow = 262183 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.AltUpArrow = 262182 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl0 = 131120 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl1 = 131121 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl2 = 131122 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl3 = 131123 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl4 = 131124 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl5 = 131125 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl6 = 131126 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl7 = 131127 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl8 = 131128 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ctrl9 = 131129 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlA = 131137 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlB = 131138 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlC = 131139 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlD = 131140 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlDel = 131118 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlE = 131141 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF = 131142 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF1 = 131184 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF10 = 131193 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF11 = 131194 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF12 = 131195 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF2 = 131185 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF3 = 131186 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF4 = 131187 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF5 = 131188 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF6 = 131189 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF7 = 131190 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF8 = 131191 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlF9 = 131192 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlG = 131143 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlH = 131144 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlI = 131145 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlIns = 131117 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlJ = 131146 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlK = 131147 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlL = 131148 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlM = 131149 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlN = 131150 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlO = 131151 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlP = 131152 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlQ = 131153 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlR = 131154 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlS = 131155 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift0 = 196656 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift1 = 196657 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift2 = 196658 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift3 = 196659 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift4 = 196660 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift5 = 196661 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift6 = 196662 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift7 = 196663 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift8 = 196664 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShift9 = 196665 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftA = 196673 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftB = 196674 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftC = 196675 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftD = 196676 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftE = 196677 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF = 196678 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF1 = 196720 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF10 = 196729 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF11 = 196730 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF12 = 196731 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF2 = 196721 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF3 = 196722 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF4 = 196723 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF5 = 196724 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF6 = 196725 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF7 = 196726 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF8 = 196727 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftF9 = 196728 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftG = 196679 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftH = 196680 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftI = 196681 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftJ = 196682 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftK = 196683 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftL = 196684 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftM = 196685 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftN = 196686 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftO = 196687 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftP = 196688 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftQ = 196689 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftR = 196690 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftS = 196691 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftT = 196692 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftU = 196693 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftV = 196694 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftW = 196695 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftX = 196696 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftY = 196697 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlShiftZ = 196698 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlT = 131156 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlU = 131157 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlV = 131158 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlW = 131159 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlX = 131160 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlY = 131161 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.CtrlZ = 131162 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Del = 46 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F1 = 112 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F10 = 121 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F11 = 122 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F12 = 123 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F2 = 113 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F3 = 114 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F4 = 115 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F5 = 116 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F6 = 117 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F7 = 118 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F8 = 119 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.F9 = 120 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.Ins = 45 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.None = 0 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftDel = 65582 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF1 = 65648 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF10 = 65657 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF11 = 65658 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF12 = 65659 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF2 = 65649 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF3 = 65650 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF4 = 65651 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF5 = 65652 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF6 = 65653 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF7 = 65654 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF8 = 65655 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftF9 = 65656 -> System.Windows.Forms.Shortcut -System.Windows.Forms.Shortcut.ShiftIns = 65581 -> System.Windows.Forms.Shortcut -System.Windows.Forms.SizeGripStyle -System.Windows.Forms.SizeGripStyle.Auto = 0 -> System.Windows.Forms.SizeGripStyle -System.Windows.Forms.SizeGripStyle.Hide = 2 -> System.Windows.Forms.SizeGripStyle -System.Windows.Forms.SizeGripStyle.Show = 1 -> System.Windows.Forms.SizeGripStyle -System.Windows.Forms.SizeType -System.Windows.Forms.SizeType.Absolute = 1 -> System.Windows.Forms.SizeType -System.Windows.Forms.SizeType.AutoSize = 0 -> System.Windows.Forms.SizeType -System.Windows.Forms.SizeType.Percent = 2 -> System.Windows.Forms.SizeType -System.Windows.Forms.SortOrder -System.Windows.Forms.SortOrder.Ascending = 1 -> System.Windows.Forms.SortOrder -System.Windows.Forms.SortOrder.Descending = 2 -> System.Windows.Forms.SortOrder -System.Windows.Forms.SortOrder.None = 0 -> System.Windows.Forms.SortOrder -System.Windows.Forms.SplitContainer -System.Windows.Forms.SplitContainer.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.SplitContainer.AutoScrollMargin.set -> void -System.Windows.Forms.SplitContainer.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.SplitContainer.AutoScrollMinSize.set -> void -System.Windows.Forms.SplitContainer.AutoScrollPosition.get -> System.Drawing.Point -System.Windows.Forms.SplitContainer.AutoScrollPosition.set -> void -System.Windows.Forms.SplitContainer.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.SplitContainer.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.SplitContainer.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.SplitContainer.BeginInit() -> void -System.Windows.Forms.SplitContainer.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.SplitContainer.BorderStyle.set -> void -System.Windows.Forms.SplitContainer.ControlAdded -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.SplitContainer.ControlRemoved -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.SplitContainer.Controls.get -> System.Windows.Forms.Control.ControlCollection! -System.Windows.Forms.SplitContainer.Dock.get -> System.Windows.Forms.DockStyle -System.Windows.Forms.SplitContainer.Dock.set -> void -System.Windows.Forms.SplitContainer.EndInit() -> void -System.Windows.Forms.SplitContainer.FixedPanel.get -> System.Windows.Forms.FixedPanel -System.Windows.Forms.SplitContainer.FixedPanel.set -> void -System.Windows.Forms.SplitContainer.IsSplitterFixed.get -> bool -System.Windows.Forms.SplitContainer.IsSplitterFixed.set -> void -System.Windows.Forms.SplitContainer.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs! e) -> void -System.Windows.Forms.SplitContainer.OnSplitterMoving(System.Windows.Forms.SplitterCancelEventArgs! e) -> void -System.Windows.Forms.SplitContainer.Orientation.get -> System.Windows.Forms.Orientation -System.Windows.Forms.SplitContainer.Orientation.set -> void -System.Windows.Forms.SplitContainer.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.SplitContainer.Padding.set -> void -System.Windows.Forms.SplitContainer.PaddingChanged -> System.EventHandler? -System.Windows.Forms.SplitContainer.Panel1.get -> System.Windows.Forms.SplitterPanel! -System.Windows.Forms.SplitContainer.Panel1Collapsed.get -> bool -System.Windows.Forms.SplitContainer.Panel1Collapsed.set -> void -System.Windows.Forms.SplitContainer.Panel1MinSize.get -> int -System.Windows.Forms.SplitContainer.Panel1MinSize.set -> void -System.Windows.Forms.SplitContainer.Panel2.get -> System.Windows.Forms.SplitterPanel! -System.Windows.Forms.SplitContainer.Panel2Collapsed.get -> bool -System.Windows.Forms.SplitContainer.Panel2Collapsed.set -> void -System.Windows.Forms.SplitContainer.Panel2MinSize.get -> int -System.Windows.Forms.SplitContainer.Panel2MinSize.set -> void -System.Windows.Forms.SplitContainer.SplitContainer() -> void -System.Windows.Forms.SplitContainer.SplitterDistance.get -> int -System.Windows.Forms.SplitContainer.SplitterDistance.set -> void -System.Windows.Forms.SplitContainer.SplitterIncrement.get -> int -System.Windows.Forms.SplitContainer.SplitterIncrement.set -> void -System.Windows.Forms.SplitContainer.SplitterMoved -> System.Windows.Forms.SplitterEventHandler? -System.Windows.Forms.SplitContainer.SplitterMoving -> System.Windows.Forms.SplitterCancelEventHandler? -System.Windows.Forms.SplitContainer.SplitterRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.SplitContainer.SplitterWidth.get -> int -System.Windows.Forms.SplitContainer.SplitterWidth.set -> void -System.Windows.Forms.SplitContainer.TabStop.get -> bool -System.Windows.Forms.SplitContainer.TabStop.set -> void -System.Windows.Forms.SplitContainer.TextChanged -> System.EventHandler? -System.Windows.Forms.Splitter -System.Windows.Forms.Splitter.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.Splitter.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.Splitter.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.Splitter.BorderStyle.set -> void -System.Windows.Forms.Splitter.Enter -> System.EventHandler? -System.Windows.Forms.Splitter.FontChanged -> System.EventHandler? -System.Windows.Forms.Splitter.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.Splitter.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.Splitter.ImeMode.set -> void -System.Windows.Forms.Splitter.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.Splitter.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Splitter.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.Splitter.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.Splitter.Leave -> System.EventHandler? -System.Windows.Forms.Splitter.MinExtra.get -> int -System.Windows.Forms.Splitter.MinExtra.set -> void -System.Windows.Forms.Splitter.MinSize.get -> int -System.Windows.Forms.Splitter.MinSize.set -> void -System.Windows.Forms.Splitter.SplitPosition.get -> int -System.Windows.Forms.Splitter.SplitPosition.set -> void -System.Windows.Forms.Splitter.Splitter() -> void -System.Windows.Forms.Splitter.SplitterMoved -> System.Windows.Forms.SplitterEventHandler? -System.Windows.Forms.Splitter.SplitterMoving -> System.Windows.Forms.SplitterEventHandler? -System.Windows.Forms.Splitter.TabStop.get -> bool -System.Windows.Forms.Splitter.TabStop.set -> void -System.Windows.Forms.Splitter.TabStopChanged -> System.EventHandler? -System.Windows.Forms.Splitter.TextChanged -> System.EventHandler? -System.Windows.Forms.SplitterCancelEventArgs -System.Windows.Forms.SplitterCancelEventArgs.MouseCursorX.get -> int -System.Windows.Forms.SplitterCancelEventArgs.MouseCursorY.get -> int -System.Windows.Forms.SplitterCancelEventArgs.SplitterCancelEventArgs(int mouseCursorX, int mouseCursorY, int splitX, int splitY) -> void -System.Windows.Forms.SplitterCancelEventArgs.SplitX.get -> int -System.Windows.Forms.SplitterCancelEventArgs.SplitX.set -> void -System.Windows.Forms.SplitterCancelEventArgs.SplitY.get -> int -System.Windows.Forms.SplitterCancelEventArgs.SplitY.set -> void -System.Windows.Forms.SplitterCancelEventHandler -System.Windows.Forms.SplitterEventArgs -System.Windows.Forms.SplitterEventArgs.SplitterEventArgs(int x, int y, int splitX, int splitY) -> void -System.Windows.Forms.SplitterEventArgs.SplitX.get -> int -System.Windows.Forms.SplitterEventArgs.SplitX.set -> void -System.Windows.Forms.SplitterEventArgs.SplitY.get -> int -System.Windows.Forms.SplitterEventArgs.SplitY.set -> void -System.Windows.Forms.SplitterEventArgs.X.get -> int -System.Windows.Forms.SplitterEventArgs.Y.get -> int -System.Windows.Forms.SplitterEventHandler -System.Windows.Forms.SplitterPanel -System.Windows.Forms.SplitterPanel.Anchor.get -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.SplitterPanel.Anchor.set -> void -System.Windows.Forms.SplitterPanel.AutoSize.get -> bool -System.Windows.Forms.SplitterPanel.AutoSize.set -> void -System.Windows.Forms.SplitterPanel.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.SplitterPanel.BorderStyle.set -> void -System.Windows.Forms.SplitterPanel.Dock.get -> System.Windows.Forms.DockStyle -System.Windows.Forms.SplitterPanel.Dock.set -> void -System.Windows.Forms.SplitterPanel.DockChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! -System.Windows.Forms.SplitterPanel.Height.get -> int -System.Windows.Forms.SplitterPanel.Height.set -> void -System.Windows.Forms.SplitterPanel.Location.get -> System.Drawing.Point -System.Windows.Forms.SplitterPanel.Location.set -> void -System.Windows.Forms.SplitterPanel.LocationChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.MaximumSize.get -> System.Drawing.Size -System.Windows.Forms.SplitterPanel.MaximumSize.set -> void -System.Windows.Forms.SplitterPanel.MinimumSize.get -> System.Drawing.Size -System.Windows.Forms.SplitterPanel.MinimumSize.set -> void -System.Windows.Forms.SplitterPanel.Name.get -> string! -System.Windows.Forms.SplitterPanel.Name.set -> void -System.Windows.Forms.SplitterPanel.Parent.get -> System.Windows.Forms.Control? -System.Windows.Forms.SplitterPanel.Parent.set -> void -System.Windows.Forms.SplitterPanel.Size.get -> System.Drawing.Size -System.Windows.Forms.SplitterPanel.Size.set -> void -System.Windows.Forms.SplitterPanel.SplitterPanel(System.Windows.Forms.SplitContainer! owner) -> void -System.Windows.Forms.SplitterPanel.TabIndex.get -> int -System.Windows.Forms.SplitterPanel.TabIndex.set -> void -System.Windows.Forms.SplitterPanel.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.TabStop.get -> bool -System.Windows.Forms.SplitterPanel.TabStop.set -> void -System.Windows.Forms.SplitterPanel.TabStopChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.Visible.get -> bool -System.Windows.Forms.SplitterPanel.Visible.set -> void -System.Windows.Forms.SplitterPanel.VisibleChanged -> System.EventHandler? -System.Windows.Forms.SplitterPanel.Width.get -> int -System.Windows.Forms.SplitterPanel.Width.set -> void -System.Windows.Forms.StatusStrip -System.Windows.Forms.StatusStrip.CanOverflow.get -> bool -System.Windows.Forms.StatusStrip.CanOverflow.set -> void -System.Windows.Forms.StatusStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.StatusStrip.GripStyle.set -> void -System.Windows.Forms.StatusStrip.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.StatusStrip.LayoutStyle.set -> void -System.Windows.Forms.StatusStrip.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.StatusStrip.Padding.set -> void -System.Windows.Forms.StatusStrip.PaddingChanged -> System.EventHandler? -System.Windows.Forms.StatusStrip.ShowItemToolTips.get -> bool -System.Windows.Forms.StatusStrip.ShowItemToolTips.set -> void -System.Windows.Forms.StatusStrip.SizeGripBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.StatusStrip.SizingGrip.get -> bool -System.Windows.Forms.StatusStrip.SizingGrip.set -> void -System.Windows.Forms.StatusStrip.StatusStrip() -> void -System.Windows.Forms.StatusStrip.Stretch.get -> bool -System.Windows.Forms.StatusStrip.Stretch.set -> void -System.Windows.Forms.StructFormat -System.Windows.Forms.StructFormat.Ansi = 1 -> System.Windows.Forms.StructFormat -System.Windows.Forms.StructFormat.Auto = 3 -> System.Windows.Forms.StructFormat -System.Windows.Forms.StructFormat.Unicode = 2 -> System.Windows.Forms.StructFormat -System.Windows.Forms.SystemInformation -System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.CaretWidthMetric = 8 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.DropShadow = 0 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.FlatMenu = 1 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.FontSmoothingContrastMetric = 2 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.FontSmoothingTypeMetric = 3 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.HorizontalFocusThicknessMetric = 10 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.MenuFadeEnabled = 4 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.SelectionFade = 5 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.ToolTipAnimationMetric = 6 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.UIEffects = 7 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.SystemParameter.VerticalFocusThicknessMetric = 9 -> System.Windows.Forms.SystemParameter -System.Windows.Forms.TabAlignment -System.Windows.Forms.TabAlignment.Bottom = 1 -> System.Windows.Forms.TabAlignment -System.Windows.Forms.TabAlignment.Left = 2 -> System.Windows.Forms.TabAlignment -System.Windows.Forms.TabAlignment.Right = 3 -> System.Windows.Forms.TabAlignment -System.Windows.Forms.TabAlignment.Top = 0 -> System.Windows.Forms.TabAlignment -System.Windows.Forms.TabAppearance -System.Windows.Forms.TabAppearance.Buttons = 1 -> System.Windows.Forms.TabAppearance -System.Windows.Forms.TabAppearance.FlatButtons = 2 -> System.Windows.Forms.TabAppearance -System.Windows.Forms.TabAppearance.Normal = 0 -> System.Windows.Forms.TabAppearance -System.Windows.Forms.TabControl -System.Windows.Forms.TabControl.Alignment.get -> System.Windows.Forms.TabAlignment -System.Windows.Forms.TabControl.Alignment.set -> void -System.Windows.Forms.TabControl.Appearance.get -> System.Windows.Forms.TabAppearance -System.Windows.Forms.TabControl.Appearance.set -> void -System.Windows.Forms.TabControl.BackColorChanged -> System.EventHandler? -System.Windows.Forms.TabControl.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.TabControl.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.TabControl.ControlCollection -System.Windows.Forms.TabControl.ControlCollection.ControlCollection(System.Windows.Forms.TabControl! owner) -> void -System.Windows.Forms.TabControl.Deselected -> System.Windows.Forms.TabControlEventHandler? -System.Windows.Forms.TabControl.Deselecting -> System.Windows.Forms.TabControlCancelEventHandler? -System.Windows.Forms.TabControl.DeselectTab(int index) -> void -System.Windows.Forms.TabControl.DeselectTab(string! tabPageName) -> void -System.Windows.Forms.TabControl.DeselectTab(System.Windows.Forms.TabPage! tabPage) -> void -System.Windows.Forms.TabControl.DrawItem -> System.Windows.Forms.DrawItemEventHandler? -System.Windows.Forms.TabControl.DrawMode.get -> System.Windows.Forms.TabDrawMode -System.Windows.Forms.TabControl.DrawMode.set -> void -System.Windows.Forms.TabControl.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.TabControl.GetControl(int index) -> System.Windows.Forms.Control! -System.Windows.Forms.TabControl.GetTabRect(int index) -> System.Drawing.Rectangle -System.Windows.Forms.TabControl.GetToolTipText(object! item) -> string! -System.Windows.Forms.TabControl.HotTrack.get -> bool -System.Windows.Forms.TabControl.HotTrack.set -> void -System.Windows.Forms.TabControl.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.TabControl.ImageList.set -> void -System.Windows.Forms.TabControl.ItemSize.get -> System.Drawing.Size -System.Windows.Forms.TabControl.ItemSize.set -> void -System.Windows.Forms.TabControl.Multiline.get -> bool -System.Windows.Forms.TabControl.Multiline.set -> void -System.Windows.Forms.TabControl.Padding.get -> System.Drawing.Point -System.Windows.Forms.TabControl.Padding.set -> void -System.Windows.Forms.TabControl.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.TabControl.RemoveAll() -> void -System.Windows.Forms.TabControl.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.TabControl.RowCount.get -> int -System.Windows.Forms.TabControl.Selected -> System.Windows.Forms.TabControlEventHandler? -System.Windows.Forms.TabControl.SelectedIndex.get -> int -System.Windows.Forms.TabControl.SelectedIndex.set -> void -System.Windows.Forms.TabControl.SelectedIndexChanged -> System.EventHandler? -System.Windows.Forms.TabControl.SelectedTab.get -> System.Windows.Forms.TabPage? -System.Windows.Forms.TabControl.SelectedTab.set -> void -System.Windows.Forms.TabControl.Selecting -> System.Windows.Forms.TabControlCancelEventHandler? -System.Windows.Forms.TabControl.SelectTab(int index) -> void -System.Windows.Forms.TabControl.SelectTab(string! tabPageName) -> void -System.Windows.Forms.TabControl.SelectTab(System.Windows.Forms.TabPage! tabPage) -> void -System.Windows.Forms.TabControl.ShowToolTips.get -> bool -System.Windows.Forms.TabControl.ShowToolTips.set -> void -System.Windows.Forms.TabControl.SizeMode.get -> System.Windows.Forms.TabSizeMode -System.Windows.Forms.TabControl.SizeMode.set -> void -System.Windows.Forms.TabControl.TabControl() -> void -System.Windows.Forms.TabControl.TabCount.get -> int -System.Windows.Forms.TabControl.TabPageCollection -System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text) -> void -System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text, int imageIndex) -> void -System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text, string! imageKey) -> void -System.Windows.Forms.TabControl.TabPageCollection.Add(string? text) -> void -System.Windows.Forms.TabControl.TabPageCollection.Add(System.Windows.Forms.TabPage! value) -> void -System.Windows.Forms.TabControl.TabPageCollection.AddRange(System.Windows.Forms.TabPage![]! pages) -> void -System.Windows.Forms.TabControl.TabPageCollection.Contains(System.Windows.Forms.TabPage! page) -> bool -System.Windows.Forms.TabControl.TabPageCollection.Count.get -> int -System.Windows.Forms.TabControl.TabPageCollection.GetEnumerator() -> System.Collections.IEnumerator! -System.Windows.Forms.TabControl.TabPageCollection.IndexOf(System.Windows.Forms.TabPage! page) -> int -System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text) -> void -System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text, int imageIndex) -> void -System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text, string! imageKey) -> void -System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? text) -> void -System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, System.Windows.Forms.TabPage! tabPage) -> void -System.Windows.Forms.TabControl.TabPageCollection.IsReadOnly.get -> bool -System.Windows.Forms.TabControl.TabPageCollection.Remove(System.Windows.Forms.TabPage! value) -> void -System.Windows.Forms.TabControl.TabPageCollection.RemoveAt(int index) -> void -System.Windows.Forms.TabControl.TabPageCollection.TabPageCollection(System.Windows.Forms.TabControl! owner) -> void -System.Windows.Forms.TabControl.TabPages.get -> System.Windows.Forms.TabControl.TabPageCollection! -System.Windows.Forms.TabControl.TextChanged -> System.EventHandler? -System.Windows.Forms.TabControl.UpdateTabSelection(bool updateFocus) -> void -System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlAction.Deselected = 3 -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlAction.Deselecting = 2 -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlAction.Selected = 1 -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlAction.Selecting = 0 -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlCancelEventArgs -System.Windows.Forms.TabControlCancelEventArgs.Action.get -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlCancelEventArgs.TabControlCancelEventArgs(System.Windows.Forms.TabPage? tabPage, int tabPageIndex, bool cancel, System.Windows.Forms.TabControlAction action) -> void -System.Windows.Forms.TabControlCancelEventArgs.TabPage.get -> System.Windows.Forms.TabPage? -System.Windows.Forms.TabControlCancelEventArgs.TabPageIndex.get -> int -System.Windows.Forms.TabControlCancelEventHandler -System.Windows.Forms.TabControlEventArgs -System.Windows.Forms.TabControlEventArgs.Action.get -> System.Windows.Forms.TabControlAction -System.Windows.Forms.TabControlEventArgs.TabControlEventArgs(System.Windows.Forms.TabPage? tabPage, int tabPageIndex, System.Windows.Forms.TabControlAction action) -> void -System.Windows.Forms.TabControlEventArgs.TabPage.get -> System.Windows.Forms.TabPage? -System.Windows.Forms.TabControlEventArgs.TabPageIndex.get -> int -System.Windows.Forms.TabControlEventHandler -System.Windows.Forms.TabDrawMode -System.Windows.Forms.TabDrawMode.Normal = 0 -> System.Windows.Forms.TabDrawMode -System.Windows.Forms.TabDrawMode.OwnerDrawFixed = 1 -> System.Windows.Forms.TabDrawMode -System.Windows.Forms.TableLayoutCellPaintEventArgs -System.Windows.Forms.TableLayoutCellPaintEventArgs.CellBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.TableLayoutCellPaintEventArgs.Column.get -> int -System.Windows.Forms.TableLayoutCellPaintEventArgs.Row.get -> int -System.Windows.Forms.TableLayoutCellPaintEventArgs.TableLayoutCellPaintEventArgs(System.Drawing.Graphics! g, System.Drawing.Rectangle clipRectangle, System.Drawing.Rectangle cellBounds, int column, int row) -> void -System.Windows.Forms.TableLayoutCellPaintEventHandler -System.Windows.Forms.TableLayoutColumnStyleCollection -System.Windows.Forms.TableLayoutColumnStyleCollection.Add(System.Windows.Forms.ColumnStyle! columnStyle) -> int -System.Windows.Forms.TableLayoutColumnStyleCollection.Contains(System.Windows.Forms.ColumnStyle! columnStyle) -> bool -System.Windows.Forms.TableLayoutColumnStyleCollection.IndexOf(System.Windows.Forms.ColumnStyle! columnStyle) -> int -System.Windows.Forms.TableLayoutColumnStyleCollection.Insert(int index, System.Windows.Forms.ColumnStyle! columnStyle) -> void -System.Windows.Forms.TableLayoutColumnStyleCollection.Remove(System.Windows.Forms.ColumnStyle! columnStyle) -> void -System.Windows.Forms.TableLayoutColumnStyleCollection.this[int index].get -> System.Windows.Forms.ColumnStyle! -System.Windows.Forms.TableLayoutColumnStyleCollection.this[int index].set -> void -System.Windows.Forms.TableLayoutControlCollection -System.Windows.Forms.TableLayoutControlCollection.Container.get -> System.Windows.Forms.TableLayoutPanel! -System.Windows.Forms.TableLayoutControlCollection.TableLayoutControlCollection(System.Windows.Forms.TableLayoutPanel! container) -> void -System.Windows.Forms.TableLayoutPanel -System.Windows.Forms.TableLayoutPanel.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.TableLayoutPanel.BorderStyle.set -> void -System.Windows.Forms.TableLayoutPanel.CellBorderStyle.get -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanel.CellBorderStyle.set -> void -System.Windows.Forms.TableLayoutPanel.CellPaint -> System.Windows.Forms.TableLayoutCellPaintEventHandler? -System.Windows.Forms.TableLayoutPanel.ColumnCount.get -> int -System.Windows.Forms.TableLayoutPanel.ColumnCount.set -> void -System.Windows.Forms.TableLayoutPanel.ColumnStyles.get -> System.Windows.Forms.TableLayoutColumnStyleCollection! -System.Windows.Forms.TableLayoutPanel.Controls.get -> System.Windows.Forms.TableLayoutControlCollection! -System.Windows.Forms.TableLayoutPanel.GetCellPosition(System.Windows.Forms.Control! control) -> System.Windows.Forms.TableLayoutPanelCellPosition -System.Windows.Forms.TableLayoutPanel.GetColumn(System.Windows.Forms.Control! control) -> int -System.Windows.Forms.TableLayoutPanel.GetColumnSpan(System.Windows.Forms.Control! control) -> int -System.Windows.Forms.TableLayoutPanel.GetColumnWidths() -> int[]! -System.Windows.Forms.TableLayoutPanel.GetControlFromPosition(int column, int row) -> System.Windows.Forms.Control? -System.Windows.Forms.TableLayoutPanel.GetPositionFromControl(System.Windows.Forms.Control? control) -> System.Windows.Forms.TableLayoutPanelCellPosition -System.Windows.Forms.TableLayoutPanel.GetRow(System.Windows.Forms.Control! control) -> int -System.Windows.Forms.TableLayoutPanel.GetRowHeights() -> int[]! -System.Windows.Forms.TableLayoutPanel.GetRowSpan(System.Windows.Forms.Control! control) -> int -System.Windows.Forms.TableLayoutPanel.GrowStyle.get -> System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutPanel.GrowStyle.set -> void -System.Windows.Forms.TableLayoutPanel.LayoutSettings.get -> System.Windows.Forms.TableLayoutSettings! -System.Windows.Forms.TableLayoutPanel.LayoutSettings.set -> void -System.Windows.Forms.TableLayoutPanel.RowCount.get -> int -System.Windows.Forms.TableLayoutPanel.RowCount.set -> void -System.Windows.Forms.TableLayoutPanel.RowStyles.get -> System.Windows.Forms.TableLayoutRowStyleCollection! -System.Windows.Forms.TableLayoutPanel.SetCellPosition(System.Windows.Forms.Control! control, System.Windows.Forms.TableLayoutPanelCellPosition position) -> void -System.Windows.Forms.TableLayoutPanel.SetColumn(System.Windows.Forms.Control! control, int column) -> void -System.Windows.Forms.TableLayoutPanel.SetColumnSpan(System.Windows.Forms.Control! control, int value) -> void -System.Windows.Forms.TableLayoutPanel.SetRow(System.Windows.Forms.Control! control, int row) -> void -System.Windows.Forms.TableLayoutPanel.SetRowSpan(System.Windows.Forms.Control! control, int value) -> void -System.Windows.Forms.TableLayoutPanel.TableLayoutPanel() -> void -System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset = 2 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble = 3 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.None = 0 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.Outset = 4 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble = 5 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetPartial = 6 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single = 1 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle -System.Windows.Forms.TableLayoutPanelCellPosition -System.Windows.Forms.TableLayoutPanelCellPosition.Column.get -> int -System.Windows.Forms.TableLayoutPanelCellPosition.Column.set -> void -System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Windows.Forms.TableLayoutPanelCellPosition other) -> bool -System.Windows.Forms.TableLayoutPanelCellPosition.Row.get -> int -System.Windows.Forms.TableLayoutPanelCellPosition.Row.set -> void -System.Windows.Forms.TableLayoutPanelCellPosition.TableLayoutPanelCellPosition() -> void -System.Windows.Forms.TableLayoutPanelCellPosition.TableLayoutPanelCellPosition(int column, int row) -> void -System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutPanelGrowStyle.AddColumns = 2 -> System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows = 1 -> System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize = 0 -> System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutRowStyleCollection -System.Windows.Forms.TableLayoutRowStyleCollection.Add(System.Windows.Forms.RowStyle! rowStyle) -> int -System.Windows.Forms.TableLayoutRowStyleCollection.Contains(System.Windows.Forms.RowStyle! rowStyle) -> bool -System.Windows.Forms.TableLayoutRowStyleCollection.IndexOf(System.Windows.Forms.RowStyle! rowStyle) -> int -System.Windows.Forms.TableLayoutRowStyleCollection.Insert(int index, System.Windows.Forms.RowStyle! rowStyle) -> void -System.Windows.Forms.TableLayoutRowStyleCollection.Remove(System.Windows.Forms.RowStyle! rowStyle) -> void -System.Windows.Forms.TableLayoutRowStyleCollection.this[int index].get -> System.Windows.Forms.RowStyle! -System.Windows.Forms.TableLayoutRowStyleCollection.this[int index].set -> void -System.Windows.Forms.TableLayoutSettings -System.Windows.Forms.TableLayoutSettings.ColumnCount.get -> int -System.Windows.Forms.TableLayoutSettings.ColumnCount.set -> void -System.Windows.Forms.TableLayoutSettings.ColumnStyles.get -> System.Windows.Forms.TableLayoutColumnStyleCollection! -System.Windows.Forms.TableLayoutSettings.GetCellPosition(object! control) -> System.Windows.Forms.TableLayoutPanelCellPosition -System.Windows.Forms.TableLayoutSettings.GetColumn(object! control) -> int -System.Windows.Forms.TableLayoutSettings.GetColumnSpan(object! control) -> int -System.Windows.Forms.TableLayoutSettings.GetRow(object! control) -> int -System.Windows.Forms.TableLayoutSettings.GetRowSpan(object! control) -> int -System.Windows.Forms.TableLayoutSettings.GrowStyle.get -> System.Windows.Forms.TableLayoutPanelGrowStyle -System.Windows.Forms.TableLayoutSettings.GrowStyle.set -> void -System.Windows.Forms.TableLayoutSettings.RowCount.get -> int -System.Windows.Forms.TableLayoutSettings.RowCount.set -> void -System.Windows.Forms.TableLayoutSettings.RowStyles.get -> System.Windows.Forms.TableLayoutRowStyleCollection! -System.Windows.Forms.TableLayoutSettings.SetCellPosition(object! control, System.Windows.Forms.TableLayoutPanelCellPosition cellPosition) -> void -System.Windows.Forms.TableLayoutSettings.SetColumn(object! control, int column) -> void -System.Windows.Forms.TableLayoutSettings.SetColumnSpan(object! control, int value) -> void -System.Windows.Forms.TableLayoutSettings.SetRow(object! control, int row) -> void -System.Windows.Forms.TableLayoutSettings.SetRowSpan(object! control, int value) -> void -System.Windows.Forms.TableLayoutStyle -System.Windows.Forms.TableLayoutStyle.SizeType.get -> System.Windows.Forms.SizeType -System.Windows.Forms.TableLayoutStyle.SizeType.set -> void -System.Windows.Forms.TableLayoutStyle.TableLayoutStyle() -> void -System.Windows.Forms.TableLayoutStyleCollection -System.Windows.Forms.TableLayoutStyleCollection.Add(System.Windows.Forms.TableLayoutStyle! style) -> int -System.Windows.Forms.TableLayoutStyleCollection.Clear() -> void -System.Windows.Forms.TableLayoutStyleCollection.Count.get -> int -System.Windows.Forms.TableLayoutStyleCollection.RemoveAt(int index) -> void -System.Windows.Forms.TableLayoutStyleCollection.this[int index].get -> System.Windows.Forms.TableLayoutStyle! -System.Windows.Forms.TableLayoutStyleCollection.this[int index].set -> void -System.Windows.Forms.TabPage -System.Windows.Forms.TabPage.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.TabPage.DockChanged -> System.EventHandler? -System.Windows.Forms.TabPage.Enabled.get -> bool -System.Windows.Forms.TabPage.Enabled.set -> void -System.Windows.Forms.TabPage.EnabledChanged -> System.EventHandler? -System.Windows.Forms.TabPage.ImageIndex.get -> int -System.Windows.Forms.TabPage.ImageIndex.set -> void -System.Windows.Forms.TabPage.ImageKey.get -> string! -System.Windows.Forms.TabPage.ImageKey.set -> void -System.Windows.Forms.TabPage.Location.get -> System.Drawing.Point -System.Windows.Forms.TabPage.Location.set -> void -System.Windows.Forms.TabPage.LocationChanged -> System.EventHandler? -System.Windows.Forms.TabPage.PreferredSize.get -> System.Drawing.Size -System.Windows.Forms.TabPage.TabIndex.get -> int -System.Windows.Forms.TabPage.TabIndex.set -> void -System.Windows.Forms.TabPage.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.TabPage.TabPage() -> void -System.Windows.Forms.TabPage.TabPage(string? text) -> void -System.Windows.Forms.TabPage.TabPageControlCollection -System.Windows.Forms.TabPage.TabPageControlCollection.TabPageControlCollection(System.Windows.Forms.TabPage! owner) -> void -System.Windows.Forms.TabPage.TabStop.get -> bool -System.Windows.Forms.TabPage.TabStop.set -> void -System.Windows.Forms.TabPage.TabStopChanged -> System.EventHandler? -System.Windows.Forms.TabPage.TextChanged -> System.EventHandler? -System.Windows.Forms.TabPage.ToolTipText.get -> string! -System.Windows.Forms.TabPage.ToolTipText.set -> void -System.Windows.Forms.TabPage.UseVisualStyleBackColor.get -> bool -System.Windows.Forms.TabPage.UseVisualStyleBackColor.set -> void -System.Windows.Forms.TabPage.Visible.get -> bool -System.Windows.Forms.TabPage.Visible.set -> void -System.Windows.Forms.TabPage.VisibleChanged -> System.EventHandler? -System.Windows.Forms.TabRenderer -System.Windows.Forms.TabSizeMode -System.Windows.Forms.TabSizeMode.FillToRight = 1 -> System.Windows.Forms.TabSizeMode -System.Windows.Forms.TabSizeMode.Fixed = 2 -> System.Windows.Forms.TabSizeMode -System.Windows.Forms.TabSizeMode.Normal = 0 -> System.Windows.Forms.TabSizeMode -System.Windows.Forms.TaskDialog -System.Windows.Forms.TaskDialog.Close() -> void -System.Windows.Forms.TaskDialog.Handle.get -> nint -System.Windows.Forms.TaskDialogButton -System.Windows.Forms.TaskDialogButton.AllowCloseDialog.get -> bool -System.Windows.Forms.TaskDialogButton.AllowCloseDialog.set -> void -System.Windows.Forms.TaskDialogButton.Click -> System.EventHandler? -System.Windows.Forms.TaskDialogButton.Enabled.get -> bool -System.Windows.Forms.TaskDialogButton.Enabled.set -> void -System.Windows.Forms.TaskDialogButton.PerformClick() -> void -System.Windows.Forms.TaskDialogButton.ShowShieldIcon.get -> bool -System.Windows.Forms.TaskDialogButton.ShowShieldIcon.set -> void -System.Windows.Forms.TaskDialogButton.TaskDialogButton() -> void -System.Windows.Forms.TaskDialogButton.TaskDialogButton(string? text, bool enabled = true, bool allowCloseDialog = true) -> void -System.Windows.Forms.TaskDialogButton.Text.get -> string? -System.Windows.Forms.TaskDialogButton.Text.set -> void -System.Windows.Forms.TaskDialogButton.Visible.get -> bool -System.Windows.Forms.TaskDialogButton.Visible.set -> void -System.Windows.Forms.TaskDialogButtonCollection -System.Windows.Forms.TaskDialogButtonCollection.Add(string? text, bool enabled = true, bool allowCloseDialog = true) -> System.Windows.Forms.TaskDialogButton! -System.Windows.Forms.TaskDialogButtonCollection.TaskDialogButtonCollection() -> void -System.Windows.Forms.TaskDialogCommandLinkButton -System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText.get -> string? -System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText.set -> void -System.Windows.Forms.TaskDialogCommandLinkButton.TaskDialogCommandLinkButton() -> void -System.Windows.Forms.TaskDialogCommandLinkButton.TaskDialogCommandLinkButton(string? text, string? descriptionText = null, bool enabled = true, bool allowCloseDialog = true) -> void -System.Windows.Forms.TaskDialogControl -System.Windows.Forms.TaskDialogControl.BoundPage.get -> System.Windows.Forms.TaskDialogPage? -System.Windows.Forms.TaskDialogControl.Tag.get -> object? -System.Windows.Forms.TaskDialogControl.Tag.set -> void -System.Windows.Forms.TaskDialogExpander -System.Windows.Forms.TaskDialogExpander.CollapsedButtonText.get -> string? -System.Windows.Forms.TaskDialogExpander.CollapsedButtonText.set -> void -System.Windows.Forms.TaskDialogExpander.Expanded.get -> bool -System.Windows.Forms.TaskDialogExpander.Expanded.set -> void -System.Windows.Forms.TaskDialogExpander.ExpandedButtonText.get -> string? -System.Windows.Forms.TaskDialogExpander.ExpandedButtonText.set -> void -System.Windows.Forms.TaskDialogExpander.ExpandedChanged -> System.EventHandler? -System.Windows.Forms.TaskDialogExpander.Position.get -> System.Windows.Forms.TaskDialogExpanderPosition -System.Windows.Forms.TaskDialogExpander.Position.set -> void -System.Windows.Forms.TaskDialogExpander.TaskDialogExpander() -> void -System.Windows.Forms.TaskDialogExpander.TaskDialogExpander(string? text) -> void -System.Windows.Forms.TaskDialogExpander.Text.get -> string? -System.Windows.Forms.TaskDialogExpander.Text.set -> void -System.Windows.Forms.TaskDialogExpanderPosition -System.Windows.Forms.TaskDialogExpanderPosition.AfterFootnote = 1 -> System.Windows.Forms.TaskDialogExpanderPosition -System.Windows.Forms.TaskDialogExpanderPosition.AfterText = 0 -> System.Windows.Forms.TaskDialogExpanderPosition -System.Windows.Forms.TaskDialogFootnote -System.Windows.Forms.TaskDialogFootnote.Icon.get -> System.Windows.Forms.TaskDialogIcon? -System.Windows.Forms.TaskDialogFootnote.Icon.set -> void -System.Windows.Forms.TaskDialogFootnote.TaskDialogFootnote() -> void -System.Windows.Forms.TaskDialogFootnote.TaskDialogFootnote(string? text) -> void -System.Windows.Forms.TaskDialogFootnote.Text.get -> string? -System.Windows.Forms.TaskDialogFootnote.Text.set -> void -System.Windows.Forms.TaskDialogIcon -System.Windows.Forms.TaskDialogIcon.Dispose() -> void -System.Windows.Forms.TaskDialogIcon.IconHandle.get -> nint -System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(nint iconHandle) -> void -System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(System.Drawing.Bitmap! image) -> void -System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(System.Drawing.Icon! icon) -> void -System.Windows.Forms.TaskDialogLinkClickedEventArgs -System.Windows.Forms.TaskDialogLinkClickedEventArgs.LinkHref.get -> string! -System.Windows.Forms.TaskDialogLinkClickedEventArgs.TaskDialogLinkClickedEventArgs(string! linkHref) -> void -System.Windows.Forms.TaskDialogPage -System.Windows.Forms.TaskDialogPage.AllowCancel.get -> bool -System.Windows.Forms.TaskDialogPage.AllowCancel.set -> void -System.Windows.Forms.TaskDialogPage.AllowMinimize.get -> bool -System.Windows.Forms.TaskDialogPage.AllowMinimize.set -> void -System.Windows.Forms.TaskDialogPage.BoundDialog.get -> System.Windows.Forms.TaskDialog? -System.Windows.Forms.TaskDialogPage.Buttons.get -> System.Windows.Forms.TaskDialogButtonCollection! -System.Windows.Forms.TaskDialogPage.Buttons.set -> void -System.Windows.Forms.TaskDialogPage.Caption.get -> string? -System.Windows.Forms.TaskDialogPage.Caption.set -> void -System.Windows.Forms.TaskDialogPage.Created -> System.EventHandler? -System.Windows.Forms.TaskDialogPage.DefaultButton.get -> System.Windows.Forms.TaskDialogButton? -System.Windows.Forms.TaskDialogPage.DefaultButton.set -> void -System.Windows.Forms.TaskDialogPage.Destroyed -> System.EventHandler? -System.Windows.Forms.TaskDialogPage.EnableLinks.get -> bool -System.Windows.Forms.TaskDialogPage.EnableLinks.set -> void -System.Windows.Forms.TaskDialogPage.Expander.get -> System.Windows.Forms.TaskDialogExpander? -System.Windows.Forms.TaskDialogPage.Expander.set -> void -System.Windows.Forms.TaskDialogPage.Footnote.get -> System.Windows.Forms.TaskDialogFootnote? -System.Windows.Forms.TaskDialogPage.Footnote.set -> void -System.Windows.Forms.TaskDialogPage.Heading.get -> string? -System.Windows.Forms.TaskDialogPage.Heading.set -> void -System.Windows.Forms.TaskDialogPage.HelpRequest -> System.EventHandler? -System.Windows.Forms.TaskDialogPage.Icon.get -> System.Windows.Forms.TaskDialogIcon? -System.Windows.Forms.TaskDialogPage.Icon.set -> void -System.Windows.Forms.TaskDialogPage.LinkClicked -> System.EventHandler? -System.Windows.Forms.TaskDialogPage.Navigate(System.Windows.Forms.TaskDialogPage! page) -> void -System.Windows.Forms.TaskDialogPage.OnCreated(System.EventArgs! e) -> void -System.Windows.Forms.TaskDialogPage.OnDestroyed(System.EventArgs! e) -> void -System.Windows.Forms.TaskDialogPage.OnHelpRequest(System.EventArgs! e) -> void -System.Windows.Forms.TaskDialogPage.OnLinkClicked(System.Windows.Forms.TaskDialogLinkClickedEventArgs! e) -> void -System.Windows.Forms.TaskDialogPage.ProgressBar.get -> System.Windows.Forms.TaskDialogProgressBar? -System.Windows.Forms.TaskDialogPage.ProgressBar.set -> void -System.Windows.Forms.TaskDialogPage.RadioButtons.get -> System.Windows.Forms.TaskDialogRadioButtonCollection! -System.Windows.Forms.TaskDialogPage.RadioButtons.set -> void -System.Windows.Forms.TaskDialogPage.RightToLeftLayout.get -> bool -System.Windows.Forms.TaskDialogPage.RightToLeftLayout.set -> void -System.Windows.Forms.TaskDialogPage.SizeToContent.get -> bool -System.Windows.Forms.TaskDialogPage.SizeToContent.set -> void -System.Windows.Forms.TaskDialogPage.TaskDialogPage() -> void -System.Windows.Forms.TaskDialogPage.Text.get -> string? -System.Windows.Forms.TaskDialogPage.Text.set -> void -System.Windows.Forms.TaskDialogPage.Verification.get -> System.Windows.Forms.TaskDialogVerificationCheckBox? -System.Windows.Forms.TaskDialogPage.Verification.set -> void -System.Windows.Forms.TaskDialogProgressBar -System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed.get -> int -System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed.set -> void -System.Windows.Forms.TaskDialogProgressBar.Maximum.get -> int -System.Windows.Forms.TaskDialogProgressBar.Maximum.set -> void -System.Windows.Forms.TaskDialogProgressBar.Minimum.get -> int -System.Windows.Forms.TaskDialogProgressBar.Minimum.set -> void -System.Windows.Forms.TaskDialogProgressBar.State.get -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBar.State.set -> void -System.Windows.Forms.TaskDialogProgressBar.TaskDialogProgressBar() -> void -System.Windows.Forms.TaskDialogProgressBar.TaskDialogProgressBar(System.Windows.Forms.TaskDialogProgressBarState state) -> void -System.Windows.Forms.TaskDialogProgressBar.Value.get -> int -System.Windows.Forms.TaskDialogProgressBar.Value.set -> void -System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.Error = 2 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.Marquee = 3 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.MarqueePaused = 4 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.None = 5 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.Normal = 0 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogProgressBarState.Paused = 1 -> System.Windows.Forms.TaskDialogProgressBarState -System.Windows.Forms.TaskDialogRadioButton -System.Windows.Forms.TaskDialogRadioButton.Checked.get -> bool -System.Windows.Forms.TaskDialogRadioButton.Checked.set -> void -System.Windows.Forms.TaskDialogRadioButton.CheckedChanged -> System.EventHandler? -System.Windows.Forms.TaskDialogRadioButton.Enabled.get -> bool -System.Windows.Forms.TaskDialogRadioButton.Enabled.set -> void -System.Windows.Forms.TaskDialogRadioButton.TaskDialogRadioButton() -> void -System.Windows.Forms.TaskDialogRadioButton.TaskDialogRadioButton(string? text) -> void -System.Windows.Forms.TaskDialogRadioButton.Text.get -> string? -System.Windows.Forms.TaskDialogRadioButton.Text.set -> void -System.Windows.Forms.TaskDialogRadioButtonCollection -System.Windows.Forms.TaskDialogRadioButtonCollection.Add(string? text) -> System.Windows.Forms.TaskDialogRadioButton! -System.Windows.Forms.TaskDialogRadioButtonCollection.TaskDialogRadioButtonCollection() -> void -System.Windows.Forms.TaskDialogStartupLocation -System.Windows.Forms.TaskDialogStartupLocation.CenterOwner = 1 -> System.Windows.Forms.TaskDialogStartupLocation -System.Windows.Forms.TaskDialogStartupLocation.CenterScreen = 0 -> System.Windows.Forms.TaskDialogStartupLocation -System.Windows.Forms.TaskDialogVerificationCheckBox -System.Windows.Forms.TaskDialogVerificationCheckBox.Checked.get -> bool -System.Windows.Forms.TaskDialogVerificationCheckBox.Checked.set -> void -System.Windows.Forms.TaskDialogVerificationCheckBox.CheckedChanged -> System.EventHandler? -System.Windows.Forms.TaskDialogVerificationCheckBox.TaskDialogVerificationCheckBox() -> void -System.Windows.Forms.TaskDialogVerificationCheckBox.TaskDialogVerificationCheckBox(string? text, bool isChecked = false) -> void -System.Windows.Forms.TaskDialogVerificationCheckBox.Text.get -> string? -System.Windows.Forms.TaskDialogVerificationCheckBox.Text.set -> void -System.Windows.Forms.TextBox -System.Windows.Forms.TextBox.AcceptsReturn.get -> bool -System.Windows.Forms.TextBox.AcceptsReturn.set -> void -System.Windows.Forms.TextBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! -System.Windows.Forms.TextBox.AutoCompleteCustomSource.set -> void -System.Windows.Forms.TextBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.TextBox.AutoCompleteMode.set -> void -System.Windows.Forms.TextBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.TextBox.AutoCompleteSource.set -> void -System.Windows.Forms.TextBox.CharacterCasing.get -> System.Windows.Forms.CharacterCasing -System.Windows.Forms.TextBox.CharacterCasing.set -> void -System.Windows.Forms.TextBox.PasswordChar.get -> char -System.Windows.Forms.TextBox.PasswordChar.set -> void -System.Windows.Forms.TextBox.Paste(string? text) -> void -System.Windows.Forms.TextBox.ScrollBars.get -> System.Windows.Forms.ScrollBars -System.Windows.Forms.TextBox.ScrollBars.set -> void -System.Windows.Forms.TextBox.TextAlign.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.TextBox.TextAlign.set -> void -System.Windows.Forms.TextBox.TextAlignChanged -> System.EventHandler? -System.Windows.Forms.TextBox.TextBox() -> void -System.Windows.Forms.TextBox.UseSystemPasswordChar.get -> bool -System.Windows.Forms.TextBox.UseSystemPasswordChar.set -> void -System.Windows.Forms.TextBoxBase -System.Windows.Forms.TextBoxBase.AcceptsTab.get -> bool -System.Windows.Forms.TextBoxBase.AcceptsTab.set -> void -System.Windows.Forms.TextBoxBase.AcceptsTabChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.AppendText(string? text) -> void -System.Windows.Forms.TextBoxBase.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.TextBoxBase.BorderStyle.set -> void -System.Windows.Forms.TextBoxBase.BorderStyleChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.CanUndo.get -> bool -System.Windows.Forms.TextBoxBase.Clear() -> void -System.Windows.Forms.TextBoxBase.ClearUndo() -> void -System.Windows.Forms.TextBoxBase.Click -> System.EventHandler? -System.Windows.Forms.TextBoxBase.Copy() -> void -System.Windows.Forms.TextBoxBase.Cut() -> void -System.Windows.Forms.TextBoxBase.DeselectAll() -> void -System.Windows.Forms.TextBoxBase.GetFirstCharIndexFromLine(int lineNumber) -> int -System.Windows.Forms.TextBoxBase.GetFirstCharIndexOfCurrentLine() -> int -System.Windows.Forms.TextBoxBase.HideSelection.get -> bool -System.Windows.Forms.TextBoxBase.HideSelection.set -> void -System.Windows.Forms.TextBoxBase.HideSelectionChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.Lines.get -> string![]! -System.Windows.Forms.TextBoxBase.Lines.set -> void -System.Windows.Forms.TextBoxBase.Modified.get -> bool -System.Windows.Forms.TextBoxBase.Modified.set -> void -System.Windows.Forms.TextBoxBase.ModifiedChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.TextBoxBase.MultilineChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.TextBoxBase.Padding.set -> void -System.Windows.Forms.TextBoxBase.PaddingChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.TextBoxBase.Paste() -> void -System.Windows.Forms.TextBoxBase.PreferredHeight.get -> int -System.Windows.Forms.TextBoxBase.ReadOnly.get -> bool -System.Windows.Forms.TextBoxBase.ReadOnly.set -> void -System.Windows.Forms.TextBoxBase.ReadOnlyChanged -> System.EventHandler? -System.Windows.Forms.TextBoxBase.ScrollToCaret() -> void -System.Windows.Forms.TextBoxBase.Select(int start, int length) -> void -System.Windows.Forms.TextBoxBase.SelectAll() -> void -System.Windows.Forms.TextBoxBase.SelectionStart.get -> int -System.Windows.Forms.TextBoxBase.SelectionStart.set -> void -System.Windows.Forms.TextBoxBase.Undo() -> void -System.Windows.Forms.TextBoxBase.WordWrap.get -> bool -System.Windows.Forms.TextBoxBase.WordWrap.set -> void -System.Windows.Forms.TextBoxRenderer -System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextDataFormat.CommaSeparatedValue = 4 -> System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextDataFormat.Html = 3 -> System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextDataFormat.Rtf = 2 -> System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextDataFormat.Text = 0 -> System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextDataFormat.UnicodeText = 1 -> System.Windows.Forms.TextDataFormat -System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Bottom = 8 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Default = 0 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.EndEllipsis = 32768 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.ExpandTabs = 64 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.ExternalLeading = 512 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.GlyphOverhangPadding = 0 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.HidePrefix = 1048576 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.HorizontalCenter = 1 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Internal = 4096 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Left = 0 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.LeftAndRightPadding = 536870912 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.ModifyString = 65536 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.NoClipping = 256 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.NoFullWidthCharacterBreak = 524288 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.NoPadding = 268435456 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.NoPrefix = 2048 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.PathEllipsis = 16384 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.PrefixOnly = 2097152 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.PreserveGraphicsClipping = 16777216 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.PreserveGraphicsTranslateTransform = 33554432 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Right = 2 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.RightToLeft = 131072 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.SingleLine = 32 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.TextBoxControl = 8192 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.Top = 0 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.VerticalCenter = 4 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.WordBreak = 16 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextFormatFlags.WordEllipsis = 262144 -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextImageRelation.ImageAboveText = 1 -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextImageRelation.ImageBeforeText = 4 -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextImageRelation.Overlay = 0 -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextImageRelation.TextAboveImage = 2 -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextImageRelation.TextBeforeImage = 8 -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.TextRenderer -System.Windows.Forms.ThreadExceptionDialog -System.Windows.Forms.ThreadExceptionDialog.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ThreadExceptionDialog.ThreadExceptionDialog(System.Exception! t) -> void -System.Windows.Forms.TickStyle -System.Windows.Forms.TickStyle.Both = 3 -> System.Windows.Forms.TickStyle -System.Windows.Forms.TickStyle.BottomRight = 2 -> System.Windows.Forms.TickStyle -System.Windows.Forms.TickStyle.None = 0 -> System.Windows.Forms.TickStyle -System.Windows.Forms.TickStyle.TopLeft = 1 -> System.Windows.Forms.TickStyle -System.Windows.Forms.Timer -System.Windows.Forms.Timer.Interval.get -> int -System.Windows.Forms.Timer.Interval.set -> void -System.Windows.Forms.Timer.Start() -> void -System.Windows.Forms.Timer.Stop() -> void -System.Windows.Forms.Timer.Tag.get -> object? -System.Windows.Forms.Timer.Tag.set -> void -System.Windows.Forms.Timer.Tick -> System.EventHandler! -System.Windows.Forms.Timer.Timer() -> void -System.Windows.Forms.Timer.Timer(System.ComponentModel.IContainer! container) -> void -System.Windows.Forms.ToolStrip -System.Windows.Forms.ToolStrip.AllowItemReorder.get -> bool -System.Windows.Forms.ToolStrip.AllowItemReorder.set -> void -System.Windows.Forms.ToolStrip.AllowMerge.get -> bool -System.Windows.Forms.ToolStrip.AllowMerge.set -> void -System.Windows.Forms.ToolStrip.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.ToolStrip.AutoScrollMargin.set -> void -System.Windows.Forms.ToolStrip.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.ToolStrip.AutoScrollMinSize.set -> void -System.Windows.Forms.ToolStrip.AutoScrollPosition.get -> System.Drawing.Point -System.Windows.Forms.ToolStrip.AutoScrollPosition.set -> void -System.Windows.Forms.ToolStrip.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStrip.BackColor.set -> void -System.Windows.Forms.ToolStrip.BeginDrag -> System.EventHandler? -System.Windows.Forms.ToolStrip.CanOverflow.get -> bool -System.Windows.Forms.ToolStrip.CanOverflow.set -> void -System.Windows.Forms.ToolStrip.CausesValidation.get -> bool -System.Windows.Forms.ToolStrip.CausesValidation.set -> void -System.Windows.Forms.ToolStrip.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.ControlAdded -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.ToolStrip.ControlRemoved -> System.Windows.Forms.ControlEventHandler? -System.Windows.Forms.ToolStrip.Controls.get -> System.Windows.Forms.Control.ControlCollection! -System.Windows.Forms.ToolStrip.CursorChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.EndDrag -> System.EventHandler? -System.Windows.Forms.ToolStrip.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStrip.ForeColor.set -> void -System.Windows.Forms.ToolStrip.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point point) -> System.Windows.Forms.Control? -System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue) -> System.Windows.Forms.Control? -System.Windows.Forms.ToolStrip.GetItemAt(int x, int y) -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStrip.GetItemAt(System.Drawing.Point point) -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStrip.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStrip.GripMargin.get -> System.Windows.Forms.Padding -System.Windows.Forms.ToolStrip.GripMargin.set -> void -System.Windows.Forms.ToolStrip.GripRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStrip.GripStyle.set -> void -System.Windows.Forms.ToolStrip.HasChildren.get -> bool -System.Windows.Forms.ToolStrip.HorizontalScroll.get -> System.Windows.Forms.HScrollProperties! -System.Windows.Forms.ToolStrip.ImageList.get -> System.Windows.Forms.ImageList? -System.Windows.Forms.ToolStrip.ImageList.set -> void -System.Windows.Forms.ToolStrip.ImageScalingSize.get -> System.Drawing.Size -System.Windows.Forms.ToolStrip.ImageScalingSize.set -> void -System.Windows.Forms.ToolStrip.IsCurrentlyDragging.get -> bool -System.Windows.Forms.ToolStrip.IsDropDown.get -> bool -System.Windows.Forms.ToolStrip.ItemAdded -> System.Windows.Forms.ToolStripItemEventHandler? -System.Windows.Forms.ToolStrip.ItemClicked -> System.Windows.Forms.ToolStripItemClickedEventHandler? -System.Windows.Forms.ToolStrip.ItemRemoved -> System.Windows.Forms.ToolStripItemEventHandler? -System.Windows.Forms.ToolStrip.LayoutCompleted -> System.EventHandler? -System.Windows.Forms.ToolStrip.LayoutSettings.get -> System.Windows.Forms.LayoutSettings? -System.Windows.Forms.ToolStrip.LayoutSettings.set -> void -System.Windows.Forms.ToolStrip.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStrip.LayoutStyle.set -> void -System.Windows.Forms.ToolStrip.LayoutStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.Orientation.get -> System.Windows.Forms.Orientation -System.Windows.Forms.ToolStrip.OverflowButton.get -> System.Windows.Forms.ToolStripOverflowButton! -System.Windows.Forms.ToolStrip.PaintGrip -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ToolStrip.Renderer.get -> System.Windows.Forms.ToolStripRenderer! -System.Windows.Forms.ToolStrip.Renderer.set -> void -System.Windows.Forms.ToolStrip.RendererChanged -> System.EventHandler? -System.Windows.Forms.ToolStrip.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStrip.RenderMode.set -> void -System.Windows.Forms.ToolStrip.ResetMinimumSize() -> void -System.Windows.Forms.ToolStrip.SetAutoScrollMargin(int x, int y) -> void -System.Windows.Forms.ToolStrip.SetItemLocation(System.Windows.Forms.ToolStripItem! item, System.Drawing.Point location) -> void -System.Windows.Forms.ToolStrip.ShowItemToolTips.get -> bool -System.Windows.Forms.ToolStrip.ShowItemToolTips.set -> void -System.Windows.Forms.ToolStrip.Stretch.get -> bool -System.Windows.Forms.ToolStrip.Stretch.set -> void -System.Windows.Forms.ToolStrip.TabStop.get -> bool -System.Windows.Forms.ToolStrip.TabStop.set -> void -System.Windows.Forms.ToolStrip.ToolStrip() -> void -System.Windows.Forms.ToolStrip.ToolStrip(params System.Windows.Forms.ToolStripItem![]! items) -> void -System.Windows.Forms.ToolStrip.ToolStripAccessibleObject -System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.ToolStripAccessibleObject(System.Windows.Forms.ToolStrip! owner) -> void -System.Windows.Forms.ToolStrip.VerticalScroll.get -> System.Windows.Forms.VScrollProperties! -System.Windows.Forms.ToolStripArrowRenderEventArgs -System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor.set -> void -System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle.set -> void -System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction.get -> System.Windows.Forms.ArrowDirection -System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction.set -> void -System.Windows.Forms.ToolStripArrowRenderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.ToolStripArrowRenderEventArgs.Item.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripArrowRenderEventArgs.ToolStripArrowRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem? toolStripItem, System.Drawing.Rectangle arrowRectangle, System.Drawing.Color arrowColor, System.Windows.Forms.ArrowDirection arrowDirection) -> void -System.Windows.Forms.ToolStripArrowRenderEventHandler -System.Windows.Forms.ToolStripButton -System.Windows.Forms.ToolStripButton.AutoToolTip.get -> bool -System.Windows.Forms.ToolStripButton.AutoToolTip.set -> void -System.Windows.Forms.ToolStripButton.Checked.get -> bool -System.Windows.Forms.ToolStripButton.Checked.set -> void -System.Windows.Forms.ToolStripButton.CheckedChanged -> System.EventHandler? -System.Windows.Forms.ToolStripButton.CheckOnClick.get -> bool -System.Windows.Forms.ToolStripButton.CheckOnClick.set -> void -System.Windows.Forms.ToolStripButton.CheckState.get -> System.Windows.Forms.CheckState -System.Windows.Forms.ToolStripButton.CheckState.set -> void -System.Windows.Forms.ToolStripButton.CheckStateChanged -> System.EventHandler? -System.Windows.Forms.ToolStripButton.ToolStripButton() -> void -System.Windows.Forms.ToolStripButton.ToolStripButton(string? text) -> void -System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripButton.ToolStripButton(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripComboBox -System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! -System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource.set -> void -System.Windows.Forms.ToolStripComboBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.ToolStripComboBox.AutoCompleteMode.set -> void -System.Windows.Forms.ToolStripComboBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.ToolStripComboBox.AutoCompleteSource.set -> void -System.Windows.Forms.ToolStripComboBox.BeginUpdate() -> void -System.Windows.Forms.ToolStripComboBox.ComboBox.get -> System.Windows.Forms.ComboBox! -System.Windows.Forms.ToolStripComboBox.DoubleClick -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.DropDown -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.DropDownClosed -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.DropDownHeight.get -> int -System.Windows.Forms.ToolStripComboBox.DropDownHeight.set -> void -System.Windows.Forms.ToolStripComboBox.DropDownStyle.get -> System.Windows.Forms.ComboBoxStyle -System.Windows.Forms.ToolStripComboBox.DropDownStyle.set -> void -System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.DropDownWidth.get -> int -System.Windows.Forms.ToolStripComboBox.DropDownWidth.set -> void -System.Windows.Forms.ToolStripComboBox.DroppedDown.get -> bool -System.Windows.Forms.ToolStripComboBox.DroppedDown.set -> void -System.Windows.Forms.ToolStripComboBox.EndUpdate() -> void -System.Windows.Forms.ToolStripComboBox.FindString(string? s) -> int -System.Windows.Forms.ToolStripComboBox.FindString(string? s, int startIndex) -> int -System.Windows.Forms.ToolStripComboBox.FindStringExact(string? s) -> int -System.Windows.Forms.ToolStripComboBox.FindStringExact(string? s, int startIndex) -> int -System.Windows.Forms.ToolStripComboBox.FlatStyle.get -> System.Windows.Forms.FlatStyle -System.Windows.Forms.ToolStripComboBox.FlatStyle.set -> void -System.Windows.Forms.ToolStripComboBox.GetItemHeight(int index) -> int -System.Windows.Forms.ToolStripComboBox.IntegralHeight.get -> bool -System.Windows.Forms.ToolStripComboBox.IntegralHeight.set -> void -System.Windows.Forms.ToolStripComboBox.Items.get -> System.Windows.Forms.ComboBox.ObjectCollection! -System.Windows.Forms.ToolStripComboBox.MaxDropDownItems.get -> int -System.Windows.Forms.ToolStripComboBox.MaxDropDownItems.set -> void -System.Windows.Forms.ToolStripComboBox.MaxLength.get -> int -System.Windows.Forms.ToolStripComboBox.MaxLength.set -> void -System.Windows.Forms.ToolStripComboBox.Select(int start, int length) -> void -System.Windows.Forms.ToolStripComboBox.SelectAll() -> void -System.Windows.Forms.ToolStripComboBox.SelectedIndex.get -> int -System.Windows.Forms.ToolStripComboBox.SelectedIndex.set -> void -System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.SelectedItem.get -> object? -System.Windows.Forms.ToolStripComboBox.SelectedItem.set -> void -System.Windows.Forms.ToolStripComboBox.SelectedText.get -> string! -System.Windows.Forms.ToolStripComboBox.SelectedText.set -> void -System.Windows.Forms.ToolStripComboBox.SelectionLength.get -> int -System.Windows.Forms.ToolStripComboBox.SelectionLength.set -> void -System.Windows.Forms.ToolStripComboBox.SelectionStart.get -> int -System.Windows.Forms.ToolStripComboBox.SelectionStart.set -> void -System.Windows.Forms.ToolStripComboBox.Sorted.get -> bool -System.Windows.Forms.ToolStripComboBox.Sorted.set -> void -System.Windows.Forms.ToolStripComboBox.TextUpdate -> System.EventHandler? -System.Windows.Forms.ToolStripComboBox.ToolStripComboBox() -> void -System.Windows.Forms.ToolStripComboBox.ToolStripComboBox(string? name) -> void -System.Windows.Forms.ToolStripComboBox.ToolStripComboBox(System.Windows.Forms.Control! c) -> void -System.Windows.Forms.ToolStripContainer -System.Windows.Forms.ToolStripContainer.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.ToolStripContainer.AutoScrollMargin.set -> void -System.Windows.Forms.ToolStripContainer.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.ToolStripContainer.AutoScrollMinSize.set -> void -System.Windows.Forms.ToolStripContainer.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripContainer.BackColor.set -> void -System.Windows.Forms.ToolStripContainer.BackColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.BackgroundImage.get -> System.Drawing.Image? -System.Windows.Forms.ToolStripContainer.BackgroundImage.set -> void -System.Windows.Forms.ToolStripContainer.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.BottomToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible.get -> bool -System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible.set -> void -System.Windows.Forms.ToolStripContainer.CausesValidation.get -> bool -System.Windows.Forms.ToolStripContainer.CausesValidation.set -> void -System.Windows.Forms.ToolStripContainer.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.ContentPanel.get -> System.Windows.Forms.ToolStripContentPanel! -System.Windows.Forms.ToolStripContainer.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -System.Windows.Forms.ToolStripContainer.ContextMenuStrip.set -> void -System.Windows.Forms.ToolStripContainer.ContextMenuStripChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.Controls.get -> System.Windows.Forms.Control.ControlCollection! -System.Windows.Forms.ToolStripContainer.CursorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripContainer.ForeColor.set -> void -System.Windows.Forms.ToolStripContainer.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContainer.LeftToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible.get -> bool -System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible.set -> void -System.Windows.Forms.ToolStripContainer.RightToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible.get -> bool -System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible.set -> void -System.Windows.Forms.ToolStripContainer.ToolStripContainer() -> void -System.Windows.Forms.ToolStripContainer.TopToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible.get -> bool -System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible.set -> void -System.Windows.Forms.ToolStripContentPanel -System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin.set -> void -System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize.set -> void -System.Windows.Forms.ToolStripContentPanel.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.CausesValidation.get -> bool -System.Windows.Forms.ToolStripContentPanel.CausesValidation.set -> void -System.Windows.Forms.ToolStripContentPanel.CausesValidationChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.DockChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.Load -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.Location.get -> System.Drawing.Point -System.Windows.Forms.ToolStripContentPanel.Location.set -> void -System.Windows.Forms.ToolStripContentPanel.LocationChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.Name.get -> string! -System.Windows.Forms.ToolStripContentPanel.Name.set -> void -System.Windows.Forms.ToolStripContentPanel.Renderer.get -> System.Windows.Forms.ToolStripRenderer! -System.Windows.Forms.ToolStripContentPanel.Renderer.set -> void -System.Windows.Forms.ToolStripContentPanel.RendererChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripContentPanel.RenderMode.set -> void -System.Windows.Forms.ToolStripContentPanel.TabIndex.get -> int -System.Windows.Forms.ToolStripContentPanel.TabIndex.set -> void -System.Windows.Forms.ToolStripContentPanel.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.TabStop.get -> bool -System.Windows.Forms.ToolStripContentPanel.TabStop.set -> void -System.Windows.Forms.ToolStripContentPanel.TabStopChanged -> System.EventHandler? -System.Windows.Forms.ToolStripContentPanel.ToolStripContentPanel() -> void -System.Windows.Forms.ToolStripContentPanelRenderEventArgs -System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled.get -> bool -System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled.set -> void -System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanel.get -> System.Windows.Forms.ToolStripContentPanel! -System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanelRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripContentPanel! contentPanel) -> void -System.Windows.Forms.ToolStripContentPanelRenderEventHandler -System.Windows.Forms.ToolStripControlHost -System.Windows.Forms.ToolStripControlHost.CausesValidation.get -> bool -System.Windows.Forms.ToolStripControlHost.CausesValidation.set -> void -System.Windows.Forms.ToolStripControlHost.Control.get -> System.Windows.Forms.Control! -System.Windows.Forms.ToolStripControlHost.ControlAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripControlHost.ControlAlign.set -> void -System.Windows.Forms.ToolStripControlHost.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripControlHost.DisplayStyle.set -> void -System.Windows.Forms.ToolStripControlHost.DisplayStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled.get -> bool -System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled.set -> void -System.Windows.Forms.ToolStripControlHost.Enter -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.Focus() -> void -System.Windows.Forms.ToolStripControlHost.GotFocus -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.ImageAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripControlHost.ImageAlign.set -> void -System.Windows.Forms.ToolStripControlHost.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripControlHost.ImageScaling.set -> void -System.Windows.Forms.ToolStripControlHost.ImageTransparentColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripControlHost.ImageTransparentColor.set -> void -System.Windows.Forms.ToolStripControlHost.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripControlHost.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.ToolStripControlHost.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripControlHost.Leave -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.LostFocus -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage.get -> bool -System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage.set -> void -System.Windows.Forms.ToolStripControlHost.TextAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripControlHost.TextAlign.set -> void -System.Windows.Forms.ToolStripControlHost.TextImageRelation.get -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.ToolStripControlHost.TextImageRelation.set -> void -System.Windows.Forms.ToolStripControlHost.ToolStripControlHost(System.Windows.Forms.Control! c) -> void -System.Windows.Forms.ToolStripControlHost.ToolStripControlHost(System.Windows.Forms.Control! c, string! name) -> void -System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject -System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject.ToolStripHostedControlAccessibleObject(System.Windows.Forms.Control! toolStripHostedControl, System.Windows.Forms.ToolStripControlHost? toolStripControlHost) -> void -System.Windows.Forms.ToolStripControlHost.Validated -> System.EventHandler? -System.Windows.Forms.ToolStripControlHost.Validating -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.ToolStripDropDown -System.Windows.Forms.ToolStripDropDown.AllowItemReorder.get -> bool -System.Windows.Forms.ToolStripDropDown.AllowItemReorder.set -> void -System.Windows.Forms.ToolStripDropDown.AllowTransparency.get -> bool -System.Windows.Forms.ToolStripDropDown.AllowTransparency.set -> void -System.Windows.Forms.ToolStripDropDown.AutoClose.get -> bool -System.Windows.Forms.ToolStripDropDown.AutoClose.set -> void -System.Windows.Forms.ToolStripDropDown.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.BindingContextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.CanOverflow.get -> bool -System.Windows.Forms.ToolStripDropDown.CanOverflow.set -> void -System.Windows.Forms.ToolStripDropDown.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? -System.Windows.Forms.ToolStripDropDown.Close() -> void -System.Windows.Forms.ToolStripDropDown.Close(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void -System.Windows.Forms.ToolStripDropDown.Closed -> System.Windows.Forms.ToolStripDropDownClosedEventHandler? -System.Windows.Forms.ToolStripDropDown.Closing -> System.Windows.Forms.ToolStripDropDownClosingEventHandler? -System.Windows.Forms.ToolStripDropDown.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -System.Windows.Forms.ToolStripDropDown.ContextMenuStrip.set -> void -System.Windows.Forms.ToolStripDropDown.ContextMenuStripChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.DockChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.DropShadowEnabled.get -> bool -System.Windows.Forms.ToolStripDropDown.DropShadowEnabled.set -> void -System.Windows.Forms.ToolStripDropDown.Enter -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.FontChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.ToolStripDropDown.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStripDropDown.GripMargin.get -> System.Windows.Forms.Padding -System.Windows.Forms.ToolStripDropDown.GripMargin.set -> void -System.Windows.Forms.ToolStripDropDown.GripRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripDropDown.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStripDropDown.GripStyle.set -> void -System.Windows.Forms.ToolStripDropDown.HelpRequested -> System.Windows.Forms.HelpEventHandler? -System.Windows.Forms.ToolStripDropDown.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.IsAutoGenerated.get -> bool -System.Windows.Forms.ToolStripDropDown.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripDropDown.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.ToolStripDropDown.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripDropDown.Leave -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.Location.get -> System.Drawing.Point -System.Windows.Forms.ToolStripDropDown.Location.set -> void -System.Windows.Forms.ToolStripDropDown.Opacity.get -> double -System.Windows.Forms.ToolStripDropDown.Opacity.set -> void -System.Windows.Forms.ToolStripDropDown.Opened -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.Opening -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.ToolStripDropDown.OverflowButton.get -> System.Windows.Forms.ToolStripOverflowButton! -System.Windows.Forms.ToolStripDropDown.OwnerItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripDropDown.OwnerItem.set -> void -System.Windows.Forms.ToolStripDropDown.Region.get -> System.Drawing.Region? -System.Windows.Forms.ToolStripDropDown.Region.set -> void -System.Windows.Forms.ToolStripDropDown.RegionChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.Scroll -> System.Windows.Forms.ScrollEventHandler? -System.Windows.Forms.ToolStripDropDown.Show() -> void -System.Windows.Forms.ToolStripDropDown.Show(int x, int y) -> void -System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction) -> void -System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point screenLocation) -> void -System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, int x, int y) -> void -System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, System.Drawing.Point position) -> void -System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction) -> void -System.Windows.Forms.ToolStripDropDown.Stretch.get -> bool -System.Windows.Forms.ToolStripDropDown.Stretch.set -> void -System.Windows.Forms.ToolStripDropDown.StyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.TabIndex.get -> int -System.Windows.Forms.ToolStripDropDown.TabIndex.set -> void -System.Windows.Forms.ToolStripDropDown.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.TabStopChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.TextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.ToolStripDropDown() -> void -System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject -System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.ToolStripDropDownAccessibleObject(System.Windows.Forms.ToolStripDropDown! owner) -> void -System.Windows.Forms.ToolStripDropDown.TopLevel.get -> bool -System.Windows.Forms.ToolStripDropDown.TopLevel.set -> void -System.Windows.Forms.ToolStripDropDown.Validated -> System.EventHandler? -System.Windows.Forms.ToolStripDropDown.Validating -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.ToolStripDropDown.Visible.get -> bool -System.Windows.Forms.ToolStripDropDown.Visible.set -> void -System.Windows.Forms.ToolStripDropDownButton -System.Windows.Forms.ToolStripDropDownButton.AutoToolTip.get -> bool -System.Windows.Forms.ToolStripDropDownButton.AutoToolTip.set -> void -System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow.get -> bool -System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow.set -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton() -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text) -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripDropDownClosedEventArgs -System.Windows.Forms.ToolStripDropDownClosedEventArgs.CloseReason.get -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownClosedEventArgs.ToolStripDropDownClosedEventArgs(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void -System.Windows.Forms.ToolStripDropDownClosedEventHandler -System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownCloseReason.AppClicked = 1 -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownCloseReason.AppFocusChange = 0 -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownCloseReason.CloseCalled = 4 -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownCloseReason.ItemClicked = 2 -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownCloseReason.Keyboard = 3 -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownClosingEventArgs -System.Windows.Forms.ToolStripDropDownClosingEventArgs.CloseReason.get -> System.Windows.Forms.ToolStripDropDownCloseReason -System.Windows.Forms.ToolStripDropDownClosingEventArgs.ToolStripDropDownClosingEventArgs(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void -System.Windows.Forms.ToolStripDropDownClosingEventHandler -System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.AboveLeft = 0 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.AboveRight = 1 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.BelowLeft = 2 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.BelowRight = 3 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.Default = 7 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.Left = 4 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownDirection.Right = 5 -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownItem -System.Windows.Forms.ToolStripDropDownItem.DropDown.get -> System.Windows.Forms.ToolStripDropDown! -System.Windows.Forms.ToolStripDropDownItem.DropDown.set -> void -System.Windows.Forms.ToolStripDropDownItem.DropDownClosed -> System.EventHandler? -System.Windows.Forms.ToolStripDropDownItem.DropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection -System.Windows.Forms.ToolStripDropDownItem.DropDownDirection.set -> void -System.Windows.Forms.ToolStripDropDownItem.DropDownItemClicked -> System.Windows.Forms.ToolStripItemClickedEventHandler? -System.Windows.Forms.ToolStripDropDownItem.DropDownItems.get -> System.Windows.Forms.ToolStripItemCollection! -System.Windows.Forms.ToolStripDropDownItem.DropDownOpened -> System.EventHandler? -System.Windows.Forms.ToolStripDropDownItem.DropDownOpening -> System.EventHandler? -System.Windows.Forms.ToolStripDropDownItem.HasDropDown.get -> bool -System.Windows.Forms.ToolStripDropDownItem.HideDropDown() -> void -System.Windows.Forms.ToolStripDropDownItem.ShowDropDown() -> void -System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem() -> void -System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void -System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripDropDownItemAccessibleObject -System.Windows.Forms.ToolStripDropDownItemAccessibleObject.ToolStripDropDownItemAccessibleObject(System.Windows.Forms.ToolStripDropDownItem! item) -> void -System.Windows.Forms.ToolStripDropDownMenu -System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle.set -> void -System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin.get -> bool -System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin.set -> void -System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin.get -> bool -System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin.set -> void -System.Windows.Forms.ToolStripDropDownMenu.ToolStripDropDownMenu() -> void -System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStripGripDisplayStyle.Horizontal = 0 -> System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStripGripDisplayStyle.Vertical = 1 -> System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStripGripRenderEventArgs -System.Windows.Forms.ToolStripGripRenderEventArgs.GripBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripGripRenderEventArgs.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle -System.Windows.Forms.ToolStripGripRenderEventArgs.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStripGripRenderEventArgs.ToolStripGripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip) -> void -System.Windows.Forms.ToolStripGripRenderEventHandler -System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStripGripStyle.Hidden = 0 -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStripGripStyle.Visible = 1 -> System.Windows.Forms.ToolStripGripStyle -System.Windows.Forms.ToolStripItem -System.Windows.Forms.ToolStripItem.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject! -System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription.get -> string? -System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription.set -> void -System.Windows.Forms.ToolStripItem.AccessibleDescription.get -> string? -System.Windows.Forms.ToolStripItem.AccessibleDescription.set -> void -System.Windows.Forms.ToolStripItem.AccessibleName.get -> string? -System.Windows.Forms.ToolStripItem.AccessibleName.set -> void -System.Windows.Forms.ToolStripItem.AccessibleRole.get -> System.Windows.Forms.AccessibleRole -System.Windows.Forms.ToolStripItem.AccessibleRole.set -> void -System.Windows.Forms.ToolStripItem.Alignment.get -> System.Windows.Forms.ToolStripItemAlignment -System.Windows.Forms.ToolStripItem.Alignment.set -> void -System.Windows.Forms.ToolStripItem.Anchor.get -> System.Windows.Forms.AnchorStyles -System.Windows.Forms.ToolStripItem.Anchor.set -> void -System.Windows.Forms.ToolStripItem.AutoSize.get -> bool -System.Windows.Forms.ToolStripItem.AutoSize.set -> void -System.Windows.Forms.ToolStripItem.AutoToolTip.get -> bool -System.Windows.Forms.ToolStripItem.AutoToolTip.set -> void -System.Windows.Forms.ToolStripItem.Available.get -> bool -System.Windows.Forms.ToolStripItem.Available.set -> void -System.Windows.Forms.ToolStripItem.AvailableChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.BackColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Click -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Command.get -> System.Windows.Input.ICommand? -System.Windows.Forms.ToolStripItem.Command.set -> void -System.Windows.Forms.ToolStripItem.CommandCanExecuteChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.CommandChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.CommandParameter.get -> object? -System.Windows.Forms.ToolStripItem.CommandParameter.set -> void -System.Windows.Forms.ToolStripItem.CommandParameterChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.ContentRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripItem.DisplayStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Dock.get -> System.Windows.Forms.DockStyle -System.Windows.Forms.ToolStripItem.Dock.set -> void -System.Windows.Forms.ToolStripItem.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects) -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.ToolStripItem.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> System.Windows.Forms.DragDropEffects -System.Windows.Forms.ToolStripItem.DoubleClick -> System.EventHandler? -System.Windows.Forms.ToolStripItem.DoubleClickEnabled.get -> bool -System.Windows.Forms.ToolStripItem.DoubleClickEnabled.set -> void -System.Windows.Forms.ToolStripItem.DragDrop -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.ToolStripItem.DragEnter -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.ToolStripItem.DragLeave -> System.EventHandler? -System.Windows.Forms.ToolStripItem.DragOver -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.ToolStripItem.EnabledChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.GetCurrentParent() -> System.Windows.Forms.ToolStrip? -System.Windows.Forms.ToolStripItem.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.ToolStripItem.Height.get -> int -System.Windows.Forms.ToolStripItem.Height.set -> void -System.Windows.Forms.ToolStripItem.ImageAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripItem.ImageAlign.set -> void -System.Windows.Forms.ToolStripItem.ImageIndex.get -> int -System.Windows.Forms.ToolStripItem.ImageIndex.set -> void -System.Windows.Forms.ToolStripItem.ImageKey.get -> string! -System.Windows.Forms.ToolStripItem.ImageKey.set -> void -System.Windows.Forms.ToolStripItem.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripItem.ImageScaling.set -> void -System.Windows.Forms.ToolStripItem.ImageTransparentColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripItem.ImageTransparentColor.set -> void -System.Windows.Forms.ToolStripItem.Invalidate() -> void -System.Windows.Forms.ToolStripItem.Invalidate(System.Drawing.Rectangle r) -> void -System.Windows.Forms.ToolStripItem.IsDisposed.get -> bool -System.Windows.Forms.ToolStripItem.IsOnDropDown.get -> bool -System.Windows.Forms.ToolStripItem.IsOnOverflow.get -> bool -System.Windows.Forms.ToolStripItem.LocationChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Margin.get -> System.Windows.Forms.Padding -System.Windows.Forms.ToolStripItem.Margin.set -> void -System.Windows.Forms.ToolStripItem.MergeAction.get -> System.Windows.Forms.MergeAction -System.Windows.Forms.ToolStripItem.MergeAction.set -> void -System.Windows.Forms.ToolStripItem.MergeIndex.get -> int -System.Windows.Forms.ToolStripItem.MergeIndex.set -> void -System.Windows.Forms.ToolStripItem.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ToolStripItem.MouseEnter -> System.EventHandler? -System.Windows.Forms.ToolStripItem.MouseHover -> System.EventHandler? -System.Windows.Forms.ToolStripItem.MouseLeave -> System.EventHandler? -System.Windows.Forms.ToolStripItem.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ToolStripItem.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.ToolStripItem.Name.get -> string? -System.Windows.Forms.ToolStripItem.Name.set -> void -System.Windows.Forms.ToolStripItem.Overflow.get -> System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripItem.Overflow.set -> void -System.Windows.Forms.ToolStripItem.Owner.get -> System.Windows.Forms.ToolStrip? -System.Windows.Forms.ToolStripItem.Owner.set -> void -System.Windows.Forms.ToolStripItem.OwnerChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.OwnerItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripItem.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.ToolStripItem.Parent.get -> System.Windows.Forms.ToolStrip? -System.Windows.Forms.ToolStripItem.Parent.set -> void -System.Windows.Forms.ToolStripItem.PerformClick() -> void -System.Windows.Forms.ToolStripItem.Placement.get -> System.Windows.Forms.ToolStripItemPlacement -System.Windows.Forms.ToolStripItem.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? -System.Windows.Forms.ToolStripItem.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? -System.Windows.Forms.ToolStripItem.ResetMargin() -> void -System.Windows.Forms.ToolStripItem.ResetPadding() -> void -System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage.get -> bool -System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage.set -> void -System.Windows.Forms.ToolStripItem.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Select() -> void -System.Windows.Forms.ToolStripItem.Tag.get -> object? -System.Windows.Forms.ToolStripItem.Tag.set -> void -System.Windows.Forms.ToolStripItem.TextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.TextImageRelation.get -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.ToolStripItem.TextImageRelation.set -> void -System.Windows.Forms.ToolStripItem.ToolStripItem() -> void -System.Windows.Forms.ToolStripItem.ToolStripItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripItem.ToolStripItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject -System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.AddState(System.Windows.Forms.AccessibleStates state) -> void -System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToolStripItemAccessibleObject(System.Windows.Forms.ToolStripItem! ownerItem) -> void -System.Windows.Forms.ToolStripItem.ToolTipText.get -> string? -System.Windows.Forms.ToolStripItem.ToolTipText.set -> void -System.Windows.Forms.ToolStripItem.Visible.get -> bool -System.Windows.Forms.ToolStripItem.Visible.set -> void -System.Windows.Forms.ToolStripItem.VisibleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripItem.Width.get -> int -System.Windows.Forms.ToolStripItem.Width.set -> void -System.Windows.Forms.ToolStripItemAlignment -System.Windows.Forms.ToolStripItemAlignment.Left = 0 -> System.Windows.Forms.ToolStripItemAlignment -System.Windows.Forms.ToolStripItemAlignment.Right = 1 -> System.Windows.Forms.ToolStripItemAlignment -System.Windows.Forms.ToolStripItemClickedEventArgs -System.Windows.Forms.ToolStripItemClickedEventArgs.ClickedItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripItemClickedEventArgs.ToolStripItemClickedEventArgs(System.Windows.Forms.ToolStripItem? clickedItem) -> void -System.Windows.Forms.ToolStripItemClickedEventHandler -System.Windows.Forms.ToolStripItemCollection -System.Windows.Forms.ToolStripItemCollection.Add(string? text) -> System.Windows.Forms.ToolStripItem! -System.Windows.Forms.ToolStripItemCollection.Add(string? text, System.Drawing.Image? image) -> System.Windows.Forms.ToolStripItem! -System.Windows.Forms.ToolStripItemCollection.Add(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! -System.Windows.Forms.ToolStripItemCollection.Add(System.Drawing.Image? image) -> System.Windows.Forms.ToolStripItem! -System.Windows.Forms.ToolStripItemCollection.Add(System.Windows.Forms.ToolStripItem! value) -> int -System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem![]! toolStripItems) -> void -System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItemCollection! toolStripItems) -> void -System.Windows.Forms.ToolStripItemCollection.Contains(System.Windows.Forms.ToolStripItem! value) -> bool -System.Windows.Forms.ToolStripItemCollection.CopyTo(System.Windows.Forms.ToolStripItem![]! array, int index) -> void -System.Windows.Forms.ToolStripItemCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.ToolStripItem![]! -System.Windows.Forms.ToolStripItemCollection.IndexOf(System.Windows.Forms.ToolStripItem! value) -> int -System.Windows.Forms.ToolStripItemCollection.Insert(int index, System.Windows.Forms.ToolStripItem! value) -> void -System.Windows.Forms.ToolStripItemCollection.Remove(System.Windows.Forms.ToolStripItem! value) -> void -System.Windows.Forms.ToolStripItemCollection.RemoveAt(int index) -> void -System.Windows.Forms.ToolStripItemCollection.ToolStripItemCollection(System.Windows.Forms.ToolStrip! owner, System.Windows.Forms.ToolStripItem![]! value) -> void -System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripItemDisplayStyle.Image = 2 -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText = 3 -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripItemDisplayStyle.None = 0 -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripItemDisplayStyle.Text = 1 -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripItemEventArgs -System.Windows.Forms.ToolStripItemEventArgs.Item.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripItemEventArgs.ToolStripItemEventArgs(System.Windows.Forms.ToolStripItem? item) -> void -System.Windows.Forms.ToolStripItemEventHandler -System.Windows.Forms.ToolStripItemImageRenderEventArgs -System.Windows.Forms.ToolStripItemImageRenderEventArgs.Image.get -> System.Drawing.Image? -System.Windows.Forms.ToolStripItemImageRenderEventArgs.ImageRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripItemImageRenderEventArgs.ToolStripItemImageRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, System.Drawing.Image? image, System.Drawing.Rectangle imageRectangle) -> void -System.Windows.Forms.ToolStripItemImageRenderEventArgs.ToolStripItemImageRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, System.Drawing.Rectangle imageRectangle) -> void -System.Windows.Forms.ToolStripItemImageRenderEventHandler -System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripItemImageScaling.None = 0 -> System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripItemImageScaling.SizeToFit = 1 -> System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripItemOverflow.Always = 1 -> System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripItemOverflow.AsNeeded = 2 -> System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripItemOverflow.Never = 0 -> System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripItemPlacement -System.Windows.Forms.ToolStripItemPlacement.Main = 0 -> System.Windows.Forms.ToolStripItemPlacement -System.Windows.Forms.ToolStripItemPlacement.None = 2 -> System.Windows.Forms.ToolStripItemPlacement -System.Windows.Forms.ToolStripItemPlacement.Overflow = 1 -> System.Windows.Forms.ToolStripItemPlacement -System.Windows.Forms.ToolStripItemRenderEventArgs -System.Windows.Forms.ToolStripItemRenderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.ToolStripItemRenderEventArgs.Item.get -> System.Windows.Forms.ToolStripItem! -System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStrip.get -> System.Windows.Forms.ToolStrip? -System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStripItemRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item) -> void -System.Windows.Forms.ToolStripItemRenderEventHandler -System.Windows.Forms.ToolStripItemTextRenderEventArgs -System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text.get -> string? -System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont.get -> System.Drawing.Font? -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat.get -> System.Windows.Forms.TextFormatFlags -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle.set -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.ToolStripItemTextRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, string? text, System.Drawing.Rectangle textRectangle, System.Drawing.Color textColor, System.Drawing.Font? textFont, System.Drawing.ContentAlignment textAlign) -> void -System.Windows.Forms.ToolStripItemTextRenderEventArgs.ToolStripItemTextRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, string? text, System.Drawing.Rectangle textRectangle, System.Drawing.Color textColor, System.Drawing.Font? textFont, System.Windows.Forms.TextFormatFlags format) -> void -System.Windows.Forms.ToolStripItemTextRenderEventHandler -System.Windows.Forms.ToolStripLabel -System.Windows.Forms.ToolStripLabel.ActiveLinkColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripLabel.ActiveLinkColor.set -> void -System.Windows.Forms.ToolStripLabel.IsLink.get -> bool -System.Windows.Forms.ToolStripLabel.IsLink.set -> void -System.Windows.Forms.ToolStripLabel.LinkBehavior.get -> System.Windows.Forms.LinkBehavior -System.Windows.Forms.ToolStripLabel.LinkBehavior.set -> void -System.Windows.Forms.ToolStripLabel.LinkColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripLabel.LinkColor.set -> void -System.Windows.Forms.ToolStripLabel.LinkVisited.get -> bool -System.Windows.Forms.ToolStripLabel.LinkVisited.set -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel() -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text) -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink) -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripLabel.ToolStripLabel(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripLabel.VisitedLinkColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripLabel.VisitedLinkColor.set -> void -System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripLayoutStyle.Flow = 3 -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow = 1 -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow = 0 -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripLayoutStyle.Table = 4 -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow = 2 -> System.Windows.Forms.ToolStripLayoutStyle -System.Windows.Forms.ToolStripManager -System.Windows.Forms.ToolStripManagerRenderMode -System.Windows.Forms.ToolStripManagerRenderMode.Custom = 0 -> System.Windows.Forms.ToolStripManagerRenderMode -System.Windows.Forms.ToolStripManagerRenderMode.Professional = 2 -> System.Windows.Forms.ToolStripManagerRenderMode -System.Windows.Forms.ToolStripManagerRenderMode.System = 1 -> System.Windows.Forms.ToolStripManagerRenderMode -System.Windows.Forms.ToolStripMenuItem -System.Windows.Forms.ToolStripMenuItem.Checked.get -> bool -System.Windows.Forms.ToolStripMenuItem.Checked.set -> void -System.Windows.Forms.ToolStripMenuItem.CheckedChanged -> System.EventHandler? -System.Windows.Forms.ToolStripMenuItem.CheckOnClick.get -> bool -System.Windows.Forms.ToolStripMenuItem.CheckOnClick.set -> void -System.Windows.Forms.ToolStripMenuItem.CheckState.get -> System.Windows.Forms.CheckState -System.Windows.Forms.ToolStripMenuItem.CheckState.set -> void -System.Windows.Forms.ToolStripMenuItem.CheckStateChanged -> System.EventHandler? -System.Windows.Forms.ToolStripMenuItem.IsMdiWindowListEntry.get -> bool -System.Windows.Forms.ToolStripMenuItem.Overflow.get -> System.Windows.Forms.ToolStripItemOverflow -System.Windows.Forms.ToolStripMenuItem.Overflow.set -> void -System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString.get -> string? -System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString.set -> void -System.Windows.Forms.ToolStripMenuItem.ShortcutKeys.get -> System.Windows.Forms.Keys -System.Windows.Forms.ToolStripMenuItem.ShortcutKeys.set -> void -System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys.get -> bool -System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys.set -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem() -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, System.Windows.Forms.Keys shortcutKeys) -> void -System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripOverflow -System.Windows.Forms.ToolStripOverflow.ToolStripOverflow(System.Windows.Forms.ToolStripItem! parentItem) -> void -System.Windows.Forms.ToolStripOverflowButton -System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage.get -> bool -System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage.set -> void -System.Windows.Forms.ToolStripPanel -System.Windows.Forms.ToolStripPanel.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.ToolStripPanel.AutoScrollMargin.set -> void -System.Windows.Forms.ToolStripPanel.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.ToolStripPanel.AutoScrollMinSize.set -> void -System.Windows.Forms.ToolStripPanel.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.ToolStripPanel.BeginInit() -> void -System.Windows.Forms.ToolStripPanel.EndInit() -> void -System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag) -> void -System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, int row) -> void -System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, int x, int y) -> void -System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, System.Drawing.Point location) -> void -System.Windows.Forms.ToolStripPanel.Locked.get -> bool -System.Windows.Forms.ToolStripPanel.Locked.set -> void -System.Windows.Forms.ToolStripPanel.Orientation.get -> System.Windows.Forms.Orientation -System.Windows.Forms.ToolStripPanel.Orientation.set -> void -System.Windows.Forms.ToolStripPanel.PointToRow(System.Drawing.Point clientLocation) -> System.Windows.Forms.ToolStripPanelRow? -System.Windows.Forms.ToolStripPanel.Renderer.get -> System.Windows.Forms.ToolStripRenderer! -System.Windows.Forms.ToolStripPanel.Renderer.set -> void -System.Windows.Forms.ToolStripPanel.RendererChanged -> System.EventHandler? -System.Windows.Forms.ToolStripPanel.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripPanel.RenderMode.set -> void -System.Windows.Forms.ToolStripPanel.RowMargin.get -> System.Windows.Forms.Padding -System.Windows.Forms.ToolStripPanel.RowMargin.set -> void -System.Windows.Forms.ToolStripPanel.Rows.get -> System.Windows.Forms.ToolStripPanelRow![]! -System.Windows.Forms.ToolStripPanel.TabIndex.get -> int -System.Windows.Forms.ToolStripPanel.TabIndex.set -> void -System.Windows.Forms.ToolStripPanel.TabIndexChanged -> System.EventHandler? -System.Windows.Forms.ToolStripPanel.TabStop.get -> bool -System.Windows.Forms.ToolStripPanel.TabStop.set -> void -System.Windows.Forms.ToolStripPanel.TabStopChanged -> System.EventHandler? -System.Windows.Forms.ToolStripPanel.TextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripPanel.ToolStripPanel() -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Add(System.Windows.Forms.ToolStripPanelRow! value) -> int -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection! value) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanelRow![]! value) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Contains(System.Windows.Forms.ToolStripPanelRow! value) -> bool -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.CopyTo(System.Windows.Forms.ToolStripPanelRow![]! array, int index) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.IndexOf(System.Windows.Forms.ToolStripPanelRow! value) -> int -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Insert(int index, System.Windows.Forms.ToolStripPanelRow! value) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Remove(System.Windows.Forms.ToolStripPanelRow! value) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.RemoveAt(int index) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.ToolStripPanelRowCollection(System.Windows.Forms.ToolStripPanel! owner) -> void -System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.ToolStripPanelRowCollection(System.Windows.Forms.ToolStripPanel! owner, System.Windows.Forms.ToolStripPanelRow![]! value) -> void -System.Windows.Forms.ToolStripPanelRenderEventArgs -System.Windows.Forms.ToolStripPanelRenderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled.get -> bool -System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled.set -> void -System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanelRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripPanel! toolStripPanel) -> void -System.Windows.Forms.ToolStripPanelRenderEventHandler -System.Windows.Forms.ToolStripPanelRow -System.Windows.Forms.ToolStripPanelRow.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripPanelRow.CanMove(System.Windows.Forms.ToolStrip! toolStripToDrag) -> bool -System.Windows.Forms.ToolStripPanelRow.Controls.get -> System.Windows.Forms.Control![]! -System.Windows.Forms.ToolStripPanelRow.DisplayRectangle.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripPanelRow.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -System.Windows.Forms.ToolStripPanelRow.Margin.get -> System.Windows.Forms.Padding -System.Windows.Forms.ToolStripPanelRow.Margin.set -> void -System.Windows.Forms.ToolStripPanelRow.OnBoundsChanged(System.Drawing.Rectangle oldBounds, System.Drawing.Rectangle newBounds) -> void -System.Windows.Forms.ToolStripPanelRow.Orientation.get -> System.Windows.Forms.Orientation -System.Windows.Forms.ToolStripPanelRow.ToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! -System.Windows.Forms.ToolStripPanelRow.ToolStripPanelRow(System.Windows.Forms.ToolStripPanel! parent) -> void -System.Windows.Forms.ToolStripProfessionalRenderer -System.Windows.Forms.ToolStripProfessionalRenderer.ColorTable.get -> System.Windows.Forms.ProfessionalColorTable! -System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges.get -> bool -System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges.set -> void -System.Windows.Forms.ToolStripProfessionalRenderer.ToolStripProfessionalRenderer() -> void -System.Windows.Forms.ToolStripProfessionalRenderer.ToolStripProfessionalRenderer(System.Windows.Forms.ProfessionalColorTable! professionalColorTable) -> void -System.Windows.Forms.ToolStripProgressBar -System.Windows.Forms.ToolStripProgressBar.Increment(int value) -> void -System.Windows.Forms.ToolStripProgressBar.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripProgressBar.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.ToolStripProgressBar.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.ToolStripProgressBar.LocationChanged -> System.EventHandler? -System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed.get -> int -System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed.set -> void -System.Windows.Forms.ToolStripProgressBar.Maximum.get -> int -System.Windows.Forms.ToolStripProgressBar.Maximum.set -> void -System.Windows.Forms.ToolStripProgressBar.Minimum.get -> int -System.Windows.Forms.ToolStripProgressBar.Minimum.set -> void -System.Windows.Forms.ToolStripProgressBar.OwnerChanged -> System.EventHandler? -System.Windows.Forms.ToolStripProgressBar.PerformStep() -> void -System.Windows.Forms.ToolStripProgressBar.ProgressBar.get -> System.Windows.Forms.ProgressBar! -System.Windows.Forms.ToolStripProgressBar.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.ToolStripProgressBar.Step.get -> int -System.Windows.Forms.ToolStripProgressBar.Step.set -> void -System.Windows.Forms.ToolStripProgressBar.Style.get -> System.Windows.Forms.ProgressBarStyle -System.Windows.Forms.ToolStripProgressBar.Style.set -> void -System.Windows.Forms.ToolStripProgressBar.TextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripProgressBar.ToolStripProgressBar() -> void -System.Windows.Forms.ToolStripProgressBar.ToolStripProgressBar(string? name) -> void -System.Windows.Forms.ToolStripProgressBar.Validated -> System.EventHandler? -System.Windows.Forms.ToolStripProgressBar.Validating -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.ToolStripProgressBar.Value.get -> int -System.Windows.Forms.ToolStripProgressBar.Value.set -> void -System.Windows.Forms.ToolStripRenderer -System.Windows.Forms.ToolStripRenderer.DrawArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawSplitButton(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.DrawToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -System.Windows.Forms.ToolStripRenderer.RenderArrow -> System.Windows.Forms.ToolStripArrowRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderGrip -> System.Windows.Forms.ToolStripGripRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderImageMargin -> System.Windows.Forms.ToolStripRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderItemBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderItemCheck -> System.Windows.Forms.ToolStripItemImageRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderItemImage -> System.Windows.Forms.ToolStripItemImageRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderItemText -> System.Windows.Forms.ToolStripItemTextRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderLabelBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderSeparator -> System.Windows.Forms.ToolStripSeparatorRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderSplitButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderStatusStripSizingGrip -> System.Windows.Forms.ToolStripRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground -> System.Windows.Forms.ToolStripRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder -> System.Windows.Forms.ToolStripRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground -> System.Windows.Forms.ToolStripContentPanelRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground -> System.Windows.Forms.ToolStripPanelRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! -System.Windows.Forms.ToolStripRenderer.ToolStripRenderer() -> void -System.Windows.Forms.ToolStripRenderEventArgs -System.Windows.Forms.ToolStripRenderEventArgs.AffectedBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripRenderEventArgs.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripRenderEventArgs.ConnectedArea.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripRenderEventArgs.Graphics.get -> System.Drawing.Graphics! -System.Windows.Forms.ToolStripRenderEventArgs.ToolStrip.get -> System.Windows.Forms.ToolStrip! -System.Windows.Forms.ToolStripRenderEventArgs.ToolStripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip) -> void -System.Windows.Forms.ToolStripRenderEventArgs.ToolStripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip, System.Drawing.Rectangle affectedBounds, System.Drawing.Color backColor) -> void -System.Windows.Forms.ToolStripRenderEventHandler -System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripRenderMode.Custom = 0 -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode = 3 -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripRenderMode.Professional = 2 -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripRenderMode.System = 1 -> System.Windows.Forms.ToolStripRenderMode -System.Windows.Forms.ToolStripSeparator -System.Windows.Forms.ToolStripSeparator.AutoToolTip.get -> bool -System.Windows.Forms.ToolStripSeparator.AutoToolTip.set -> void -System.Windows.Forms.ToolStripSeparator.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle -System.Windows.Forms.ToolStripSeparator.DisplayStyle.set -> void -System.Windows.Forms.ToolStripSeparator.DisplayStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled.get -> bool -System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled.set -> void -System.Windows.Forms.ToolStripSeparator.EnabledChanged -> System.EventHandler? -System.Windows.Forms.ToolStripSeparator.ImageAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripSeparator.ImageAlign.set -> void -System.Windows.Forms.ToolStripSeparator.ImageIndex.get -> int -System.Windows.Forms.ToolStripSeparator.ImageIndex.set -> void -System.Windows.Forms.ToolStripSeparator.ImageKey.get -> string! -System.Windows.Forms.ToolStripSeparator.ImageKey.set -> void -System.Windows.Forms.ToolStripSeparator.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling -System.Windows.Forms.ToolStripSeparator.ImageScaling.set -> void -System.Windows.Forms.ToolStripSeparator.ImageTransparentColor.get -> System.Drawing.Color -System.Windows.Forms.ToolStripSeparator.ImageTransparentColor.set -> void -System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage.get -> bool -System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage.set -> void -System.Windows.Forms.ToolStripSeparator.TextAlign.get -> System.Drawing.ContentAlignment -System.Windows.Forms.ToolStripSeparator.TextAlign.set -> void -System.Windows.Forms.ToolStripSeparator.TextChanged -> System.EventHandler? -System.Windows.Forms.ToolStripSeparator.TextImageRelation.get -> System.Windows.Forms.TextImageRelation -System.Windows.Forms.ToolStripSeparator.TextImageRelation.set -> void -System.Windows.Forms.ToolStripSeparator.ToolStripSeparator() -> void -System.Windows.Forms.ToolStripSeparator.ToolTipText.get -> string? -System.Windows.Forms.ToolStripSeparator.ToolTipText.set -> void -System.Windows.Forms.ToolStripSeparatorRenderEventArgs -System.Windows.Forms.ToolStripSeparatorRenderEventArgs.ToolStripSeparatorRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripSeparator! separator, bool vertical) -> void -System.Windows.Forms.ToolStripSeparatorRenderEventArgs.Vertical.get -> bool -System.Windows.Forms.ToolStripSeparatorRenderEventHandler -System.Windows.Forms.ToolStripSplitButton -System.Windows.Forms.ToolStripSplitButton.AutoToolTip.get -> bool -System.Windows.Forms.ToolStripSplitButton.AutoToolTip.set -> void -System.Windows.Forms.ToolStripSplitButton.ButtonBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripSplitButton.ButtonClick -> System.EventHandler? -System.Windows.Forms.ToolStripSplitButton.ButtonDoubleClick -> System.EventHandler? -System.Windows.Forms.ToolStripSplitButton.ButtonPressed.get -> bool -System.Windows.Forms.ToolStripSplitButton.ButtonSelected.get -> bool -System.Windows.Forms.ToolStripSplitButton.DefaultItem.get -> System.Windows.Forms.ToolStripItem? -System.Windows.Forms.ToolStripSplitButton.DefaultItem.set -> void -System.Windows.Forms.ToolStripSplitButton.DefaultItemChanged -> System.EventHandler? -System.Windows.Forms.ToolStripSplitButton.DropDownButtonBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed.get -> bool -System.Windows.Forms.ToolStripSplitButton.DropDownButtonSelected.get -> bool -System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth.get -> int -System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth.set -> void -System.Windows.Forms.ToolStripSplitButton.PerformButtonClick() -> void -System.Windows.Forms.ToolStripSplitButton.SplitterBounds.get -> System.Drawing.Rectangle -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton() -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject -System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.ToolStripSplitButtonAccessibleObject(System.Windows.Forms.ToolStripSplitButton! item) -> void -System.Windows.Forms.ToolStripStatusLabel -System.Windows.Forms.ToolStripStatusLabel.Alignment.get -> System.Windows.Forms.ToolStripItemAlignment -System.Windows.Forms.ToolStripStatusLabel.Alignment.set -> void -System.Windows.Forms.ToolStripStatusLabel.BorderSides.get -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabel.BorderSides.set -> void -System.Windows.Forms.ToolStripStatusLabel.BorderStyle.get -> System.Windows.Forms.Border3DStyle -System.Windows.Forms.ToolStripStatusLabel.BorderStyle.set -> void -System.Windows.Forms.ToolStripStatusLabel.LiveSetting.get -> System.Windows.Forms.Automation.AutomationLiveSetting -System.Windows.Forms.ToolStripStatusLabel.LiveSetting.set -> void -System.Windows.Forms.ToolStripStatusLabel.Spring.get -> bool -System.Windows.Forms.ToolStripStatusLabel.Spring.set -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel() -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text) -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void -System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(System.Drawing.Image? image) -> void -System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.All = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom = 8 -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.Left = 1 -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.None = 0 -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.Right = 4 -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripStatusLabelBorderSides.Top = 2 -> System.Windows.Forms.ToolStripStatusLabelBorderSides -System.Windows.Forms.ToolStripSystemRenderer -System.Windows.Forms.ToolStripSystemRenderer.ToolStripSystemRenderer() -> void -System.Windows.Forms.ToolStripTextBox -System.Windows.Forms.ToolStripTextBox.AcceptsReturn.get -> bool -System.Windows.Forms.ToolStripTextBox.AcceptsReturn.set -> void -System.Windows.Forms.ToolStripTextBox.AcceptsTab.get -> bool -System.Windows.Forms.ToolStripTextBox.AcceptsTab.set -> void -System.Windows.Forms.ToolStripTextBox.AcceptsTabChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.AppendText(string? text) -> void -System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! -System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource.set -> void -System.Windows.Forms.ToolStripTextBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode -System.Windows.Forms.ToolStripTextBox.AutoCompleteMode.set -> void -System.Windows.Forms.ToolStripTextBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource -System.Windows.Forms.ToolStripTextBox.AutoCompleteSource.set -> void -System.Windows.Forms.ToolStripTextBox.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.ToolStripTextBox.BorderStyle.set -> void -System.Windows.Forms.ToolStripTextBox.BorderStyleChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.CanUndo.get -> bool -System.Windows.Forms.ToolStripTextBox.CharacterCasing.get -> System.Windows.Forms.CharacterCasing -System.Windows.Forms.ToolStripTextBox.CharacterCasing.set -> void -System.Windows.Forms.ToolStripTextBox.Clear() -> void -System.Windows.Forms.ToolStripTextBox.ClearUndo() -> void -System.Windows.Forms.ToolStripTextBox.Copy() -> void -System.Windows.Forms.ToolStripTextBox.Cut() -> void -System.Windows.Forms.ToolStripTextBox.DeselectAll() -> void -System.Windows.Forms.ToolStripTextBox.GetCharFromPosition(System.Drawing.Point pt) -> char -System.Windows.Forms.ToolStripTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int -System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexFromLine(int lineNumber) -> int -System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexOfCurrentLine() -> int -System.Windows.Forms.ToolStripTextBox.GetLineFromCharIndex(int index) -> int -System.Windows.Forms.ToolStripTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point -System.Windows.Forms.ToolStripTextBox.HideSelection.get -> bool -System.Windows.Forms.ToolStripTextBox.HideSelection.set -> void -System.Windows.Forms.ToolStripTextBox.HideSelectionChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.Lines.get -> string![]! -System.Windows.Forms.ToolStripTextBox.Lines.set -> void -System.Windows.Forms.ToolStripTextBox.MaxLength.get -> int -System.Windows.Forms.ToolStripTextBox.MaxLength.set -> void -System.Windows.Forms.ToolStripTextBox.Modified.get -> bool -System.Windows.Forms.ToolStripTextBox.Modified.set -> void -System.Windows.Forms.ToolStripTextBox.ModifiedChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.Multiline.get -> bool -System.Windows.Forms.ToolStripTextBox.Multiline.set -> void -System.Windows.Forms.ToolStripTextBox.MultilineChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.Paste() -> void -System.Windows.Forms.ToolStripTextBox.ReadOnly.get -> bool -System.Windows.Forms.ToolStripTextBox.ReadOnly.set -> void -System.Windows.Forms.ToolStripTextBox.ReadOnlyChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.ScrollToCaret() -> void -System.Windows.Forms.ToolStripTextBox.Select(int start, int length) -> void -System.Windows.Forms.ToolStripTextBox.SelectAll() -> void -System.Windows.Forms.ToolStripTextBox.SelectedText.get -> string! -System.Windows.Forms.ToolStripTextBox.SelectedText.set -> void -System.Windows.Forms.ToolStripTextBox.SelectionLength.get -> int -System.Windows.Forms.ToolStripTextBox.SelectionLength.set -> void -System.Windows.Forms.ToolStripTextBox.SelectionStart.get -> int -System.Windows.Forms.ToolStripTextBox.SelectionStart.set -> void -System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled.get -> bool -System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled.set -> void -System.Windows.Forms.ToolStripTextBox.TextBox.get -> System.Windows.Forms.TextBox! -System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign.set -> void -System.Windows.Forms.ToolStripTextBox.TextBoxTextAlignChanged -> System.EventHandler? -System.Windows.Forms.ToolStripTextBox.TextLength.get -> int -System.Windows.Forms.ToolStripTextBox.ToolStripTextBox() -> void -System.Windows.Forms.ToolStripTextBox.ToolStripTextBox(string? name) -> void -System.Windows.Forms.ToolStripTextBox.ToolStripTextBox(System.Windows.Forms.Control! c) -> void -System.Windows.Forms.ToolStripTextBox.Undo() -> void -System.Windows.Forms.ToolStripTextBox.WordWrap.get -> bool -System.Windows.Forms.ToolStripTextBox.WordWrap.set -> void -System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolStripTextDirection.Horizontal = 1 -> System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolStripTextDirection.Inherit = 0 -> System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolStripTextDirection.Vertical270 = 3 -> System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolStripTextDirection.Vertical90 = 2 -> System.Windows.Forms.ToolStripTextDirection -System.Windows.Forms.ToolTip -System.Windows.Forms.ToolTip.~ToolTip() -> void -System.Windows.Forms.ToolTip.Active.get -> bool -System.Windows.Forms.ToolTip.Active.set -> void -System.Windows.Forms.ToolTip.AutomaticDelay.get -> int -System.Windows.Forms.ToolTip.AutomaticDelay.set -> void -System.Windows.Forms.ToolTip.AutoPopDelay.get -> int -System.Windows.Forms.ToolTip.AutoPopDelay.set -> void -System.Windows.Forms.ToolTip.BackColor.get -> System.Drawing.Color -System.Windows.Forms.ToolTip.BackColor.set -> void -System.Windows.Forms.ToolTip.CanExtend(object! target) -> bool -System.Windows.Forms.ToolTip.Draw -> System.Windows.Forms.DrawToolTipEventHandler? -System.Windows.Forms.ToolTip.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.ToolTip.ForeColor.set -> void -System.Windows.Forms.ToolTip.GetToolTip(System.Windows.Forms.Control? control) -> string? -System.Windows.Forms.ToolTip.Hide(System.Windows.Forms.IWin32Window! win) -> void -System.Windows.Forms.ToolTip.InitialDelay.get -> int -System.Windows.Forms.ToolTip.InitialDelay.set -> void -System.Windows.Forms.ToolTip.IsBalloon.get -> bool -System.Windows.Forms.ToolTip.IsBalloon.set -> void -System.Windows.Forms.ToolTip.OwnerDraw.get -> bool -System.Windows.Forms.ToolTip.OwnerDraw.set -> void -System.Windows.Forms.ToolTip.Popup -> System.Windows.Forms.PopupEventHandler? -System.Windows.Forms.ToolTip.RemoveAll() -> void -System.Windows.Forms.ToolTip.ReshowDelay.get -> int -System.Windows.Forms.ToolTip.ReshowDelay.set -> void -System.Windows.Forms.ToolTip.SetToolTip(System.Windows.Forms.Control! control, string? caption) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int duration) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int x, int y) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int x, int y, int duration) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, System.Drawing.Point point) -> void -System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, System.Drawing.Point point, int duration) -> void -System.Windows.Forms.ToolTip.ShowAlways.get -> bool -System.Windows.Forms.ToolTip.ShowAlways.set -> void -System.Windows.Forms.ToolTip.StopTimer() -> void -System.Windows.Forms.ToolTip.StripAmpersands.get -> bool -System.Windows.Forms.ToolTip.StripAmpersands.set -> void -System.Windows.Forms.ToolTip.Tag.get -> object? -System.Windows.Forms.ToolTip.Tag.set -> void -System.Windows.Forms.ToolTip.ToolTip() -> void -System.Windows.Forms.ToolTip.ToolTip(System.ComponentModel.IContainer! cont) -> void -System.Windows.Forms.ToolTip.ToolTipIcon.get -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.ToolTip.ToolTipIcon.set -> void -System.Windows.Forms.ToolTip.ToolTipTitle.get -> string! -System.Windows.Forms.ToolTip.ToolTipTitle.set -> void -System.Windows.Forms.ToolTip.UseAnimation.get -> bool -System.Windows.Forms.ToolTip.UseAnimation.set -> void -System.Windows.Forms.ToolTip.UseFading.get -> bool -System.Windows.Forms.ToolTip.UseFading.set -> void -System.Windows.Forms.ToolTipIcon -System.Windows.Forms.ToolTipIcon.Error = 3 -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.ToolTipIcon.Info = 1 -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.ToolTipIcon.None = 0 -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.ToolTipIcon.Warning = 2 -> System.Windows.Forms.ToolTipIcon -System.Windows.Forms.TrackBar -System.Windows.Forms.TrackBar.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.BeginInit() -> void -System.Windows.Forms.TrackBar.Click -> System.EventHandler? -System.Windows.Forms.TrackBar.DoubleClick -> System.EventHandler? -System.Windows.Forms.TrackBar.EndInit() -> void -System.Windows.Forms.TrackBar.FontChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.TrackBar.ImeMode.set -> void -System.Windows.Forms.TrackBar.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.LargeChange.get -> int -System.Windows.Forms.TrackBar.LargeChange.set -> void -System.Windows.Forms.TrackBar.Maximum.get -> int -System.Windows.Forms.TrackBar.Maximum.set -> void -System.Windows.Forms.TrackBar.Minimum.get -> int -System.Windows.Forms.TrackBar.Minimum.set -> void -System.Windows.Forms.TrackBar.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.TrackBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.TrackBar.Orientation.get -> System.Windows.Forms.Orientation -System.Windows.Forms.TrackBar.Orientation.set -> void -System.Windows.Forms.TrackBar.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.TrackBar.Padding.set -> void -System.Windows.Forms.TrackBar.PaddingChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.TrackBar.RightToLeftLayoutChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.Scroll -> System.EventHandler? -System.Windows.Forms.TrackBar.SetRange(int minValue, int maxValue) -> void -System.Windows.Forms.TrackBar.SmallChange.get -> int -System.Windows.Forms.TrackBar.SmallChange.set -> void -System.Windows.Forms.TrackBar.TextChanged -> System.EventHandler? -System.Windows.Forms.TrackBar.TickFrequency.get -> int -System.Windows.Forms.TrackBar.TickFrequency.set -> void -System.Windows.Forms.TrackBar.TickStyle.get -> System.Windows.Forms.TickStyle -System.Windows.Forms.TrackBar.TickStyle.set -> void -System.Windows.Forms.TrackBar.TrackBar() -> void -System.Windows.Forms.TrackBar.Value.get -> int -System.Windows.Forms.TrackBar.Value.set -> void -System.Windows.Forms.TrackBar.ValueChanged -> System.EventHandler? -System.Windows.Forms.TrackBarRenderer -System.Windows.Forms.TreeNode -System.Windows.Forms.TreeNode.BackColor.get -> System.Drawing.Color -System.Windows.Forms.TreeNode.BackColor.set -> void -System.Windows.Forms.TreeNode.BeginEdit() -> void -System.Windows.Forms.TreeNode.Bounds.get -> System.Drawing.Rectangle -System.Windows.Forms.TreeNode.Checked.get -> bool -System.Windows.Forms.TreeNode.Checked.set -> void -System.Windows.Forms.TreeNode.Collapse() -> void -System.Windows.Forms.TreeNode.Collapse(bool ignoreChildren) -> void -System.Windows.Forms.TreeNode.EndEdit(bool cancel) -> void -System.Windows.Forms.TreeNode.EnsureVisible() -> void -System.Windows.Forms.TreeNode.Expand() -> void -System.Windows.Forms.TreeNode.ExpandAll() -> void -System.Windows.Forms.TreeNode.ForeColor.get -> System.Drawing.Color -System.Windows.Forms.TreeNode.ForeColor.set -> void -System.Windows.Forms.TreeNode.GetNodeCount(bool includeSubTrees) -> int -System.Windows.Forms.TreeNode.Handle.get -> nint -System.Windows.Forms.TreeNode.ImageIndex.get -> int -System.Windows.Forms.TreeNode.ImageIndex.set -> void -System.Windows.Forms.TreeNode.Index.get -> int -System.Windows.Forms.TreeNode.IsEditing.get -> bool -System.Windows.Forms.TreeNode.IsExpanded.get -> bool -System.Windows.Forms.TreeNode.IsSelected.get -> bool -System.Windows.Forms.TreeNode.IsVisible.get -> bool -System.Windows.Forms.TreeNode.Level.get -> int -System.Windows.Forms.TreeNode.Remove() -> void -System.Windows.Forms.TreeNode.SelectedImageIndex.get -> int -System.Windows.Forms.TreeNode.SelectedImageIndex.set -> void -System.Windows.Forms.TreeNode.StateImageIndex.get -> int -System.Windows.Forms.TreeNode.StateImageIndex.set -> void -System.Windows.Forms.TreeNode.Toggle() -> void -System.Windows.Forms.TreeNode.TreeNode() -> void -System.Windows.Forms.TreeNodeCollection -System.Windows.Forms.TreeNodeCollection.Count.get -> int -System.Windows.Forms.TreeNodeCollection.IsReadOnly.get -> bool -System.Windows.Forms.TreeNodeConverter -System.Windows.Forms.TreeNodeConverter.TreeNodeConverter() -> void -System.Windows.Forms.TreeNodeMouseClickEventArgs -System.Windows.Forms.TreeNodeMouseClickEventArgs.Node.get -> System.Windows.Forms.TreeNode! -System.Windows.Forms.TreeNodeMouseClickEventArgs.TreeNodeMouseClickEventArgs(System.Windows.Forms.TreeNode! node, System.Windows.Forms.MouseButtons button, int clicks, int x, int y) -> void -System.Windows.Forms.TreeNodeMouseClickEventHandler -System.Windows.Forms.TreeNodeMouseHoverEventArgs -System.Windows.Forms.TreeNodeMouseHoverEventArgs.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.TreeNodeMouseHoverEventArgs.TreeNodeMouseHoverEventArgs(System.Windows.Forms.TreeNode? node) -> void -System.Windows.Forms.TreeNodeMouseHoverEventHandler -System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Checked = 8 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Default = 32 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Focused = 16 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Grayed = 2 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Hot = 64 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Indeterminate = 256 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Marked = 128 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.Selected = 1 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeNodeStates.ShowKeyboardCues = 512 -> System.Windows.Forms.TreeNodeStates -System.Windows.Forms.TreeView -System.Windows.Forms.TreeView.AfterCheck -> System.Windows.Forms.TreeViewEventHandler -System.Windows.Forms.TreeView.AfterCollapse -> System.Windows.Forms.TreeViewEventHandler -System.Windows.Forms.TreeView.AfterExpand -> System.Windows.Forms.TreeViewEventHandler -System.Windows.Forms.TreeView.AfterLabelEdit -> System.Windows.Forms.NodeLabelEditEventHandler -System.Windows.Forms.TreeView.AfterSelect -> System.Windows.Forms.TreeViewEventHandler -System.Windows.Forms.TreeView.BackgroundImageChanged -> System.EventHandler -System.Windows.Forms.TreeView.BackgroundImageLayoutChanged -> System.EventHandler -System.Windows.Forms.TreeView.BeforeCheck -> System.Windows.Forms.TreeViewCancelEventHandler -System.Windows.Forms.TreeView.BeforeCollapse -> System.Windows.Forms.TreeViewCancelEventHandler -System.Windows.Forms.TreeView.BeforeExpand -> System.Windows.Forms.TreeViewCancelEventHandler -System.Windows.Forms.TreeView.BeforeLabelEdit -> System.Windows.Forms.NodeLabelEditEventHandler -System.Windows.Forms.TreeView.BeforeSelect -> System.Windows.Forms.TreeViewCancelEventHandler -System.Windows.Forms.TreeView.BeginUpdate() -> void -System.Windows.Forms.TreeView.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.TreeView.BorderStyle.set -> void -System.Windows.Forms.TreeView.CheckBoxes.get -> bool -System.Windows.Forms.TreeView.CheckBoxes.set -> void -System.Windows.Forms.TreeView.CollapseAll() -> void -System.Windows.Forms.TreeView.DrawMode.get -> System.Windows.Forms.TreeViewDrawMode -System.Windows.Forms.TreeView.DrawMode.set -> void -System.Windows.Forms.TreeView.DrawNode -> System.Windows.Forms.DrawTreeNodeEventHandler -System.Windows.Forms.TreeView.EndUpdate() -> void -System.Windows.Forms.TreeView.ExpandAll() -> void -System.Windows.Forms.TreeView.FullRowSelect.get -> bool -System.Windows.Forms.TreeView.FullRowSelect.set -> void -System.Windows.Forms.TreeView.GetNodeCount(bool includeSubTrees) -> int -System.Windows.Forms.TreeView.HideSelection.get -> bool -System.Windows.Forms.TreeView.HideSelection.set -> void -System.Windows.Forms.TreeView.HotTracking.get -> bool -System.Windows.Forms.TreeView.HotTracking.set -> void -System.Windows.Forms.TreeView.ImageIndex.get -> int -System.Windows.Forms.TreeView.ImageIndex.set -> void -System.Windows.Forms.TreeView.Indent.get -> int -System.Windows.Forms.TreeView.Indent.set -> void -System.Windows.Forms.TreeView.ItemDrag -> System.Windows.Forms.ItemDragEventHandler -System.Windows.Forms.TreeView.ItemHeight.get -> int -System.Windows.Forms.TreeView.ItemHeight.set -> void -System.Windows.Forms.TreeView.LabelEdit.get -> bool -System.Windows.Forms.TreeView.LabelEdit.set -> void -System.Windows.Forms.TreeView.LineColor.get -> System.Drawing.Color -System.Windows.Forms.TreeView.LineColor.set -> void -System.Windows.Forms.TreeView.NodeMouseClick -> System.Windows.Forms.TreeNodeMouseClickEventHandler -System.Windows.Forms.TreeView.NodeMouseDoubleClick -> System.Windows.Forms.TreeNodeMouseClickEventHandler -System.Windows.Forms.TreeView.NodeMouseHover -> System.Windows.Forms.TreeNodeMouseHoverEventHandler -System.Windows.Forms.TreeView.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.TreeView.Padding.set -> void -System.Windows.Forms.TreeView.PaddingChanged -> System.EventHandler -System.Windows.Forms.TreeView.Paint -> System.Windows.Forms.PaintEventHandler -System.Windows.Forms.TreeView.RightToLeftLayoutChanged -> System.EventHandler -System.Windows.Forms.TreeView.Scrollable.get -> bool -System.Windows.Forms.TreeView.Scrollable.set -> void -System.Windows.Forms.TreeView.SelectedImageIndex.get -> int -System.Windows.Forms.TreeView.SelectedImageIndex.set -> void -System.Windows.Forms.TreeView.ShowLines.get -> bool -System.Windows.Forms.TreeView.ShowLines.set -> void -System.Windows.Forms.TreeView.ShowNodeToolTips.get -> bool -System.Windows.Forms.TreeView.ShowNodeToolTips.set -> void -System.Windows.Forms.TreeView.ShowPlusMinus.get -> bool -System.Windows.Forms.TreeView.ShowPlusMinus.set -> void -System.Windows.Forms.TreeView.ShowRootLines.get -> bool -System.Windows.Forms.TreeView.ShowRootLines.set -> void -System.Windows.Forms.TreeView.Sort() -> void -System.Windows.Forms.TreeView.Sorted.get -> bool -System.Windows.Forms.TreeView.Sorted.set -> void -System.Windows.Forms.TreeView.TextChanged -> System.EventHandler -System.Windows.Forms.TreeView.TreeView() -> void -System.Windows.Forms.TreeView.VisibleCount.get -> int -System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewAction.ByKeyboard = 1 -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewAction.ByMouse = 2 -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewAction.Collapse = 3 -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewAction.Expand = 4 -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewAction.Unknown = 0 -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewCancelEventArgs -System.Windows.Forms.TreeViewCancelEventArgs.Action.get -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewCancelEventArgs.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.TreeViewCancelEventArgs.TreeViewCancelEventArgs(System.Windows.Forms.TreeNode? node, bool cancel, System.Windows.Forms.TreeViewAction action) -> void -System.Windows.Forms.TreeViewCancelEventHandler -System.Windows.Forms.TreeViewDrawMode -System.Windows.Forms.TreeViewDrawMode.Normal = 0 -> System.Windows.Forms.TreeViewDrawMode -System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll = 2 -> System.Windows.Forms.TreeViewDrawMode -System.Windows.Forms.TreeViewDrawMode.OwnerDrawText = 1 -> System.Windows.Forms.TreeViewDrawMode -System.Windows.Forms.TreeViewEventArgs -System.Windows.Forms.TreeViewEventArgs.Action.get -> System.Windows.Forms.TreeViewAction -System.Windows.Forms.TreeViewEventArgs.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.TreeViewEventArgs.TreeViewEventArgs(System.Windows.Forms.TreeNode? node) -> void -System.Windows.Forms.TreeViewEventArgs.TreeViewEventArgs(System.Windows.Forms.TreeNode? node, System.Windows.Forms.TreeViewAction action) -> void -System.Windows.Forms.TreeViewEventHandler -System.Windows.Forms.TreeViewHitTestInfo -System.Windows.Forms.TreeViewHitTestInfo.Location.get -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestInfo.Node.get -> System.Windows.Forms.TreeNode? -System.Windows.Forms.TreeViewHitTestInfo.TreeViewHitTestInfo(System.Windows.Forms.TreeNode? hitNode, System.Windows.Forms.TreeViewHitTestLocations hitLocation) -> void -System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.AboveClientArea = 256 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.BelowClientArea = 512 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.Image = 2 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.Indent = 8 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.Label = 4 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.LeftOfClientArea = 2048 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.None = 1 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.PlusMinus = 16 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.RightOfClientArea = 1024 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.RightOfLabel = 32 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewHitTestLocations.StateImage = 64 -> System.Windows.Forms.TreeViewHitTestLocations -System.Windows.Forms.TreeViewImageIndexConverter -System.Windows.Forms.TreeViewImageIndexConverter.TreeViewImageIndexConverter() -> void -System.Windows.Forms.TreeViewImageKeyConverter -System.Windows.Forms.TreeViewImageKeyConverter.TreeViewImageKeyConverter() -> void -System.Windows.Forms.TypeValidationEventArgs -System.Windows.Forms.TypeValidationEventArgs.Cancel.get -> bool -System.Windows.Forms.TypeValidationEventArgs.Cancel.set -> void -System.Windows.Forms.TypeValidationEventArgs.IsValidInput.get -> bool -System.Windows.Forms.TypeValidationEventArgs.Message.get -> string? -System.Windows.Forms.TypeValidationEventArgs.ReturnValue.get -> object? -System.Windows.Forms.TypeValidationEventArgs.TypeValidationEventArgs(System.Type? validatingType, bool isValidInput, object? returnValue, string? message) -> void -System.Windows.Forms.TypeValidationEventArgs.ValidatingType.get -> System.Type? -System.Windows.Forms.TypeValidationEventHandler -System.Windows.Forms.UICues -System.Windows.Forms.UICues.Changed = System.Windows.Forms.UICues.ChangeFocus | System.Windows.Forms.UICues.ChangeKeyboard -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.ChangeFocus = 4 -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.ChangeKeyboard = 8 -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.None = 0 -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.ShowFocus = 1 -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.ShowKeyboard = 2 -> System.Windows.Forms.UICues -System.Windows.Forms.UICues.Shown = System.Windows.Forms.UICues.ShowFocus | System.Windows.Forms.UICues.ShowKeyboard -> System.Windows.Forms.UICues -System.Windows.Forms.UICuesEventArgs -System.Windows.Forms.UICuesEventArgs.Changed.get -> System.Windows.Forms.UICues -System.Windows.Forms.UICuesEventArgs.ChangeFocus.get -> bool -System.Windows.Forms.UICuesEventArgs.ChangeKeyboard.get -> bool -System.Windows.Forms.UICuesEventArgs.ShowFocus.get -> bool -System.Windows.Forms.UICuesEventArgs.ShowKeyboard.get -> bool -System.Windows.Forms.UICuesEventArgs.UICuesEventArgs(System.Windows.Forms.UICues uicues) -> void -System.Windows.Forms.UICuesEventHandler -System.Windows.Forms.UnhandledExceptionMode -System.Windows.Forms.UnhandledExceptionMode.Automatic = 0 -> System.Windows.Forms.UnhandledExceptionMode -System.Windows.Forms.UnhandledExceptionMode.CatchException = 2 -> System.Windows.Forms.UnhandledExceptionMode -System.Windows.Forms.UnhandledExceptionMode.ThrowException = 1 -> System.Windows.Forms.UnhandledExceptionMode -System.Windows.Forms.UpDownBase -System.Windows.Forms.UpDownBase.AutoScrollMargin.get -> System.Drawing.Size -System.Windows.Forms.UpDownBase.AutoScrollMargin.set -> void -System.Windows.Forms.UpDownBase.AutoScrollMinSize.get -> System.Drawing.Size -System.Windows.Forms.UpDownBase.AutoScrollMinSize.set -> void -System.Windows.Forms.UpDownBase.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.UpDownBase.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.UpDownBase.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.UpDownBase.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.UpDownBase.BorderStyle.set -> void -System.Windows.Forms.UpDownBase.ChangingText.get -> bool -System.Windows.Forms.UpDownBase.ChangingText.set -> void -System.Windows.Forms.UpDownBase.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! -System.Windows.Forms.UpDownBase.InterceptArrowKeys.get -> bool -System.Windows.Forms.UpDownBase.InterceptArrowKeys.set -> void -System.Windows.Forms.UpDownBase.MouseEnter -> System.EventHandler? -System.Windows.Forms.UpDownBase.MouseHover -> System.EventHandler? -System.Windows.Forms.UpDownBase.MouseLeave -> System.EventHandler? -System.Windows.Forms.UpDownBase.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.UpDownBase.PreferredHeight.get -> int -System.Windows.Forms.UpDownBase.ReadOnly.get -> bool -System.Windows.Forms.UpDownBase.ReadOnly.set -> void -System.Windows.Forms.UpDownBase.Select(int start, int length) -> void -System.Windows.Forms.UpDownBase.TextAlign.get -> System.Windows.Forms.HorizontalAlignment -System.Windows.Forms.UpDownBase.TextAlign.set -> void -System.Windows.Forms.UpDownBase.UpDownAlign.get -> System.Windows.Forms.LeftRightAlignment -System.Windows.Forms.UpDownBase.UpDownAlign.set -> void -System.Windows.Forms.UpDownBase.UpDownBase() -> void -System.Windows.Forms.UpDownBase.UserEdit.get -> bool -System.Windows.Forms.UpDownBase.UserEdit.set -> void -System.Windows.Forms.UpDownEventArgs -System.Windows.Forms.UpDownEventArgs.ButtonID.get -> int -System.Windows.Forms.UpDownEventArgs.UpDownEventArgs(int buttonPushed) -> void -System.Windows.Forms.UpDownEventHandler -System.Windows.Forms.UserControl -System.Windows.Forms.UserControl.AutoSizeChanged -> System.EventHandler? -System.Windows.Forms.UserControl.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -System.Windows.Forms.UserControl.AutoSizeMode.set -> void -System.Windows.Forms.UserControl.AutoValidateChanged -> System.EventHandler? -System.Windows.Forms.UserControl.BorderStyle.get -> System.Windows.Forms.BorderStyle -System.Windows.Forms.UserControl.BorderStyle.set -> void -System.Windows.Forms.UserControl.Load -> System.EventHandler? -System.Windows.Forms.UserControl.TextChanged -> System.EventHandler? -System.Windows.Forms.UserControl.UserControl() -> void -System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.Enabled = 2 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.ImmediateChildren = 16 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.None = 0 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.Selectable = 1 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.TabStop = 8 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.ValidationConstraints.Visible = 4 -> System.Windows.Forms.ValidationConstraints -System.Windows.Forms.View -System.Windows.Forms.View.Details = 1 -> System.Windows.Forms.View -System.Windows.Forms.View.LargeIcon = 0 -> System.Windows.Forms.View -System.Windows.Forms.View.List = 3 -> System.Windows.Forms.View -System.Windows.Forms.View.SmallIcon = 2 -> System.Windows.Forms.View -System.Windows.Forms.View.Tile = 4 -> System.Windows.Forms.View -System.Windows.Forms.VisualStyles.BackgroundType -System.Windows.Forms.VisualStyles.BackgroundType.BorderFill = 1 -> System.Windows.Forms.VisualStyles.BackgroundType -System.Windows.Forms.VisualStyles.BackgroundType.ImageFile = 0 -> System.Windows.Forms.VisualStyles.BackgroundType -System.Windows.Forms.VisualStyles.BackgroundType.None = 2 -> System.Windows.Forms.VisualStyles.BackgroundType -System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.AlwaysShowSizingBar = 2208 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.AutoSize = 2202 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.BackgroundFill = 2205 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.BorderOnly = 2203 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.Composited = 2204 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.GlyphOnly = 2207 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.GlyphTransparent = 2206 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.IntegralSizing = 2211 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.MirrorImage = 2209 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.SourceGrow = 2212 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.SourceShrink = 2213 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.Transparent = 2201 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BooleanProperty.UniformSizing = 2210 -> System.Windows.Forms.VisualStyles.BooleanProperty -System.Windows.Forms.VisualStyles.BorderType -System.Windows.Forms.VisualStyles.BorderType.Ellipse = 2 -> System.Windows.Forms.VisualStyles.BorderType -System.Windows.Forms.VisualStyles.BorderType.Rectangle = 0 -> System.Windows.Forms.VisualStyles.BorderType -System.Windows.Forms.VisualStyles.BorderType.RoundedRectangle = 1 -> System.Windows.Forms.VisualStyles.BorderType -System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.CheckedDisabled = 8 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.CheckedHot = 6 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal = 5 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.CheckedPressed = 7 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.MixedDisabled = 12 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.MixedHot = 10 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.MixedNormal = 9 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.MixedPressed = 11 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedDisabled = 4 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedHot = 2 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal = 1 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedPressed = 3 -> System.Windows.Forms.VisualStyles.CheckBoxState -System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.AccentColorHint = 3823 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.BorderColor = 3801 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.BorderColorHint = 3822 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.EdgeDarkShadowColor = 3807 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.EdgeFillColor = 3808 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.EdgeHighlightColor = 3805 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.EdgeLightColor = 3804 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.EdgeShadowColor = 3806 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.FillColor = 3802 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.FillColorHint = 3821 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GlowColor = 3816 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GlyphTextColor = 3819 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GlyphTransparentColor = 3820 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GradientColor1 = 3810 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GradientColor2 = 3811 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GradientColor3 = 3812 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GradientColor4 = 3813 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.GradientColor5 = 3814 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.ShadowColor = 3815 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.TextBorderColor = 3817 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.TextColor = 3803 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.TextShadowColor = 3818 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ColorProperty.TransparentColor = 3809 -> System.Windows.Forms.VisualStyles.ColorProperty -System.Windows.Forms.VisualStyles.ComboBoxState -System.Windows.Forms.VisualStyles.ComboBoxState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ComboBoxState -System.Windows.Forms.VisualStyles.ComboBoxState.Hot = 2 -> System.Windows.Forms.VisualStyles.ComboBoxState -System.Windows.Forms.VisualStyles.ComboBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.ComboBoxState -System.Windows.Forms.VisualStyles.ComboBoxState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ComboBoxState -System.Windows.Forms.VisualStyles.ContentAlignment -System.Windows.Forms.VisualStyles.ContentAlignment.Center = 1 -> System.Windows.Forms.VisualStyles.ContentAlignment -System.Windows.Forms.VisualStyles.ContentAlignment.Left = 0 -> System.Windows.Forms.VisualStyles.ContentAlignment -System.Windows.Forms.VisualStyles.ContentAlignment.Right = 2 -> System.Windows.Forms.VisualStyles.ContentAlignment -System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.EdgeEffects.FillInterior = 2048 -> System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.EdgeEffects.Flat = 16384 -> System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.EdgeEffects.Mono = 32768 -> System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.EdgeEffects.None = 0 -> System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.EdgeEffects.Soft = 4096 -> System.Windows.Forms.VisualStyles.EdgeEffects -System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.Edges.Bottom = 8 -> System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.Edges.Diagonal = 16 -> System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.Edges.Left = 1 -> System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.Edges.Right = 4 -> System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.Edges.Top = 2 -> System.Windows.Forms.VisualStyles.Edges -System.Windows.Forms.VisualStyles.EdgeStyle -System.Windows.Forms.VisualStyles.EdgeStyle.Bump = 9 -> System.Windows.Forms.VisualStyles.EdgeStyle -System.Windows.Forms.VisualStyles.EdgeStyle.Etched = 6 -> System.Windows.Forms.VisualStyles.EdgeStyle -System.Windows.Forms.VisualStyles.EdgeStyle.Raised = 5 -> System.Windows.Forms.VisualStyles.EdgeStyle -System.Windows.Forms.VisualStyles.EdgeStyle.Sunken = 10 -> System.Windows.Forms.VisualStyles.EdgeStyle -System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.BackgroundType = 4001 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.BorderType = 4002 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.ContentAlignment = 4006 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.FillType = 4003 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.GlyphFontSizingType = 4014 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.GlyphType = 4012 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.HorizontalAlignment = 4005 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.IconEffect = 4009 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.ImageLayout = 4011 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.ImageSelectType = 4013 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.OffsetType = 4008 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.SizingType = 4004 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.TextShadowType = 4010 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.TrueSizeScalingType = 4015 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.EnumProperty.VerticalAlignment = 4007 -> System.Windows.Forms.VisualStyles.EnumProperty -System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.GlyphImageFile = 3008 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile = 3001 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1 = 3002 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2 = 3003 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3 = 3004 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4 = 3005 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5 = 3006 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FilenameProperty.StockImageFile = 3007 -> System.Windows.Forms.VisualStyles.FilenameProperty -System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FillType.HorizontalGradient = 2 -> System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FillType.RadialGradient = 3 -> System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FillType.Solid = 0 -> System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FillType.TileImage = 4 -> System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FillType.VerticalGradient = 1 -> System.Windows.Forms.VisualStyles.FillType -System.Windows.Forms.VisualStyles.FontProperty -System.Windows.Forms.VisualStyles.FontProperty.GlyphFont = 2601 -> System.Windows.Forms.VisualStyles.FontProperty -System.Windows.Forms.VisualStyles.FontProperty.TextFont = 210 -> System.Windows.Forms.VisualStyles.FontProperty -System.Windows.Forms.VisualStyles.GlyphFontSizingType -System.Windows.Forms.VisualStyles.GlyphFontSizingType.Dpi = 2 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType -System.Windows.Forms.VisualStyles.GlyphFontSizingType.None = 0 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType -System.Windows.Forms.VisualStyles.GlyphFontSizingType.Size = 1 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType -System.Windows.Forms.VisualStyles.GlyphType -System.Windows.Forms.VisualStyles.GlyphType.FontGlyph = 2 -> System.Windows.Forms.VisualStyles.GlyphType -System.Windows.Forms.VisualStyles.GlyphType.ImageGlyph = 1 -> System.Windows.Forms.VisualStyles.GlyphType -System.Windows.Forms.VisualStyles.GlyphType.None = 0 -> System.Windows.Forms.VisualStyles.GlyphType -System.Windows.Forms.VisualStyles.GroupBoxState -System.Windows.Forms.VisualStyles.GroupBoxState.Disabled = 2 -> System.Windows.Forms.VisualStyles.GroupBoxState -System.Windows.Forms.VisualStyles.GroupBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.GroupBoxState -System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Bottom = 15 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.BottomLeft = 16 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.BottomRight = 17 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Client = 1 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Left = 10 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Nowhere = 0 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Right = 11 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.Top = 12 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.TopLeft = 13 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestCode.TopRight = 14 -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.BackgroundSegment = 0 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.Caption = 4 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.FixedBorder = 2 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorder = System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom = 128 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft = 16 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight = 64 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop = 32 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate = 256 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HitTestOptions.SystemSizingMargins = 512 -> System.Windows.Forms.VisualStyles.HitTestOptions -System.Windows.Forms.VisualStyles.HorizontalAlign -System.Windows.Forms.VisualStyles.HorizontalAlign.Center = 1 -> System.Windows.Forms.VisualStyles.HorizontalAlign -System.Windows.Forms.VisualStyles.HorizontalAlign.Left = 0 -> System.Windows.Forms.VisualStyles.HorizontalAlign -System.Windows.Forms.VisualStyles.HorizontalAlign.Right = 2 -> System.Windows.Forms.VisualStyles.HorizontalAlign -System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.IconEffect.Alpha = 4 -> System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.IconEffect.Glow = 1 -> System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.IconEffect.None = 0 -> System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.IconEffect.Pulse = 3 -> System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.IconEffect.Shadow = 2 -> System.Windows.Forms.VisualStyles.IconEffect -System.Windows.Forms.VisualStyles.ImageOrientation -System.Windows.Forms.VisualStyles.ImageOrientation.Horizontal = 1 -> System.Windows.Forms.VisualStyles.ImageOrientation -System.Windows.Forms.VisualStyles.ImageOrientation.Vertical = 0 -> System.Windows.Forms.VisualStyles.ImageOrientation -System.Windows.Forms.VisualStyles.ImageSelectType -System.Windows.Forms.VisualStyles.ImageSelectType.Dpi = 2 -> System.Windows.Forms.VisualStyles.ImageSelectType -System.Windows.Forms.VisualStyles.ImageSelectType.None = 0 -> System.Windows.Forms.VisualStyles.ImageSelectType -System.Windows.Forms.VisualStyles.ImageSelectType.Size = 1 -> System.Windows.Forms.VisualStyles.ImageSelectType -System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.AlphaLevel = 2402 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.AlphaThreshold = 2415 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.BorderSize = 2403 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GlyphIndex = 2418 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio1 = 2406 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio2 = 2407 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio3 = 2408 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio4 = 2409 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio5 = 2410 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.Height = 2417 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.ImageCount = 2401 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi1 = 2420 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi2 = 2421 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi3 = 2422 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi4 = 2423 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi5 = 2424 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.ProgressChunkSize = 2411 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.ProgressSpaceSize = 2412 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerHeight = 2405 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerWidth = 2404 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.Saturation = 2413 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.TextBorderSize = 2414 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.TrueSizeStretchMark = 2419 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.IntegerProperty.Width = 2416 -> System.Windows.Forms.VisualStyles.IntegerProperty -System.Windows.Forms.VisualStyles.MarginProperty -System.Windows.Forms.VisualStyles.MarginProperty.CaptionMargins = 3603 -> System.Windows.Forms.VisualStyles.MarginProperty -System.Windows.Forms.VisualStyles.MarginProperty.ContentMargins = 3602 -> System.Windows.Forms.VisualStyles.MarginProperty -System.Windows.Forms.VisualStyles.MarginProperty.SizingMargins = 3601 -> System.Windows.Forms.VisualStyles.MarginProperty -System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.AboveLastButton = 12 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.BelowLastButton = 13 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.BottomLeft = 3 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.BottomMiddle = 5 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.BottomRight = 4 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.LeftOfCaption = 8 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.LeftOfLastButton = 10 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.MiddleLeft = 6 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.MiddleRight = 7 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.RightOfCaption = 9 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.RightOfLastButton = 11 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.TopLeft = 0 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.TopMiddle = 2 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.OffsetType.TopRight = 1 -> System.Windows.Forms.VisualStyles.OffsetType -System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize = 3403 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize1 = 3404 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize2 = 3405 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize3 = 3406 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize4 = 3407 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.MinSize5 = 3408 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.Offset = 3401 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PointProperty.TextShadowOffset = 3402 -> System.Windows.Forms.VisualStyles.PointProperty -System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.PushButtonState.Default = 5 -> System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.PushButtonState.Disabled = 4 -> System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.PushButtonState.Hot = 2 -> System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.PushButtonState.Normal = 1 -> System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.PushButtonState.Pressed = 3 -> System.Windows.Forms.VisualStyles.PushButtonState -System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.CheckedDisabled = 8 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.CheckedHot = 6 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.CheckedNormal = 5 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.CheckedPressed = 7 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedDisabled = 4 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedHot = 2 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedNormal = 1 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedPressed = 3 -> System.Windows.Forms.VisualStyles.RadioButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownDisabled = 8 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownHot = 6 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownNormal = 5 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownPressed = 7 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftDisabled = 12 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftHot = 10 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftNormal = 9 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftPressed = 11 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightDisabled = 16 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightHot = 14 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightNormal = 13 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightPressed = 15 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpDisabled = 4 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpHot = 2 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpNormal = 1 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpPressed = 3 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState -System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState -System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.LeftAlign = 2 -> System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState -System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.RightAlign = 1 -> System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState -System.Windows.Forms.VisualStyles.ScrollBarState -System.Windows.Forms.VisualStyles.ScrollBarState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ScrollBarState -System.Windows.Forms.VisualStyles.ScrollBarState.Hot = 2 -> System.Windows.Forms.VisualStyles.ScrollBarState -System.Windows.Forms.VisualStyles.ScrollBarState.Normal = 1 -> System.Windows.Forms.VisualStyles.ScrollBarState -System.Windows.Forms.VisualStyles.ScrollBarState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ScrollBarState -System.Windows.Forms.VisualStyles.SizingType -System.Windows.Forms.VisualStyles.SizingType.FixedSize = 0 -> System.Windows.Forms.VisualStyles.SizingType -System.Windows.Forms.VisualStyles.SizingType.Stretch = 1 -> System.Windows.Forms.VisualStyles.SizingType -System.Windows.Forms.VisualStyles.SizingType.Tile = 2 -> System.Windows.Forms.VisualStyles.SizingType -System.Windows.Forms.VisualStyles.StringProperty -System.Windows.Forms.VisualStyles.StringProperty.Text = 3201 -> System.Windows.Forms.VisualStyles.StringProperty -System.Windows.Forms.VisualStyles.TabItemState -System.Windows.Forms.VisualStyles.TabItemState.Disabled = 4 -> System.Windows.Forms.VisualStyles.TabItemState -System.Windows.Forms.VisualStyles.TabItemState.Hot = 2 -> System.Windows.Forms.VisualStyles.TabItemState -System.Windows.Forms.VisualStyles.TabItemState.Normal = 1 -> System.Windows.Forms.VisualStyles.TabItemState -System.Windows.Forms.VisualStyles.TabItemState.Selected = 3 -> System.Windows.Forms.VisualStyles.TabItemState -System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Assist = 7 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Disabled = 4 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Hot = 2 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Readonly = 6 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextBoxState.Selected = 3 -> System.Windows.Forms.VisualStyles.TextBoxState -System.Windows.Forms.VisualStyles.TextShadowType -System.Windows.Forms.VisualStyles.TextShadowType.Continuous = 2 -> System.Windows.Forms.VisualStyles.TextShadowType -System.Windows.Forms.VisualStyles.TextShadowType.None = 0 -> System.Windows.Forms.VisualStyles.TextShadowType -System.Windows.Forms.VisualStyles.TextShadowType.Single = 1 -> System.Windows.Forms.VisualStyles.TextShadowType -System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.Checked = 5 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.Hot = 2 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.HotChecked = 6 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.Normal = 1 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.ToolBarState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ToolBarState -System.Windows.Forms.VisualStyles.TrackBarThumbState -System.Windows.Forms.VisualStyles.TrackBarThumbState.Disabled = 5 -> System.Windows.Forms.VisualStyles.TrackBarThumbState -System.Windows.Forms.VisualStyles.TrackBarThumbState.Hot = 2 -> System.Windows.Forms.VisualStyles.TrackBarThumbState -System.Windows.Forms.VisualStyles.TrackBarThumbState.Normal = 1 -> System.Windows.Forms.VisualStyles.TrackBarThumbState -System.Windows.Forms.VisualStyles.TrackBarThumbState.Pressed = 3 -> System.Windows.Forms.VisualStyles.TrackBarThumbState -System.Windows.Forms.VisualStyles.TrueSizeScalingType -System.Windows.Forms.VisualStyles.TrueSizeScalingType.Dpi = 2 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType -System.Windows.Forms.VisualStyles.TrueSizeScalingType.None = 0 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType -System.Windows.Forms.VisualStyles.TrueSizeScalingType.Size = 1 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType -System.Windows.Forms.VisualStyles.VerticalAlignment -System.Windows.Forms.VisualStyles.VerticalAlignment.Bottom = 2 -> System.Windows.Forms.VisualStyles.VerticalAlignment -System.Windows.Forms.VisualStyles.VerticalAlignment.Center = 1 -> System.Windows.Forms.VisualStyles.VerticalAlignment -System.Windows.Forms.VisualStyles.VerticalAlignment.Top = 0 -> System.Windows.Forms.VisualStyles.VerticalAlignment -System.Windows.Forms.VisualStyles.VisualStyleElement -System.Windows.Forms.VisualStyles.VisualStyleElement.Button -System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox -System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox -System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton -System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName.get -> string! -System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox -System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand -System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead -System.Windows.Forms.VisualStyles.VisualStyleElement.Header -System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item -System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight -System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item -System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item -System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator -System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand -System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton -System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator -System.Windows.Forms.VisualStyles.VisualStyleElement.Page -System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down -System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up -System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.Part.get -> int -System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar -System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar -System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk -System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper -System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.Spin -System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down -System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up -System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane -System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture -System.Windows.Forms.VisualStyles.VisualStyleElement.State.get -> int -System.Windows.Forms.VisualStyles.VisualStyleElement.Status -System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar -System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper -System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane -System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge -System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight -System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock -System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time -System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox -System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret -System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard -System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track -System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical -System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify -System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground -System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background -System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView -System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch -System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph -System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item -System.Windows.Forms.VisualStyles.VisualStyleElement.Window -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll -System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb -System.Windows.Forms.VisualStyles.VisualStyleInformation -System.Windows.Forms.VisualStyles.VisualStyleRenderer -System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class.get -> string! -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Drawing.Rectangle clipRectangle) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawEdge(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.Edges edges, System.Windows.Forms.VisualStyles.EdgeStyle style, System.Windows.Forms.VisualStyles.EdgeEffects effects) -> System.Drawing.Rectangle -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.ImageList! imageList, int imageIndex) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawParentBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled, System.Windows.Forms.TextFormatFlags flags) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundContentRectangle(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> System.Drawing.Rectangle -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundExtent(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle contentBounds) -> System.Drawing.Rectangle -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundRegion(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> System.Drawing.Region? -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBoolean(System.Windows.Forms.VisualStyles.BooleanProperty prop) -> bool -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetColor(System.Windows.Forms.VisualStyles.ColorProperty prop) -> System.Drawing.Color -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetEnumValue(System.Windows.Forms.VisualStyles.EnumProperty prop) -> int -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFilename(System.Windows.Forms.VisualStyles.FilenameProperty prop) -> string! -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFont(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.FontProperty prop) -> System.Drawing.Font? -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetInteger(System.Windows.Forms.VisualStyles.IntegerProperty prop) -> int -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetMargins(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.MarginProperty prop) -> System.Windows.Forms.Padding -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ThemeSizeType type) -> System.Drawing.Size -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.ThemeSizeType type) -> System.Drawing.Size -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPoint(System.Windows.Forms.VisualStyles.PointProperty prop) -> System.Drawing.Point -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetString(System.Windows.Forms.VisualStyles.StringProperty prop) -> string! -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext! dc, string! textToDraw, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Rectangle -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string! textToDraw, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Rectangle -System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextMetrics(System.Drawing.IDeviceContext! dc) -> System.Windows.Forms.VisualStyles.TextMetrics -System.Windows.Forms.VisualStyles.VisualStyleRenderer.Handle.get -> nint -System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle backgroundRectangle, System.Drawing.Region! region, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle backgroundRectangle, nint hRgn, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle backgroundRectangle, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode -System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsBackgroundPartiallyTransparent() -> bool -System.Windows.Forms.VisualStyles.VisualStyleRenderer.LastHResult.get -> int -System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part.get -> int -System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(string! className, int part, int state) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.State.get -> int -System.Windows.Forms.VisualStyles.VisualStyleRenderer.VisualStyleRenderer(string! className, int part, int state) -> void -System.Windows.Forms.VisualStyles.VisualStyleRenderer.VisualStyleRenderer(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> void -System.Windows.Forms.VisualStyles.VisualStyleState -System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled = System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled | System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled -> System.Windows.Forms.VisualStyles.VisualStyleState -System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled = 2 -> System.Windows.Forms.VisualStyles.VisualStyleState -System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled = 1 -> System.Windows.Forms.VisualStyles.VisualStyleState -System.Windows.Forms.VisualStyles.VisualStyleState.NoneEnabled = 0 -> System.Windows.Forms.VisualStyles.VisualStyleState -System.Windows.Forms.VScrollBar -System.Windows.Forms.VScrollBar.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.VScrollBar.VScrollBar() -> void -System.Windows.Forms.VScrollProperties -System.Windows.Forms.VScrollProperties.VScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void -System.Windows.Forms.WebBrowser -System.Windows.Forms.WebBrowser.AllowNavigation.get -> bool -System.Windows.Forms.WebBrowser.AllowNavigation.set -> void -System.Windows.Forms.WebBrowser.AllowWebBrowserDrop.get -> bool -System.Windows.Forms.WebBrowser.AllowWebBrowserDrop.set -> void -System.Windows.Forms.WebBrowser.CanGoBack.get -> bool -System.Windows.Forms.WebBrowser.CanGoBackChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.CanGoForward.get -> bool -System.Windows.Forms.WebBrowser.CanGoForwardChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.Document.get -> System.Windows.Forms.HtmlDocument? -System.Windows.Forms.WebBrowser.DocumentCompleted -> System.Windows.Forms.WebBrowserDocumentCompletedEventHandler? -System.Windows.Forms.WebBrowser.DocumentStream.get -> System.IO.Stream? -System.Windows.Forms.WebBrowser.DocumentStream.set -> void -System.Windows.Forms.WebBrowser.DocumentText.get -> string! -System.Windows.Forms.WebBrowser.DocumentText.set -> void -System.Windows.Forms.WebBrowser.DocumentTitle.get -> string! -System.Windows.Forms.WebBrowser.DocumentTitleChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.DocumentType.get -> string! -System.Windows.Forms.WebBrowser.EncryptionLevel.get -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowser.EncryptionLevelChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.FileDownload -> System.EventHandler? -System.Windows.Forms.WebBrowser.GoBack() -> bool -System.Windows.Forms.WebBrowser.GoForward() -> bool -System.Windows.Forms.WebBrowser.GoHome() -> void -System.Windows.Forms.WebBrowser.GoSearch() -> void -System.Windows.Forms.WebBrowser.IsBusy.get -> bool -System.Windows.Forms.WebBrowser.IsOffline.get -> bool -System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled.get -> bool -System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled.set -> void -System.Windows.Forms.WebBrowser.Navigate(string! urlString) -> void -System.Windows.Forms.WebBrowser.Navigate(string! urlString, bool newWindow) -> void -System.Windows.Forms.WebBrowser.Navigate(string! urlString, string? targetFrameName) -> void -System.Windows.Forms.WebBrowser.Navigate(string! urlString, string? targetFrameName, byte[]? postData, string? additionalHeaders) -> void -System.Windows.Forms.WebBrowser.Navigate(System.Uri? url) -> void -System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, bool newWindow) -> void -System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, string? targetFrameName) -> void -System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, string? targetFrameName, byte[]? postData, string? additionalHeaders) -> void -System.Windows.Forms.WebBrowser.Navigated -> System.Windows.Forms.WebBrowserNavigatedEventHandler? -System.Windows.Forms.WebBrowser.Navigating -> System.Windows.Forms.WebBrowserNavigatingEventHandler? -System.Windows.Forms.WebBrowser.NewWindow -> System.ComponentModel.CancelEventHandler? -System.Windows.Forms.WebBrowser.ObjectForScripting.get -> object? -System.Windows.Forms.WebBrowser.ObjectForScripting.set -> void -System.Windows.Forms.WebBrowser.Padding.get -> System.Windows.Forms.Padding -System.Windows.Forms.WebBrowser.Padding.set -> void -System.Windows.Forms.WebBrowser.PaddingChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.Print() -> void -System.Windows.Forms.WebBrowser.ProgressChanged -> System.Windows.Forms.WebBrowserProgressChangedEventHandler? -System.Windows.Forms.WebBrowser.ReadyState.get -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowser.Refresh(System.Windows.Forms.WebBrowserRefreshOption opt) -> void -System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed.get -> bool -System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed.set -> void -System.Windows.Forms.WebBrowser.ScrollBarsEnabled.get -> bool -System.Windows.Forms.WebBrowser.ScrollBarsEnabled.set -> void -System.Windows.Forms.WebBrowser.ShowPageSetupDialog() -> void -System.Windows.Forms.WebBrowser.ShowPrintDialog() -> void -System.Windows.Forms.WebBrowser.ShowPrintPreviewDialog() -> void -System.Windows.Forms.WebBrowser.ShowPropertiesDialog() -> void -System.Windows.Forms.WebBrowser.ShowSaveAsDialog() -> void -System.Windows.Forms.WebBrowser.StatusTextChanged -> System.EventHandler? -System.Windows.Forms.WebBrowser.Stop() -> void -System.Windows.Forms.WebBrowser.Url.get -> System.Uri? -System.Windows.Forms.WebBrowser.Url.set -> void -System.Windows.Forms.WebBrowser.Version.get -> System.Version! -System.Windows.Forms.WebBrowser.WebBrowser() -> void -System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled.get -> bool -System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled.set -> void -System.Windows.Forms.WebBrowser.WebBrowserSite -System.Windows.Forms.WebBrowser.WebBrowserSite.WebBrowserSite(System.Windows.Forms.WebBrowser! host) -> void -System.Windows.Forms.WebBrowserBase -System.Windows.Forms.WebBrowserBase.ActiveXInstance.get -> object? -System.Windows.Forms.WebBrowserBase.BackColorChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.BackgroundImageChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.BackgroundImageLayoutChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.BindingContextChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? -System.Windows.Forms.WebBrowserBase.Click -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.CursorChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.DoubleClick -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.DragDrop -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.WebBrowserBase.DragEnter -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.WebBrowserBase.DragLeave -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.DragOver -> System.Windows.Forms.DragEventHandler? -System.Windows.Forms.WebBrowserBase.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void -System.Windows.Forms.WebBrowserBase.Enabled.get -> bool -System.Windows.Forms.WebBrowserBase.Enabled.set -> void -System.Windows.Forms.WebBrowserBase.EnabledChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.Enter -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.FontChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.ForeColorChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? -System.Windows.Forms.WebBrowserBase.HelpRequested -> System.Windows.Forms.HelpEventHandler? -System.Windows.Forms.WebBrowserBase.ImeMode.get -> System.Windows.Forms.ImeMode -System.Windows.Forms.WebBrowserBase.ImeMode.set -> void -System.Windows.Forms.WebBrowserBase.ImeModeChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.KeyDown -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.WebBrowserBase.KeyPress -> System.Windows.Forms.KeyPressEventHandler? -System.Windows.Forms.WebBrowserBase.KeyUp -> System.Windows.Forms.KeyEventHandler? -System.Windows.Forms.WebBrowserBase.Layout -> System.Windows.Forms.LayoutEventHandler? -System.Windows.Forms.WebBrowserBase.Leave -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.MouseCaptureChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.MouseClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.MouseDown -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.MouseEnter -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.MouseHover -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.MouseLeave -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.MouseMove -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.MouseUp -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.MouseWheel -> System.Windows.Forms.MouseEventHandler? -System.Windows.Forms.WebBrowserBase.Paint -> System.Windows.Forms.PaintEventHandler? -System.Windows.Forms.WebBrowserBase.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? -System.Windows.Forms.WebBrowserBase.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? -System.Windows.Forms.WebBrowserBase.RightToLeftChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.StyleChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.TextChanged -> System.EventHandler? -System.Windows.Forms.WebBrowserBase.UseWaitCursor.get -> bool -System.Windows.Forms.WebBrowserBase.UseWaitCursor.set -> void -System.Windows.Forms.WebBrowserDocumentCompletedEventArgs -System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.Url.get -> System.Uri? -System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.WebBrowserDocumentCompletedEventArgs(System.Uri? url) -> void -System.Windows.Forms.WebBrowserDocumentCompletedEventHandler -System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Bit128 = 6 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Bit40 = 3 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Bit56 = 4 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Fortezza = 5 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Insecure = 0 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Mixed = 1 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserEncryptionLevel.Unknown = 2 -> System.Windows.Forms.WebBrowserEncryptionLevel -System.Windows.Forms.WebBrowserNavigatedEventArgs -System.Windows.Forms.WebBrowserNavigatedEventArgs.Url.get -> System.Uri? -System.Windows.Forms.WebBrowserNavigatedEventArgs.WebBrowserNavigatedEventArgs(System.Uri? url) -> void -System.Windows.Forms.WebBrowserNavigatedEventHandler -System.Windows.Forms.WebBrowserNavigatingEventArgs -System.Windows.Forms.WebBrowserNavigatingEventArgs.TargetFrameName.get -> string? -System.Windows.Forms.WebBrowserNavigatingEventArgs.Url.get -> System.Uri? -System.Windows.Forms.WebBrowserNavigatingEventArgs.WebBrowserNavigatingEventArgs(System.Uri? url, string? targetFrameName) -> void -System.Windows.Forms.WebBrowserNavigatingEventHandler -System.Windows.Forms.WebBrowserProgressChangedEventArgs -System.Windows.Forms.WebBrowserProgressChangedEventArgs.CurrentProgress.get -> long -System.Windows.Forms.WebBrowserProgressChangedEventArgs.MaximumProgress.get -> long -System.Windows.Forms.WebBrowserProgressChangedEventArgs.WebBrowserProgressChangedEventArgs(long currentProgress, long maximumProgress) -> void -System.Windows.Forms.WebBrowserProgressChangedEventHandler -System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserReadyState.Complete = 4 -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserReadyState.Interactive = 3 -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserReadyState.Loaded = 2 -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserReadyState.Loading = 1 -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserReadyState.Uninitialized = 0 -> System.Windows.Forms.WebBrowserReadyState -System.Windows.Forms.WebBrowserRefreshOption -System.Windows.Forms.WebBrowserRefreshOption.Completely = 3 -> System.Windows.Forms.WebBrowserRefreshOption -System.Windows.Forms.WebBrowserRefreshOption.Continue = 2 -> System.Windows.Forms.WebBrowserRefreshOption -System.Windows.Forms.WebBrowserRefreshOption.IfExpired = 1 -> System.Windows.Forms.WebBrowserRefreshOption -System.Windows.Forms.WebBrowserRefreshOption.Normal = 0 -> System.Windows.Forms.WebBrowserRefreshOption -System.Windows.Forms.WebBrowserSiteBase -System.Windows.Forms.WebBrowserSiteBase.Dispose() -> void -System.Windows.Forms.WindowsFormsSection -System.Windows.Forms.WindowsFormsSection.JitDebugging.get -> bool -System.Windows.Forms.WindowsFormsSection.JitDebugging.set -> void -System.Windows.Forms.WindowsFormsSection.WindowsFormsSection() -> void -System.Windows.Forms.WindowsFormsSynchronizationContext -System.Windows.Forms.WindowsFormsSynchronizationContext.Dispose() -> void -System.Windows.Forms.WindowsFormsSynchronizationContext.WindowsFormsSynchronizationContext() -> void -virtual System.Drawing.Design.PropertyValueUIItem.Image.get -> System.Drawing.Image! -virtual System.Drawing.Design.PropertyValueUIItem.InvokeHandler.get -> System.Drawing.Design.PropertyValueUIItemInvokeHandler! -virtual System.Drawing.Design.PropertyValueUIItem.Reset() -> void -virtual System.Drawing.Design.PropertyValueUIItem.ToolTip.get -> string? -virtual System.Drawing.Design.UITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext? context, System.IServiceProvider! provider, object? value) -> object? -virtual System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext? context) -> System.Drawing.Design.UITypeEditorEditStyle -virtual System.Drawing.Design.UITypeEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool -virtual System.Drawing.Design.UITypeEditor.IsDropDownResizable.get -> bool -virtual System.Drawing.Design.UITypeEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs! e) -> void -virtual System.Resources.ResXResourceReader.Dispose(bool disposing) -> void -virtual System.Resources.ResXResourceWriter.AddAlias(string? aliasName, System.Reflection.AssemblyName! assemblyName) -> void -virtual System.Resources.ResXResourceWriter.Dispose() -> void -virtual System.Resources.ResXResourceWriter.Dispose(bool disposing) -> void -virtual System.Windows.Forms.AccessibleObject.Bounds.get -> System.Drawing.Rectangle -virtual System.Windows.Forms.AccessibleObject.DefaultAction.get -> string? -virtual System.Windows.Forms.AccessibleObject.Description.get -> string? -virtual System.Windows.Forms.AccessibleObject.DoDefaultAction() -> void -virtual System.Windows.Forms.AccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.GetChildCount() -> int -virtual System.Windows.Forms.AccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.GetHelpTopic(out string? fileName) -> int -virtual System.Windows.Forms.AccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.Help.get -> string? -virtual System.Windows.Forms.AccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.KeyboardShortcut.get -> string? -virtual System.Windows.Forms.AccessibleObject.Name.get -> string? -virtual System.Windows.Forms.AccessibleObject.Name.set -> void -virtual System.Windows.Forms.AccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navdir) -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.AccessibleObject.RaiseLiveRegionChanged() -> bool -virtual System.Windows.Forms.AccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole -virtual System.Windows.Forms.AccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void -virtual System.Windows.Forms.AccessibleObject.State.get -> System.Windows.Forms.AccessibleStates -virtual System.Windows.Forms.AccessibleObject.Value.get -> string? -virtual System.Windows.Forms.AccessibleObject.Value.set -> void -virtual System.Windows.Forms.ApplicationContext.Dispose(bool disposing) -> void -virtual System.Windows.Forms.ApplicationContext.ExitThreadCore() -> void -virtual System.Windows.Forms.ApplicationContext.OnMainFormClosed(object? sender, System.EventArgs! e) -> void -virtual System.Windows.Forms.AxHost.AttachInterfaces() -> void -virtual System.Windows.Forms.AxHost.CreateSink() -> void -virtual System.Windows.Forms.AxHost.DetachSink() -> void -virtual System.Windows.Forms.AxHost.Enabled.get -> bool -virtual System.Windows.Forms.AxHost.Enabled.set -> void -virtual System.Windows.Forms.AxHost.OnInPlaceActive() -> void -virtual System.Windows.Forms.AxHost.RightToLeft.get -> bool -virtual System.Windows.Forms.AxHost.RightToLeft.set -> void -virtual System.Windows.Forms.AxHost.State.Dispose(bool disposing) -> void -virtual System.Windows.Forms.BaseCollection.Count.get -> int -virtual System.Windows.Forms.BaseCollection.List.get -> System.Collections.ArrayList? -virtual System.Windows.Forms.BindableComponent.OnBindingContextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.BindingContext.AddCore(object! dataSource, System.Windows.Forms.BindingManagerBase! listManager) -> void -virtual System.Windows.Forms.BindingContext.ClearCore() -> void -virtual System.Windows.Forms.BindingContext.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs! ccevent) -> void -virtual System.Windows.Forms.BindingContext.RemoveCore(object! dataSource) -> void -virtual System.Windows.Forms.BindingManagerBase.GetItemProperties() -> System.ComponentModel.PropertyDescriptorCollection! -virtual System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Collections.ArrayList! dataSources, System.Collections.ArrayList! listAccessors) -> System.ComponentModel.PropertyDescriptorCollection? -virtual System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Type! listType, int offset, System.Collections.ArrayList! dataSources, System.Collections.ArrayList! listAccessors) -> System.ComponentModel.PropertyDescriptorCollection? -virtual System.Windows.Forms.BindingNavigator.AddStandardItems() -> void -virtual System.Windows.Forms.BindingNavigator.OnRefreshItems() -> void -virtual System.Windows.Forms.BindingNavigator.RefreshItemsCore() -> void -virtual System.Windows.Forms.BindingSource.AllowEdit.get -> bool -virtual System.Windows.Forms.BindingSource.AllowNew.get -> bool -virtual System.Windows.Forms.BindingSource.AllowNew.set -> void -virtual System.Windows.Forms.BindingSource.AllowRemove.get -> bool -virtual System.Windows.Forms.BindingSource.Clear() -> void -virtual System.Windows.Forms.BindingSource.Count.get -> int -virtual System.Windows.Forms.BindingSource.IsFixedSize.get -> bool -virtual System.Windows.Forms.BindingSource.IsReadOnly.get -> bool -virtual System.Windows.Forms.BindingSource.IsSorted.get -> bool -virtual System.Windows.Forms.BindingSource.IsSynchronized.get -> bool -virtual System.Windows.Forms.BindingSource.RemoveAt(int index) -> void -virtual System.Windows.Forms.BindingSource.RemoveFilter() -> void -virtual System.Windows.Forms.BindingSource.RemoveSort() -> void -virtual System.Windows.Forms.BindingSource.ResetAllowNew() -> void -virtual System.Windows.Forms.BindingSource.SortDirection.get -> System.ComponentModel.ListSortDirection -virtual System.Windows.Forms.BindingSource.SupportsAdvancedSorting.get -> bool -virtual System.Windows.Forms.BindingSource.SupportsChangeNotification.get -> bool -virtual System.Windows.Forms.BindingSource.SupportsFiltering.get -> bool -virtual System.Windows.Forms.BindingSource.SupportsSearching.get -> bool -virtual System.Windows.Forms.BindingSource.SupportsSorting.get -> bool -virtual System.Windows.Forms.Button.DialogResult.get -> System.Windows.Forms.DialogResult -virtual System.Windows.Forms.Button.DialogResult.set -> void -virtual System.Windows.Forms.Button.NotifyDefault(bool value) -> void -virtual System.Windows.Forms.ButtonBase.OnCommandCanExecuteChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ButtonBase.OnCommandChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ButtonBase.OnCommandParameterChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ButtonBase.OnRequestCommandExecute(System.EventArgs! e) -> void -virtual System.Windows.Forms.ButtonBase.TextAlign.get -> System.Drawing.ContentAlignment -virtual System.Windows.Forms.ButtonBase.TextAlign.set -> void -virtual System.Windows.Forms.CheckBox.OnAppearanceChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.CheckBox.OnCheckedChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.CheckBox.OnCheckStateChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.CheckedListBox.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs! ice) -> void -virtual System.Windows.Forms.ColorDialog.AllowFullOpen.get -> bool -virtual System.Windows.Forms.ColorDialog.AllowFullOpen.set -> void -virtual System.Windows.Forms.ColorDialog.AnyColor.get -> bool -virtual System.Windows.Forms.ColorDialog.AnyColor.set -> void -virtual System.Windows.Forms.ColorDialog.FullOpen.get -> bool -virtual System.Windows.Forms.ColorDialog.FullOpen.set -> void -virtual System.Windows.Forms.ColorDialog.Instance.get -> nint -virtual System.Windows.Forms.ColorDialog.Options.get -> int -virtual System.Windows.Forms.ColorDialog.ShowHelp.get -> bool -virtual System.Windows.Forms.ColorDialog.ShowHelp.set -> void -virtual System.Windows.Forms.ColorDialog.SolidColorOnly.get -> bool -virtual System.Windows.Forms.ColorDialog.SolidColorOnly.set -> void -virtual System.Windows.Forms.ComboBox.AddItemsCore(object![]? value) -> void -virtual System.Windows.Forms.ComboBox.ObjectCollection.this[int index].get -> object? -virtual System.Windows.Forms.ComboBox.ObjectCollection.this[int index].set -> void -virtual System.Windows.Forms.ComboBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnDropDown(System.EventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnDropDownClosed(System.EventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnDropDownStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnSelectedItemChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnSelectionChangeCommitted(System.EventArgs! e) -> void -virtual System.Windows.Forms.ComboBox.OnTextUpdate(System.EventArgs! e) -> void -virtual System.Windows.Forms.CommonDialog.HookProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint -virtual System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs! e) -> void -virtual System.Windows.Forms.CommonDialog.OwnerWndProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint -virtual System.Windows.Forms.ContainerControl.AutoValidate.get -> System.Windows.Forms.AutoValidate -virtual System.Windows.Forms.ContainerControl.AutoValidate.set -> void -virtual System.Windows.Forms.ContainerControl.OnAutoValidateChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ContainerControl.ProcessTabKey(bool forward) -> bool -virtual System.Windows.Forms.ContainerControl.ScaleMinMaxSize(float xScaleFactor, float yScaleFactor, bool updateContainerSize = true) -> void -virtual System.Windows.Forms.ContainerControl.UpdateDefaultButton() -> void -virtual System.Windows.Forms.ContainerControl.ValidateChildren() -> bool -virtual System.Windows.Forms.ContainerControl.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool -virtual System.Windows.Forms.Control.AllowDrop.get -> bool -virtual System.Windows.Forms.Control.AllowDrop.set -> void -virtual System.Windows.Forms.Control.Anchor.get -> System.Windows.Forms.AnchorStyles -virtual System.Windows.Forms.Control.Anchor.set -> void -virtual System.Windows.Forms.Control.AutoScrollOffset.get -> System.Drawing.Point -virtual System.Windows.Forms.Control.AutoScrollOffset.set -> void -virtual System.Windows.Forms.Control.AutoSize.get -> bool -virtual System.Windows.Forms.Control.AutoSize.set -> void -virtual System.Windows.Forms.Control.BackColor.get -> System.Drawing.Color -virtual System.Windows.Forms.Control.BackColor.set -> void -virtual System.Windows.Forms.Control.BackgroundImage.get -> System.Drawing.Image? -virtual System.Windows.Forms.Control.BackgroundImage.set -> void -virtual System.Windows.Forms.Control.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -virtual System.Windows.Forms.Control.BackgroundImageLayout.set -> void -virtual System.Windows.Forms.Control.BindingContext.get -> System.Windows.Forms.BindingContext? -virtual System.Windows.Forms.Control.BindingContext.set -> void -virtual System.Windows.Forms.Control.CanEnableIme.get -> bool -virtual System.Windows.Forms.Control.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -virtual System.Windows.Forms.Control.ContextMenuStrip.set -> void -virtual System.Windows.Forms.Control.ControlCollection.Add(System.Windows.Forms.Control? value) -> void -virtual System.Windows.Forms.Control.ControlCollection.AddRange(System.Windows.Forms.Control![]! controls) -> void -virtual System.Windows.Forms.Control.ControlCollection.Clear() -> void -virtual System.Windows.Forms.Control.ControlCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control! child, bool throwException) -> int -virtual System.Windows.Forms.Control.ControlCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.Control.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void -virtual System.Windows.Forms.Control.ControlCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.Control.ControlCollection.SetChildIndex(System.Windows.Forms.Control! child, int newIndex) -> void -virtual System.Windows.Forms.Control.ControlCollection.this[int index].get -> System.Windows.Forms.Control! -virtual System.Windows.Forms.Control.ControlCollection.this[string? key].get -> System.Windows.Forms.Control? -virtual System.Windows.Forms.Control.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -virtual System.Windows.Forms.Control.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! -virtual System.Windows.Forms.Control.CreateHandle() -> void -virtual System.Windows.Forms.Control.CreateParams.get -> System.Windows.Forms.CreateParams! -virtual System.Windows.Forms.Control.Cursor.get -> System.Windows.Forms.Cursor! -virtual System.Windows.Forms.Control.Cursor.set -> void -virtual System.Windows.Forms.Control.DataContext.get -> object? -virtual System.Windows.Forms.Control.DataContext.set -> void -virtual System.Windows.Forms.Control.DefaultCursor.get -> System.Windows.Forms.Cursor! -virtual System.Windows.Forms.Control.DefaultImeMode.get -> System.Windows.Forms.ImeMode -virtual System.Windows.Forms.Control.DefaultMargin.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.Control.DefaultMaximumSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Control.DefaultMinimumSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Control.DefaultPadding.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.Control.DefaultSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Control.DefWndProc(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.Control.DestroyHandle() -> void -virtual System.Windows.Forms.Control.DisplayRectangle.get -> System.Drawing.Rectangle -virtual System.Windows.Forms.Control.Dock.get -> System.Windows.Forms.DockStyle -virtual System.Windows.Forms.Control.Dock.set -> void -virtual System.Windows.Forms.Control.DoubleBuffered.get -> bool -virtual System.Windows.Forms.Control.DoubleBuffered.set -> void -virtual System.Windows.Forms.Control.Focused.get -> bool -virtual System.Windows.Forms.Control.Font.get -> System.Drawing.Font! -virtual System.Windows.Forms.Control.Font.set -> void -virtual System.Windows.Forms.Control.ForeColor.get -> System.Drawing.Color -virtual System.Windows.Forms.Control.ForeColor.set -> void -virtual System.Windows.Forms.Control.GetAccessibilityObjectById(int objectId) -> System.Windows.Forms.AccessibleObject? -virtual System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size -virtual System.Windows.Forms.Control.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle -virtual System.Windows.Forms.Control.ImeModeBase.get -> System.Windows.Forms.ImeMode -virtual System.Windows.Forms.Control.ImeModeBase.set -> void -virtual System.Windows.Forms.Control.InitLayout() -> void -virtual System.Windows.Forms.Control.IsInputChar(char charCode) -> bool -virtual System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.Control.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! -virtual System.Windows.Forms.Control.MaximumSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Control.MaximumSize.set -> void -virtual System.Windows.Forms.Control.MinimumSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Control.MinimumSize.set -> void -virtual System.Windows.Forms.Control.NotifyInvalidate(System.Drawing.Rectangle invalidatedArea) -> void -virtual System.Windows.Forms.Control.OnAutoSizeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnBackColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnBackgroundImageChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnBackgroundImageLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnBindingContextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnCausesValidationChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnChangeUICues(System.Windows.Forms.UICuesEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnClientSizeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnContextMenuStripChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnControlAdded(System.Windows.Forms.ControlEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnControlRemoved(System.Windows.Forms.ControlEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnCreateControl() -> void -virtual System.Windows.Forms.Control.OnCursorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDataContextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDockChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDoubleClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDpiChangedAfterParent(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDpiChangedBeforeParent(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDragDrop(System.Windows.Forms.DragEventArgs! drgevent) -> void -virtual System.Windows.Forms.Control.OnDragEnter(System.Windows.Forms.DragEventArgs! drgevent) -> void -virtual System.Windows.Forms.Control.OnDragLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnDragOver(System.Windows.Forms.DragEventArgs! drgevent) -> void -virtual System.Windows.Forms.Control.OnEnabledChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnEnter(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnFontChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnForeColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs! gfbevent) -> void -virtual System.Windows.Forms.Control.OnGotFocus(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnHandleCreated(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnHelpRequested(System.Windows.Forms.HelpEventArgs! hevent) -> void -virtual System.Windows.Forms.Control.OnImeModeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnInvalidated(System.Windows.Forms.InvalidateEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void -virtual System.Windows.Forms.Control.OnLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnLocationChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnLostFocus(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMarginChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseCaptureChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseClick(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseEnter(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseHover(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnMove(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.Control.OnPaddingChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnPaintBackground(System.Windows.Forms.PaintEventArgs! pevent) -> void -virtual System.Windows.Forms.Control.OnParentBackColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentBackgroundImageChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentCursorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentDataContextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentEnabledChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentFontChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentForeColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentRightToLeftChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnParentVisibleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs! qcdevent) -> void -virtual System.Windows.Forms.Control.OnRegionChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnResize(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnRightToLeftChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnSizeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnTabIndexChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnTabStopChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnTextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnValidated(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Control.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool -virtual System.Windows.Forms.Control.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.Control.ProcessDialogChar(char charCode) -> bool -virtual System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.Control.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool -virtual System.Windows.Forms.Control.ProcessKeyMessage(ref System.Windows.Forms.Message m) -> bool -virtual System.Windows.Forms.Control.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool -virtual System.Windows.Forms.Control.ProcessMnemonic(char charCode) -> bool -virtual System.Windows.Forms.Control.Refresh() -> void -virtual System.Windows.Forms.Control.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void -virtual System.Windows.Forms.Control.ResetBackColor() -> void -virtual System.Windows.Forms.Control.ResetCursor() -> void -virtual System.Windows.Forms.Control.ResetFont() -> void -virtual System.Windows.Forms.Control.ResetForeColor() -> void -virtual System.Windows.Forms.Control.ResetRightToLeft() -> void -virtual System.Windows.Forms.Control.ResetText() -> void -virtual System.Windows.Forms.Control.RightToLeft.get -> System.Windows.Forms.RightToLeft -virtual System.Windows.Forms.Control.RightToLeft.set -> void -virtual System.Windows.Forms.Control.ScaleChildren.get -> bool -virtual System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void -virtual System.Windows.Forms.Control.ScaleCore(float dx, float dy) -> void -virtual System.Windows.Forms.Control.Select(bool directed, bool forward) -> void -virtual System.Windows.Forms.Control.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void -virtual System.Windows.Forms.Control.SetClientSizeCore(int x, int y) -> void -virtual System.Windows.Forms.Control.SetVisibleCore(bool value) -> void -virtual System.Windows.Forms.Control.ShowFocusCues.get -> bool -virtual System.Windows.Forms.Control.ShowKeyboardCues.get -> bool -virtual System.Windows.Forms.Control.SizeFromClientSize(System.Drawing.Size clientSize) -> System.Drawing.Size -virtual System.Windows.Forms.Control.Text.get -> string! -virtual System.Windows.Forms.Control.Text.set -> void -virtual System.Windows.Forms.Control.WndProc(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.DataGridView.AccessibilityNotifyCurrentCellChanged(System.Drawing.Point cellAddress) -> void -virtual System.Windows.Forms.DataGridView.BeginEdit(bool selectAll) -> bool -virtual System.Windows.Forms.DataGridView.NotifyCurrentCellDirty(bool dirty) -> void -virtual System.Windows.Forms.DataGridView.SetCurrentCellAddressCore(int columnIndex, int rowIndex, bool setAnchorCellAddress, bool validateCurrentCell, bool throughMouseClick) -> bool -virtual System.Windows.Forms.DataGridView.SetSelectedCellCore(int columnIndex, int rowIndex, bool selected) -> void -virtual System.Windows.Forms.DataGridView.SetSelectedColumnCore(int columnIndex, bool selected) -> void -virtual System.Windows.Forms.DataGridView.SetSelectedRowCore(int rowIndex, bool selected) -> void -virtual System.Windows.Forms.DataGridViewBand.Clone() -> object! -virtual System.Windows.Forms.DataGridViewBand.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? -virtual System.Windows.Forms.DataGridViewBand.ContextMenuStrip.set -> void -virtual System.Windows.Forms.DataGridViewBand.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! -virtual System.Windows.Forms.DataGridViewBand.DefaultCellStyle.set -> void -virtual System.Windows.Forms.DataGridViewBand.Displayed.get -> bool -virtual System.Windows.Forms.DataGridViewBand.Frozen.get -> bool -virtual System.Windows.Forms.DataGridViewBand.Frozen.set -> void -virtual System.Windows.Forms.DataGridViewBand.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle? -virtual System.Windows.Forms.DataGridViewBand.ReadOnly.get -> bool -virtual System.Windows.Forms.DataGridViewBand.ReadOnly.set -> void -virtual System.Windows.Forms.DataGridViewBand.Resizable.get -> System.Windows.Forms.DataGridViewTriState -virtual System.Windows.Forms.DataGridViewBand.Resizable.set -> void -virtual System.Windows.Forms.DataGridViewBand.Selected.get -> bool -virtual System.Windows.Forms.DataGridViewBand.Selected.set -> void -virtual System.Windows.Forms.DataGridViewBand.Visible.get -> bool -virtual System.Windows.Forms.DataGridViewBand.Visible.set -> void -virtual System.Windows.Forms.DataGridViewCell.DetachEditingControl() -> void -virtual System.Windows.Forms.DataGridViewCell.Displayed.get -> bool -virtual System.Windows.Forms.DataGridViewCell.Dispose(bool disposing) -> void -virtual System.Windows.Forms.DataGridViewCell.EnterUnsharesRow(int rowIndex, bool throughMouseClick) -> bool -virtual System.Windows.Forms.DataGridViewCell.Frozen.get -> bool -virtual System.Windows.Forms.DataGridViewCell.GetInheritedState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates -virtual System.Windows.Forms.DataGridViewCell.GetSize(int rowIndex) -> System.Drawing.Size -virtual System.Windows.Forms.DataGridViewCell.LeaveUnsharesRow(int rowIndex, bool throughMouseClick) -> bool -virtual System.Windows.Forms.DataGridViewCell.MouseEnterUnsharesRow(int rowIndex) -> bool -virtual System.Windows.Forms.DataGridViewCell.MouseLeaveUnsharesRow(int rowIndex) -> bool -virtual System.Windows.Forms.DataGridViewCell.OnEnter(int rowIndex, bool throughMouseClick) -> void -virtual System.Windows.Forms.DataGridViewCell.OnLeave(int rowIndex, bool throughMouseClick) -> void -virtual System.Windows.Forms.DataGridViewCell.OnMouseEnter(int rowIndex) -> void -virtual System.Windows.Forms.DataGridViewCell.OnMouseLeave(int rowIndex) -> void -virtual System.Windows.Forms.DataGridViewCell.ReadOnly.get -> bool -virtual System.Windows.Forms.DataGridViewCell.ReadOnly.set -> void -virtual System.Windows.Forms.DataGridViewCell.Resizable.get -> bool -virtual System.Windows.Forms.DataGridViewCell.Selected.get -> bool -virtual System.Windows.Forms.DataGridViewCell.Selected.set -> void -virtual System.Windows.Forms.DataGridViewCell.Visible.get -> bool -virtual System.Windows.Forms.DataGridViewCellCollection.Clear() -> void -virtual System.Windows.Forms.DataGridViewCellCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged.get -> bool -virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged.set -> void -virtual System.Windows.Forms.DataGridViewCheckBoxCell.PrepareEditingCellForEdit(bool selectAll) -> void -virtual System.Windows.Forms.DataGridViewColumn.GetPreferredWidth(System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode, bool fixedHeight) -> int -virtual System.Windows.Forms.DataGridViewColumnCollection.Clear() -> void -virtual System.Windows.Forms.DataGridViewColumnCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete.get -> bool -virtual System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth.get -> int -virtual System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems.get -> int -virtual System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxCell.Sorted.get -> bool -virtual System.Windows.Forms.DataGridViewComboBoxCell.Sorted.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex.get -> int -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged.get -> bool -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged.set -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void -virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.RepositionEditingControlOnValueChange.get -> bool -virtual System.Windows.Forms.DataGridViewElement.OnDataGridViewChanged() -> void -virtual System.Windows.Forms.DataGridViewElement.State.get -> System.Windows.Forms.DataGridViewElementStates -virtual System.Windows.Forms.DataGridViewRow.GetPreferredHeight(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> int -virtual System.Windows.Forms.DataGridViewRow.GetState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates -virtual System.Windows.Forms.DataGridViewRowCollection.Add() -> int -virtual System.Windows.Forms.DataGridViewRowCollection.Add(int count) -> int -virtual System.Windows.Forms.DataGridViewRowCollection.AddCopies(int indexSource, int count) -> int -virtual System.Windows.Forms.DataGridViewRowCollection.AddCopy(int indexSource) -> int -virtual System.Windows.Forms.DataGridViewRowCollection.Clear() -> void -virtual System.Windows.Forms.DataGridViewRowCollection.GetRowState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates -virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, int count) -> void -virtual System.Windows.Forms.DataGridViewRowCollection.InsertCopies(int indexSource, int indexDestination, int count) -> void -virtual System.Windows.Forms.DataGridViewRowCollection.InsertCopy(int indexSource, int indexDestination) -> void -virtual System.Windows.Forms.DataGridViewRowCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength.get -> int -virtual System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength.set -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView.set -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue.get -> object! -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue.set -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex.get -> int -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex.set -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged.get -> bool -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged.set -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void -virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.RepositionEditingControlOnValueChange.get -> bool -virtual System.Windows.Forms.DataObject.ContainsAudio() -> bool -virtual System.Windows.Forms.DataObject.ContainsFileDropList() -> bool -virtual System.Windows.Forms.DataObject.ContainsImage() -> bool -virtual System.Windows.Forms.DataObject.ContainsText() -> bool -virtual System.Windows.Forms.DataObject.ContainsText(System.Windows.Forms.TextDataFormat format) -> bool -virtual System.Windows.Forms.DataObject.GetAudioStream() -> System.IO.Stream? -virtual System.Windows.Forms.DataObject.GetData(string! format) -> object? -virtual System.Windows.Forms.DataObject.GetData(string! format, bool autoConvert) -> object? -virtual System.Windows.Forms.DataObject.GetData(System.Type! format) -> object? -virtual System.Windows.Forms.DataObject.GetDataPresent(string! format) -> bool -virtual System.Windows.Forms.DataObject.GetDataPresent(string! format, bool autoConvert) -> bool -virtual System.Windows.Forms.DataObject.GetDataPresent(System.Type! format) -> bool -virtual System.Windows.Forms.DataObject.GetFileDropList() -> System.Collections.Specialized.StringCollection! -virtual System.Windows.Forms.DataObject.GetFormats() -> string![]! -virtual System.Windows.Forms.DataObject.GetFormats(bool autoConvert) -> string![]! -virtual System.Windows.Forms.DataObject.GetImage() -> System.Drawing.Image? -virtual System.Windows.Forms.DataObject.GetText() -> string! -virtual System.Windows.Forms.DataObject.GetText(System.Windows.Forms.TextDataFormat format) -> string! -virtual System.Windows.Forms.DataObject.SetAudio(byte[]! audioBytes) -> void -virtual System.Windows.Forms.DataObject.SetAudio(System.IO.Stream! audioStream) -> void -virtual System.Windows.Forms.DataObject.SetData(object? data) -> void -virtual System.Windows.Forms.DataObject.SetData(string! format, bool autoConvert, object? data) -> void -virtual System.Windows.Forms.DataObject.SetData(string! format, object? data) -> void -virtual System.Windows.Forms.DataObject.SetData(System.Type! format, object? data) -> void -virtual System.Windows.Forms.DataObject.SetFileDropList(System.Collections.Specialized.StringCollection! filePaths) -> void -virtual System.Windows.Forms.DataObject.SetImage(System.Drawing.Image! image) -> void -virtual System.Windows.Forms.DataObject.SetText(string! textData) -> void -virtual System.Windows.Forms.DataObject.SetText(string! textData, System.Windows.Forms.TextDataFormat format) -> void -virtual System.Windows.Forms.DateTimePicker.OnCloseUp(System.EventArgs! eventargs) -> void -virtual System.Windows.Forms.DateTimePicker.OnDropDown(System.EventArgs! eventargs) -> void -virtual System.Windows.Forms.DateTimePicker.OnFormatChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.DateTimePicker.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.DateTimePicker.OnValueChanged(System.EventArgs! eventargs) -> void -virtual System.Windows.Forms.DateTimePicker.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.DateTimePicker.RightToLeftLayout.set -> void -virtual System.Windows.Forms.Design.ComponentEditorForm.OnSelChangeSelector(object? source, System.Windows.Forms.TreeViewEventArgs! e) -> void -virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm() -> System.Windows.Forms.DialogResult -virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(int page) -> System.Windows.Forms.DialogResult -virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult -virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window? owner, int page) -> System.Windows.Forms.DialogResult -virtual System.Windows.Forms.Design.ComponentEditorPage.Activate() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.ApplyChanges() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.Deactivate() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.GetControl() -> System.Windows.Forms.Control! -virtual System.Windows.Forms.Design.ComponentEditorPage.IsPageMessage(ref System.Windows.Forms.Message msg) -> bool -virtual System.Windows.Forms.Design.ComponentEditorPage.OnApplyComplete() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.ReloadComponent() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.SetComponent(System.ComponentModel.IComponent? component) -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.SetDirty() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.SetSite(System.Windows.Forms.IComponentEditorPageSite? site) -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.ShowHelp() -> void -virtual System.Windows.Forms.Design.ComponentEditorPage.SupportsHelp() -> bool -virtual System.Windows.Forms.Design.ComponentEditorPage.Title.get -> string! -virtual System.Windows.Forms.Design.PropertyTab.Bitmap.get -> System.Drawing.Bitmap? -virtual System.Windows.Forms.Design.PropertyTab.CanExtend(object! extendee) -> bool -virtual System.Windows.Forms.Design.PropertyTab.Components.get -> object![]? -virtual System.Windows.Forms.Design.PropertyTab.Components.set -> void -virtual System.Windows.Forms.Design.PropertyTab.Dispose() -> void -virtual System.Windows.Forms.Design.PropertyTab.Dispose(bool disposing) -> void -virtual System.Windows.Forms.Design.PropertyTab.GetDefaultProperty(object! component) -> System.ComponentModel.PropertyDescriptor? -virtual System.Windows.Forms.Design.PropertyTab.GetProperties(object! component) -> System.ComponentModel.PropertyDescriptorCollection? -virtual System.Windows.Forms.Design.PropertyTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? -virtual System.Windows.Forms.Design.PropertyTab.HelpKeyword.get -> string? -virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Windows.Forms.IWin32Window? owner) -> bool -virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.GetComponentEditorPages() -> System.Type![]? -virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex() -> int -virtual System.Windows.Forms.DrawItemEventArgs.Dispose(bool disposing) -> void -virtual System.Windows.Forms.DrawItemEventArgs.DrawBackground() -> void -virtual System.Windows.Forms.DrawItemEventArgs.DrawFocusRectangle() -> void -virtual System.Windows.Forms.ErrorProvider.OnRightToLeftChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ErrorProvider.RightToLeft.get -> bool -virtual System.Windows.Forms.ErrorProvider.RightToLeft.set -> void -virtual System.Windows.Forms.FeatureSupport.IsPresent(object! feature) -> bool -virtual System.Windows.Forms.FeatureSupport.IsPresent(object! feature, System.Version! minimumVersion) -> bool -virtual System.Windows.Forms.FileDialog.CheckFileExists.get -> bool -virtual System.Windows.Forms.FileDialog.CheckFileExists.set -> void -virtual System.Windows.Forms.FontDialog.OnApply(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.AutoScaleBaseSize.get -> System.Drawing.Size -virtual System.Windows.Forms.Form.AutoScaleBaseSize.set -> void -virtual System.Windows.Forms.Form.OnActivated(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnClosed(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnClosing(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnDeactivate(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnDpiChanged(System.Windows.Forms.DpiChangedEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnFormClosed(System.Windows.Forms.FormClosedEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnFormClosing(System.Windows.Forms.FormClosingEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnGetDpiScaledSize(int deviceDpiOld, int deviceDpiNew, ref System.Drawing.Size desiredSize) -> bool -virtual System.Windows.Forms.Form.OnHelpButtonClicked(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnInputLanguageChanged(System.Windows.Forms.InputLanguageChangedEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnInputLanguageChanging(System.Windows.Forms.InputLanguageChangingEventArgs! e) -> void -virtual System.Windows.Forms.Form.OnLoad(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMaximizedBoundsChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMaximumSizeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMdiChildActivate(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMenuComplete(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMenuStart(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnMinimumSizeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnResizeBegin(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnResizeEnd(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.OnShown(System.EventArgs! e) -> void -virtual System.Windows.Forms.Form.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.Form.RightToLeftLayout.set -> void -virtual System.Windows.Forms.Form.ShowWithoutActivation.get -> bool -virtual System.Windows.Forms.FormCollection.this[int index].get -> System.Windows.Forms.Form? -virtual System.Windows.Forms.FormCollection.this[string? name].get -> System.Windows.Forms.Form? -virtual System.Windows.Forms.GridItem.Expandable.get -> bool -virtual System.Windows.Forms.GridItem.Expanded.get -> bool -virtual System.Windows.Forms.GridItem.Expanded.set -> void -virtual System.Windows.Forms.HelpProvider.CanExtend(object? target) -> bool -virtual System.Windows.Forms.HelpProvider.GetHelpKeyword(System.Windows.Forms.Control! ctl) -> string? -virtual System.Windows.Forms.HelpProvider.GetHelpNavigator(System.Windows.Forms.Control! ctl) -> System.Windows.Forms.HelpNavigator -virtual System.Windows.Forms.HelpProvider.GetHelpString(System.Windows.Forms.Control! ctl) -> string? -virtual System.Windows.Forms.HelpProvider.GetShowHelp(System.Windows.Forms.Control! ctl) -> bool -virtual System.Windows.Forms.HelpProvider.HelpNamespace.get -> string? -virtual System.Windows.Forms.HelpProvider.HelpNamespace.set -> void -virtual System.Windows.Forms.HelpProvider.ResetShowHelp(System.Windows.Forms.Control! ctl) -> void -virtual System.Windows.Forms.HelpProvider.SetHelpKeyword(System.Windows.Forms.Control! ctl, string? keyword) -> void -virtual System.Windows.Forms.HelpProvider.SetHelpNavigator(System.Windows.Forms.Control! ctl, System.Windows.Forms.HelpNavigator navigator) -> void -virtual System.Windows.Forms.HelpProvider.SetHelpString(System.Windows.Forms.Control! ctl, string? helpString) -> void -virtual System.Windows.Forms.HelpProvider.SetShowHelp(System.Windows.Forms.Control! ctl, bool value) -> void -virtual System.Windows.Forms.ImageIndexConverter.IncludeNoneAsStandardValue.get -> bool -virtual System.Windows.Forms.ImageKeyConverter.IncludeNoneAsStandardValue.get -> bool -virtual System.Windows.Forms.KeyEventArgs.Alt.get -> bool -virtual System.Windows.Forms.KeyEventArgs.Shift.get -> bool -virtual System.Windows.Forms.Label.BorderStyle.get -> System.Windows.Forms.BorderStyle -virtual System.Windows.Forms.Label.BorderStyle.set -> void -virtual System.Windows.Forms.Label.OnTextAlignChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Label.PreferredHeight.get -> int -virtual System.Windows.Forms.Label.PreferredWidth.get -> int -virtual System.Windows.Forms.Label.RenderTransparent.get -> bool -virtual System.Windows.Forms.Label.RenderTransparent.set -> void -virtual System.Windows.Forms.Label.TextAlign.get -> System.Drawing.ContentAlignment -virtual System.Windows.Forms.Label.TextAlign.set -> void -virtual System.Windows.Forms.Layout.ArrangedElementCollection.Count.get -> int -virtual System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator() -> System.Collections.IEnumerator! -virtual System.Windows.Forms.Layout.ArrangedElementCollection.IsReadOnly.get -> bool -virtual System.Windows.Forms.Layout.LayoutEngine.InitLayout(object! child, System.Windows.Forms.BoundsSpecified specified) -> void -virtual System.Windows.Forms.Layout.LayoutEngine.Layout(object! container, System.Windows.Forms.LayoutEventArgs! layoutEventArgs) -> bool -virtual System.Windows.Forms.LayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine? -virtual System.Windows.Forms.LinkLabel.LinkCollection.Clear() -> void -virtual System.Windows.Forms.LinkLabel.LinkCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.LinkLabel.LinkCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.LinkLabel.LinkCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.LinkLabel.LinkCollection.this[int index].get -> System.Windows.Forms.LinkLabel.Link! -virtual System.Windows.Forms.LinkLabel.LinkCollection.this[int index].set -> void -virtual System.Windows.Forms.LinkLabel.LinkCollection.this[string! key].get -> System.Windows.Forms.LinkLabel.Link? -virtual System.Windows.Forms.LinkLabel.OnLinkClicked(System.Windows.Forms.LinkLabelLinkClickedEventArgs! e) -> void -virtual System.Windows.Forms.ListBox.AddItemsCore(object![]! value) -> void -virtual System.Windows.Forms.ListBox.CreateItemCollection() -> System.Windows.Forms.ListBox.ObjectCollection! -virtual System.Windows.Forms.ListBox.DrawMode.get -> System.Windows.Forms.DrawMode -virtual System.Windows.Forms.ListBox.DrawMode.set -> void -virtual System.Windows.Forms.ListBox.ItemHeight.get -> int -virtual System.Windows.Forms.ListBox.ItemHeight.set -> void -virtual System.Windows.Forms.ListBox.ObjectCollection.Clear() -> void -virtual System.Windows.Forms.ListBox.ObjectCollection.this[int index].get -> object! -virtual System.Windows.Forms.ListBox.ObjectCollection.this[int index].set -> void -virtual System.Windows.Forms.ListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void -virtual System.Windows.Forms.ListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void -virtual System.Windows.Forms.ListBox.SelectionMode.get -> System.Windows.Forms.SelectionMode -virtual System.Windows.Forms.ListBox.SelectionMode.set -> void -virtual System.Windows.Forms.ListBox.Sort() -> void -virtual System.Windows.Forms.ListBox.WmReflectCommand(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.ListControl.AllowSelection.get -> bool -virtual System.Windows.Forms.ListControl.OnDataSourceChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnDisplayMemberChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnFormat(System.Windows.Forms.ListControlConvertEventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnFormatInfoChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnFormatStringChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnFormattingEnabledChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnSelectedIndexChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnSelectedValueChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.OnValueMemberChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListControl.RefreshItems() -> void -virtual System.Windows.Forms.ListControl.SetItemCore(int index, object! value) -> void -virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.this[string? key].get -> System.Windows.Forms.ListViewItem? -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, int imageIndex) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, string! imageKey) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text, int width) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign) -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.Windows.Forms.ColumnHeader! value) -> int -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(System.Windows.Forms.ColumnHeader![]! values) -> void -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Clear() -> void -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Remove(System.Windows.Forms.ColumnHeader! column) -> void -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.this[int index].get -> System.Windows.Forms.ColumnHeader! -virtual System.Windows.Forms.ListView.ColumnHeaderCollection.this[string? key].get -> System.Windows.Forms.ColumnHeader? -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? key, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? key, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(System.Windows.Forms.ListViewItem! value) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Clear() -> void -virtual System.Windows.Forms.ListView.ListViewItemCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ListView.ListViewItemCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? key, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? key, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.Remove(System.Windows.Forms.ListViewItem! item) -> void -virtual System.Windows.Forms.ListView.ListViewItemCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.ListView.ListViewItemCollection.RemoveByKey(string! key) -> void -virtual System.Windows.Forms.ListView.ListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! -virtual System.Windows.Forms.ListView.ListViewItemCollection.this[int index].set -> void -virtual System.Windows.Forms.ListView.ListViewItemCollection.this[string! key].get -> System.Windows.Forms.ListViewItem? -virtual System.Windows.Forms.ListView.OnAfterLabelEdit(System.Windows.Forms.LabelEditEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnBeforeLabelEdit(System.Windows.Forms.LabelEditEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnCacheVirtualItems(System.Windows.Forms.CacheVirtualItemsEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnColumnClick(System.Windows.Forms.ColumnClickEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnColumnReordered(System.Windows.Forms.ColumnReorderedEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnColumnWidthChanged(System.Windows.Forms.ColumnWidthChangedEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnColumnWidthChanging(System.Windows.Forms.ColumnWidthChangingEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnDrawColumnHeader(System.Windows.Forms.DrawListViewColumnHeaderEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnDrawItem(System.Windows.Forms.DrawListViewItemEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnDrawSubItem(System.Windows.Forms.DrawListViewSubItemEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnGroupCollapsedStateChanged(System.Windows.Forms.ListViewGroupEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnGroupTaskLinkClick(System.Windows.Forms.ListViewGroupEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnItemActivate(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs! ice) -> void -virtual System.Windows.Forms.ListView.OnItemChecked(System.Windows.Forms.ItemCheckedEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnItemMouseHover(System.Windows.Forms.ListViewItemMouseHoverEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnItemSelectionChanged(System.Windows.Forms.ListViewItemSelectionChangedEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnRetrieveVirtualItem(System.Windows.Forms.RetrieveVirtualItemEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnSearchForVirtualItem(System.Windows.Forms.SearchForVirtualItemEventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnSelectedIndexChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ListView.OnVirtualItemsSelectionRangeChanged(System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs! e) -> void -virtual System.Windows.Forms.ListView.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.ListView.RightToLeftLayout.set -> void -virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.this[string? key].get -> System.Windows.Forms.ListViewItem? -virtual System.Windows.Forms.ListViewItem.Clone() -> object! -virtual System.Windows.Forms.ListViewItem.Deserialize(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -virtual System.Windows.Forms.ListViewItem.EnsureVisible() -> void -virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[string! key].get -> System.Windows.Forms.ListViewItem.ListViewSubItem? -virtual System.Windows.Forms.ListViewItem.Remove() -> void -virtual System.Windows.Forms.ListViewItem.Serialize(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void -virtual System.Windows.Forms.MaskedTextBox.OnIsOverwriteModeChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.MaskedTextBox.OnMaskChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.MaskedTextBox.OnTextAlignChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.MenuStrip.OnMenuActivate(System.EventArgs! e) -> void -virtual System.Windows.Forms.MenuStrip.OnMenuDeactivate(System.EventArgs! e) -> void -virtual System.Windows.Forms.MonthCalendar.OnDateChanged(System.Windows.Forms.DateRangeEventArgs! drevent) -> void -virtual System.Windows.Forms.MonthCalendar.OnDateSelected(System.Windows.Forms.DateRangeEventArgs! drevent) -> void -virtual System.Windows.Forms.MonthCalendar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.MonthCalendar.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.MonthCalendar.RightToLeftLayout.set -> void -virtual System.Windows.Forms.NativeWindow.CreateHandle(System.Windows.Forms.CreateParams! cp) -> void -virtual System.Windows.Forms.NativeWindow.DestroyHandle() -> void -virtual System.Windows.Forms.NativeWindow.OnHandleChange() -> void -virtual System.Windows.Forms.NativeWindow.OnThreadException(System.Exception! e) -> void -virtual System.Windows.Forms.NativeWindow.ReleaseHandle() -> void -virtual System.Windows.Forms.NativeWindow.WmDpiChangedAfterParent(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.NativeWindow.WmDpiChangedBeforeParent(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.NativeWindow.WndProc(ref System.Windows.Forms.Message m) -> void -virtual System.Windows.Forms.NumericUpDown.OnValueChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.OwnerDrawPropertyBag.IsEmpty() -> bool -virtual System.Windows.Forms.PaintEventArgs.Dispose(bool disposing) -> void -virtual System.Windows.Forms.Panel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode -virtual System.Windows.Forms.Panel.AutoSizeMode.set -> void -virtual System.Windows.Forms.PrintPreviewControl.OnStartPageChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlightBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlightBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlightBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.CheckBackground.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.CheckPressedBackground.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.CheckSelectedBackground.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.GripDark.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.GripLight.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelected.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuStripGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.MenuStripGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.SeparatorDark.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.SeparatorLight.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.StatusStripBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.StatusStripGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.StatusStripGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripBorder.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripDropDownBackground.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientMiddle.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientBegin.get -> System.Drawing.Color -virtual System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientEnd.get -> System.Drawing.Color -virtual System.Windows.Forms.ProgressBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ProgressBar.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.ProgressBar.RightToLeftLayout.set -> void -virtual System.Windows.Forms.PropertyGrid.CanShowCommands.get -> bool -virtual System.Windows.Forms.PropertyGrid.CommandsVisible.get -> bool -virtual System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable.get -> bool -virtual System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable.set -> void -virtual System.Windows.Forms.PropertyGrid.HelpVisible.get -> bool -virtual System.Windows.Forms.PropertyGrid.HelpVisible.set -> void -virtual System.Windows.Forms.PropertyGrid.ToolbarVisible.get -> bool -virtual System.Windows.Forms.PropertyGrid.ToolbarVisible.set -> void -virtual System.Windows.Forms.RadioButton.OnCheckedChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.CreateRichEditOleCallback() -> object! -virtual System.Windows.Forms.RichTextBox.OnContentsResized(System.Windows.Forms.ContentsResizedEventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnHScroll(System.EventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnImeChange(System.EventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnLinkClicked(System.Windows.Forms.LinkClickedEventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnProtected(System.EventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnSelectionChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.RichTextBox.OnVScroll(System.EventArgs! e) -> void -virtual System.Windows.Forms.ScrollableControl.AdjustFormScrollbars(bool displayScrollbars) -> void -virtual System.Windows.Forms.ScrollableControl.AutoScroll.get -> bool -virtual System.Windows.Forms.ScrollableControl.AutoScroll.set -> void -virtual System.Windows.Forms.ScrollableControl.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void -virtual System.Windows.Forms.ScrollableControl.ScrollToControl(System.Windows.Forms.Control! activeControl) -> System.Drawing.Point -virtual System.Windows.Forms.ScrollBar.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void -virtual System.Windows.Forms.ScrollBar.OnValueChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.Splitter.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs! sevent) -> void -virtual System.Windows.Forms.Splitter.OnSplitterMoving(System.Windows.Forms.SplitterEventArgs! sevent) -> void -virtual System.Windows.Forms.StatusStrip.OnSpringTableLayoutCore() -> void -virtual System.Windows.Forms.TabControl.GetItems() -> object![]! -virtual System.Windows.Forms.TabControl.GetItems(System.Type! baseType) -> object![]! -virtual System.Windows.Forms.TabControl.OnDeselected(System.Windows.Forms.TabControlEventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnDeselecting(System.Windows.Forms.TabControlCancelEventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnSelected(System.Windows.Forms.TabControlEventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnSelectedIndexChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.TabControl.OnSelecting(System.Windows.Forms.TabControlCancelEventArgs! e) -> void -virtual System.Windows.Forms.TabControl.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.TabControl.RightToLeftLayout.set -> void -virtual System.Windows.Forms.TabControl.TabPageCollection.Clear() -> void -virtual System.Windows.Forms.TabControl.TabPageCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.TabControl.TabPageCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.TabControl.TabPageCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.TabControl.TabPageCollection.this[int index].get -> System.Windows.Forms.TabPage! -virtual System.Windows.Forms.TabControl.TabPageCollection.this[int index].set -> void -virtual System.Windows.Forms.TabControl.TabPageCollection.this[string? key].get -> System.Windows.Forms.TabPage? -virtual System.Windows.Forms.TableLayoutControlCollection.Add(System.Windows.Forms.Control! control, int column, int row) -> void -virtual System.Windows.Forms.TableLayoutPanel.OnCellPaint(System.Windows.Forms.TableLayoutCellPaintEventArgs! e) -> void -virtual System.Windows.Forms.TextBox.OnTextAlignChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.TextBox.PlaceholderText.get -> string! -virtual System.Windows.Forms.TextBox.PlaceholderText.set -> void -virtual System.Windows.Forms.TextBoxBase.GetCharFromPosition(System.Drawing.Point pt) -> char -virtual System.Windows.Forms.TextBoxBase.GetCharIndexFromPosition(System.Drawing.Point pt) -> int -virtual System.Windows.Forms.TextBoxBase.GetLineFromCharIndex(int index) -> int -virtual System.Windows.Forms.TextBoxBase.GetPositionFromCharIndex(int index) -> System.Drawing.Point -virtual System.Windows.Forms.TextBoxBase.MaxLength.get -> int -virtual System.Windows.Forms.TextBoxBase.MaxLength.set -> void -virtual System.Windows.Forms.TextBoxBase.Multiline.get -> bool -virtual System.Windows.Forms.TextBoxBase.Multiline.set -> void -virtual System.Windows.Forms.TextBoxBase.SelectedText.get -> string! -virtual System.Windows.Forms.TextBoxBase.SelectedText.set -> void -virtual System.Windows.Forms.TextBoxBase.SelectionLength.get -> int -virtual System.Windows.Forms.TextBoxBase.SelectionLength.set -> void -virtual System.Windows.Forms.TextBoxBase.ShortcutsEnabled.get -> bool -virtual System.Windows.Forms.TextBoxBase.ShortcutsEnabled.set -> void -virtual System.Windows.Forms.TextBoxBase.TextLength.get -> int -virtual System.Windows.Forms.Timer.Enabled.get -> bool -virtual System.Windows.Forms.Timer.Enabled.set -> void -virtual System.Windows.Forms.Timer.OnTick(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! -virtual System.Windows.Forms.ToolStrip.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle layoutStyle) -> System.Windows.Forms.LayoutSettings? -virtual System.Windows.Forms.ToolStrip.DefaultDock.get -> System.Windows.Forms.DockStyle -virtual System.Windows.Forms.ToolStrip.DefaultDropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection -virtual System.Windows.Forms.ToolStrip.DefaultDropDownDirection.set -> void -virtual System.Windows.Forms.ToolStrip.DefaultGripMargin.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStrip.DefaultShowItemToolTips.get -> bool -virtual System.Windows.Forms.ToolStrip.DisplayedItems.get -> System.Windows.Forms.ToolStripItemCollection! -virtual System.Windows.Forms.ToolStrip.GetNextItem(System.Windows.Forms.ToolStripItem? start, System.Windows.Forms.ArrowDirection direction) -> System.Windows.Forms.ToolStripItem? -virtual System.Windows.Forms.ToolStrip.Items.get -> System.Windows.Forms.ToolStripItemCollection! -virtual System.Windows.Forms.ToolStrip.MaxItemSize.get -> System.Drawing.Size -virtual System.Windows.Forms.ToolStrip.OnBeginDrag(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnEndDrag(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnItemAdded(System.Windows.Forms.ToolStripItemEventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnItemRemoved(System.Windows.Forms.ToolStripItemEventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnLayoutCompleted(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnLayoutStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnPaintGrip(System.Windows.Forms.PaintEventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.OnRendererChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStrip.RestoreFocus() -> void -virtual System.Windows.Forms.ToolStrip.SetDisplayedItems() -> void -virtual System.Windows.Forms.ToolStrip.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -virtual System.Windows.Forms.ToolStrip.TextDirection.set -> void -virtual System.Windows.Forms.ToolStripButton.OnCheckedChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripButton.OnCheckStateChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnDropDown(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnDropDownClosed(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnDropDownStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnSelectedIndexChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnSelectionChangeCommitted(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripComboBox.OnTextUpdate(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripContentPanel.OnLoad(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripContentPanel.OnRendererChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.Focused.get -> bool -virtual System.Windows.Forms.ToolStripControlHost.OnEnter(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnGotFocus(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnHostedControlResize(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnLostFocus(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnValidated(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripControlHost.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDown.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDown.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDown.OnOpened(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDown.OnOpening(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDown.TopMost.get -> bool -virtual System.Windows.Forms.ToolStripDropDownItem.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! -virtual System.Windows.Forms.ToolStripDropDownItem.DropDownLocation.get -> System.Drawing.Point -virtual System.Windows.Forms.ToolStripDropDownItem.HasDropDownItems.get -> bool -virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownClosed(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownHide(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpened(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownShow(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.AllowDrop.get -> bool -virtual System.Windows.Forms.ToolStripItem.AllowDrop.set -> void -virtual System.Windows.Forms.ToolStripItem.BackColor.get -> System.Drawing.Color -virtual System.Windows.Forms.ToolStripItem.BackColor.set -> void -virtual System.Windows.Forms.ToolStripItem.BackgroundImage.get -> System.Drawing.Image? -virtual System.Windows.Forms.ToolStripItem.BackgroundImage.set -> void -virtual System.Windows.Forms.ToolStripItem.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout -virtual System.Windows.Forms.ToolStripItem.BackgroundImageLayout.set -> void -virtual System.Windows.Forms.ToolStripItem.Bounds.get -> System.Drawing.Rectangle -virtual System.Windows.Forms.ToolStripItem.CanSelect.get -> bool -virtual System.Windows.Forms.ToolStripItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! -virtual System.Windows.Forms.ToolStripItem.DefaultAutoToolTip.get -> bool -virtual System.Windows.Forms.ToolStripItem.DefaultDisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle -virtual System.Windows.Forms.ToolStripItem.DefaultMargin.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripItem.DefaultPadding.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripItem.DefaultSize.get -> System.Drawing.Size -virtual System.Windows.Forms.ToolStripItem.DismissWhenClicked.get -> bool -virtual System.Windows.Forms.ToolStripItem.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle -virtual System.Windows.Forms.ToolStripItem.DisplayStyle.set -> void -virtual System.Windows.Forms.ToolStripItem.Enabled.get -> bool -virtual System.Windows.Forms.ToolStripItem.Enabled.set -> void -virtual System.Windows.Forms.ToolStripItem.Font.get -> System.Drawing.Font! -virtual System.Windows.Forms.ToolStripItem.Font.set -> void -virtual System.Windows.Forms.ToolStripItem.ForeColor.get -> System.Drawing.Color -virtual System.Windows.Forms.ToolStripItem.ForeColor.set -> void -virtual System.Windows.Forms.ToolStripItem.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size -virtual System.Windows.Forms.ToolStripItem.Image.get -> System.Drawing.Image? -virtual System.Windows.Forms.ToolStripItem.Image.set -> void -virtual System.Windows.Forms.ToolStripItem.IsInputChar(char charCode) -> bool -virtual System.Windows.Forms.ToolStripItem.IsInputKey(System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.ToolStripItem.OnAvailableChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnBackColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnBoundsChanged() -> void -virtual System.Windows.Forms.ToolStripItem.OnClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnCommandCanExecuteChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnCommandChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnCommandParameterChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnDisplayStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnDoubleClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnDragDrop(System.Windows.Forms.DragEventArgs! dragEvent) -> void -virtual System.Windows.Forms.ToolStripItem.OnDragEnter(System.Windows.Forms.DragEventArgs! dragEvent) -> void -virtual System.Windows.Forms.ToolStripItem.OnDragLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnDragOver(System.Windows.Forms.DragEventArgs! dragEvent) -> void -virtual System.Windows.Forms.ToolStripItem.OnEnabledChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnFontChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnForeColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs! giveFeedbackEvent) -> void -virtual System.Windows.Forms.ToolStripItem.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnLocationChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseEnter(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseHover(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseLeave(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseMove(System.Windows.Forms.MouseEventArgs! mea) -> void -virtual System.Windows.Forms.ToolStripItem.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnOwnerChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnOwnerFontChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnParentBackColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnParentChanged(System.Windows.Forms.ToolStrip? oldParent, System.Windows.Forms.ToolStrip? newParent) -> void -virtual System.Windows.Forms.ToolStripItem.OnParentEnabledChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnParentForeColorChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnParentRightToLeftChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs! queryContinueDragEvent) -> void -virtual System.Windows.Forms.ToolStripItem.OnRequestCommandExecute(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnRightToLeftChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnTextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.OnVisibleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripItem.Padding.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripItem.Padding.set -> void -virtual System.Windows.Forms.ToolStripItem.Pressed.get -> bool -virtual System.Windows.Forms.ToolStripItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.ToolStripItem.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool -virtual System.Windows.Forms.ToolStripItem.ProcessMnemonic(char charCode) -> bool -virtual System.Windows.Forms.ToolStripItem.ResetBackColor() -> void -virtual System.Windows.Forms.ToolStripItem.ResetDisplayStyle() -> void -virtual System.Windows.Forms.ToolStripItem.ResetFont() -> void -virtual System.Windows.Forms.ToolStripItem.ResetForeColor() -> void -virtual System.Windows.Forms.ToolStripItem.ResetImage() -> void -virtual System.Windows.Forms.ToolStripItem.ResetRightToLeft() -> void -virtual System.Windows.Forms.ToolStripItem.ResetTextDirection() -> void -virtual System.Windows.Forms.ToolStripItem.RightToLeft.get -> System.Windows.Forms.RightToLeft -virtual System.Windows.Forms.ToolStripItem.RightToLeft.set -> void -virtual System.Windows.Forms.ToolStripItem.Selected.get -> bool -virtual System.Windows.Forms.ToolStripItem.SetBounds(System.Drawing.Rectangle bounds) -> void -virtual System.Windows.Forms.ToolStripItem.SetVisibleCore(bool visible) -> void -virtual System.Windows.Forms.ToolStripItem.ShowKeyboardCues.get -> bool -virtual System.Windows.Forms.ToolStripItem.Size.get -> System.Drawing.Size -virtual System.Windows.Forms.ToolStripItem.Size.set -> void -virtual System.Windows.Forms.ToolStripItem.Text.get -> string? -virtual System.Windows.Forms.ToolStripItem.Text.set -> void -virtual System.Windows.Forms.ToolStripItem.TextAlign.get -> System.Drawing.ContentAlignment -virtual System.Windows.Forms.ToolStripItem.TextAlign.set -> void -virtual System.Windows.Forms.ToolStripItem.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection -virtual System.Windows.Forms.ToolStripItem.TextDirection.set -> void -virtual System.Windows.Forms.ToolStripItemCollection.Clear() -> void -virtual System.Windows.Forms.ToolStripItemCollection.ContainsKey(string? key) -> bool -virtual System.Windows.Forms.ToolStripItemCollection.IndexOfKey(string? key) -> int -virtual System.Windows.Forms.ToolStripItemCollection.RemoveByKey(string? key) -> void -virtual System.Windows.Forms.ToolStripItemCollection.this[int index].get -> System.Windows.Forms.ToolStripItem! -virtual System.Windows.Forms.ToolStripItemCollection.this[string? key].get -> System.Windows.Forms.ToolStripItem? -virtual System.Windows.Forms.ToolStripMenuItem.OnCheckedChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripMenuItem.OnCheckStateChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripPanel.OnRendererChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Clear() -> void -virtual System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.this[int index].get -> System.Windows.Forms.ToolStripPanelRow! -virtual System.Windows.Forms.ToolStripPanelRow.DefaultMargin.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripPanelRow.DefaultPadding.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripPanelRow.OnControlAdded(System.Windows.Forms.Control! control, int index) -> void -virtual System.Windows.Forms.ToolStripPanelRow.OnControlRemoved(System.Windows.Forms.Control! control, int index) -> void -virtual System.Windows.Forms.ToolStripPanelRow.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripPanelRow.OnOrientationChanged() -> void -virtual System.Windows.Forms.ToolStripPanelRow.Padding.get -> System.Windows.Forms.Padding -virtual System.Windows.Forms.ToolStripPanelRow.Padding.set -> void -virtual System.Windows.Forms.ToolStripProgressBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout.set -> void -virtual System.Windows.Forms.ToolStripRenderer.Initialize(System.Windows.Forms.ToolStrip! toolStrip) -> void -virtual System.Windows.Forms.ToolStripRenderer.InitializeContentPanel(System.Windows.Forms.ToolStripContentPanel! contentPanel) -> void -virtual System.Windows.Forms.ToolStripRenderer.InitializeItem(System.Windows.Forms.ToolStripItem! item) -> void -virtual System.Windows.Forms.ToolStripRenderer.InitializePanel(System.Windows.Forms.ToolStripPanel! toolStripPanel) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void -virtual System.Windows.Forms.ToolStripSplitButton.OnButtonClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripSplitButton.OnButtonDoubleClick(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripSplitButton.OnDefaultItemChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripSplitButton.ResetDropDownButtonWidth() -> void -virtual System.Windows.Forms.ToolStripTextBox.OnAcceptsTabChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripTextBox.OnBorderStyleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripTextBox.OnHideSelectionChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripTextBox.OnModifiedChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripTextBox.OnMultilineChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolStripTextBox.OnReadOnlyChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.ToolTip.CreateParams.get -> System.Windows.Forms.CreateParams! -virtual System.Windows.Forms.TrackBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.TrackBar.OnScroll(System.EventArgs! e) -> void -virtual System.Windows.Forms.TrackBar.OnValueChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.TrackBar.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.TrackBar.RightToLeftLayout.set -> void -virtual System.Windows.Forms.TreeNodeCollection.Clear() -> void -virtual System.Windows.Forms.TreeNodeCollection.RemoveAt(int index) -> void -virtual System.Windows.Forms.TreeView.RightToLeftLayout.get -> bool -virtual System.Windows.Forms.TreeView.RightToLeftLayout.set -> void -virtual System.Windows.Forms.UpDownBase.OnChanged(object? source, System.EventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.OnTextBoxKeyDown(object? source, System.Windows.Forms.KeyEventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.OnTextBoxLostFocus(object? source, System.EventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.OnTextBoxResize(object? source, System.EventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.OnTextBoxTextChanged(object? source, System.EventArgs! e) -> void -virtual System.Windows.Forms.UpDownBase.ValidateEditText() -> void -virtual System.Windows.Forms.UserControl.OnLoad(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnCanGoBackChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnCanGoForwardChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnDocumentCompleted(System.Windows.Forms.WebBrowserDocumentCompletedEventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnDocumentTitleChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnEncryptionLevelChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnFileDownload(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnNavigated(System.Windows.Forms.WebBrowserNavigatedEventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnNavigating(System.Windows.Forms.WebBrowserNavigatingEventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnNewWindow(System.ComponentModel.CancelEventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnProgressChanged(System.Windows.Forms.WebBrowserProgressChangedEventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.OnStatusTextChanged(System.EventArgs! e) -> void -virtual System.Windows.Forms.WebBrowser.StatusText.get -> string! +#nullable enable +~override System.Windows.Forms.AxHost.OnHandleCreated(System.EventArgs e) -> void +~override System.Windows.Forms.ControlBindingsCollection.AddCore(System.Windows.Forms.Binding dataBinding) -> void +~override System.Windows.Forms.ControlBindingsCollection.RemoveCore(System.Windows.Forms.Binding dataBinding) -> void +~override System.Windows.Forms.CurrencyManager.Current.get -> object +~override System.Windows.Forms.CurrencyManager.GetItemProperties() -> System.ComponentModel.PropertyDescriptorCollection +~override System.Windows.Forms.DataGridView.BackgroundImage.get -> System.Drawing.Image +~override System.Windows.Forms.DataGridView.BackgroundImage.set -> void +~override System.Windows.Forms.DataGridView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridView.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection +~override System.Windows.Forms.DataGridView.Font.get -> System.Drawing.Font +~override System.Windows.Forms.DataGridView.Font.set -> void +~override System.Windows.Forms.DataGridView.GetAccessibilityObjectById(int objectId) -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridView.OnBindingContextChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnCursorChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnDoubleClick(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnEnabledChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnEnter(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnFontChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnForeColorChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnGotFocus(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnHandleCreated(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnHandleDestroyed(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnKeyUp(System.Windows.Forms.KeyEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnLayout(System.Windows.Forms.LayoutEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnLeave(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnLostFocus(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseClick(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseDown(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseEnter(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseLeave(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseMove(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseUp(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnMouseWheel(System.Windows.Forms.MouseEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnPaint(System.Windows.Forms.PaintEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnResize(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnRightToLeftChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnValidating(System.ComponentModel.CancelEventArgs e) -> void +~override System.Windows.Forms.DataGridView.OnVisibleChanged(System.EventArgs e) -> void +~override System.Windows.Forms.DataGridView.Text.get -> string +~override System.Windows.Forms.DataGridView.Text.set -> void +override System.Windows.Forms.DataGridViewButtonCell.Clone() -> object! +override System.Windows.Forms.DataGridViewButtonCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridViewButtonCell.EditType.get -> System.Type? +override System.Windows.Forms.DataGridViewButtonCell.FormattedValueType.get -> System.Type! +override System.Windows.Forms.DataGridViewButtonCell.GetContentBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewButtonCell.GetErrorIconBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewButtonCell.GetPreferredSize(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +override System.Windows.Forms.DataGridViewButtonCell.GetValue(int rowIndex) -> object? +override System.Windows.Forms.DataGridViewButtonCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> bool +override System.Windows.Forms.DataGridViewButtonCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> bool +override System.Windows.Forms.DataGridViewButtonCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> bool +override System.Windows.Forms.DataGridViewButtonCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> bool +override System.Windows.Forms.DataGridViewButtonCell.OnKeyDown(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> void +override System.Windows.Forms.DataGridViewButtonCell.OnKeyUp(System.Windows.Forms.KeyEventArgs! e, int rowIndex) -> void +override System.Windows.Forms.DataGridViewButtonCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void +override System.Windows.Forms.DataGridViewButtonCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void +override System.Windows.Forms.DataGridViewButtonCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs! e) -> void +override System.Windows.Forms.DataGridViewButtonCell.Paint(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +override System.Windows.Forms.DataGridViewButtonCell.ToString() -> string! +override System.Windows.Forms.DataGridViewButtonCell.ValueType.get -> System.Type! +~override System.Windows.Forms.DataGridViewButtonColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~override System.Windows.Forms.DataGridViewButtonColumn.CellTemplate.set -> void +~override System.Windows.Forms.DataGridViewButtonColumn.Clone() -> object +~override System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewButtonColumn.DefaultCellStyle.set -> void +~override System.Windows.Forms.DataGridViewButtonColumn.ToString() -> string +~override System.Windows.Forms.DataGridViewCell.ToString() -> string +~override System.Windows.Forms.DataGridViewCellCollection.List.get -> System.Collections.ArrayList +~override System.Windows.Forms.DataGridViewCellStyle.Equals(object o) -> bool +~override System.Windows.Forms.DataGridViewCellStyle.ToString() -> string +~override System.Windows.Forms.DataGridViewCheckBoxCell.Clone() -> object +~override System.Windows.Forms.DataGridViewCheckBoxCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewCheckBoxCell.EditType.get -> System.Type +~override System.Windows.Forms.DataGridViewCheckBoxCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewCheckBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewCheckBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewCheckBoxCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~override System.Windows.Forms.DataGridViewCheckBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewCheckBoxCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyDown(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewCheckBoxCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object +~override System.Windows.Forms.DataGridViewCheckBoxCell.ToString() -> string +~override System.Windows.Forms.DataGridViewCheckBoxCell.ValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewCheckBoxCell.ValueType.set -> void +~override System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~override System.Windows.Forms.DataGridViewCheckBoxColumn.CellTemplate.set -> void +~override System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewCheckBoxColumn.DefaultCellStyle.set -> void +~override System.Windows.Forms.DataGridViewCheckBoxColumn.ToString() -> string +~override System.Windows.Forms.DataGridViewColumn.Clone() -> object +~override System.Windows.Forms.DataGridViewColumn.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip +~override System.Windows.Forms.DataGridViewColumn.ContextMenuStrip.set -> void +~override System.Windows.Forms.DataGridViewColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewColumn.DefaultCellStyle.set -> void +~override System.Windows.Forms.DataGridViewColumn.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewColumn.ToString() -> string +~override System.Windows.Forms.DataGridViewColumnCollection.List.get -> System.Collections.ArrayList +~override System.Windows.Forms.DataGridViewColumnHeaderCell.Clone() -> object +~override System.Windows.Forms.DataGridViewColumnHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewColumnHeaderCell.GetValue(int rowIndex) -> object +~override System.Windows.Forms.DataGridViewColumnHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates dataGridViewElementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewColumnHeaderCell.SetValue(int rowIndex, object value) -> bool +~override System.Windows.Forms.DataGridViewColumnHeaderCell.ToString() -> string +~override System.Windows.Forms.DataGridViewComboBoxCell.Clone() -> object +~override System.Windows.Forms.DataGridViewComboBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewComboBoxCell.EditType.get -> System.Type +~override System.Windows.Forms.DataGridViewComboBoxCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewComboBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewComboBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewComboBoxCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~override System.Windows.Forms.DataGridViewComboBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewComboBoxCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void +~override System.Windows.Forms.DataGridViewComboBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewComboBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewComboBoxCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object +~override System.Windows.Forms.DataGridViewComboBoxCell.ToString() -> string +~override System.Windows.Forms.DataGridViewComboBoxCell.ValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~override System.Windows.Forms.DataGridViewComboBoxColumn.CellTemplate.set -> void +~override System.Windows.Forms.DataGridViewComboBoxColumn.Clone() -> object +~override System.Windows.Forms.DataGridViewComboBoxColumn.ToString() -> string +override System.Windows.Forms.DataGridViewComboBoxEditingControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridViewComboBoxEditingControl.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.DataGridViewComboBoxEditingControl.OnSelectedIndexChanged(System.EventArgs! e) -> void +~override System.Windows.Forms.DataGridViewHeaderCell.Clone() -> object +~override System.Windows.Forms.DataGridViewHeaderCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip +~override System.Windows.Forms.DataGridViewHeaderCell.GetValue(int rowIndex) -> object +~override System.Windows.Forms.DataGridViewHeaderCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewHeaderCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewHeaderCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewHeaderCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates dataGridViewElementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewHeaderCell.ToString() -> string +~override System.Windows.Forms.DataGridViewHeaderCell.ValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewHeaderCell.ValueType.set -> void +~override System.Windows.Forms.DataGridViewImageCell.Clone() -> object +~override System.Windows.Forms.DataGridViewImageCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewImageCell.DefaultNewRowValue.get -> object +~override System.Windows.Forms.DataGridViewImageCell.EditType.get -> System.Type +~override System.Windows.Forms.DataGridViewImageCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewImageCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewImageCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewImageCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~override System.Windows.Forms.DataGridViewImageCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewImageCell.GetValue(int rowIndex) -> object +~override System.Windows.Forms.DataGridViewImageCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates elementState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewImageCell.ToString() -> string +~override System.Windows.Forms.DataGridViewImageCell.ValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewImageCell.ValueType.set -> void +~override System.Windows.Forms.DataGridViewImageColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~override System.Windows.Forms.DataGridViewImageColumn.CellTemplate.set -> void +~override System.Windows.Forms.DataGridViewImageColumn.Clone() -> object +~override System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewImageColumn.DefaultCellStyle.set -> void +~override System.Windows.Forms.DataGridViewImageColumn.ToString() -> string +~override System.Windows.Forms.DataGridViewLinkCell.Clone() -> object +~override System.Windows.Forms.DataGridViewLinkCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewLinkCell.EditType.get -> System.Type +~override System.Windows.Forms.DataGridViewLinkCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewLinkCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewLinkCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewLinkCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewLinkCell.GetValue(int rowIndex) -> object +~override System.Windows.Forms.DataGridViewLinkCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool +~override System.Windows.Forms.DataGridViewLinkCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewLinkCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewLinkCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewLinkCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void +~override System.Windows.Forms.DataGridViewLinkCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewLinkCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewLinkCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewLinkCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewLinkCell.ToString() -> string +~override System.Windows.Forms.DataGridViewLinkCell.ValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewLinkColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~override System.Windows.Forms.DataGridViewLinkColumn.CellTemplate.set -> void +~override System.Windows.Forms.DataGridViewLinkColumn.Clone() -> object +~override System.Windows.Forms.DataGridViewLinkColumn.ToString() -> string +~override System.Windows.Forms.DataGridViewRow.Clone() -> object +~override System.Windows.Forms.DataGridViewRow.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip +~override System.Windows.Forms.DataGridViewRow.ContextMenuStrip.set -> void +~override System.Windows.Forms.DataGridViewRow.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewRow.DefaultCellStyle.set -> void +~override System.Windows.Forms.DataGridViewRow.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewRow.ToString() -> string +~override System.Windows.Forms.DataGridViewRowHeaderCell.Clone() -> object +~override System.Windows.Forms.DataGridViewRowHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetErrorText(int rowIndex) -> string +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewRowHeaderCell.GetValue(int rowIndex) -> object +~override System.Windows.Forms.DataGridViewRowHeaderCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewRowHeaderCell.SetValue(int rowIndex, object value) -> bool +~override System.Windows.Forms.DataGridViewRowHeaderCell.ToString() -> string +~override System.Windows.Forms.DataGridViewTextBoxCell.Clone() -> object +~override System.Windows.Forms.DataGridViewTextBoxCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.DataGridViewTextBoxCell.FormattedValueType.get -> System.Type +~override System.Windows.Forms.DataGridViewTextBoxCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewTextBoxCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~override System.Windows.Forms.DataGridViewTextBoxCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~override System.Windows.Forms.DataGridViewTextBoxCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void +~override System.Windows.Forms.DataGridViewTextBoxCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool +~override System.Windows.Forms.DataGridViewTextBoxCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~override System.Windows.Forms.DataGridViewTextBoxCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~override System.Windows.Forms.DataGridViewTextBoxCell.PositionEditingControl(bool setLocation, bool setSize, System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> void +~override System.Windows.Forms.DataGridViewTextBoxCell.ToString() -> string +~override System.Windows.Forms.DataGridViewTextBoxCell.ValueType.get -> System.Type +~override System.Windows.Forms.HtmlElement.Equals(object obj) -> bool +~override System.Windows.Forms.HtmlWindow.Equals(object obj) -> bool +~override System.Windows.Forms.PictureBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.PictureBox.CreateParams.get -> System.Windows.Forms.CreateParams +~override System.Windows.Forms.PictureBox.Font.get -> System.Drawing.Font +~override System.Windows.Forms.PictureBox.Font.set -> void +~override System.Windows.Forms.PictureBox.OnEnabledChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.OnHandleCreated(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.OnHandleDestroyed(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.OnPaint(System.Windows.Forms.PaintEventArgs pe) -> void +~override System.Windows.Forms.PictureBox.OnParentChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.OnResize(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.OnVisibleChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PictureBox.Text.get -> string +~override System.Windows.Forms.PictureBox.Text.set -> void +~override System.Windows.Forms.PictureBox.ToString() -> string +~override System.Windows.Forms.PropertyGrid.BackgroundImage.get -> System.Drawing.Image +~override System.Windows.Forms.PropertyGrid.BackgroundImage.set -> void +~override System.Windows.Forms.PropertyGrid.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.PropertyGrid.OnEnabledChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnFontChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnGotFocus(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnHandleCreated(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnHandleDestroyed(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnMouseDown(System.Windows.Forms.MouseEventArgs me) -> void +~override System.Windows.Forms.PropertyGrid.OnMouseMove(System.Windows.Forms.MouseEventArgs me) -> void +~override System.Windows.Forms.PropertyGrid.OnMouseUp(System.Windows.Forms.MouseEventArgs me) -> void +~override System.Windows.Forms.PropertyGrid.OnPaint(System.Windows.Forms.PaintEventArgs pevent) -> void +~override System.Windows.Forms.PropertyGrid.OnResize(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnSystemColorsChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.OnVisibleChanged(System.EventArgs e) -> void +~override System.Windows.Forms.PropertyGrid.Site.get -> System.ComponentModel.ISite +~override System.Windows.Forms.PropertyGrid.Site.set -> void +~override System.Windows.Forms.PropertyGrid.Text.get -> string +~override System.Windows.Forms.PropertyGrid.Text.set -> void +~override System.Windows.Forms.TreeNode.ToString() -> string +~override System.Windows.Forms.TreeView.BackgroundImage.get -> System.Drawing.Image +~override System.Windows.Forms.TreeView.BackgroundImage.set -> void +~override System.Windows.Forms.TreeView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~override System.Windows.Forms.TreeView.CreateParams.get -> System.Windows.Forms.CreateParams +~override System.Windows.Forms.TreeView.OnGotFocus(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.OnHandleCreated(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.OnHandleDestroyed(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.OnKeyDown(System.Windows.Forms.KeyEventArgs e) -> void +~override System.Windows.Forms.TreeView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e) -> void +~override System.Windows.Forms.TreeView.OnKeyUp(System.Windows.Forms.KeyEventArgs e) -> void +~override System.Windows.Forms.TreeView.OnLostFocus(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.OnMouseHover(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.OnMouseLeave(System.EventArgs e) -> void +~override System.Windows.Forms.TreeView.Text.get -> string +~override System.Windows.Forms.TreeView.Text.set -> void +~override System.Windows.Forms.TreeView.ToString() -> string +~static System.Windows.Forms.AxHost.GetFontFromIFont(object font) -> System.Drawing.Font +~static System.Windows.Forms.AxHost.GetFontFromIFontDisp(object font) -> System.Drawing.Font +~static System.Windows.Forms.AxHost.GetIFontDispFromFont(System.Drawing.Font font) -> object +~static System.Windows.Forms.AxHost.GetIFontFromFont(System.Drawing.Font font) -> object +~static System.Windows.Forms.AxHost.GetIPictureDispFromPicture(System.Drawing.Image image) -> object +~static System.Windows.Forms.AxHost.GetIPictureFromCursor(System.Windows.Forms.Cursor cursor) -> object +~static System.Windows.Forms.AxHost.GetIPictureFromPicture(System.Drawing.Image image) -> object +~static System.Windows.Forms.AxHost.GetPictureFromIPicture(object picture) -> System.Drawing.Image +~static System.Windows.Forms.AxHost.GetPictureFromIPictureDisp(object picture) -> System.Drawing.Image +~static System.Windows.Forms.Control.FromChildHandle(nint handle) -> System.Windows.Forms.Control +~static System.Windows.Forms.Control.FromHandle(nint handle) -> System.Windows.Forms.Control +~static System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxWidth, System.Windows.Forms.TextFormatFlags flags) -> int +~static System.Windows.Forms.DataGridViewCell.MeasureTextHeight(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxWidth, System.Windows.Forms.TextFormatFlags flags, out bool widthTruncated) -> int +~static System.Windows.Forms.DataGridViewCell.MeasureTextPreferredSize(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, float maxRatio, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +~static System.Windows.Forms.DataGridViewCell.MeasureTextSize(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +~static System.Windows.Forms.DataGridViewCell.MeasureTextWidth(System.Drawing.Graphics graphics, string text, System.Drawing.Font font, int maxHeight, System.Windows.Forms.TextFormatFlags flags) -> int +~static System.Windows.Forms.HtmlElement.operator !=(System.Windows.Forms.HtmlElement left, System.Windows.Forms.HtmlElement right) -> bool +~static System.Windows.Forms.HtmlElement.operator ==(System.Windows.Forms.HtmlElement left, System.Windows.Forms.HtmlElement right) -> bool +~static System.Windows.Forms.HtmlWindow.operator !=(System.Windows.Forms.HtmlWindow left, System.Windows.Forms.HtmlWindow right) -> bool +~static System.Windows.Forms.HtmlWindow.operator ==(System.Windows.Forms.HtmlWindow left, System.Windows.Forms.HtmlWindow right) -> bool +static System.Windows.Forms.ToolStripManager.FindToolStrip(string! toolStripName) -> System.Windows.Forms.ToolStrip? +static System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form! targetForm) -> void +static System.Windows.Forms.ToolStripManager.LoadSettings(System.Windows.Forms.Form! targetForm, string! key) -> void +static System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip! sourceToolStrip, string! targetName) -> bool +static System.Windows.Forms.ToolStripManager.Merge(System.Windows.Forms.ToolStrip! sourceToolStrip, System.Windows.Forms.ToolStrip! targetToolStrip) -> bool +static System.Windows.Forms.ToolStripManager.Renderer.get -> System.Windows.Forms.ToolStripRenderer! +static System.Windows.Forms.ToolStripManager.Renderer.set -> void +static System.Windows.Forms.ToolStripManager.RevertMerge(string! targetName) -> bool +static System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip! targetToolStrip) -> bool +static System.Windows.Forms.ToolStripManager.RevertMerge(System.Windows.Forms.ToolStrip! targetToolStrip, System.Windows.Forms.ToolStrip! sourceToolStrip) -> bool +static System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form! sourceForm) -> void +static System.Windows.Forms.ToolStripManager.SaveSettings(System.Windows.Forms.Form! sourceForm, string! key) -> void +~static System.Windows.Forms.TreeNode.FromHandle(System.Windows.Forms.TreeView tree, nint handle) -> System.Windows.Forms.TreeNode +System.Windows.Forms.AxHost.ContainingControl.get -> System.Windows.Forms.ContainerControl? +System.Windows.Forms.AxHost.ContainingControl.set -> void +~System.Windows.Forms.AxHost.GetOcx() -> object +System.Windows.Forms.AxHost.OcxState.get -> System.Windows.Forms.AxHost.State? +System.Windows.Forms.AxHost.OcxState.set -> void +~System.Windows.Forms.AxHost.RaiseOnMouseDown(object o1, object o2, object o3, object o4) -> void +~System.Windows.Forms.AxHost.RaiseOnMouseMove(object o1, object o2, object o3, object o4) -> void +~System.Windows.Forms.AxHost.RaiseOnMouseUp(object o1, object o2, object o3, object o4) -> void +System.Windows.Forms.AxHost.SetAboutBoxDelegate(System.Windows.Forms.AxHost.AboutBoxDelegate! d) -> void +~System.Windows.Forms.AxHost.ShowPropertyPages(System.Windows.Forms.Control control) -> void +~System.Windows.Forms.Binding.BindableComponent.get -> System.Windows.Forms.IBindableComponent +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember) -> void +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled) -> void +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode) -> void +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue) -> void +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue, string formatString) -> void +~System.Windows.Forms.Binding.Binding(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode dataSourceUpdateMode, object nullValue, string formatString, System.IFormatProvider formatInfo) -> void +~System.Windows.Forms.Binding.BindingManagerBase.get -> System.Windows.Forms.BindingManagerBase +~System.Windows.Forms.Binding.Control.get -> System.Windows.Forms.Control +~System.Windows.Forms.Binding.DataSource.get -> object +~System.Windows.Forms.Binding.DataSourceNullValue.get -> object +~System.Windows.Forms.Binding.DataSourceNullValue.set -> void +~System.Windows.Forms.Binding.FormatInfo.get -> System.IFormatProvider +~System.Windows.Forms.Binding.FormatInfo.set -> void +~System.Windows.Forms.Binding.FormatString.get -> string +~System.Windows.Forms.Binding.FormatString.set -> void +~System.Windows.Forms.Binding.NullValue.get -> object +~System.Windows.Forms.Binding.NullValue.set -> void +~System.Windows.Forms.Binding.PropertyName.get -> string +~System.Windows.Forms.BindingSource.BindingSource(object dataSource, string dataMember) -> void +~System.Windows.Forms.BindingSource.BindingSource(System.ComponentModel.IContainer container) -> void +~System.Windows.Forms.BindingSource.Current.get -> object +~System.Windows.Forms.BindingSource.DataMember.get -> string +~System.Windows.Forms.BindingSource.DataMember.set -> void +~System.Windows.Forms.BindingSource.DataSource.get -> object +~System.Windows.Forms.BindingSource.DataSource.set -> void +~System.Windows.Forms.BindingSource.Find(string propertyName, object key) -> int +~System.Windows.Forms.BindingSource.List.get -> System.Collections.IList +~System.Windows.Forms.BindingSource.Sort.get -> string +~System.Windows.Forms.BindingSource.Sort.set -> void +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue, string formatString) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(string propertyName, object dataSource, string dataMember, bool formattingEnabled, System.Windows.Forms.DataSourceUpdateMode updateMode, object nullValue, string formatString, System.IFormatProvider formatInfo) -> System.Windows.Forms.Binding +~System.Windows.Forms.ControlBindingsCollection.Add(System.Windows.Forms.Binding binding) -> void +~System.Windows.Forms.ControlBindingsCollection.BindableComponent.get -> System.Windows.Forms.IBindableComponent +~System.Windows.Forms.ControlBindingsCollection.Control.get -> System.Windows.Forms.Control +~System.Windows.Forms.ControlBindingsCollection.ControlBindingsCollection(System.Windows.Forms.IBindableComponent control) -> void +~System.Windows.Forms.ControlBindingsCollection.Remove(System.Windows.Forms.Binding binding) -> void +~System.Windows.Forms.ControlBindingsCollection.this[string propertyName].get -> System.Windows.Forms.Binding +~System.Windows.Forms.CurrencyManager.List.get -> System.Collections.IList +~System.Windows.Forms.DataGridView.AdvancedCellBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle.set -> void +~System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle.set -> void +~System.Windows.Forms.DataGridView.Columns.get -> System.Windows.Forms.DataGridViewColumnCollection +~System.Windows.Forms.DataGridView.CurrentCell.get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridView.CurrentCell.set -> void +~System.Windows.Forms.DataGridView.CurrentRow.get -> System.Windows.Forms.DataGridViewRow +~System.Windows.Forms.DataGridView.DataMember.get -> string +~System.Windows.Forms.DataGridView.DataMember.set -> void +~System.Windows.Forms.DataGridView.DataSource.get -> object +~System.Windows.Forms.DataGridView.DataSource.set -> void +~System.Windows.Forms.DataGridView.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridView.DefaultCellStyle.set -> void +~System.Windows.Forms.DataGridView.EditingControl.get -> System.Windows.Forms.Control +~System.Windows.Forms.DataGridView.EditingPanel.get -> System.Windows.Forms.Panel +~System.Windows.Forms.DataGridView.FirstDisplayedCell.get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridView.FirstDisplayedCell.set -> void +~System.Windows.Forms.DataGridView.HitTest(int x, int y) -> System.Windows.Forms.DataGridView.HitTestInfo +~System.Windows.Forms.DataGridView.HorizontalScrollBar.get -> System.Windows.Forms.ScrollBar +~System.Windows.Forms.DataGridView.InvalidateCell(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> void +~System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle.set -> void +~System.Windows.Forms.DataGridView.Rows.get -> System.Windows.Forms.DataGridViewRowCollection +~System.Windows.Forms.DataGridView.RowsDefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridView.RowsDefaultCellStyle.set -> void +~System.Windows.Forms.DataGridView.RowTemplate.get -> System.Windows.Forms.DataGridViewRow +~System.Windows.Forms.DataGridView.RowTemplate.set -> void +~System.Windows.Forms.DataGridView.SelectedCells.get -> System.Windows.Forms.DataGridViewSelectedCellCollection +~System.Windows.Forms.DataGridView.SelectedColumns.get -> System.Windows.Forms.DataGridViewSelectedColumnCollection +~System.Windows.Forms.DataGridView.SelectedRows.get -> System.Windows.Forms.DataGridViewSelectedRowCollection +~System.Windows.Forms.DataGridView.SortedColumn.get -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridView.this[int columnIndex, int rowIndex].get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridView.this[int columnIndex, int rowIndex].set -> void +~System.Windows.Forms.DataGridView.this[string columnName, int rowIndex].get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridView.this[string columnName, int rowIndex].set -> void +~System.Windows.Forms.DataGridView.TopLeftHeaderCell.get -> System.Windows.Forms.DataGridViewHeaderCell +~System.Windows.Forms.DataGridView.TopLeftHeaderCell.set -> void +~System.Windows.Forms.DataGridView.UserSetCursor.get -> System.Windows.Forms.Cursor +~System.Windows.Forms.DataGridView.VerticalScrollBar.get -> System.Windows.Forms.ScrollBar +~System.Windows.Forms.DataGridViewButtonColumn.Text.get -> string +~System.Windows.Forms.DataGridViewButtonColumn.Text.set -> void +~System.Windows.Forms.DataGridViewCell.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject +~System.Windows.Forms.DataGridViewCell.EditedFormattedValue.get -> object +~System.Windows.Forms.DataGridViewCell.ErrorText.get -> string +~System.Windows.Forms.DataGridViewCell.ErrorText.set -> void +~System.Windows.Forms.DataGridViewCell.FormattedValue.get -> object +~System.Windows.Forms.DataGridViewCell.GetEditedFormattedValue(int rowIndex, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~System.Windows.Forms.DataGridViewCell.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridViewCell.OwningColumn.get -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewCell.OwningRow.get -> System.Windows.Forms.DataGridViewRow +~System.Windows.Forms.DataGridViewCell.Style.get -> System.Windows.Forms.DataGridViewCellStyle +~System.Windows.Forms.DataGridViewCell.Style.set -> void +~System.Windows.Forms.DataGridViewCell.Tag.get -> object +~System.Windows.Forms.DataGridViewCell.Tag.set -> void +~System.Windows.Forms.DataGridViewCell.ToolTipText.get -> string +~System.Windows.Forms.DataGridViewCell.ToolTipText.set -> void +~System.Windows.Forms.DataGridViewCell.Value.get -> object +~System.Windows.Forms.DataGridViewCell.Value.set -> void +~System.Windows.Forms.DataGridViewCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell[] array, int index) -> void +~System.Windows.Forms.DataGridViewCellCollection.DataGridViewCellCollection(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void +~System.Windows.Forms.DataGridViewCellCollection.IndexOf(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> int +~System.Windows.Forms.DataGridViewCellCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void +~System.Windows.Forms.DataGridViewCellCollection.this[int index].get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridViewCellCollection.this[int index].set -> void +~System.Windows.Forms.DataGridViewCellCollection.this[string columnName].get -> System.Windows.Forms.DataGridViewCell +~System.Windows.Forms.DataGridViewCellCollection.this[string columnName].set -> void +System.Windows.Forms.DataGridViewCellPaintingEventArgs.AdvancedBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle? +System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? +System.Windows.Forms.DataGridViewCellPaintingEventArgs.DataGridViewCellPaintingEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, int columnIndex, System.Windows.Forms.DataGridViewElementStates cellState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle? advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewCellPaintingEventArgs.ErrorText.get -> string? +System.Windows.Forms.DataGridViewCellPaintingEventArgs.FormattedValue.get -> object? +System.Windows.Forms.DataGridViewCellPaintingEventArgs.Graphics.get -> System.Drawing.Graphics? +System.Windows.Forms.DataGridViewCellPaintingEventArgs.Value.get -> object? +~System.Windows.Forms.DataGridViewCellStyle.DataGridViewCellStyle(System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void +~System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue.get -> object +~System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue.set -> void +~System.Windows.Forms.DataGridViewCellStyle.Font.get -> System.Drawing.Font +~System.Windows.Forms.DataGridViewCellStyle.Font.set -> void +~System.Windows.Forms.DataGridViewCellStyle.Format.get -> string +~System.Windows.Forms.DataGridViewCellStyle.Format.set -> void +~System.Windows.Forms.DataGridViewCellStyle.FormatProvider.get -> System.IFormatProvider +~System.Windows.Forms.DataGridViewCellStyle.FormatProvider.set -> void +~System.Windows.Forms.DataGridViewCellStyle.NullValue.get -> object +~System.Windows.Forms.DataGridViewCellStyle.NullValue.set -> void +~System.Windows.Forms.DataGridViewCellStyle.Tag.get -> object +~System.Windows.Forms.DataGridViewCellStyle.Tag.set -> void +~System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxCell.FalseValue.set -> void +~System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxCell.IndeterminateValue.set -> void +~System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxCell.TrueValue.set -> void +~System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxColumn.FalseValue.set -> void +~System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxColumn.IndeterminateValue.set -> void +~System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue.get -> object +~System.Windows.Forms.DataGridViewCheckBoxColumn.TrueValue.set -> void +~System.Windows.Forms.DataGridViewColumn.CellType.get -> System.Type +~System.Windows.Forms.DataGridViewColumn.DataGridViewColumn(System.Windows.Forms.DataGridViewCell cellTemplate) -> void +~System.Windows.Forms.DataGridViewColumn.DataPropertyName.get -> string +~System.Windows.Forms.DataGridViewColumn.DataPropertyName.set -> void +~System.Windows.Forms.DataGridViewColumn.HeaderCell.get -> System.Windows.Forms.DataGridViewColumnHeaderCell +~System.Windows.Forms.DataGridViewColumn.HeaderCell.set -> void +~System.Windows.Forms.DataGridViewColumn.HeaderText.get -> string +~System.Windows.Forms.DataGridViewColumn.HeaderText.set -> void +~System.Windows.Forms.DataGridViewColumn.Name.get -> string +~System.Windows.Forms.DataGridViewColumn.Name.set -> void +~System.Windows.Forms.DataGridViewColumn.Site.get -> System.ComponentModel.ISite +~System.Windows.Forms.DataGridViewColumn.Site.set -> void +~System.Windows.Forms.DataGridViewColumn.ToolTipText.get -> string +~System.Windows.Forms.DataGridViewColumn.ToolTipText.set -> void +~System.Windows.Forms.DataGridViewColumn.ValueType.get -> System.Type +~System.Windows.Forms.DataGridViewColumn.ValueType.set -> void +~System.Windows.Forms.DataGridViewColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn[] array, int index) -> void +~System.Windows.Forms.DataGridViewColumnCollection.DataGridView.get -> System.Windows.Forms.DataGridView +~System.Windows.Forms.DataGridViewColumnCollection.DataGridViewColumnCollection(System.Windows.Forms.DataGridView dataGridView) -> void +~System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates includeFilter) -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.GetFirstColumn(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.GetLastColumn(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.GetNextColumn(System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.GetPreviousColumn(System.Windows.Forms.DataGridViewColumn dataGridViewColumnStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.IndexOf(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> int +~System.Windows.Forms.DataGridViewColumnCollection.this[int index].get -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewColumnCollection.this[string columnName].get -> System.Windows.Forms.DataGridViewColumn +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Add(object item) -> int +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(params object[] items) -> void +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.AddRange(System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection value) -> void +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Contains(object value) -> bool +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.CopyTo(object[] destination, int arrayIndex) -> void +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IndexOf(object value) -> int +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Insert(int index, object item) -> void +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.ObjectCollection(System.Windows.Forms.DataGridViewComboBoxCell owner) -> void +~System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Remove(object value) -> void +~System.Windows.Forms.DataGridViewComboBoxColumn.DataSource.get -> object +~System.Windows.Forms.DataGridViewComboBoxColumn.DataSource.set -> void +~System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember.get -> string +~System.Windows.Forms.DataGridViewComboBoxColumn.DisplayMember.set -> void +~System.Windows.Forms.DataGridViewComboBoxColumn.Items.get -> System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection +~System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember.get -> string +~System.Windows.Forms.DataGridViewComboBoxColumn.ValueMember.set -> void +~System.Windows.Forms.DataGridViewImageCell.Description.get -> string +~System.Windows.Forms.DataGridViewImageCell.Description.set -> void +~System.Windows.Forms.DataGridViewImageColumn.Description.get -> string +~System.Windows.Forms.DataGridViewImageColumn.Description.set -> void +~System.Windows.Forms.DataGridViewImageColumn.Icon.get -> System.Drawing.Icon +~System.Windows.Forms.DataGridViewImageColumn.Icon.set -> void +~System.Windows.Forms.DataGridViewImageColumn.Image.get -> System.Drawing.Image +~System.Windows.Forms.DataGridViewImageColumn.Image.set -> void +~System.Windows.Forms.DataGridViewLinkColumn.Text.get -> string +~System.Windows.Forms.DataGridViewLinkColumn.Text.set -> void +~System.Windows.Forms.DataGridViewRow.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject +~System.Windows.Forms.DataGridViewRow.Cells.get -> System.Windows.Forms.DataGridViewCellCollection +~System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView dataGridView) -> void +~System.Windows.Forms.DataGridViewRow.CreateCells(System.Windows.Forms.DataGridView dataGridView, params object[] values) -> void +~System.Windows.Forms.DataGridViewRow.DataBoundItem.get -> object +~System.Windows.Forms.DataGridViewRow.ErrorText.get -> string +~System.Windows.Forms.DataGridViewRow.ErrorText.set -> void +~System.Windows.Forms.DataGridViewRow.GetContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip +~System.Windows.Forms.DataGridViewRow.GetErrorText(int rowIndex) -> string +~System.Windows.Forms.DataGridViewRow.HeaderCell.get -> System.Windows.Forms.DataGridViewRowHeaderCell +~System.Windows.Forms.DataGridViewRow.HeaderCell.set -> void +~System.Windows.Forms.DataGridViewRow.SetValues(params object[] values) -> bool +~System.Windows.Forms.DataGridViewRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow[] array, int index) -> void +~System.Windows.Forms.DataGridViewRowCollection.DataGridView.get -> System.Windows.Forms.DataGridView +~System.Windows.Forms.DataGridViewRowCollection.DataGridViewRowCollection(System.Windows.Forms.DataGridView dataGridView) -> void +~System.Windows.Forms.DataGridViewRowCollection.IndexOf(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> int +~System.Windows.Forms.DataGridViewRowCollection.List.get -> System.Collections.ArrayList +~System.Windows.Forms.DataGridViewRowCollection.SharedRow(int rowIndex) -> System.Windows.Forms.DataGridViewRow +~System.Windows.Forms.DataGridViewRowCollection.this[int index].get -> System.Windows.Forms.DataGridViewRow +System.Windows.Forms.DataGridViewSelectedCellCollection.Contains(System.Windows.Forms.DataGridViewCell! dataGridViewCell) -> bool +System.Windows.Forms.DataGridViewSelectedCellCollection.CopyTo(System.Windows.Forms.DataGridViewCell![]! array, int index) -> void +System.Windows.Forms.DataGridViewSelectedCellCollection.Insert(int index, System.Windows.Forms.DataGridViewCell! dataGridViewCell) -> void +System.Windows.Forms.DataGridViewSelectedCellCollection.this[int index].get -> System.Windows.Forms.DataGridViewCell! +~System.Windows.Forms.HtmlElement.All.get -> System.Windows.Forms.HtmlElementCollection +~System.Windows.Forms.HtmlElement.AppendChild(System.Windows.Forms.HtmlElement newElement) -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.AttachEventHandler(string eventName, System.EventHandler eventHandler) -> void +~System.Windows.Forms.HtmlElement.Children.get -> System.Windows.Forms.HtmlElementCollection +~System.Windows.Forms.HtmlElement.DetachEventHandler(string eventName, System.EventHandler eventHandler) -> void +~System.Windows.Forms.HtmlElement.Document.get -> System.Windows.Forms.HtmlDocument +~System.Windows.Forms.HtmlElement.DomElement.get -> object +~System.Windows.Forms.HtmlElement.FirstChild.get -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.GetAttribute(string attributeName) -> string +~System.Windows.Forms.HtmlElement.GetElementsByTagName(string tagName) -> System.Windows.Forms.HtmlElementCollection +~System.Windows.Forms.HtmlElement.Id.get -> string +~System.Windows.Forms.HtmlElement.Id.set -> void +~System.Windows.Forms.HtmlElement.InnerHtml.get -> string +~System.Windows.Forms.HtmlElement.InnerHtml.set -> void +~System.Windows.Forms.HtmlElement.InnerText.get -> string +~System.Windows.Forms.HtmlElement.InnerText.set -> void +~System.Windows.Forms.HtmlElement.InsertAdjacentElement(System.Windows.Forms.HtmlElementInsertionOrientation orient, System.Windows.Forms.HtmlElement newElement) -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.InvokeMember(string methodName) -> object +~System.Windows.Forms.HtmlElement.InvokeMember(string methodName, params object[] parameter) -> object +~System.Windows.Forms.HtmlElement.Name.get -> string +~System.Windows.Forms.HtmlElement.Name.set -> void +~System.Windows.Forms.HtmlElement.NextSibling.get -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.OffsetParent.get -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.OuterHtml.get -> string +~System.Windows.Forms.HtmlElement.OuterHtml.set -> void +~System.Windows.Forms.HtmlElement.OuterText.get -> string +~System.Windows.Forms.HtmlElement.OuterText.set -> void +~System.Windows.Forms.HtmlElement.Parent.get -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.HtmlElement.RaiseEvent(string eventName) -> void +~System.Windows.Forms.HtmlElement.SetAttribute(string attributeName, string value) -> void +~System.Windows.Forms.HtmlElement.Style.get -> string +~System.Windows.Forms.HtmlElement.Style.set -> void +~System.Windows.Forms.HtmlElement.TagName.get -> string +~System.Windows.Forms.HtmlWindow.Alert(string message) -> void +~System.Windows.Forms.HtmlWindow.AttachEventHandler(string eventName, System.EventHandler eventHandler) -> void +~System.Windows.Forms.HtmlWindow.Confirm(string message) -> bool +~System.Windows.Forms.HtmlWindow.DetachEventHandler(string eventName, System.EventHandler eventHandler) -> void +~System.Windows.Forms.HtmlWindow.Document.get -> System.Windows.Forms.HtmlDocument +~System.Windows.Forms.HtmlWindow.DomWindow.get -> object +~System.Windows.Forms.HtmlWindow.Frames.get -> System.Windows.Forms.HtmlWindowCollection +~System.Windows.Forms.HtmlWindow.History.get -> System.Windows.Forms.HtmlHistory +~System.Windows.Forms.HtmlWindow.Name.get -> string +~System.Windows.Forms.HtmlWindow.Name.set -> void +~System.Windows.Forms.HtmlWindow.Navigate(string urlString) -> void +~System.Windows.Forms.HtmlWindow.Navigate(System.Uri url) -> void +~System.Windows.Forms.HtmlWindow.Open(string urlString, string target, string windowOptions, bool replaceEntry) -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.Open(System.Uri url, string target, string windowOptions, bool replaceEntry) -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.Opener.get -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.OpenNew(string urlString, string windowOptions) -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.OpenNew(System.Uri url, string windowOptions) -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.Parent.get -> System.Windows.Forms.HtmlWindow +~System.Windows.Forms.HtmlWindow.Prompt(string message, string defaultInputValue) -> string +~System.Windows.Forms.HtmlWindow.StatusBarText.get -> string +~System.Windows.Forms.HtmlWindow.StatusBarText.set -> void +~System.Windows.Forms.HtmlWindow.Url.get -> System.Uri +~System.Windows.Forms.HtmlWindow.WindowFrameElement.get -> System.Windows.Forms.HtmlElement +~System.Windows.Forms.PictureBox.ErrorImage.get -> System.Drawing.Image +~System.Windows.Forms.PictureBox.ErrorImage.set -> void +~System.Windows.Forms.PictureBox.Image.get -> System.Drawing.Image +~System.Windows.Forms.PictureBox.Image.set -> void +~System.Windows.Forms.PictureBox.ImageLocation.get -> string +~System.Windows.Forms.PictureBox.ImageLocation.set -> void +~System.Windows.Forms.PictureBox.InitialImage.get -> System.Drawing.Image +~System.Windows.Forms.PictureBox.InitialImage.set -> void +~System.Windows.Forms.PictureBox.Load(string url) -> void +~System.Windows.Forms.PictureBox.LoadAsync(string url) -> void +~System.Windows.Forms.PropertyGrid.BrowsableAttributes.get -> System.ComponentModel.AttributeCollection +~System.Windows.Forms.PropertyGrid.BrowsableAttributes.set -> void +~System.Windows.Forms.PropertyGrid.Controls.get -> System.Windows.Forms.Control.ControlCollection +~System.Windows.Forms.PropertyGrid.OnComComponentNameChanged(System.ComponentModel.Design.ComponentRenameEventArgs e) -> void +~System.Windows.Forms.PropertyGrid.OnNotifyPropertyValueUIItemsChanged(object sender, System.EventArgs e) -> void +~System.Windows.Forms.PropertyGrid.PropertyTabs.get -> System.Windows.Forms.PropertyGrid.PropertyTabCollection +~System.Windows.Forms.PropertyGrid.SelectedGridItem.get -> System.Windows.Forms.GridItem +~System.Windows.Forms.PropertyGrid.SelectedGridItem.set -> void +~System.Windows.Forms.PropertyGrid.SelectedObject.get -> object +~System.Windows.Forms.PropertyGrid.SelectedObject.set -> void +~System.Windows.Forms.PropertyGrid.SelectedObjects.get -> object[] +~System.Windows.Forms.PropertyGrid.SelectedObjects.set -> void +~System.Windows.Forms.PropertyGrid.SelectedTab.get -> System.Windows.Forms.Design.PropertyTab +~System.Windows.Forms.PropertyGrid.ToolStripRenderer.get -> System.Windows.Forms.ToolStripRenderer +~System.Windows.Forms.PropertyGrid.ToolStripRenderer.set -> void +~System.Windows.Forms.TreeNode.FirstNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.FullPath.get -> string +~System.Windows.Forms.TreeNode.ImageKey.get -> string +~System.Windows.Forms.TreeNode.ImageKey.set -> void +~System.Windows.Forms.TreeNode.LastNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.Name.get -> string +~System.Windows.Forms.TreeNode.Name.set -> void +~System.Windows.Forms.TreeNode.NextNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.NextVisibleNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.NodeFont.get -> System.Drawing.Font +~System.Windows.Forms.TreeNode.NodeFont.set -> void +~System.Windows.Forms.TreeNode.Nodes.get -> System.Windows.Forms.TreeNodeCollection +~System.Windows.Forms.TreeNode.Parent.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.PrevNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.PrevVisibleNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeNode.SelectedImageKey.get -> string +~System.Windows.Forms.TreeNode.SelectedImageKey.set -> void +~System.Windows.Forms.TreeNode.StateImageKey.get -> string +~System.Windows.Forms.TreeNode.StateImageKey.set -> void +~System.Windows.Forms.TreeNode.Tag.get -> object +~System.Windows.Forms.TreeNode.Tag.set -> void +~System.Windows.Forms.TreeNode.Text.get -> string +~System.Windows.Forms.TreeNode.Text.set -> void +~System.Windows.Forms.TreeNode.ToolTipText.get -> string +~System.Windows.Forms.TreeNode.ToolTipText.set -> void +~System.Windows.Forms.TreeNode.TreeNode(string text) -> void +~System.Windows.Forms.TreeNode.TreeNode(string text, int imageIndex, int selectedImageIndex) -> void +~System.Windows.Forms.TreeNode.TreeNode(string text, int imageIndex, int selectedImageIndex, System.Windows.Forms.TreeNode[] children) -> void +~System.Windows.Forms.TreeNode.TreeNode(string text, System.Windows.Forms.TreeNode[] children) -> void +~System.Windows.Forms.TreeNode.TreeNode(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) -> void +~System.Windows.Forms.TreeNode.TreeView.get -> System.Windows.Forms.TreeView +System.Windows.Forms.TreeNodeCollection.Contains(System.Windows.Forms.TreeNode! node) -> bool +System.Windows.Forms.TreeNodeCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.TreeNodeCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.TreeNode![]! +System.Windows.Forms.TreeNodeCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.TreeNodeCollection.IndexOf(System.Windows.Forms.TreeNode! node) -> int +System.Windows.Forms.TreeNodeCollection.Remove(System.Windows.Forms.TreeNode! node) -> void +~System.Windows.Forms.TreeView.GetItemRenderStyles(System.Windows.Forms.TreeNode node, int state) -> System.Windows.Forms.OwnerDrawPropertyBag +~System.Windows.Forms.TreeView.GetNodeAt(int x, int y) -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeView.GetNodeAt(System.Drawing.Point pt) -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeView.HitTest(int x, int y) -> System.Windows.Forms.TreeViewHitTestInfo +~System.Windows.Forms.TreeView.HitTest(System.Drawing.Point pt) -> System.Windows.Forms.TreeViewHitTestInfo +~System.Windows.Forms.TreeView.ImageKey.get -> string +~System.Windows.Forms.TreeView.ImageKey.set -> void +~System.Windows.Forms.TreeView.ImageList.get -> System.Windows.Forms.ImageList +~System.Windows.Forms.TreeView.ImageList.set -> void +~System.Windows.Forms.TreeView.Nodes.get -> System.Windows.Forms.TreeNodeCollection +~System.Windows.Forms.TreeView.PathSeparator.get -> string +~System.Windows.Forms.TreeView.PathSeparator.set -> void +~System.Windows.Forms.TreeView.SelectedImageKey.get -> string +~System.Windows.Forms.TreeView.SelectedImageKey.set -> void +~System.Windows.Forms.TreeView.SelectedNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeView.SelectedNode.set -> void +~System.Windows.Forms.TreeView.StateImageList.get -> System.Windows.Forms.ImageList +~System.Windows.Forms.TreeView.StateImageList.set -> void +~System.Windows.Forms.TreeView.TopNode.get -> System.Windows.Forms.TreeNode +~System.Windows.Forms.TreeView.TopNode.set -> void +~System.Windows.Forms.TreeView.TreeViewNodeSorter.get -> System.Collections.IComparer +~System.Windows.Forms.TreeView.TreeViewNodeSorter.set -> void +virtual System.Windows.Forms.AxHost.CreateInstanceCore(System.Guid clsid) -> object? +~virtual System.Windows.Forms.Binding.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs e) -> void +~virtual System.Windows.Forms.Binding.OnFormat(System.Windows.Forms.ConvertEventArgs cevent) -> void +~virtual System.Windows.Forms.Binding.OnParse(System.Windows.Forms.ConvertEventArgs cevent) -> void +~virtual System.Windows.Forms.BindingSource.Add(object value) -> int +~virtual System.Windows.Forms.BindingSource.AddNew() -> object +~virtual System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.ListSortDescriptionCollection sorts) -> void +~virtual System.Windows.Forms.BindingSource.ApplySort(System.ComponentModel.PropertyDescriptor property, System.ComponentModel.ListSortDirection sort) -> void +~virtual System.Windows.Forms.BindingSource.Contains(object value) -> bool +~virtual System.Windows.Forms.BindingSource.CopyTo(System.Array arr, int index) -> void +~virtual System.Windows.Forms.BindingSource.CurrencyManager.get -> System.Windows.Forms.CurrencyManager +~virtual System.Windows.Forms.BindingSource.Filter.get -> string +~virtual System.Windows.Forms.BindingSource.Filter.set -> void +~virtual System.Windows.Forms.BindingSource.Find(System.ComponentModel.PropertyDescriptor prop, object key) -> int +~virtual System.Windows.Forms.BindingSource.GetEnumerator() -> System.Collections.IEnumerator +~virtual System.Windows.Forms.BindingSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[] listAccessors) -> System.ComponentModel.PropertyDescriptorCollection +~virtual System.Windows.Forms.BindingSource.GetListName(System.ComponentModel.PropertyDescriptor[] listAccessors) -> string +~virtual System.Windows.Forms.BindingSource.GetRelatedCurrencyManager(string dataMember) -> System.Windows.Forms.CurrencyManager +~virtual System.Windows.Forms.BindingSource.IndexOf(object value) -> int +~virtual System.Windows.Forms.BindingSource.Insert(int index, object value) -> void +~virtual System.Windows.Forms.BindingSource.OnAddingNew(System.ComponentModel.AddingNewEventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnCurrentChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnCurrentItemChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnDataError(System.Windows.Forms.BindingManagerDataErrorEventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnDataMemberChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnDataSourceChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnListChanged(System.ComponentModel.ListChangedEventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.OnPositionChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.BindingSource.Remove(object value) -> void +~virtual System.Windows.Forms.BindingSource.SortDescriptions.get -> System.ComponentModel.ListSortDescriptionCollection +~virtual System.Windows.Forms.BindingSource.SortProperty.get -> System.ComponentModel.PropertyDescriptor +~virtual System.Windows.Forms.BindingSource.SyncRoot.get -> object +~virtual System.Windows.Forms.BindingSource.this[int index].get -> object +~virtual System.Windows.Forms.BindingSource.this[int index].set -> void +~virtual System.Windows.Forms.DataGridView.AdjustColumnHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool isFirstDisplayedColumn, bool isLastVisibleColumn) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~virtual System.Windows.Forms.DataGridView.AdjustedTopLeftHeaderBorderStyle.get -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~virtual System.Windows.Forms.DataGridView.CreateColumnsInstance() -> System.Windows.Forms.DataGridViewColumnCollection +~virtual System.Windows.Forms.DataGridView.CreateRowsInstance() -> System.Windows.Forms.DataGridViewRowCollection +~virtual System.Windows.Forms.DataGridView.GetClipboardContent() -> System.Windows.Forms.DataObject +~virtual System.Windows.Forms.DataGridView.OnAllowUserToAddRowsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAllowUserToDeleteRowsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAllowUserToOrderColumnsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAllowUserToResizeColumnsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAllowUserToResizeRowsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAlternatingRowsDefaultCellStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAutoGenerateColumnsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAutoSizeColumnModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAutoSizeColumnsModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnAutoSizeRowsModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnBackgroundColorChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnBorderStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCancelRowEdit(System.Windows.Forms.QuestionEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellBeginEdit(System.Windows.Forms.DataGridViewCellCancelEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellBorderStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellContextMenuStripChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellContextMenuStripNeeded(System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellEndEdit(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellErrorTextChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellErrorTextNeeded(System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellFormatting(System.Windows.Forms.DataGridViewCellFormattingEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellPainting(System.Windows.Forms.DataGridViewCellPaintingEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellParsing(System.Windows.Forms.DataGridViewCellParsingEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellStateChanged(System.Windows.Forms.DataGridViewCellStateChangedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellStyleChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellStyleContentChanged(System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellToolTipTextChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellToolTipTextNeeded(System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellValidated(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellValidating(System.Windows.Forms.DataGridViewCellValidatingEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellValueNeeded(System.Windows.Forms.DataGridViewCellValueEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCellValuePushed(System.Windows.Forms.DataGridViewCellValueEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnAdded(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnContextMenuStripChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnDataPropertyNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnDefaultCellStyleChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnDisplayIndexChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnDividerDoubleClick(System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnDividerWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeaderCellChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeadersBorderStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeadersDefaultCellStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeadersHeightChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnHeadersHeightSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnMinimumWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnRemoved(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnSortModeChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnStateChanged(System.Windows.Forms.DataGridViewColumnStateChangedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnToolTipTextChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnColumnWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCurrentCellChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnCurrentCellDirtyStateChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDataBindingComplete(System.Windows.Forms.DataGridViewBindingCompleteEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDataError(bool displayErrorDialogIfNoHandler, System.Windows.Forms.DataGridViewDataErrorEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDataMemberChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDataSourceChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDefaultCellStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnDefaultValuesNeeded(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnEditingControlShowing(System.Windows.Forms.DataGridViewEditingControlShowingEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnEditModeChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnGridColorChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnMultiSelectChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnNewRowNeeded(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnReadOnlyChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowContextMenuStripChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowContextMenuStripNeeded(System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowDefaultCellStyleChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowDirtyStateNeeded(System.Windows.Forms.QuestionEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowDividerDoubleClick(System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowDividerHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowEnter(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowErrorTextChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowErrorTextNeeded(System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeaderCellChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeadersBorderStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeadersDefaultCellStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeadersWidthChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeadersWidthSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeightInfoNeeded(System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowHeightInfoPushed(System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowLeave(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowMinimumHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowPostPaint(System.Windows.Forms.DataGridViewRowPostPaintEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowPrePaint(System.Windows.Forms.DataGridViewRowPrePaintEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowsAdded(System.Windows.Forms.DataGridViewRowsAddedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowsDefaultCellStyleChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowsRemoved(System.Windows.Forms.DataGridViewRowsRemovedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowStateChanged(int rowIndex, System.Windows.Forms.DataGridViewRowStateChangedEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowUnshared(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowValidated(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnRowValidating(System.Windows.Forms.DataGridViewCellCancelEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnScroll(System.Windows.Forms.ScrollEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnSelectionChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnSortCompare(System.Windows.Forms.DataGridViewSortCompareEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnSorted(System.EventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnUserAddedRow(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnUserDeletedRow(System.Windows.Forms.DataGridViewRowEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.OnUserDeletingRow(System.Windows.Forms.DataGridViewRowCancelEventArgs e) -> void +~virtual System.Windows.Forms.DataGridView.PaintBackground(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle gridBounds) -> void +~virtual System.Windows.Forms.DataGridView.ProcessDataGridViewKey(System.Windows.Forms.KeyEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridView.Sort(System.Collections.IComparer comparer) -> void +~virtual System.Windows.Forms.DataGridView.Sort(System.Windows.Forms.DataGridViewColumn dataGridViewColumn, System.ComponentModel.ListSortDirection direction) -> void +~virtual System.Windows.Forms.DataGridViewCell.AdjustCellBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~virtual System.Windows.Forms.DataGridViewCell.BorderWidths(System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle) -> System.Drawing.Rectangle +~virtual System.Windows.Forms.DataGridViewCell.ClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.Clone() -> object +~virtual System.Windows.Forms.DataGridViewCell.ContentClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.ContentDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip +~virtual System.Windows.Forms.DataGridViewCell.ContextMenuStrip.set -> void +~virtual System.Windows.Forms.DataGridViewCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~virtual System.Windows.Forms.DataGridViewCell.DefaultNewRowValue.get -> object +~virtual System.Windows.Forms.DataGridViewCell.DoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.EditType.get -> System.Type +~virtual System.Windows.Forms.DataGridViewCell.FormattedValueType.get -> System.Type +~virtual System.Windows.Forms.DataGridViewCell.GetClipboardContent(int rowIndex, bool firstCell, bool lastCell, bool inFirstRow, bool inLastRow, string format) -> object +~virtual System.Windows.Forms.DataGridViewCell.GetContentBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~virtual System.Windows.Forms.DataGridViewCell.GetErrorIconBounds(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex) -> System.Drawing.Rectangle +~virtual System.Windows.Forms.DataGridViewCell.GetErrorText(int rowIndex) -> string +~virtual System.Windows.Forms.DataGridViewCell.GetFormattedValue(object value, int rowIndex, ref System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter valueTypeConverter, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~virtual System.Windows.Forms.DataGridViewCell.GetInheritedContextMenuStrip(int rowIndex) -> System.Windows.Forms.ContextMenuStrip +~virtual System.Windows.Forms.DataGridViewCell.GetInheritedStyle(System.Windows.Forms.DataGridViewCellStyle inheritedCellStyle, int rowIndex, bool includeColors) -> System.Windows.Forms.DataGridViewCellStyle +~virtual System.Windows.Forms.DataGridViewCell.GetPreferredSize(System.Drawing.Graphics graphics, System.Windows.Forms.DataGridViewCellStyle cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +~virtual System.Windows.Forms.DataGridViewCell.GetValue(int rowIndex) -> object +~virtual System.Windows.Forms.DataGridViewCell.InitializeEditingControl(int rowIndex, object initialFormattedValue, System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void +~virtual System.Windows.Forms.DataGridViewCell.KeyDownUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool +~virtual System.Windows.Forms.DataGridViewCell.KeyEntersEditMode(System.Windows.Forms.KeyEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.KeyPressUnsharesRow(System.Windows.Forms.KeyPressEventArgs e, int rowIndex) -> bool +~virtual System.Windows.Forms.DataGridViewCell.KeyUpUnsharesRow(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> bool +~virtual System.Windows.Forms.DataGridViewCell.MouseClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.MouseDoubleClickUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.MouseDownUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.MouseMoveUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.MouseUpUnsharesRow(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> bool +~virtual System.Windows.Forms.DataGridViewCell.OnClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnContentClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnKeyDown(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnKeyPress(System.Windows.Forms.KeyPressEventArgs e, int rowIndex) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnKeyUp(System.Windows.Forms.KeyEventArgs e, int rowIndex) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.OnMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewCell.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object value, object formattedValue, string errorText, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~virtual System.Windows.Forms.DataGridViewCell.PaintBorder(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle advancedBorderStyle) -> void +~virtual System.Windows.Forms.DataGridViewCell.PaintErrorIcon(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellValueBounds, string errorText) -> void +~virtual System.Windows.Forms.DataGridViewCell.ParseFormattedValue(object formattedValue, System.Windows.Forms.DataGridViewCellStyle cellStyle, System.ComponentModel.TypeConverter formattedValueTypeConverter, System.ComponentModel.TypeConverter valueTypeConverter) -> object +~virtual System.Windows.Forms.DataGridViewCell.PositionEditingControl(bool setLocation, bool setSize, System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> void +~virtual System.Windows.Forms.DataGridViewCell.PositionEditingPanel(System.Drawing.Rectangle cellBounds, System.Drawing.Rectangle cellClip, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedColumn, bool isFirstDisplayedRow) -> System.Drawing.Rectangle +~virtual System.Windows.Forms.DataGridViewCell.SetValue(int rowIndex, object value) -> bool +~virtual System.Windows.Forms.DataGridViewCell.ValueType.get -> System.Type +~virtual System.Windows.Forms.DataGridViewCell.ValueType.set -> void +~virtual System.Windows.Forms.DataGridViewCellCollection.Add(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> int +~virtual System.Windows.Forms.DataGridViewCellCollection.AddRange(params System.Windows.Forms.DataGridViewCell[] dataGridViewCells) -> void +~virtual System.Windows.Forms.DataGridViewCellCollection.Contains(System.Windows.Forms.DataGridViewCell dataGridViewCell) -> bool +~virtual System.Windows.Forms.DataGridViewCellCollection.Insert(int index, System.Windows.Forms.DataGridViewCell dataGridViewCell) -> void +~virtual System.Windows.Forms.DataGridViewCellCollection.Remove(System.Windows.Forms.DataGridViewCell cell) -> void +~virtual System.Windows.Forms.DataGridViewCellStyle.ApplyStyle(System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle) -> void +~virtual System.Windows.Forms.DataGridViewCellStyle.Clone() -> System.Windows.Forms.DataGridViewCellStyle +~virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue.get -> object +~virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellFormattedValue.set -> void +~virtual System.Windows.Forms.DataGridViewCheckBoxCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object +~virtual System.Windows.Forms.DataGridViewColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell +~virtual System.Windows.Forms.DataGridViewColumn.CellTemplate.set -> void +~virtual System.Windows.Forms.DataGridViewColumnCollection.Add(string columnName, string headerText) -> int +~virtual System.Windows.Forms.DataGridViewColumnCollection.Add(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> int +~virtual System.Windows.Forms.DataGridViewColumnCollection.AddRange(params System.Windows.Forms.DataGridViewColumn[] dataGridViewColumns) -> void +~virtual System.Windows.Forms.DataGridViewColumnCollection.Contains(string columnName) -> bool +~virtual System.Windows.Forms.DataGridViewColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> bool +~virtual System.Windows.Forms.DataGridViewColumnCollection.Insert(int columnIndex, System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> void +~virtual System.Windows.Forms.DataGridViewColumnCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewColumnCollection.Remove(string columnName) -> void +~virtual System.Windows.Forms.DataGridViewColumnCollection.Remove(System.Windows.Forms.DataGridViewColumn dataGridViewColumn) -> void +~virtual System.Windows.Forms.DataGridViewComboBoxCell.DataSource.get -> object +~virtual System.Windows.Forms.DataGridViewComboBoxCell.DataSource.set -> void +~virtual System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember.get -> string +~virtual System.Windows.Forms.DataGridViewComboBoxCell.DisplayMember.set -> void +~virtual System.Windows.Forms.DataGridViewComboBoxCell.Items.get -> System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection +~virtual System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.this[int index].get -> object +~virtual System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.this[int index].set -> void +~virtual System.Windows.Forms.DataGridViewComboBoxCell.ValueMember.get -> string +~virtual System.Windows.Forms.DataGridViewComboBoxCell.ValueMember.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlDataGridView.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue.get -> object! +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlFormattedValue.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! +~virtual System.Windows.Forms.DataGridViewRow.AdjustRowHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool singleVerticalBorderAdded, bool singleHorizontalBorderAdded, bool isFirstDisplayedRow, bool isLastVisibleRow) -> System.Windows.Forms.DataGridViewAdvancedBorderStyle +~virtual System.Windows.Forms.DataGridViewRow.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject +~virtual System.Windows.Forms.DataGridViewRow.CreateCellsInstance() -> System.Windows.Forms.DataGridViewCellCollection +~virtual System.Windows.Forms.DataGridViewRow.DrawFocus(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, System.Windows.Forms.DataGridViewCellStyle cellStyle, bool cellsPaintSelectionBackground) -> void +~virtual System.Windows.Forms.DataGridViewRow.Paint(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void +~virtual System.Windows.Forms.DataGridViewRow.PaintCells(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~virtual System.Windows.Forms.DataGridViewRow.PaintHeader(System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, bool isFirstDisplayedRow, bool isLastVisibleRow, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.Add(params object[] values) -> int +~virtual System.Windows.Forms.DataGridViewRowCollection.Add(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> int +~virtual System.Windows.Forms.DataGridViewRowCollection.AddRange(params System.Windows.Forms.DataGridViewRow[] dataGridViewRows) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.Contains(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> bool +~virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, params object[] values) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.InsertRange(int rowIndex, params System.Windows.Forms.DataGridViewRow[] dataGridViewRows) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs e) -> void +~virtual System.Windows.Forms.DataGridViewRowCollection.Remove(System.Windows.Forms.DataGridViewRow dataGridViewRow) -> void +~virtual System.Windows.Forms.PictureBox.OnLoadCompleted(System.ComponentModel.AsyncCompletedEventArgs e) -> void +~virtual System.Windows.Forms.PictureBox.OnLoadProgressChanged(System.ComponentModel.ProgressChangedEventArgs e) -> void +~virtual System.Windows.Forms.PictureBox.OnSizeModeChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.CreatePropertyTab(System.Type tabType) -> System.Windows.Forms.Design.PropertyTab +~virtual System.Windows.Forms.PropertyGrid.DefaultTabType.get -> System.Type +~virtual System.Windows.Forms.PropertyGrid.OnPropertySortChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.OnPropertyTabChanged(System.Windows.Forms.PropertyTabChangedEventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.OnPropertyValueChanged(System.Windows.Forms.PropertyValueChangedEventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.OnSelectedGridItemChanged(System.Windows.Forms.SelectedGridItemChangedEventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.OnSelectedObjectsChanged(System.EventArgs e) -> void +~virtual System.Windows.Forms.PropertyGrid.ShowPropertyPageImage.get -> System.Drawing.Bitmap +~virtual System.Windows.Forms.PropertyGrid.SortByCategoryImage.get -> System.Drawing.Bitmap +~virtual System.Windows.Forms.PropertyGrid.SortByPropertyImage.get -> System.Drawing.Bitmap +~virtual System.Windows.Forms.TreeNode.Clone() -> object +~virtual System.Windows.Forms.TreeNode.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip +~virtual System.Windows.Forms.TreeNode.ContextMenuStrip.set -> void +~virtual System.Windows.Forms.TreeNode.Deserialize(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext context) -> void +~virtual System.Windows.Forms.TreeNode.Serialize(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) -> void +virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, int imageIndex) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, int imageIndex, int selectedImageIndex) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, string? imageKey) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(string? key, string? text, string? imageKey, string? selectedImageKey) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(string? text) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Add(System.Windows.Forms.TreeNode! node) -> int +virtual System.Windows.Forms.TreeNodeCollection.AddRange(params System.Windows.Forms.TreeNode![]! nodes) -> void +virtual System.Windows.Forms.TreeNodeCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.TreeNodeCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, int imageIndex) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, int imageIndex, int selectedImageIndex) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, string? imageKey) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? key, string? text, string? imageKey, string? selectedImageKey) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, string? text) -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.Insert(int index, System.Windows.Forms.TreeNode! node) -> void +virtual System.Windows.Forms.TreeNodeCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.TreeNodeCollection.this[int index].get -> System.Windows.Forms.TreeNode! +virtual System.Windows.Forms.TreeNodeCollection.this[int index].set -> void +virtual System.Windows.Forms.TreeNodeCollection.this[string? key].get -> System.Windows.Forms.TreeNode? +~virtual System.Windows.Forms.TreeView.OnAfterCheck(System.Windows.Forms.TreeViewEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnAfterCollapse(System.Windows.Forms.TreeViewEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnAfterExpand(System.Windows.Forms.TreeViewEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnAfterLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnAfterSelect(System.Windows.Forms.TreeViewEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnBeforeCheck(System.Windows.Forms.TreeViewCancelEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnBeforeCollapse(System.Windows.Forms.TreeViewCancelEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnBeforeExpand(System.Windows.Forms.TreeViewCancelEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnBeforeLabelEdit(System.Windows.Forms.NodeLabelEditEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnBeforeSelect(System.Windows.Forms.TreeViewCancelEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnDrawNode(System.Windows.Forms.DrawTreeNodeEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnNodeMouseClick(System.Windows.Forms.TreeNodeMouseClickEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnNodeMouseDoubleClick(System.Windows.Forms.TreeNodeMouseClickEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnNodeMouseHover(System.Windows.Forms.TreeNodeMouseHoverEventArgs e) -> void +~virtual System.Windows.Forms.TreeView.OnRightToLeftLayoutChanged(System.EventArgs e) -> void +abstract System.Windows.Forms.BindingManagerBase.AddNew() -> void +abstract System.Windows.Forms.BindingManagerBase.CancelCurrentEdit() -> void +abstract System.Windows.Forms.BindingManagerBase.Count.get -> int +abstract System.Windows.Forms.BindingManagerBase.Current.get -> object? +abstract System.Windows.Forms.BindingManagerBase.EndCurrentEdit() -> void +abstract System.Windows.Forms.BindingManagerBase.GetListName(System.Collections.ArrayList? listAccessors) -> string! +abstract System.Windows.Forms.BindingManagerBase.OnCurrentChanged(System.EventArgs! e) -> void +abstract System.Windows.Forms.BindingManagerBase.OnCurrentItemChanged(System.EventArgs! e) -> void +abstract System.Windows.Forms.BindingManagerBase.Position.get -> int +abstract System.Windows.Forms.BindingManagerBase.Position.set -> void +abstract System.Windows.Forms.BindingManagerBase.RemoveAt(int index) -> void +abstract System.Windows.Forms.BindingManagerBase.ResumeBinding() -> void +abstract System.Windows.Forms.BindingManagerBase.SuspendBinding() -> void +abstract System.Windows.Forms.BindingManagerBase.UpdateIsBinding() -> void +abstract System.Windows.Forms.CommonDialog.Reset() -> void +abstract System.Windows.Forms.CommonDialog.RunDialog(nint hwndOwner) -> bool +abstract System.Windows.Forms.Design.ComponentEditorPage.LoadComponent() -> void +abstract System.Windows.Forms.Design.ComponentEditorPage.SaveComponent() -> void +abstract System.Windows.Forms.Design.PropertyTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? +abstract System.Windows.Forms.Design.PropertyTab.TabName.get -> string? +abstract System.Windows.Forms.FeatureSupport.GetVersionPresent(object! feature) -> System.Version? +abstract System.Windows.Forms.GridItem.GridItems.get -> System.Windows.Forms.GridItemCollection! +abstract System.Windows.Forms.GridItem.GridItemType.get -> System.Windows.Forms.GridItemType +abstract System.Windows.Forms.GridItem.Label.get -> string? +abstract System.Windows.Forms.GridItem.Parent.get -> System.Windows.Forms.GridItem? +abstract System.Windows.Forms.GridItem.PropertyDescriptor.get -> System.ComponentModel.PropertyDescriptor? +abstract System.Windows.Forms.GridItem.Select() -> bool +abstract System.Windows.Forms.GridItem.Value.get -> object? +abstract System.Windows.Forms.ListControl.RefreshItem(int index) -> void +abstract System.Windows.Forms.ListControl.SelectedIndex.get -> int +abstract System.Windows.Forms.ListControl.SelectedIndex.set -> void +abstract System.Windows.Forms.ListControl.SetItemsCore(System.Collections.IList! items) -> void +abstract System.Windows.Forms.UpDownBase.DownButton() -> void +abstract System.Windows.Forms.UpDownBase.UpButton() -> void +abstract System.Windows.Forms.UpDownBase.UpdateEditText() -> void +const System.Windows.Forms.ListBox.DefaultItemHeight = 13 -> int +const System.Windows.Forms.ListBox.NoMatches = -1 -> int +const System.Windows.Forms.ScrollableControl.ScrollStateAutoScrolling = 1 -> int +const System.Windows.Forms.ScrollableControl.ScrollStateFullDrag = 16 -> int +const System.Windows.Forms.ScrollableControl.ScrollStateHScrollVisible = 2 -> int +const System.Windows.Forms.ScrollableControl.ScrollStateUserHasScrolled = 8 -> int +const System.Windows.Forms.ScrollableControl.ScrollStateVScrollVisible = 4 -> int +override System.Resources.ResXFileRef.Converter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Resources.ResXFileRef.Converter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Resources.ResXFileRef.Converter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Resources.ResXFileRef.Converter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Resources.ResXFileRef.ToString() -> string! +override System.Resources.ResXResourceSet.GetDefaultReader() -> System.Type! +override System.Resources.ResXResourceSet.GetDefaultWriter() -> System.Type! +override System.Windows.Forms.AxHost.AxComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! obj, System.Windows.Forms.IWin32Window? parent) -> bool +override System.Windows.Forms.AxHost.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.AxHost.BackColor.set -> void +override System.Windows.Forms.AxHost.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.AxHost.BackgroundImage.set -> void +override System.Windows.Forms.AxHost.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.AxHost.BackgroundImageLayout.set -> void +override System.Windows.Forms.AxHost.CreateHandle() -> void +override System.Windows.Forms.AxHost.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.AxHost.Cursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.AxHost.Cursor.set -> void +override System.Windows.Forms.AxHost.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.AxHost.DestroyHandle() -> void +override System.Windows.Forms.AxHost.Dispose(bool disposing) -> void +override System.Windows.Forms.AxHost.Font.get -> System.Drawing.Font! +override System.Windows.Forms.AxHost.Font.set -> void +override System.Windows.Forms.AxHost.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.AxHost.ForeColor.set -> void +override System.Windows.Forms.AxHost.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle +override System.Windows.Forms.AxHost.InvalidActiveXStateException.ToString() -> string! +override System.Windows.Forms.AxHost.IsInputChar(char charCode) -> bool +override System.Windows.Forms.AxHost.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.AxHost.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.AxHost.OnForeColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.AxHost.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.AxHost.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool +override System.Windows.Forms.AxHost.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.AxHost.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.AxHost.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.AxHost.SetVisibleCore(bool value) -> void +override System.Windows.Forms.AxHost.Site.set -> void +override System.Windows.Forms.AxHost.StateConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.AxHost.StateConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.AxHost.StateConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.AxHost.StateConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.AxHost.Text.get -> string! +override System.Windows.Forms.AxHost.Text.set -> void +override System.Windows.Forms.AxHost.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.BindingMemberInfo.Equals(object? otherObject) -> bool +override System.Windows.Forms.BindingMemberInfo.GetHashCode() -> int +override System.Windows.Forms.BindingNavigator.Dispose(bool disposing) -> void +override System.Windows.Forms.BindingsCollection.Count.get -> int +override System.Windows.Forms.BindingSource.Dispose(bool disposing) -> void +override System.Windows.Forms.Button.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.Button.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Button.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.Button.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Button.OnMouseEnter(System.EventArgs! e) -> void +override System.Windows.Forms.Button.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.Button.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.Button.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Button.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.Button.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.Button.ToString() -> string! +override System.Windows.Forms.Button.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ButtonBase.AutoSize.get -> bool +override System.Windows.Forms.ButtonBase.AutoSize.set -> void +override System.Windows.Forms.ButtonBase.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ButtonBase.BackColor.set -> void +override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.KeyboardShortcut.get -> string? +override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.Name.get -> string? +override System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.ButtonBase.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ButtonBase.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ButtonBase.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.ButtonBase.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ButtonBase.Dispose(bool disposing) -> void +override System.Windows.Forms.ButtonBase.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size +override System.Windows.Forms.ButtonBase.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnKeyDown(System.Windows.Forms.KeyEventArgs! kevent) -> void +override System.Windows.Forms.ButtonBase.OnKeyUp(System.Windows.Forms.KeyEventArgs! kevent) -> void +override System.Windows.Forms.ButtonBase.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnMouseDown(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.ButtonBase.OnMouseEnter(System.EventArgs! eventargs) -> void +override System.Windows.Forms.ButtonBase.OnMouseLeave(System.EventArgs! eventargs) -> void +override System.Windows.Forms.ButtonBase.OnMouseMove(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.ButtonBase.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.ButtonBase.OnPaint(System.Windows.Forms.PaintEventArgs! pevent) -> void +override System.Windows.Forms.ButtonBase.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ButtonBase.Text.get -> string! +override System.Windows.Forms.ButtonBase.Text.set -> void +override System.Windows.Forms.ButtonBase.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.CheckBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.CheckBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.CheckBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.CheckBox.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.CheckBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.CheckBox.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.CheckBox.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.CheckBox.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.CheckBox.TextAlign.get -> System.Drawing.ContentAlignment +override System.Windows.Forms.CheckBox.TextAlign.set -> void +override System.Windows.Forms.CheckBox.ToString() -> string! +override System.Windows.Forms.CheckedListBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.CheckedListBox.CreateItemCollection() -> System.Windows.Forms.ListBox.ObjectCollection! +override System.Windows.Forms.CheckedListBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.CheckedListBox.DrawMode.get -> System.Windows.Forms.DrawMode +override System.Windows.Forms.CheckedListBox.DrawMode.set -> void +override System.Windows.Forms.CheckedListBox.ItemHeight.get -> int +override System.Windows.Forms.CheckedListBox.ItemHeight.set -> void +override System.Windows.Forms.CheckedListBox.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.OnSelectedIndexChanged(System.EventArgs! e) -> void +override System.Windows.Forms.CheckedListBox.RefreshItems() -> void +override System.Windows.Forms.CheckedListBox.SelectionMode.get -> System.Windows.Forms.SelectionMode +override System.Windows.Forms.CheckedListBox.SelectionMode.set -> void +override System.Windows.Forms.CheckedListBox.WmReflectCommand(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.CheckedListBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ColorDialog.Reset() -> void +override System.Windows.Forms.ColorDialog.RunDialog(nint hwndOwner) -> bool +override System.Windows.Forms.ColorDialog.ToString() -> string! +override System.Windows.Forms.ColumnHeader.Dispose(bool disposing) -> void +override System.Windows.Forms.ColumnHeader.ToString() -> string! +override System.Windows.Forms.ColumnHeaderConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.ColumnHeaderConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.ComboBox.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ComboBox.BackColor.set -> void +override System.Windows.Forms.ComboBox.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ComboBox.BackgroundImage.set -> void +override System.Windows.Forms.ComboBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ComboBox.BackgroundImageLayout.set -> void +override System.Windows.Forms.ComboBox.ChildAccessibleObject.Name.get -> string? +override System.Windows.Forms.ComboBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ComboBox.CreateHandle() -> void +override System.Windows.Forms.ComboBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ComboBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ComboBox.Dispose(bool disposing) -> void +override System.Windows.Forms.ComboBox.Focused.get -> bool +override System.Windows.Forms.ComboBox.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.ComboBox.ForeColor.set -> void +override System.Windows.Forms.ComboBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ComboBox.MaximumSize.get -> System.Drawing.Size +override System.Windows.Forms.ComboBox.MaximumSize.set -> void +override System.Windows.Forms.ComboBox.MinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.ComboBox.MinimumSize.set -> void +override System.Windows.Forms.ComboBox.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnDataSourceChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnDisplayMemberChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnForeColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnMouseEnter(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnParentBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnSelectedIndexChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnSelectedValueChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ComboBox.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void +override System.Windows.Forms.ComboBox.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ComboBox.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.ComboBox.RefreshItem(int index) -> void +override System.Windows.Forms.ComboBox.RefreshItems() -> void +override System.Windows.Forms.ComboBox.ResetText() -> void +override System.Windows.Forms.ComboBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ComboBox.SelectedIndex.get -> int +override System.Windows.Forms.ComboBox.SelectedIndex.set -> void +override System.Windows.Forms.ComboBox.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ComboBox.SetItemCore(int index, object! value) -> void +override System.Windows.Forms.ComboBox.SetItemsCore(System.Collections.IList! value) -> void +override System.Windows.Forms.ComboBox.Text.get -> string! +override System.Windows.Forms.ComboBox.Text.set -> void +override System.Windows.Forms.ComboBox.ToString() -> string! +override System.Windows.Forms.ComboBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ContainerControl.AdjustFormScrollbars(bool displayScrollbars) -> void +override System.Windows.Forms.ContainerControl.BindingContext.get -> System.Windows.Forms.BindingContext? +override System.Windows.Forms.ContainerControl.BindingContext.set -> void +override System.Windows.Forms.ContainerControl.CanEnableIme.get -> bool +override System.Windows.Forms.ContainerControl.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ContainerControl.Dispose(bool disposing) -> void +override System.Windows.Forms.ContainerControl.OnCreateControl() -> void +override System.Windows.Forms.ContainerControl.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ContainerControl.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ContainerControl.OnMove(System.EventArgs! e) -> void +override System.Windows.Forms.ContainerControl.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ContainerControl.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.ContainerControl.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ContainerControl.ProcessDialogChar(char charCode) -> bool +override System.Windows.Forms.ContainerControl.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ContainerControl.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ContainerControl.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.ContainerControl.Select(bool directed, bool forward) -> void +override System.Windows.Forms.ContainerControl.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ContextMenuStrip.Dispose(bool disposing) -> void +override System.Windows.Forms.ContextMenuStrip.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs! e) -> void +override System.Windows.Forms.ContextMenuStrip.OnOpened(System.EventArgs! e) -> void +override System.Windows.Forms.ContextMenuStrip.SetVisibleCore(bool visible) -> void +override System.Windows.Forms.Control.CanRaiseEvents.get -> bool +override System.Windows.Forms.Control.ControlAccessibleObject.DefaultAction.get -> string? +override System.Windows.Forms.Control.ControlAccessibleObject.Description.get -> string? +override System.Windows.Forms.Control.ControlAccessibleObject.GetHelpTopic(out string? fileName) -> int +override System.Windows.Forms.Control.ControlAccessibleObject.Help.get -> string? +override System.Windows.Forms.Control.ControlAccessibleObject.KeyboardShortcut.get -> string? +override System.Windows.Forms.Control.ControlAccessibleObject.Name.get -> string? +override System.Windows.Forms.Control.ControlAccessibleObject.Name.set -> void +override System.Windows.Forms.Control.ControlAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.Control.ControlAccessibleObject.RaiseLiveRegionChanged() -> bool +override System.Windows.Forms.Control.ControlAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.Control.ControlAccessibleObject.ToString() -> string! +override System.Windows.Forms.Control.ControlCollection.GetEnumerator() -> System.Collections.IEnumerator! +override System.Windows.Forms.Control.Dispose(bool disposing) -> void +override System.Windows.Forms.Control.Site.get -> System.ComponentModel.ISite? +override System.Windows.Forms.Control.Site.set -> void +override System.Windows.Forms.ControlBindingsCollection.ClearCore() -> void +override System.Windows.Forms.CreateParams.ToString() -> string! +override System.Windows.Forms.CurrencyManager.AddNew() -> void +override System.Windows.Forms.CurrencyManager.CancelCurrentEdit() -> void +override System.Windows.Forms.CurrencyManager.Count.get -> int +override System.Windows.Forms.CurrencyManager.EndCurrentEdit() -> void +override System.Windows.Forms.CurrencyManager.Position.get -> int +override System.Windows.Forms.CurrencyManager.Position.set -> void +override System.Windows.Forms.CurrencyManager.RemoveAt(int index) -> void +override System.Windows.Forms.CurrencyManager.ResumeBinding() -> void +override System.Windows.Forms.CurrencyManager.SuspendBinding() -> void +override System.Windows.Forms.Cursor.Equals(object? obj) -> bool +override System.Windows.Forms.Cursor.GetHashCode() -> int +override System.Windows.Forms.Cursor.ToString() -> string! +override System.Windows.Forms.CursorConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.CursorConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.CursorConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.CursorConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.CursorConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.CursorConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.DataGridView.AutoSize.get -> bool +override System.Windows.Forms.DataGridView.AutoSize.set -> void +override System.Windows.Forms.DataGridView.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.DataGridView.BackColor.set -> void +override System.Windows.Forms.DataGridView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.DataGridView.BackgroundImageLayout.set -> void +override System.Windows.Forms.DataGridView.CanEnableIme.get -> bool +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridView.DataGridViewControlCollection.Clear() -> void +override System.Windows.Forms.DataGridView.DataGridViewControlCollection.Remove(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Name.get -> string! +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Value.get -> string! +override System.Windows.Forms.DataGridView.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.DataGridView.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridView.Dispose(bool disposing) -> void +override System.Windows.Forms.DataGridView.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.DataGridView.ForeColor.set -> void +override System.Windows.Forms.DataGridView.HitTestInfo.Equals(object? value) -> bool +override System.Windows.Forms.DataGridView.HitTestInfo.GetHashCode() -> int +override System.Windows.Forms.DataGridView.HitTestInfo.ToString() -> string! +override System.Windows.Forms.DataGridView.IsInputChar(char charCode) -> bool +override System.Windows.Forms.DataGridView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.DataGridView.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.DataGridView.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.DataGridView.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.DataGridView.ResetText() -> void +override System.Windows.Forms.DataGridView.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.DataGridView.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.DataGridViewAdvancedBorderStyle.Equals(object? other) -> bool +override System.Windows.Forms.DataGridViewAdvancedBorderStyle.GetHashCode() -> int +override System.Windows.Forms.DataGridViewAdvancedBorderStyle.ToString() -> string! +override System.Windows.Forms.DataGridViewBand.ToString() -> string! +override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewButtonCell.MouseEnterUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewButtonCell.MouseLeaveUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewButtonCell.OnLeave(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewButtonCell.OnMouseLeave(int rowIndex) -> void +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Name.get -> string? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value.get -> string? +override System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Value.set -> void +override System.Windows.Forms.DataGridViewCell.OnDataGridViewChanged() -> void +override System.Windows.Forms.DataGridViewCellStyle.GetHashCode() -> int +override System.Windows.Forms.DataGridViewCellStyleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.DataGridViewCellStyleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewCheckBoxCell.MouseEnterUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewCheckBoxCell.MouseLeaveUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewCheckBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewCheckBoxCell.OnMouseLeave(int rowIndex) -> void +override System.Windows.Forms.DataGridViewColumn.Dispose(bool disposing) -> void +override System.Windows.Forms.DataGridViewColumn.Frozen.get -> bool +override System.Windows.Forms.DataGridViewColumn.Frozen.set -> void +override System.Windows.Forms.DataGridViewColumn.ReadOnly.get -> bool +override System.Windows.Forms.DataGridViewColumn.ReadOnly.set -> void +override System.Windows.Forms.DataGridViewColumn.Resizable.get -> System.Windows.Forms.DataGridViewTriState +override System.Windows.Forms.DataGridViewColumn.Resizable.set -> void +override System.Windows.Forms.DataGridViewColumn.Visible.get -> bool +override System.Windows.Forms.DataGridViewColumn.Visible.set -> void +override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Equals(object? obj) -> bool +override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.GetHashCode() -> int +override System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.IsDefaultAttribute() -> bool +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Name.get -> string! +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.Value.get -> string! +override System.Windows.Forms.DataGridViewComboBoxCell.DetachEditingControl() -> void +override System.Windows.Forms.DataGridViewComboBoxCell.OnDataGridViewChanged() -> void +override System.Windows.Forms.DataGridViewComboBoxCell.OnEnter(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewComboBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseEnter(int rowIndex) -> void +override System.Windows.Forms.DataGridViewComboBoxCell.OnMouseLeave(int rowIndex) -> void +override System.Windows.Forms.DataGridViewHeaderCell.Displayed.get -> bool +override System.Windows.Forms.DataGridViewHeaderCell.Dispose(bool disposing) -> void +override System.Windows.Forms.DataGridViewHeaderCell.Frozen.get -> bool +override System.Windows.Forms.DataGridViewHeaderCell.GetInheritedState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates +override System.Windows.Forms.DataGridViewHeaderCell.GetSize(int rowIndex) -> System.Drawing.Size +override System.Windows.Forms.DataGridViewHeaderCell.MouseEnterUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewHeaderCell.MouseLeaveUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewHeaderCell.OnMouseEnter(int rowIndex) -> void +override System.Windows.Forms.DataGridViewHeaderCell.OnMouseLeave(int rowIndex) -> void +override System.Windows.Forms.DataGridViewHeaderCell.ReadOnly.get -> bool +override System.Windows.Forms.DataGridViewHeaderCell.ReadOnly.set -> void +override System.Windows.Forms.DataGridViewHeaderCell.Resizable.get -> bool +override System.Windows.Forms.DataGridViewHeaderCell.Selected.get -> bool +override System.Windows.Forms.DataGridViewHeaderCell.Selected.set -> void +override System.Windows.Forms.DataGridViewHeaderCell.Visible.get -> bool +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Description.get -> string? +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value.get -> string? +override System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.Value.set -> void +override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewLinkCell.MouseLeaveUnsharesRow(int rowIndex) -> bool +override System.Windows.Forms.DataGridViewLinkCell.OnMouseLeave(int rowIndex) -> void +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Name.get -> string! +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Value.get -> string! +override System.Windows.Forms.DataGridViewRow.Displayed.get -> bool +override System.Windows.Forms.DataGridViewRow.Frozen.get -> bool +override System.Windows.Forms.DataGridViewRow.Frozen.set -> void +override System.Windows.Forms.DataGridViewRow.ReadOnly.get -> bool +override System.Windows.Forms.DataGridViewRow.ReadOnly.set -> void +override System.Windows.Forms.DataGridViewRow.Resizable.get -> System.Windows.Forms.DataGridViewTriState +override System.Windows.Forms.DataGridViewRow.Resizable.set -> void +override System.Windows.Forms.DataGridViewRow.Selected.get -> bool +override System.Windows.Forms.DataGridViewRow.Selected.set -> void +override System.Windows.Forms.DataGridViewRow.State.get -> System.Windows.Forms.DataGridViewElementStates +override System.Windows.Forms.DataGridViewRow.Visible.get -> bool +override System.Windows.Forms.DataGridViewRow.Visible.set -> void +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Name.get -> string? +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.Value.get -> string! +override System.Windows.Forms.DataGridViewTextBoxCell.DetachEditingControl() -> void +override System.Windows.Forms.DataGridViewTextBoxCell.OnEnter(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewTextBoxCell.OnLeave(int rowIndex, bool throughMouseClick) -> void +override System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate.get -> System.Windows.Forms.DataGridViewCell! +override System.Windows.Forms.DataGridViewTextBoxColumn.CellTemplate.set -> void +override System.Windows.Forms.DataGridViewTextBoxColumn.ToString() -> string! +override System.Windows.Forms.DataGridViewTextBoxEditingControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.DataGridViewTextBoxEditingControl.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.DataGridViewTextBoxEditingControl.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Name.get -> string! +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.Value.get -> string! +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetContentBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetErrorIconBounds(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex) -> System.Drawing.Rectangle +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.GetPreferredSize(System.Drawing.Graphics! graphics, System.Windows.Forms.DataGridViewCellStyle! cellStyle, int rowIndex, System.Drawing.Size constraintSize) -> System.Drawing.Size +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.Paint(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle cellBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates cellState, object? value, object? formattedValue, string? errorText, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.PaintBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle bounds, System.Windows.Forms.DataGridViewCellStyle! cellStyle, System.Windows.Forms.DataGridViewAdvancedBorderStyle! advancedBorderStyle) -> void +override System.Windows.Forms.DataGridViewTopLeftHeaderCell.ToString() -> string! +override System.Windows.Forms.DateTimePicker.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.DateTimePicker.BackColor.set -> void +override System.Windows.Forms.DateTimePicker.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.DateTimePicker.BackgroundImage.set -> void +override System.Windows.Forms.DateTimePicker.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.DateTimePicker.BackgroundImageLayout.set -> void +override System.Windows.Forms.DateTimePicker.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.DateTimePicker.CreateHandle() -> void +override System.Windows.Forms.DateTimePicker.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.KeyboardShortcut.get -> string? +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Name.get -> string! +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.Value.get -> string! +override System.Windows.Forms.DateTimePicker.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.DateTimePicker.DestroyHandle() -> void +override System.Windows.Forms.DateTimePicker.DoubleBuffered.get -> bool +override System.Windows.Forms.DateTimePicker.DoubleBuffered.set -> void +override System.Windows.Forms.DateTimePicker.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.DateTimePicker.ForeColor.set -> void +override System.Windows.Forms.DateTimePicker.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.DateTimePicker.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.OnSystemColorsChanged(System.EventArgs! e) -> void +override System.Windows.Forms.DateTimePicker.Text.get -> string! +override System.Windows.Forms.DateTimePicker.Text.set -> void +override System.Windows.Forms.DateTimePicker.ToString() -> string! +override System.Windows.Forms.DateTimePicker.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.Design.ComponentEditorForm.AutoSize.get -> bool +override System.Windows.Forms.Design.ComponentEditorForm.AutoSize.set -> void +override System.Windows.Forms.Design.ComponentEditorForm.OnActivated(System.EventArgs! e) -> void +override System.Windows.Forms.Design.ComponentEditorForm.OnHelpRequested(System.Windows.Forms.HelpEventArgs! e) -> void +override System.Windows.Forms.Design.ComponentEditorForm.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool +override System.Windows.Forms.Design.ComponentEditorPage.AutoSize.get -> bool +override System.Windows.Forms.Design.ComponentEditorPage.AutoSize.set -> void +override System.Windows.Forms.Design.ComponentEditorPage.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Design.EventsTab.CanExtend(object! extendee) -> bool +override System.Windows.Forms.Design.EventsTab.GetDefaultProperty(object! obj) -> System.ComponentModel.PropertyDescriptor? +override System.Windows.Forms.Design.EventsTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! +override System.Windows.Forms.Design.EventsTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! +override System.Windows.Forms.Design.EventsTab.HelpKeyword.get -> string! +override System.Windows.Forms.Design.EventsTab.TabName.get -> string! +override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Equals(object? obj) -> bool +override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.GetHashCode() -> int +override System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.IsDefaultAttribute() -> bool +override System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! component) -> bool +override System.Windows.Forms.DockingAttribute.Equals(object? obj) -> bool +override System.Windows.Forms.DockingAttribute.GetHashCode() -> int +override System.Windows.Forms.DockingAttribute.IsDefaultAttribute() -> bool +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name.get -> string? +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Name.set -> void +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.Value.get -> string? +override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Add(object? item) -> int +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Insert(int index, object? item) -> void +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.Remove(object? item) -> void +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.RemoveAt(int item) -> void +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.this[int index].get -> object? +override System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection.this[int index].set -> void +override System.Windows.Forms.DomainUpDown.DownButton() -> void +override System.Windows.Forms.DomainUpDown.OnChanged(object? source, System.EventArgs! e) -> void +override System.Windows.Forms.DomainUpDown.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void +override System.Windows.Forms.DomainUpDown.ToString() -> string! +override System.Windows.Forms.DomainUpDown.UpButton() -> void +override System.Windows.Forms.DomainUpDown.UpdateEditText() -> void +override System.Windows.Forms.DpiChangedEventArgs.ToString() -> string! +override System.Windows.Forms.ErrorProvider.Dispose(bool disposing) -> void +override System.Windows.Forms.ErrorProvider.Site.set -> void +override System.Windows.Forms.FileDialog.Reset() -> void +override System.Windows.Forms.FileDialog.ToString() -> string! +override System.Windows.Forms.FlowLayoutPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.FlowLayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.FolderBrowserDialog.Reset() -> void +override System.Windows.Forms.FontDialog.HookProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint +override System.Windows.Forms.FontDialog.Reset() -> void +override System.Windows.Forms.FontDialog.RunDialog(nint hWndOwner) -> bool +override System.Windows.Forms.FontDialog.ToString() -> string! +override System.Windows.Forms.Form.AdjustFormScrollbars(bool displayScrollbars) -> void +override System.Windows.Forms.Form.AutoScroll.get -> bool +override System.Windows.Forms.Form.AutoScroll.set -> void +override System.Windows.Forms.Form.AutoSize.get -> bool +override System.Windows.Forms.Form.AutoSize.set -> void +override System.Windows.Forms.Form.AutoValidate.get -> System.Windows.Forms.AutoValidate +override System.Windows.Forms.Form.AutoValidate.set -> void +override System.Windows.Forms.Form.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.Form.BackColor.set -> void +override System.Windows.Forms.Form.ControlCollection.Add(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.Form.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.Form.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.Form.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.Form.CreateHandle() -> void +override System.Windows.Forms.Form.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Form.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.Form.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.Form.DefWndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.Form.Dispose(bool disposing) -> void +override System.Windows.Forms.Form.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle +override System.Windows.Forms.Form.MaximumSize.get -> System.Drawing.Size +override System.Windows.Forms.Form.MaximumSize.set -> void +override System.Windows.Forms.Form.MinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.Form.MinimumSize.set -> void +override System.Windows.Forms.Form.OnBackgroundImageChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnBackgroundImageLayoutChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnCreateControl() -> void +override System.Windows.Forms.Form.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnEnter(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void +override System.Windows.Forms.Form.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.Form.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnStyleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Form.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.Form.ProcessDialogChar(char charCode) -> bool +override System.Windows.Forms.Form.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.Form.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.Form.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.Form.ProcessTabKey(bool forward) -> bool +override System.Windows.Forms.Form.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.Form.ScaleCore(float x, float y) -> void +override System.Windows.Forms.Form.ScaleMinMaxSize(float xScaleFactor, float yScaleFactor, bool updateContainerSize = true) -> void +override System.Windows.Forms.Form.Select(bool directed, bool forward) -> void +override System.Windows.Forms.Form.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.Form.SetClientSizeCore(int x, int y) -> void +override System.Windows.Forms.Form.SetVisibleCore(bool value) -> void +override System.Windows.Forms.Form.Text.get -> string! +override System.Windows.Forms.Form.Text.set -> void +override System.Windows.Forms.Form.ToString() -> string! +override System.Windows.Forms.Form.UpdateDefaultButton() -> void +override System.Windows.Forms.Form.ValidateChildren() -> bool +override System.Windows.Forms.Form.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool +override System.Windows.Forms.Form.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.GroupBox.AllowDrop.get -> bool +override System.Windows.Forms.GroupBox.AllowDrop.set -> void +override System.Windows.Forms.GroupBox.AutoSize.get -> bool +override System.Windows.Forms.GroupBox.AutoSize.set -> void +override System.Windows.Forms.GroupBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.GroupBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.GroupBox.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.GroupBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.GroupBox.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.GroupBox.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.GroupBox.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.GroupBox.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.GroupBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.GroupBox.Text.get -> string! +override System.Windows.Forms.GroupBox.Text.set -> void +override System.Windows.Forms.GroupBox.ToString() -> string! +override System.Windows.Forms.GroupBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.HelpProvider.ToString() -> string! +override System.Windows.Forms.HScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.HScrollBar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.HtmlDocument.Equals(object? obj) -> bool +override System.Windows.Forms.HtmlDocument.GetHashCode() -> int +override System.Windows.Forms.HtmlElement.GetHashCode() -> int +override System.Windows.Forms.HtmlWindow.GetHashCode() -> int +override System.Windows.Forms.ImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.ImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.ImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.ImageIndexConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ImageIndexConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ImageKeyConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.ImageKeyConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.ImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.ImageKeyConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.ImageKeyConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ImageKeyConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ImageList.ToString() -> string! +override System.Windows.Forms.InputLanguage.Equals(object? value) -> bool +override System.Windows.Forms.InputLanguage.GetHashCode() -> int +override System.Windows.Forms.KeysConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.KeysConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.KeysConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.KeysConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.KeysConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.KeysConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.KeysConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.Label.AutoSize.get -> bool +override System.Windows.Forms.Label.AutoSize.set -> void +override System.Windows.Forms.Label.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.Label.BackgroundImage.set -> void +override System.Windows.Forms.Label.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.Label.BackgroundImageLayout.set -> void +override System.Windows.Forms.Label.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.Label.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Label.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.Label.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.Label.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.Label.Dispose(bool disposing) -> void +override System.Windows.Forms.Label.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size +override System.Windows.Forms.Label.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnMouseEnter(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnPaddingChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.Label.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.Label.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.Label.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.Label.Text.get -> string! +override System.Windows.Forms.Label.Text.set -> void +override System.Windows.Forms.Label.ToString() -> string! +override System.Windows.Forms.Label.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.Layout.ArrangedElementCollection.Equals(object? obj) -> bool +override System.Windows.Forms.Layout.ArrangedElementCollection.GetHashCode() -> int +override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.LinkArea.Equals(object? o) -> bool +override System.Windows.Forms.LinkArea.GetHashCode() -> int +override System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.LinkArea.LinkAreaConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.LinkArea.LinkAreaConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.LinkArea.LinkAreaConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! +override System.Windows.Forms.LinkArea.LinkAreaConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.LinkArea.LinkAreaConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! +override System.Windows.Forms.LinkArea.LinkAreaConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.LinkArea.ToString() -> string! +override System.Windows.Forms.LinkConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.LinkConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.LinkConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.LinkConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.LinkLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.LinkLabel.CreateHandle() -> void +override System.Windows.Forms.LinkLabel.OnAutoSizeChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnPaddingChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnTextAlignChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.LinkLabel.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.LinkLabel.Select(bool directed, bool forward) -> void +override System.Windows.Forms.LinkLabel.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.LinkLabel.Text.get -> string! +override System.Windows.Forms.LinkLabel.Text.set -> void +override System.Windows.Forms.LinkLabel.WndProc(ref System.Windows.Forms.Message msg) -> void +override System.Windows.Forms.ListBindingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.ListBindingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.ListBindingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! +override System.Windows.Forms.ListBindingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ListBox.AllowSelection.get -> bool +override System.Windows.Forms.ListBox.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ListBox.BackColor.set -> void +override System.Windows.Forms.ListBox.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ListBox.BackgroundImage.set -> void +override System.Windows.Forms.ListBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ListBox.BackgroundImageLayout.set -> void +override System.Windows.Forms.ListBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ListBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ListBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ListBox.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ListBox.Font.set -> void +override System.Windows.Forms.ListBox.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.ListBox.ForeColor.set -> void +override System.Windows.Forms.ListBox.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle +override System.Windows.Forms.ListBox.OnChangeUICues(System.Windows.Forms.UICuesEventArgs! e) -> void +override System.Windows.Forms.ListBox.OnDataSourceChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnDisplayMemberChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnSelectedIndexChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.OnSelectedValueChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListBox.Refresh() -> void +override System.Windows.Forms.ListBox.RefreshItem(int index) -> void +override System.Windows.Forms.ListBox.RefreshItems() -> void +override System.Windows.Forms.ListBox.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.ListBox.ResetBackColor() -> void +override System.Windows.Forms.ListBox.ResetForeColor() -> void +override System.Windows.Forms.ListBox.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ListBox.SelectedIndex.get -> int +override System.Windows.Forms.ListBox.SelectedIndex.set -> void +override System.Windows.Forms.ListBox.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ListBox.SetItemCore(int index, object! value) -> void +override System.Windows.Forms.ListBox.SetItemsCore(System.Collections.IList! value) -> void +override System.Windows.Forms.ListBox.Text.get -> string! +override System.Windows.Forms.ListBox.Text.set -> void +override System.Windows.Forms.ListBox.ToString() -> string! +override System.Windows.Forms.ListBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ListControl.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ListControl.OnBindingContextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ListView.BackColor.set -> void +override System.Windows.Forms.ListView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ListView.BackgroundImageLayout.set -> void +override System.Windows.Forms.ListView.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ListView.CreateHandle() -> void +override System.Windows.Forms.ListView.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ListView.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ListView.Dispose(bool disposing) -> void +override System.Windows.Forms.ListView.DoubleBuffered.get -> bool +override System.Windows.Forms.ListView.DoubleBuffered.set -> void +override System.Windows.Forms.ListView.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.ListView.ForeColor.set -> void +override System.Windows.Forms.ListView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ListView.OnBackgroundImageChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnMouseHover(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.OnSystemColorsChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ListView.Text.get -> string! +override System.Windows.Forms.ListView.Text.set -> void +override System.Windows.Forms.ListView.ToString() -> string! +override System.Windows.Forms.ListView.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ListViewGroup.ToString() -> string! +override System.Windows.Forms.ListViewItem.ListViewSubItem.ToString() -> string! +override System.Windows.Forms.ListViewItem.ToString() -> string! +override System.Windows.Forms.ListViewItemConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.ListViewItemConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.ListViewItemStateImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.ListViewItemStateImageIndexConverter.IncludeNoneAsStandardValue.get -> bool +override System.Windows.Forms.MaskedTextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.MaskedTextBox.CreateHandle() -> void +override System.Windows.Forms.MaskedTextBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.MaskedTextBox.GetCharFromPosition(System.Drawing.Point pt) -> char +override System.Windows.Forms.MaskedTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int +override System.Windows.Forms.MaskedTextBox.GetLineFromCharIndex(int index) -> int +override System.Windows.Forms.MaskedTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point +override System.Windows.Forms.MaskedTextBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.MaskedTextBox.MaxLength.get -> int +override System.Windows.Forms.MaskedTextBox.MaxLength.set -> void +override System.Windows.Forms.MaskedTextBox.Multiline.get -> bool +override System.Windows.Forms.MaskedTextBox.Multiline.set -> void +override System.Windows.Forms.MaskedTextBox.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnMultilineChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void +override System.Windows.Forms.MaskedTextBox.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.MaskedTextBox.ProcessKeyMessage(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.MaskedTextBox.SelectedText.get -> string! +override System.Windows.Forms.MaskedTextBox.SelectedText.set -> void +override System.Windows.Forms.MaskedTextBox.Text.get -> string! +override System.Windows.Forms.MaskedTextBox.Text.set -> void +override System.Windows.Forms.MaskedTextBox.TextLength.get -> int +override System.Windows.Forms.MaskedTextBox.ToString() -> string! +override System.Windows.Forms.MaskedTextBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.MdiClient.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.MdiClient.BackgroundImage.set -> void +override System.Windows.Forms.MdiClient.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.MdiClient.BackgroundImageLayout.set -> void +override System.Windows.Forms.MdiClient.ControlCollection.Add(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.MdiClient.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.MenuStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.MenuStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! +override System.Windows.Forms.MenuStrip.DefaultGripMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.MenuStrip.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.MenuStrip.DefaultShowItemToolTips.get -> bool +override System.Windows.Forms.MenuStrip.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.MenuStrip.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.MenuStrip.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.MonthCalendar.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.MonthCalendar.BackColor.set -> void +override System.Windows.Forms.MonthCalendar.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.MonthCalendar.BackgroundImage.set -> void +override System.Windows.Forms.MonthCalendar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.MonthCalendar.BackgroundImageLayout.set -> void +override System.Windows.Forms.MonthCalendar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.MonthCalendar.CreateHandle() -> void +override System.Windows.Forms.MonthCalendar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.MonthCalendar.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.MonthCalendar.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.MonthCalendar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.MonthCalendar.DoubleBuffered.get -> bool +override System.Windows.Forms.MonthCalendar.DoubleBuffered.set -> void +override System.Windows.Forms.MonthCalendar.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.MonthCalendar.ForeColor.set -> void +override System.Windows.Forms.MonthCalendar.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.MonthCalendar.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnForeColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.MonthCalendar.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.MonthCalendar.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.MonthCalendar.Text.get -> string! +override System.Windows.Forms.MonthCalendar.Text.set -> void +override System.Windows.Forms.MonthCalendar.ToString() -> string! +override System.Windows.Forms.MonthCalendar.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.NumericUpDown.DownButton() -> void +override System.Windows.Forms.NumericUpDown.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.NumericUpDown.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.NumericUpDown.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.NumericUpDown.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void +override System.Windows.Forms.NumericUpDown.Text.get -> string! +override System.Windows.Forms.NumericUpDown.Text.set -> void +override System.Windows.Forms.NumericUpDown.ToString() -> string! +override System.Windows.Forms.NumericUpDown.UpButton() -> void +override System.Windows.Forms.NumericUpDown.UpdateEditText() -> void +override System.Windows.Forms.NumericUpDown.ValidateEditText() -> void +override System.Windows.Forms.OpacityConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.OpacityConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.OpacityConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.OpenFileDialog.CheckFileExists.get -> bool +override System.Windows.Forms.OpenFileDialog.CheckFileExists.set -> void +override System.Windows.Forms.OpenFileDialog.Reset() -> void +override System.Windows.Forms.OSFeature.GetVersionPresent(object! feature) -> System.Version? +override System.Windows.Forms.PageSetupDialog.Reset() -> void +override System.Windows.Forms.Panel.AutoSize.get -> bool +override System.Windows.Forms.Panel.AutoSize.set -> void +override System.Windows.Forms.Panel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.Panel.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Panel.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.Panel.OnResize(System.EventArgs! eventargs) -> void +override System.Windows.Forms.Panel.Text.get -> string! +override System.Windows.Forms.Panel.Text.set -> void +override System.Windows.Forms.Panel.ToString() -> string! +override System.Windows.Forms.PictureBox.AllowDrop.get -> bool +override System.Windows.Forms.PictureBox.AllowDrop.set -> void +override System.Windows.Forms.PictureBox.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.PictureBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.PictureBox.Dispose(bool disposing) -> void +override System.Windows.Forms.PictureBox.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.PictureBox.ForeColor.set -> void +override System.Windows.Forms.PictureBox.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.PictureBox.RightToLeft.set -> void +override System.Windows.Forms.PrintControllerWithStatusDialog.IsPreview.get -> bool +override System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPage(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintPageEventArgs! e) -> void +override System.Windows.Forms.PrintControllerWithStatusDialog.OnEndPrint(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintEventArgs! e) -> void +override System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPage(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintPageEventArgs! e) -> System.Drawing.Graphics? +override System.Windows.Forms.PrintControllerWithStatusDialog.OnStartPrint(System.Drawing.Printing.PrintDocument! document, System.Drawing.Printing.PrintEventArgs! e) -> void +override System.Windows.Forms.PrintDialog.Reset() -> void +override System.Windows.Forms.PrintPreviewControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.PrintPreviewControl.OnPaint(System.Windows.Forms.PaintEventArgs! pevent) -> void +override System.Windows.Forms.PrintPreviewControl.OnResize(System.EventArgs! eventargs) -> void +override System.Windows.Forms.PrintPreviewControl.ResetBackColor() -> void +override System.Windows.Forms.PrintPreviewControl.ResetForeColor() -> void +override System.Windows.Forms.PrintPreviewControl.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.PrintPreviewControl.RightToLeft.set -> void +override System.Windows.Forms.PrintPreviewControl.Text.get -> string! +override System.Windows.Forms.PrintPreviewControl.Text.set -> void +override System.Windows.Forms.PrintPreviewControl.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.PrintPreviewDialog.AllowDrop.get -> bool +override System.Windows.Forms.PrintPreviewDialog.AllowDrop.set -> void +override System.Windows.Forms.PrintPreviewDialog.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.PrintPreviewDialog.Anchor.set -> void +override System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize.get -> System.Drawing.Size +override System.Windows.Forms.PrintPreviewDialog.AutoScaleBaseSize.set -> void +override System.Windows.Forms.PrintPreviewDialog.AutoScroll.get -> bool +override System.Windows.Forms.PrintPreviewDialog.AutoScroll.set -> void +override System.Windows.Forms.PrintPreviewDialog.AutoSize.get -> bool +override System.Windows.Forms.PrintPreviewDialog.AutoSize.set -> void +override System.Windows.Forms.PrintPreviewDialog.AutoValidate.get -> System.Windows.Forms.AutoValidate +override System.Windows.Forms.PrintPreviewDialog.AutoValidate.set -> void +override System.Windows.Forms.PrintPreviewDialog.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.PrintPreviewDialog.BackColor.set -> void +override System.Windows.Forms.PrintPreviewDialog.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.PrintPreviewDialog.BackgroundImage.set -> void +override System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayout.set -> void +override System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +override System.Windows.Forms.PrintPreviewDialog.ContextMenuStrip.set -> void +override System.Windows.Forms.PrintPreviewDialog.CreateHandle() -> void +override System.Windows.Forms.PrintPreviewDialog.Cursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.PrintPreviewDialog.Cursor.set -> void +override System.Windows.Forms.PrintPreviewDialog.DefaultMinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.PrintPreviewDialog.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.PrintPreviewDialog.Dock.set -> void +override System.Windows.Forms.PrintPreviewDialog.Font.get -> System.Drawing.Font! +override System.Windows.Forms.PrintPreviewDialog.Font.set -> void +override System.Windows.Forms.PrintPreviewDialog.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.PrintPreviewDialog.ForeColor.set -> void +override System.Windows.Forms.PrintPreviewDialog.OnClosing(System.ComponentModel.CancelEventArgs! e) -> void +override System.Windows.Forms.PrintPreviewDialog.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.PrintPreviewDialog.ProcessTabKey(bool forward) -> bool +override System.Windows.Forms.PrintPreviewDialog.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.PrintPreviewDialog.RightToLeft.set -> void +override System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout.get -> bool +override System.Windows.Forms.PrintPreviewDialog.RightToLeftLayout.set -> void +override System.Windows.Forms.PrintPreviewDialog.Text.get -> string! +override System.Windows.Forms.PrintPreviewDialog.Text.set -> void +override System.Windows.Forms.ProgressBar.AllowDrop.get -> bool +override System.Windows.Forms.ProgressBar.AllowDrop.set -> void +override System.Windows.Forms.ProgressBar.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ProgressBar.BackgroundImage.set -> void +override System.Windows.Forms.ProgressBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ProgressBar.BackgroundImageLayout.set -> void +override System.Windows.Forms.ProgressBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ProgressBar.CreateHandle() -> void +override System.Windows.Forms.ProgressBar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ProgressBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.ProgressBar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ProgressBar.DoubleBuffered.get -> bool +override System.Windows.Forms.ProgressBar.DoubleBuffered.set -> void +override System.Windows.Forms.ProgressBar.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ProgressBar.Font.set -> void +override System.Windows.Forms.ProgressBar.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ProgressBar.OnForeColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ProgressBar.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ProgressBar.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.ProgressBar.ResetForeColor() -> void +override System.Windows.Forms.ProgressBar.Text.get -> string! +override System.Windows.Forms.ProgressBar.Text.set -> void +override System.Windows.Forms.ProgressBar.ToString() -> string! +override System.Windows.Forms.PropertyGrid.AutoScroll.get -> bool +override System.Windows.Forms.PropertyGrid.AutoScroll.set -> void +override System.Windows.Forms.PropertyGrid.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.PropertyGrid.BackColor.set -> void +override System.Windows.Forms.PropertyGrid.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.PropertyGrid.BackgroundImageLayout.set -> void +override System.Windows.Forms.PropertyGrid.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.PropertyGrid.Dispose(bool disposing) -> void +override System.Windows.Forms.PropertyGrid.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.PropertyGrid.ForeColor.set -> void +override System.Windows.Forms.PropertyGrid.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.PropertyGrid.Refresh() -> void +override System.Windows.Forms.PropertyGrid.ScaleCore(float dx, float dy) -> void +override System.Windows.Forms.PropertyGrid.ShowFocusCues.get -> bool +override System.Windows.Forms.PropertyGrid.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetDefaultProperty(object! obj) -> System.ComponentModel.PropertyDescriptor? +override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? +override System.Windows.Forms.PropertyGridInternal.PropertiesTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? +override System.Windows.Forms.PropertyGridInternal.PropertiesTab.HelpKeyword.get -> string! +override System.Windows.Forms.PropertyGridInternal.PropertiesTab.TabName.get -> string! +override System.Windows.Forms.PropertyManager.AddNew() -> void +override System.Windows.Forms.PropertyManager.CancelCurrentEdit() -> void +override System.Windows.Forms.PropertyManager.Count.get -> int +override System.Windows.Forms.PropertyManager.Current.get -> object? +override System.Windows.Forms.PropertyManager.EndCurrentEdit() -> void +override System.Windows.Forms.PropertyManager.GetListName(System.Collections.ArrayList? listAccessors) -> string! +override System.Windows.Forms.PropertyManager.OnCurrentChanged(System.EventArgs! ea) -> void +override System.Windows.Forms.PropertyManager.OnCurrentItemChanged(System.EventArgs! ea) -> void +override System.Windows.Forms.PropertyManager.Position.get -> int +override System.Windows.Forms.PropertyManager.Position.set -> void +override System.Windows.Forms.PropertyManager.RemoveAt(int index) -> void +override System.Windows.Forms.PropertyManager.ResumeBinding() -> void +override System.Windows.Forms.PropertyManager.SuspendBinding() -> void +override System.Windows.Forms.PropertyManager.UpdateIsBinding() -> void +override System.Windows.Forms.RadioButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.RadioButton.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.RadioButton.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.RadioButton.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.RadioButton.OnEnter(System.EventArgs! e) -> void +override System.Windows.Forms.RadioButton.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.RadioButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.RadioButton.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.KeyboardShortcut.get -> string? +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Name.get -> string? +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.RadioButton.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.RadioButton.TextAlign.get -> System.Drawing.ContentAlignment +override System.Windows.Forms.RadioButton.TextAlign.set -> void +override System.Windows.Forms.RadioButton.ToString() -> string! +override System.Windows.Forms.RichTextBox.AllowDrop.get -> bool +override System.Windows.Forms.RichTextBox.AllowDrop.set -> void +override System.Windows.Forms.RichTextBox.AutoSize.get -> bool +override System.Windows.Forms.RichTextBox.AutoSize.set -> void +override System.Windows.Forms.RichTextBox.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.RichTextBox.BackgroundImage.set -> void +override System.Windows.Forms.RichTextBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.RichTextBox.BackgroundImageLayout.set -> void +override System.Windows.Forms.RichTextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.RichTextBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.RichTextBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.RichTextBox.Font.get -> System.Drawing.Font! +override System.Windows.Forms.RichTextBox.Font.set -> void +override System.Windows.Forms.RichTextBox.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.RichTextBox.ForeColor.set -> void +override System.Windows.Forms.RichTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int +override System.Windows.Forms.RichTextBox.GetLineFromCharIndex(int index) -> int +override System.Windows.Forms.RichTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point +override System.Windows.Forms.RichTextBox.MaxLength.get -> int +override System.Windows.Forms.RichTextBox.MaxLength.set -> void +override System.Windows.Forms.RichTextBox.Multiline.get -> bool +override System.Windows.Forms.RichTextBox.Multiline.set -> void +override System.Windows.Forms.RichTextBox.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.RichTextBox.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.RichTextBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.RichTextBox.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.RichTextBox.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.RichTextBox.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.RichTextBox.SelectedText.get -> string! +override System.Windows.Forms.RichTextBox.SelectedText.set -> void +override System.Windows.Forms.RichTextBox.SelectionLength.get -> int +override System.Windows.Forms.RichTextBox.SelectionLength.set -> void +override System.Windows.Forms.RichTextBox.Text.get -> string! +override System.Windows.Forms.RichTextBox.Text.set -> void +override System.Windows.Forms.RichTextBox.TextLength.get -> int +override System.Windows.Forms.RichTextBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.SaveFileDialog.Reset() -> void +override System.Windows.Forms.Screen.Equals(object? obj) -> bool +override System.Windows.Forms.Screen.GetHashCode() -> int +override System.Windows.Forms.Screen.ToString() -> string! +override System.Windows.Forms.ScrollableControl.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ScrollableControl.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.ScrollableControl.DockPaddingEdges.Equals(object? other) -> bool +override System.Windows.Forms.ScrollableControl.DockPaddingEdges.GetHashCode() -> int +override System.Windows.Forms.ScrollableControl.DockPaddingEdges.ToString() -> string! +override System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! +override System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.ScrollableControl.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void +override System.Windows.Forms.ScrollableControl.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ScrollableControl.OnPaddingChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ScrollableControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ScrollableControl.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ScrollableControl.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ScrollableControl.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ScrollableControl.ScaleCore(float dx, float dy) -> void +override System.Windows.Forms.ScrollableControl.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ScrollBar.AutoSize.get -> bool +override System.Windows.Forms.ScrollBar.AutoSize.set -> void +override System.Windows.Forms.ScrollBar.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ScrollBar.BackColor.set -> void +override System.Windows.Forms.ScrollBar.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ScrollBar.BackgroundImage.set -> void +override System.Windows.Forms.ScrollBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ScrollBar.BackgroundImageLayout.set -> void +override System.Windows.Forms.ScrollBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ScrollBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.ScrollBar.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ScrollBar.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ScrollBar.Font.set -> void +override System.Windows.Forms.ScrollBar.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.ScrollBar.ForeColor.set -> void +override System.Windows.Forms.ScrollBar.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle +override System.Windows.Forms.ScrollBar.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ScrollBar.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ScrollBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ScrollBar.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ScrollBar.Text.get -> string! +override System.Windows.Forms.ScrollBar.Text.set -> void +override System.Windows.Forms.ScrollBar.ToString() -> string! +override System.Windows.Forms.ScrollBar.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.SelectionRange.ToString() -> string! +override System.Windows.Forms.SelectionRangeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Type! sourceType) -> bool +override System.Windows.Forms.SelectionRangeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.SelectionRangeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.SelectionRangeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.SelectionRangeConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext? context, System.Collections.IDictionary! propertyValues) -> object! +override System.Windows.Forms.SelectionRangeConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.SelectionRangeConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! value, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection! +override System.Windows.Forms.SelectionRangeConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +override System.Windows.Forms.SplitContainer.AutoScroll.get -> bool +override System.Windows.Forms.SplitContainer.AutoScroll.set -> void +override System.Windows.Forms.SplitContainer.AutoScrollOffset.get -> System.Drawing.Point +override System.Windows.Forms.SplitContainer.AutoScrollOffset.set -> void +override System.Windows.Forms.SplitContainer.AutoSize.get -> bool +override System.Windows.Forms.SplitContainer.AutoSize.set -> void +override System.Windows.Forms.SplitContainer.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.SplitContainer.BackgroundImage.set -> void +override System.Windows.Forms.SplitContainer.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.SplitContainer.BackgroundImageLayout.set -> void +override System.Windows.Forms.SplitContainer.BindingContext.get -> System.Windows.Forms.BindingContext? +override System.Windows.Forms.SplitContainer.BindingContext.set -> void +override System.Windows.Forms.SplitContainer.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.SplitContainer.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.SplitContainer.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.SplitContainer.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMouseCaptureChanged(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnMove(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.SplitContainer.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.SplitContainer.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.SplitContainer.ProcessTabKey(bool forward) -> bool +override System.Windows.Forms.SplitContainer.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.SplitContainer.Select(bool directed, bool forward) -> void +override System.Windows.Forms.SplitContainer.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.SplitContainer.Text.get -> string! +override System.Windows.Forms.SplitContainer.Text.set -> void +override System.Windows.Forms.SplitContainer.WndProc(ref System.Windows.Forms.Message msg) -> void +override System.Windows.Forms.Splitter.AllowDrop.get -> bool +override System.Windows.Forms.Splitter.AllowDrop.set -> void +override System.Windows.Forms.Splitter.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.Splitter.Anchor.set -> void +override System.Windows.Forms.Splitter.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.Splitter.BackgroundImage.set -> void +override System.Windows.Forms.Splitter.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.Splitter.BackgroundImageLayout.set -> void +override System.Windows.Forms.Splitter.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.Splitter.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.Splitter.DefaultCursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.Splitter.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.Splitter.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.Splitter.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.Splitter.Dock.set -> void +override System.Windows.Forms.Splitter.Font.get -> System.Drawing.Font! +override System.Windows.Forms.Splitter.Font.set -> void +override System.Windows.Forms.Splitter.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.Splitter.ForeColor.set -> void +override System.Windows.Forms.Splitter.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.Splitter.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.Splitter.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.Splitter.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.Splitter.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.Splitter.Text.get -> string! +override System.Windows.Forms.Splitter.Text.set -> void +override System.Windows.Forms.Splitter.ToString() -> string! +override System.Windows.Forms.SplitterPanel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +override System.Windows.Forms.SplitterPanel.AutoSizeMode.set -> void +override System.Windows.Forms.StatusStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.StatusStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! +override System.Windows.Forms.StatusStrip.DefaultDock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.StatusStrip.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.StatusStrip.DefaultShowItemToolTips.get -> bool +override System.Windows.Forms.StatusStrip.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.StatusStrip.Dispose(bool disposing) -> void +override System.Windows.Forms.StatusStrip.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.StatusStrip.Dock.set -> void +override System.Windows.Forms.StatusStrip.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void +override System.Windows.Forms.StatusStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.StatusStrip.SetDisplayedItems() -> void +override System.Windows.Forms.StatusStrip.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.TabControl.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.TabControl.BackColor.set -> void +override System.Windows.Forms.TabControl.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.TabControl.BackgroundImage.set -> void +override System.Windows.Forms.TabControl.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.TabControl.BackgroundImageLayout.set -> void +override System.Windows.Forms.TabControl.ControlCollection.Add(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.TabControl.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.TabControl.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.TabControl.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.TabControl.CreateHandle() -> void +override System.Windows.Forms.TabControl.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.TabControl.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.TabControl.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.TabControl.Dispose(bool disposing) -> void +override System.Windows.Forms.TabControl.DoubleBuffered.get -> bool +override System.Windows.Forms.TabControl.DoubleBuffered.set -> void +override System.Windows.Forms.TabControl.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.TabControl.ForeColor.set -> void +override System.Windows.Forms.TabControl.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.TabControl.OnEnter(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnKeyDown(System.Windows.Forms.KeyEventArgs! ke) -> void +override System.Windows.Forms.TabControl.OnLeave(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.OnStyleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TabControl.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool +override System.Windows.Forms.TabControl.ScaleCore(float dx, float dy) -> void +override System.Windows.Forms.TabControl.Text.get -> string! +override System.Windows.Forms.TabControl.Text.set -> void +override System.Windows.Forms.TabControl.ToString() -> string! +override System.Windows.Forms.TabControl.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.TableLayoutPanel.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.TableLayoutPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.TableLayoutPanel.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void +override System.Windows.Forms.TableLayoutPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.TableLayoutPanel.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.TableLayoutPanel.ScaleCore(float dx, float dy) -> void +override System.Windows.Forms.TableLayoutPanelCellPosition.Equals(object? other) -> bool +override System.Windows.Forms.TableLayoutPanelCellPosition.GetHashCode() -> int +override System.Windows.Forms.TableLayoutPanelCellPosition.ToString() -> string! +override System.Windows.Forms.TableLayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.TabPage.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.TabPage.Anchor.set -> void +override System.Windows.Forms.TabPage.AutoSize.get -> bool +override System.Windows.Forms.TabPage.AutoSize.set -> void +override System.Windows.Forms.TabPage.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +override System.Windows.Forms.TabPage.AutoSizeMode.set -> void +override System.Windows.Forms.TabPage.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.TabPage.BackColor.set -> void +override System.Windows.Forms.TabPage.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.TabPage.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.TabPage.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.TabPage.Dock.set -> void +override System.Windows.Forms.TabPage.MaximumSize.get -> System.Drawing.Size +override System.Windows.Forms.TabPage.MaximumSize.set -> void +override System.Windows.Forms.TabPage.MinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.TabPage.MinimumSize.set -> void +override System.Windows.Forms.TabPage.OnEnter(System.EventArgs! e) -> void +override System.Windows.Forms.TabPage.OnLeave(System.EventArgs! e) -> void +override System.Windows.Forms.TabPage.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.TabPage.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.TabPage.TabPageControlCollection.Add(System.Windows.Forms.Control? value) -> void +override System.Windows.Forms.TabPage.Text.get -> string! +override System.Windows.Forms.TabPage.Text.set -> void +override System.Windows.Forms.TabPage.ToString() -> string! +override System.Windows.Forms.TaskDialogButton.Equals(object? obj) -> bool +override System.Windows.Forms.TaskDialogButton.GetHashCode() -> int +override System.Windows.Forms.TaskDialogButton.ToString() -> string! +override System.Windows.Forms.TaskDialogButtonCollection.ClearItems() -> void +override System.Windows.Forms.TaskDialogButtonCollection.InsertItem(int index, System.Windows.Forms.TaskDialogButton! item) -> void +override System.Windows.Forms.TaskDialogButtonCollection.RemoveItem(int index) -> void +override System.Windows.Forms.TaskDialogButtonCollection.SetItem(int index, System.Windows.Forms.TaskDialogButton! item) -> void +override System.Windows.Forms.TaskDialogExpander.ToString() -> string! +override System.Windows.Forms.TaskDialogFootnote.ToString() -> string! +override System.Windows.Forms.TaskDialogRadioButton.ToString() -> string! +override System.Windows.Forms.TaskDialogRadioButtonCollection.ClearItems() -> void +override System.Windows.Forms.TaskDialogRadioButtonCollection.InsertItem(int index, System.Windows.Forms.TaskDialogRadioButton! item) -> void +override System.Windows.Forms.TaskDialogRadioButtonCollection.RemoveItem(int index) -> void +override System.Windows.Forms.TaskDialogRadioButtonCollection.SetItem(int index, System.Windows.Forms.TaskDialogRadioButton! item) -> void +override System.Windows.Forms.TaskDialogVerificationCheckBox.ToString() -> string! +override System.Windows.Forms.TextBox.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.TextBox.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.TextBox.Dispose(bool disposing) -> void +override System.Windows.Forms.TextBox.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.TextBox.Multiline.get -> bool +override System.Windows.Forms.TextBox.Multiline.set -> void +override System.Windows.Forms.TextBox.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TextBox.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TextBox.OnGotFocus(System.EventArgs! e) -> void +override System.Windows.Forms.TextBox.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.TextBox.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.TextBox.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +override System.Windows.Forms.TextBox.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.TextBox.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.TextBox.Text.get -> string! +override System.Windows.Forms.TextBox.Text.set -> void +override System.Windows.Forms.TextBox.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.TextBoxBase.AutoSize.get -> bool +override System.Windows.Forms.TextBoxBase.AutoSize.set -> void +override System.Windows.Forms.TextBoxBase.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.TextBoxBase.BackColor.set -> void +override System.Windows.Forms.TextBoxBase.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.TextBoxBase.BackgroundImage.set -> void +override System.Windows.Forms.TextBoxBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.TextBoxBase.BackgroundImageLayout.set -> void +override System.Windows.Forms.TextBoxBase.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.TextBoxBase.ForeColor.set -> void +override System.Windows.Forms.TextBoxBase.Text.get -> string! +override System.Windows.Forms.TextBoxBase.Text.set -> void +override System.Windows.Forms.TextBoxBase.ToString() -> string! +override System.Windows.Forms.ThreadExceptionDialog.AutoSize.get -> bool +override System.Windows.Forms.ThreadExceptionDialog.AutoSize.set -> void +override System.Windows.Forms.Timer.Dispose(bool disposing) -> void +override System.Windows.Forms.Timer.ToString() -> string! +override System.Windows.Forms.ToolStrip.AllowDrop.get -> bool +override System.Windows.Forms.ToolStrip.AllowDrop.set -> void +override System.Windows.Forms.ToolStrip.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.ToolStrip.Anchor.set -> void +override System.Windows.Forms.ToolStrip.AutoScroll.get -> bool +override System.Windows.Forms.ToolStrip.AutoScroll.set -> void +override System.Windows.Forms.ToolStrip.AutoSize.get -> bool +override System.Windows.Forms.ToolStrip.AutoSize.set -> void +override System.Windows.Forms.ToolStrip.BindingContext.get -> System.Windows.Forms.BindingContext? +override System.Windows.Forms.ToolStrip.BindingContext.set -> void +override System.Windows.Forms.ToolStrip.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStrip.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.ToolStrip.Cursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.ToolStrip.Cursor.set -> void +override System.Windows.Forms.ToolStrip.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStrip.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStrip.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStrip.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.ToolStrip.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStrip.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.ToolStrip.Dock.set -> void +override System.Windows.Forms.ToolStrip.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ToolStrip.Font.set -> void +override System.Windows.Forms.ToolStrip.IsInputChar(char charCode) -> bool +override System.Windows.Forms.ToolStrip.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStrip.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.ToolStrip.OnDockChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnEnabledChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnLostFocus(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnMouseCaptureChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnMouseDown(System.Windows.Forms.MouseEventArgs! mea) -> void +override System.Windows.Forms.ToolStrip.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnMouseMove(System.Windows.Forms.MouseEventArgs! mea) -> void +override System.Windows.Forms.ToolStrip.OnMouseUp(System.Windows.Forms.MouseEventArgs! mea) -> void +override System.Windows.Forms.ToolStrip.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void +override System.Windows.Forms.ToolStrip.OnTabStopChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStrip.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStrip.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStrip.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStrip.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.ToolStrip.Select(bool directed, bool forward) -> void +override System.Windows.Forms.ToolStrip.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ToolStrip.SetVisibleCore(bool visible) -> void +override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.ToolStrip.ToString() -> string! +override System.Windows.Forms.ToolStrip.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ToolStripButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripButton.DefaultAutoToolTip.get -> bool +override System.Windows.Forms.ToolStripButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripButton.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripButton.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripComboBox.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripComboBox.BackgroundImage.set -> void +override System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripComboBox.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripComboBox.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripComboBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripComboBox.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripComboBox.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolStripComboBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolStripComboBox.ToString() -> string! +override System.Windows.Forms.ToolStripContainer.AutoScroll.get -> bool +override System.Windows.Forms.ToolStripContainer.AutoScroll.set -> void +override System.Windows.Forms.ToolStripContainer.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripContainer.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripContainer.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripContainer.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.ToolStripContainer.Cursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.ToolStripContainer.Cursor.set -> void +override System.Windows.Forms.ToolStripContainer.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripContainer.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripContainer.OnSizeChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripContentPanel.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.ToolStripContentPanel.Anchor.set -> void +override System.Windows.Forms.ToolStripContentPanel.AutoScroll.get -> bool +override System.Windows.Forms.ToolStripContentPanel.AutoScroll.set -> void +override System.Windows.Forms.ToolStripContentPanel.AutoSize.get -> bool +override System.Windows.Forms.ToolStripContentPanel.AutoSize.set -> void +override System.Windows.Forms.ToolStripContentPanel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +override System.Windows.Forms.ToolStripContentPanel.AutoSizeMode.set -> void +override System.Windows.Forms.ToolStripContentPanel.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ToolStripContentPanel.BackColor.set -> void +override System.Windows.Forms.ToolStripContentPanel.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.ToolStripContentPanel.Dock.set -> void +override System.Windows.Forms.ToolStripContentPanel.MaximumSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripContentPanel.MaximumSize.set -> void +override System.Windows.Forms.ToolStripContentPanel.MinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripContentPanel.MinimumSize.set -> void +override System.Windows.Forms.ToolStripContentPanel.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripContentPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripControlHost.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.ToolStripControlHost.BackColor.set -> void +override System.Windows.Forms.ToolStripControlHost.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripControlHost.BackgroundImage.set -> void +override System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripControlHost.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripControlHost.CanSelect.get -> bool +override System.Windows.Forms.ToolStripControlHost.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripControlHost.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripControlHost.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripControlHost.Enabled.get -> bool +override System.Windows.Forms.ToolStripControlHost.Enabled.set -> void +override System.Windows.Forms.ToolStripControlHost.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ToolStripControlHost.Font.set -> void +override System.Windows.Forms.ToolStripControlHost.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.ToolStripControlHost.ForeColor.set -> void +override System.Windows.Forms.ToolStripControlHost.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripControlHost.Image.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripControlHost.Image.set -> void +override System.Windows.Forms.ToolStripControlHost.OnBoundsChanged() -> void +override System.Windows.Forms.ToolStripControlHost.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStripControlHost.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripControlHost.OnParentChanged(System.Windows.Forms.ToolStrip? oldParent, System.Windows.Forms.ToolStrip? newParent) -> void +override System.Windows.Forms.ToolStripControlHost.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripControlHost.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripControlHost.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripControlHost.ResetBackColor() -> void +override System.Windows.Forms.ToolStripControlHost.ResetForeColor() -> void +override System.Windows.Forms.ToolStripControlHost.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.ToolStripControlHost.RightToLeft.set -> void +override System.Windows.Forms.ToolStripControlHost.Selected.get -> bool +override System.Windows.Forms.ToolStripControlHost.SetVisibleCore(bool visible) -> void +override System.Windows.Forms.ToolStripControlHost.Site.get -> System.ComponentModel.ISite? +override System.Windows.Forms.ToolStripControlHost.Site.set -> void +override System.Windows.Forms.ToolStripControlHost.Size.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripControlHost.Size.set -> void +override System.Windows.Forms.ToolStripControlHost.Text.get -> string! +override System.Windows.Forms.ToolStripControlHost.Text.set -> void +override System.Windows.Forms.ToolStripControlHost.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +override System.Windows.Forms.ToolStripControlHost.TextDirection.set -> void +override System.Windows.Forms.ToolStripDropDown.Anchor.get -> System.Windows.Forms.AnchorStyles +override System.Windows.Forms.ToolStripDropDown.Anchor.set -> void +override System.Windows.Forms.ToolStripDropDown.AutoSize.get -> bool +override System.Windows.Forms.ToolStripDropDown.AutoSize.set -> void +override System.Windows.Forms.ToolStripDropDown.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripDropDown.CreateHandle() -> void +override System.Windows.Forms.ToolStripDropDown.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle style) -> System.Windows.Forms.LayoutSettings? +override System.Windows.Forms.ToolStripDropDown.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.ToolStripDropDown.DefaultDock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection +override System.Windows.Forms.ToolStripDropDown.DefaultDropDownDirection.set -> void +override System.Windows.Forms.ToolStripDropDown.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripDropDown.DefaultShowItemToolTips.get -> bool +override System.Windows.Forms.ToolStripDropDown.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripDropDown.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.ToolStripDropDown.Dock.set -> void +override System.Windows.Forms.ToolStripDropDown.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ToolStripDropDown.Font.set -> void +override System.Windows.Forms.ToolStripDropDown.MaxItemSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripDropDown.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDown.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDown.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDown.OnMouseUp(System.Windows.Forms.MouseEventArgs! mea) -> void +override System.Windows.Forms.ToolStripDropDown.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDown.OnVisibleChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDown.ProcessDialogChar(char charCode) -> bool +override System.Windows.Forms.ToolStripDropDown.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripDropDown.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripDropDown.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.ToolStripDropDown.RightToLeft.set -> void +override System.Windows.Forms.ToolStripDropDown.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ToolStripDropDown.ScaleCore(float dx, float dy) -> void +override System.Windows.Forms.ToolStripDropDown.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.ToolStripDropDown.SetVisibleCore(bool visible) -> void +override System.Windows.Forms.ToolStripDropDown.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +override System.Windows.Forms.ToolStripDropDown.TextDirection.set -> void +override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name.get -> string? +override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Name.set -> void +override System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.ToolStripDropDown.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.ToolStripDropDownButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripDropDownButton.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! +override System.Windows.Forms.ToolStripDropDownButton.DefaultAutoToolTip.get -> bool +override System.Windows.Forms.ToolStripDropDownButton.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownButton.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownButton.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripDropDownItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripDropDownItem.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripDropDownItem.OnBoundsChanged() -> void +override System.Windows.Forms.ToolStripDropDownItem.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownItem.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownItem.Pressed.get -> bool +override System.Windows.Forms.ToolStripDropDownItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripDropDownItem.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.GetChildCount() -> int +override System.Windows.Forms.ToolStripDropDownItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.ToolStripDropDownMenu.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripDropDownMenu.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! +override System.Windows.Forms.ToolStripDropDownMenu.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripDropDownMenu.DisplayRectangle.get -> System.Drawing.Rectangle +override System.Windows.Forms.ToolStripDropDownMenu.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.ToolStripDropDownMenu.MaxItemSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripDropDownMenu.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownMenu.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownMenu.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripDropDownMenu.SetDisplayedItems() -> void +override System.Windows.Forms.ToolStripItem.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Bounds.get -> System.Drawing.Rectangle +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DefaultAction.get -> string! +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Description.get -> string? +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.GetHelpTopic(out string? fileName) -> int +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Help.get -> string? +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.KeyboardShortcut.get -> string! +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name.get -> string? +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Name.set -> void +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navigationDirection) -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +override System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToString() -> string! +override System.Windows.Forms.ToolStripItem.ToString() -> string! +override System.Windows.Forms.ToolStripItemCollection.IsReadOnly.get -> bool +override System.Windows.Forms.ToolStripLabel.CanSelect.get -> bool +override System.Windows.Forms.ToolStripLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripLabel.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripLabel.OnMouseEnter(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripLabel.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripLabel.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripMenuItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripMenuItem.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! +override System.Windows.Forms.ToolStripMenuItem.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripMenuItem.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripMenuItem.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripMenuItem.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripMenuItem.Enabled.get -> bool +override System.Windows.Forms.ToolStripMenuItem.Enabled.set -> void +override System.Windows.Forms.ToolStripMenuItem.OnClick(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnDropDownHide(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnDropDownShow(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnMouseEnter(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnOwnerChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripMenuItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripMenuItem.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripMenuItem.SetBounds(System.Drawing.Rectangle rect) -> void +override System.Windows.Forms.ToolStripOverflow.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripOverflow.DisplayedItems.get -> System.Windows.Forms.ToolStripItemCollection! +override System.Windows.Forms.ToolStripOverflow.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripOverflow.Items.get -> System.Windows.Forms.ToolStripItemCollection! +override System.Windows.Forms.ToolStripOverflow.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.ToolStripOverflow.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStripOverflow.SetDisplayedItems() -> void +override System.Windows.Forms.ToolStripOverflowButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripOverflowButton.HasDropDownItems.get -> bool +override System.Windows.Forms.ToolStripPanel.AllowDrop.get -> bool +override System.Windows.Forms.ToolStripPanel.AllowDrop.set -> void +override System.Windows.Forms.ToolStripPanel.AutoScroll.get -> bool +override System.Windows.Forms.ToolStripPanel.AutoScroll.set -> void +override System.Windows.Forms.ToolStripPanel.AutoSize.get -> bool +override System.Windows.Forms.ToolStripPanel.AutoSize.set -> void +override System.Windows.Forms.ToolStripPanel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripPanel.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +override System.Windows.Forms.ToolStripPanel.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripPanel.DefaultPadding.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripPanel.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripPanel.Dock.get -> System.Windows.Forms.DockStyle +override System.Windows.Forms.ToolStripPanel.Dock.set -> void +override System.Windows.Forms.ToolStripPanel.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +override System.Windows.Forms.ToolStripPanel.OnControlAdded(System.Windows.Forms.ControlEventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnControlRemoved(System.Windows.Forms.ControlEventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnDockChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnPaintBackground(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnParentChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripPanel.Text.get -> string! +override System.Windows.Forms.ToolStripPanel.Text.set -> void +override System.Windows.Forms.ToolStripPanelRow.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProfessionalRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripProgressBar.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripProgressBar.BackgroundImage.set -> void +override System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripProgressBar.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripProgressBar.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripProgressBar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripProgressBar.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolStripProgressBar.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolStripProgressBar.Text.get -> string! +override System.Windows.Forms.ToolStripProgressBar.Text.set -> void +override System.Windows.Forms.ToolStripSeparator.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripSeparator.BackgroundImage.set -> void +override System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripSeparator.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripSeparator.CanSelect.get -> bool +override System.Windows.Forms.ToolStripSeparator.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripSeparator.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripSeparator.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripSeparator.Enabled.get -> bool +override System.Windows.Forms.ToolStripSeparator.Enabled.set -> void +override System.Windows.Forms.ToolStripSeparator.Font.get -> System.Drawing.Font! +override System.Windows.Forms.ToolStripSeparator.Font.set -> void +override System.Windows.Forms.ToolStripSeparator.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripSeparator.Image.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripSeparator.Image.set -> void +override System.Windows.Forms.ToolStripSeparator.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripSeparator.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripSeparator.SetBounds(System.Drawing.Rectangle rect) -> void +override System.Windows.Forms.ToolStripSeparator.Text.get -> string? +override System.Windows.Forms.ToolStripSeparator.Text.set -> void +override System.Windows.Forms.ToolStripSeparator.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +override System.Windows.Forms.ToolStripSeparator.TextDirection.set -> void +override System.Windows.Forms.ToolStripSplitButton.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripSplitButton.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! +override System.Windows.Forms.ToolStripSplitButton.DefaultAutoToolTip.get -> bool +override System.Windows.Forms.ToolStripSplitButton.DismissWhenClicked.get -> bool +override System.Windows.Forms.ToolStripSplitButton.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripSplitButton.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripSplitButton.OnMouseLeave(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripSplitButton.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.ToolStripSplitButton.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripSplitButton.OnRightToLeftChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripSplitButton.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.ToolStripSplitButton.ProcessMnemonic(char charCode) -> bool +override System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.DoDefaultAction() -> void +override System.Windows.Forms.ToolStripStatusLabel.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.ToolStripStatusLabel.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripStatusLabel.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripStatusLabel.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.ToolStripStatusLabel.OnTextChanged(System.EventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripSystemRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +override System.Windows.Forms.ToolStripTextBox.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.ToolStripTextBox.BackgroundImage.set -> void +override System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.ToolStripTextBox.BackgroundImageLayout.set -> void +override System.Windows.Forms.ToolStripTextBox.DefaultMargin.get -> System.Windows.Forms.Padding +override System.Windows.Forms.ToolStripTextBox.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.ToolStripTextBox.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +override System.Windows.Forms.ToolStripTextBox.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolStripTextBox.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void +override System.Windows.Forms.ToolTip.Dispose(bool disposing) -> void +override System.Windows.Forms.ToolTip.ToString() -> string! +override System.Windows.Forms.TrackBar.AutoSize.get -> bool +override System.Windows.Forms.TrackBar.AutoSize.set -> void +override System.Windows.Forms.TrackBar.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.TrackBar.BackgroundImage.set -> void +override System.Windows.Forms.TrackBar.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.TrackBar.BackgroundImageLayout.set -> void +override System.Windows.Forms.TrackBar.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.TrackBar.CreateHandle() -> void +override System.Windows.Forms.TrackBar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.TrackBar.DefaultImeMode.get -> System.Windows.Forms.ImeMode +override System.Windows.Forms.TrackBar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.TrackBar.DoubleBuffered.get -> bool +override System.Windows.Forms.TrackBar.DoubleBuffered.set -> void +override System.Windows.Forms.TrackBar.Font.get -> System.Drawing.Font! +override System.Windows.Forms.TrackBar.Font.set -> void +override System.Windows.Forms.TrackBar.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.TrackBar.ForeColor.set -> void +override System.Windows.Forms.TrackBar.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.TrackBar.OnBackColorChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TrackBar.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.TrackBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.TrackBar.OnSystemColorsChanged(System.EventArgs! e) -> void +override System.Windows.Forms.TrackBar.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +override System.Windows.Forms.TrackBar.Text.get -> string! +override System.Windows.Forms.TrackBar.Text.set -> void +override System.Windows.Forms.TrackBar.ToString() -> string! +override System.Windows.Forms.TrackBar.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.TreeNodeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Type? destinationType) -> bool +override System.Windows.Forms.TreeNodeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.TreeView.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.TreeView.BackColor.set -> void +override System.Windows.Forms.TreeView.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.TreeView.BackgroundImageLayout.set -> void +override System.Windows.Forms.TreeView.CreateHandle() -> void +override System.Windows.Forms.TreeView.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.TreeView.Dispose(bool disposing) -> void +override System.Windows.Forms.TreeView.DoubleBuffered.get -> bool +override System.Windows.Forms.TreeView.DoubleBuffered.set -> void +override System.Windows.Forms.TreeView.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.TreeView.ForeColor.set -> void +override System.Windows.Forms.TreeView.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +override System.Windows.Forms.TreeView.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.TreeViewImageIndexConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object! value) -> object? +override System.Windows.Forms.TreeViewImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.TreeViewImageIndexConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext? context) -> System.ComponentModel.TypeConverter.StandardValuesCollection! +override System.Windows.Forms.TreeViewImageIndexConverter.IncludeNoneAsStandardValue.get -> bool +override System.Windows.Forms.TreeViewImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext? context, System.Globalization.CultureInfo? culture, object? value, System.Type! destinationType) -> object? +override System.Windows.Forms.UpDownBase.AutoScroll.get -> bool +override System.Windows.Forms.UpDownBase.AutoScroll.set -> void +override System.Windows.Forms.UpDownBase.AutoSize.get -> bool +override System.Windows.Forms.UpDownBase.AutoSize.set -> void +override System.Windows.Forms.UpDownBase.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.UpDownBase.BackColor.set -> void +override System.Windows.Forms.UpDownBase.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.UpDownBase.BackgroundImage.set -> void +override System.Windows.Forms.UpDownBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.UpDownBase.BackgroundImageLayout.set -> void +override System.Windows.Forms.UpDownBase.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +override System.Windows.Forms.UpDownBase.ContextMenuStrip.set -> void +override System.Windows.Forms.UpDownBase.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.UpDownBase.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.UpDownBase.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.UpDownBase.Focused.get -> bool +override System.Windows.Forms.UpDownBase.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.UpDownBase.ForeColor.set -> void +override System.Windows.Forms.UpDownBase.MaximumSize.get -> System.Drawing.Size +override System.Windows.Forms.UpDownBase.MaximumSize.set -> void +override System.Windows.Forms.UpDownBase.MinimumSize.get -> System.Drawing.Size +override System.Windows.Forms.UpDownBase.MinimumSize.set -> void +override System.Windows.Forms.UpDownBase.OnFontChanged(System.EventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnHandleCreated(System.EventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnHandleDestroyed(System.EventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnMouseUp(System.Windows.Forms.MouseEventArgs! mevent) -> void +override System.Windows.Forms.UpDownBase.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.UpDownBase.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +override System.Windows.Forms.UpDownBase.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +override System.Windows.Forms.UpDownBase.Text.get -> string! +override System.Windows.Forms.UpDownBase.Text.set -> void +override System.Windows.Forms.UpDownBase.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.UserControl.AutoSize.get -> bool +override System.Windows.Forms.UserControl.AutoSize.set -> void +override System.Windows.Forms.UserControl.AutoValidate.get -> System.Windows.Forms.AutoValidate +override System.Windows.Forms.UserControl.AutoValidate.set -> void +override System.Windows.Forms.UserControl.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.UserControl.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.UserControl.OnCreateControl() -> void +override System.Windows.Forms.UserControl.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +override System.Windows.Forms.UserControl.OnResize(System.EventArgs! e) -> void +override System.Windows.Forms.UserControl.Text.get -> string! +override System.Windows.Forms.UserControl.Text.set -> void +override System.Windows.Forms.UserControl.ValidateChildren() -> bool +override System.Windows.Forms.UserControl.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool +override System.Windows.Forms.UserControl.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.VScrollBar.CreateParams.get -> System.Windows.Forms.CreateParams! +override System.Windows.Forms.VScrollBar.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.VScrollBar.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.VScrollBar.RightToLeft.set -> void +override System.Windows.Forms.WebBrowser.AttachInterfaces(object! nativeActiveXObject) -> void +override System.Windows.Forms.WebBrowser.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +override System.Windows.Forms.WebBrowser.CreateSink() -> void +override System.Windows.Forms.WebBrowser.CreateWebBrowserSiteBase() -> System.Windows.Forms.WebBrowserSiteBase! +override System.Windows.Forms.WebBrowser.DefaultSize.get -> System.Drawing.Size +override System.Windows.Forms.WebBrowser.DetachInterfaces() -> void +override System.Windows.Forms.WebBrowser.DetachSink() -> void +override System.Windows.Forms.WebBrowser.Dispose(bool disposing) -> void +override System.Windows.Forms.WebBrowser.Focused.get -> bool +override System.Windows.Forms.WebBrowser.Refresh() -> void +override System.Windows.Forms.WebBrowser.WndProc(ref System.Windows.Forms.Message m) -> void +override System.Windows.Forms.WebBrowserBase.AllowDrop.get -> bool +override System.Windows.Forms.WebBrowserBase.AllowDrop.set -> void +override System.Windows.Forms.WebBrowserBase.BackColor.get -> System.Drawing.Color +override System.Windows.Forms.WebBrowserBase.BackColor.set -> void +override System.Windows.Forms.WebBrowserBase.BackgroundImage.get -> System.Drawing.Image? +override System.Windows.Forms.WebBrowserBase.BackgroundImage.set -> void +override System.Windows.Forms.WebBrowserBase.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +override System.Windows.Forms.WebBrowserBase.BackgroundImageLayout.set -> void +override System.Windows.Forms.WebBrowserBase.Cursor.get -> System.Windows.Forms.Cursor! +override System.Windows.Forms.WebBrowserBase.Cursor.set -> void +override System.Windows.Forms.WebBrowserBase.Font.get -> System.Drawing.Font! +override System.Windows.Forms.WebBrowserBase.Font.set -> void +override System.Windows.Forms.WebBrowserBase.ForeColor.get -> System.Drawing.Color +override System.Windows.Forms.WebBrowserBase.ForeColor.set -> void +override System.Windows.Forms.WebBrowserBase.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool +override System.Windows.Forms.WebBrowserBase.RightToLeft.get -> System.Windows.Forms.RightToLeft +override System.Windows.Forms.WebBrowserBase.RightToLeft.set -> void +override System.Windows.Forms.WebBrowserBase.Site.set -> void +override System.Windows.Forms.WebBrowserBase.Text.get -> string! +override System.Windows.Forms.WebBrowserBase.Text.set -> void +override System.Windows.Forms.WindowsFormsSynchronizationContext.CreateCopy() -> System.Threading.SynchronizationContext! +override System.Windows.Forms.WindowsFormsSynchronizationContext.Post(System.Threading.SendOrPostCallback! d, object? state) -> void +override System.Windows.Forms.WindowsFormsSynchronizationContext.Send(System.Threading.SendOrPostCallback! d, object? state) -> void +static readonly System.Resources.ResXResourceWriter.BinSerializedObjectMimeType -> string! +static readonly System.Resources.ResXResourceWriter.ByteArraySerializedObjectMimeType -> string! +static readonly System.Resources.ResXResourceWriter.DefaultSerializedObjectMimeType -> string! +static readonly System.Resources.ResXResourceWriter.ResMimeType -> string! +static readonly System.Resources.ResXResourceWriter.ResourceSchema -> string! +static readonly System.Resources.ResXResourceWriter.SoapSerializedObjectMimeType -> string! +static readonly System.Resources.ResXResourceWriter.Version -> string! +static readonly System.Windows.Forms.DataFormats.Bitmap -> string! +static readonly System.Windows.Forms.DataFormats.CommaSeparatedValue -> string! +static readonly System.Windows.Forms.DataFormats.Dib -> string! +static readonly System.Windows.Forms.DataFormats.Dif -> string! +static readonly System.Windows.Forms.DataFormats.EnhancedMetafile -> string! +static readonly System.Windows.Forms.DataFormats.FileDrop -> string! +static readonly System.Windows.Forms.DataFormats.Html -> string! +static readonly System.Windows.Forms.DataFormats.Locale -> string! +static readonly System.Windows.Forms.DataFormats.MetafilePict -> string! +static readonly System.Windows.Forms.DataFormats.OemText -> string! +static readonly System.Windows.Forms.DataFormats.Palette -> string! +static readonly System.Windows.Forms.DataFormats.PenData -> string! +static readonly System.Windows.Forms.DataFormats.Riff -> string! +static readonly System.Windows.Forms.DataFormats.Rtf -> string! +static readonly System.Windows.Forms.DataFormats.Serializable -> string! +static readonly System.Windows.Forms.DataFormats.StringFormat -> string! +static readonly System.Windows.Forms.DataFormats.SymbolicLink -> string! +static readonly System.Windows.Forms.DataFormats.Text -> string! +static readonly System.Windows.Forms.DataFormats.Tiff -> string! +static readonly System.Windows.Forms.DataFormats.UnicodeText -> string! +static readonly System.Windows.Forms.DataFormats.WaveAudio -> string! +static readonly System.Windows.Forms.DataGridView.HitTestInfo.Nowhere -> System.Windows.Forms.DataGridView.HitTestInfo! +static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Default -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! +static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.No -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! +static readonly System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Yes -> System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute! +static readonly System.Windows.Forms.DateTimePicker.DefaultMonthBackColor -> System.Drawing.Color +static readonly System.Windows.Forms.DateTimePicker.DefaultTitleBackColor -> System.Drawing.Color +static readonly System.Windows.Forms.DateTimePicker.DefaultTitleForeColor -> System.Drawing.Color +static readonly System.Windows.Forms.DateTimePicker.DefaultTrailingForeColor -> System.Drawing.Color +static readonly System.Windows.Forms.DateTimePicker.MaxDateTime -> System.DateTime +static readonly System.Windows.Forms.DateTimePicker.MinDateTime -> System.DateTime +static readonly System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.Default -> System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute! +static readonly System.Windows.Forms.DockingAttribute.Default -> System.Windows.Forms.DockingAttribute! +static readonly System.Windows.Forms.FontDialog.EventApply -> object! +static readonly System.Windows.Forms.OSFeature.LayeredWindows -> object! +static readonly System.Windows.Forms.OSFeature.Themes -> object! +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Commands -> System.ComponentModel.Design.CommandID! +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Description -> System.ComponentModel.Design.CommandID! +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Hide -> System.ComponentModel.Design.CommandID! +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.Reset -> System.ComponentModel.Design.CommandID! +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuCommand -> System.Guid +static readonly System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.wfcMenuGroup -> System.Guid +static readonly System.Windows.Forms.TaskDialogIcon.Error -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.Information -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.None -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.Shield -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.ShieldBlueBar -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.ShieldErrorRedBar -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.ShieldGrayBar -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.ShieldSuccessGreenBar -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.ShieldWarningYellowBar -> System.Windows.Forms.TaskDialogIcon! +static readonly System.Windows.Forms.TaskDialogIcon.Warning -> System.Windows.Forms.TaskDialogIcon! +static System.Resources.ResXResourceReader.FromFileContents(string! fileContents) -> System.Resources.ResXResourceReader! +static System.Resources.ResXResourceReader.FromFileContents(string! fileContents, System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> System.Resources.ResXResourceReader! +static System.Resources.ResXResourceReader.FromFileContents(string! fileContents, System.Reflection.AssemblyName![]! assemblyNames) -> System.Resources.ResXResourceReader! +static System.Windows.Forms.Application.AddMessageFilter(System.Windows.Forms.IMessageFilter? value) -> void +static System.Windows.Forms.Application.AllowQuit.get -> bool +static System.Windows.Forms.Application.ApplicationExit -> System.EventHandler? +static System.Windows.Forms.Application.CommonAppDataPath.get -> string! +static System.Windows.Forms.Application.CommonAppDataRegistry.get -> Microsoft.Win32.RegistryKey! +static System.Windows.Forms.Application.CompanyName.get -> string? +static System.Windows.Forms.Application.CurrentCulture.get -> System.Globalization.CultureInfo! +static System.Windows.Forms.Application.CurrentCulture.set -> void +static System.Windows.Forms.Application.CurrentInputLanguage.get -> System.Windows.Forms.InputLanguage! +static System.Windows.Forms.Application.CurrentInputLanguage.set -> void +static System.Windows.Forms.Application.DoEvents() -> void +static System.Windows.Forms.Application.EnableVisualStyles() -> void +static System.Windows.Forms.Application.EnterThreadModal -> System.EventHandler? +static System.Windows.Forms.Application.ExecutablePath.get -> string! +static System.Windows.Forms.Application.Exit() -> void +static System.Windows.Forms.Application.Exit(System.ComponentModel.CancelEventArgs? e) -> void +static System.Windows.Forms.Application.ExitThread() -> void +static System.Windows.Forms.Application.FilterMessage(ref System.Windows.Forms.Message message) -> bool +static System.Windows.Forms.Application.HighDpiMode.get -> System.Windows.Forms.HighDpiMode +static System.Windows.Forms.Application.Idle -> System.EventHandler? +static System.Windows.Forms.Application.LeaveThreadModal -> System.EventHandler? +static System.Windows.Forms.Application.LocalUserAppDataPath.get -> string! +static System.Windows.Forms.Application.MessageLoop.get -> bool +static System.Windows.Forms.Application.OleRequired() -> System.Threading.ApartmentState +static System.Windows.Forms.Application.OnThreadException(System.Exception! t) -> void +static System.Windows.Forms.Application.OpenForms.get -> System.Windows.Forms.FormCollection! +static System.Windows.Forms.Application.ProductName.get -> string? +static System.Windows.Forms.Application.ProductVersion.get -> string! +static System.Windows.Forms.Application.RaiseIdle(System.EventArgs! e) -> void +static System.Windows.Forms.Application.RegisterMessageLoop(System.Windows.Forms.Application.MessageLoopCallback? callback) -> void +static System.Windows.Forms.Application.RemoveMessageFilter(System.Windows.Forms.IMessageFilter! value) -> void +static System.Windows.Forms.Application.RenderWithVisualStyles.get -> bool +static System.Windows.Forms.Application.Restart() -> void +static System.Windows.Forms.Application.Run() -> void +static System.Windows.Forms.Application.Run(System.Windows.Forms.ApplicationContext! context) -> void +static System.Windows.Forms.Application.Run(System.Windows.Forms.Form! mainForm) -> void +static System.Windows.Forms.Application.SafeTopLevelCaptionFormat.get -> string! +static System.Windows.Forms.Application.SafeTopLevelCaptionFormat.set -> void +static System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(bool defaultValue) -> void +static System.Windows.Forms.Application.SetDefaultFont(System.Drawing.Font! font) -> void +static System.Windows.Forms.Application.SetHighDpiMode(System.Windows.Forms.HighDpiMode highDpiMode) -> bool +static System.Windows.Forms.Application.SetSuspendState(System.Windows.Forms.PowerState state, bool force, bool disableWakeEvent) -> bool +static System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode mode) -> void +static System.Windows.Forms.Application.SetUnhandledExceptionMode(System.Windows.Forms.UnhandledExceptionMode mode, bool threadScope) -> void +static System.Windows.Forms.Application.StartupPath.get -> string! +static System.Windows.Forms.Application.ThreadException -> System.Threading.ThreadExceptionEventHandler? +static System.Windows.Forms.Application.ThreadExit -> System.EventHandler? +static System.Windows.Forms.Application.UnregisterMessageLoop() -> void +static System.Windows.Forms.Application.UserAppDataPath.get -> string! +static System.Windows.Forms.Application.UserAppDataRegistry.get -> Microsoft.Win32.RegistryKey! +static System.Windows.Forms.Application.UseVisualStyles.get -> bool +static System.Windows.Forms.Application.UseWaitCursor.get -> bool +static System.Windows.Forms.Application.UseWaitCursor.set -> void +static System.Windows.Forms.Application.VisualStyleState.get -> System.Windows.Forms.VisualStyles.VisualStyleState +static System.Windows.Forms.Application.VisualStyleState.set -> void +static System.Windows.Forms.AxHost.GetColorFromOleColor(uint color) -> System.Drawing.Color +static System.Windows.Forms.AxHost.GetOADateFromTime(System.DateTime time) -> double +static System.Windows.Forms.AxHost.GetOleColorFromColor(System.Drawing.Color color) -> uint +static System.Windows.Forms.AxHost.GetTimeFromOADate(double date) -> System.DateTime +static System.Windows.Forms.BindingContext.UpdateBinding(System.Windows.Forms.BindingContext? newBindingContext, System.Windows.Forms.Binding! binding) -> void +static System.Windows.Forms.BindingMemberInfo.operator !=(System.Windows.Forms.BindingMemberInfo a, System.Windows.Forms.BindingMemberInfo b) -> bool +static System.Windows.Forms.BindingMemberInfo.operator ==(System.Windows.Forms.BindingMemberInfo a, System.Windows.Forms.BindingMemberInfo b) -> bool +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? buttonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.PushButtonState state) -> void +static System.Windows.Forms.ButtonRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void +static System.Windows.Forms.ButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.PushButtonState state) -> bool +static System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState.get -> bool +static System.Windows.Forms.ButtonRenderer.RenderMatchingApplicationState.set -> void +static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void +static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void +static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void +static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? checkBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void +static System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.CheckBoxState state) -> void +static System.Windows.Forms.CheckBoxRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void +static System.Windows.Forms.CheckBoxRenderer.GetGlyphSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.CheckBoxState state) -> System.Drawing.Size +static System.Windows.Forms.CheckBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.CheckBoxState state) -> bool +static System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState.get -> bool +static System.Windows.Forms.CheckBoxRenderer.RenderMatchingApplicationState.set -> void +static System.Windows.Forms.Clipboard.Clear() -> void +static System.Windows.Forms.Clipboard.ContainsAudio() -> bool +static System.Windows.Forms.Clipboard.ContainsData(string? format) -> bool +static System.Windows.Forms.Clipboard.ContainsFileDropList() -> bool +static System.Windows.Forms.Clipboard.ContainsImage() -> bool +static System.Windows.Forms.Clipboard.ContainsText() -> bool +static System.Windows.Forms.Clipboard.ContainsText(System.Windows.Forms.TextDataFormat format) -> bool +static System.Windows.Forms.Clipboard.GetAudioStream() -> System.IO.Stream? +static System.Windows.Forms.Clipboard.GetData(string! format) -> object? +static System.Windows.Forms.Clipboard.GetDataObject() -> System.Windows.Forms.IDataObject? +static System.Windows.Forms.Clipboard.GetFileDropList() -> System.Collections.Specialized.StringCollection! +static System.Windows.Forms.Clipboard.GetImage() -> System.Drawing.Image? +static System.Windows.Forms.Clipboard.GetText() -> string! +static System.Windows.Forms.Clipboard.GetText(System.Windows.Forms.TextDataFormat format) -> string! +static System.Windows.Forms.Clipboard.SetAudio(byte[]! audioBytes) -> void +static System.Windows.Forms.Clipboard.SetAudio(System.IO.Stream! audioStream) -> void +static System.Windows.Forms.Clipboard.SetData(string! format, object! data) -> void +static System.Windows.Forms.Clipboard.SetDataObject(object! data) -> void +static System.Windows.Forms.Clipboard.SetDataObject(object! data, bool copy) -> void +static System.Windows.Forms.Clipboard.SetDataObject(object! data, bool copy, int retryTimes, int retryDelay) -> void +static System.Windows.Forms.Clipboard.SetFileDropList(System.Collections.Specialized.StringCollection! filePaths) -> void +static System.Windows.Forms.Clipboard.SetImage(System.Drawing.Image! image) -> void +static System.Windows.Forms.Clipboard.SetText(string! text) -> void +static System.Windows.Forms.Clipboard.SetText(string! text, System.Windows.Forms.TextDataFormat format) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawDropDownButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? comboBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ComboBoxState state) -> void +static System.Windows.Forms.ComboBoxRenderer.IsSupported.get -> bool +static System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls.get -> bool +static System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls.set -> void +static System.Windows.Forms.Control.DefaultBackColor.get -> System.Drawing.Color +static System.Windows.Forms.Control.DefaultFont.get -> System.Drawing.Font! +static System.Windows.Forms.Control.DefaultForeColor.get -> System.Drawing.Color +static System.Windows.Forms.Control.FromChildHandle(nint handle) -> System.Windows.Forms.Control? +static System.Windows.Forms.Control.FromHandle(nint handle) -> System.Windows.Forms.Control? +static System.Windows.Forms.Control.IsKeyLocked(System.Windows.Forms.Keys keyVal) -> bool +static System.Windows.Forms.Control.IsMnemonic(char charCode, string? text) -> bool +static System.Windows.Forms.Control.ModifierKeys.get -> System.Windows.Forms.Keys +static System.Windows.Forms.Control.MouseButtons.get -> System.Windows.Forms.MouseButtons +static System.Windows.Forms.Control.MousePosition.get -> System.Drawing.Point +static System.Windows.Forms.Control.PropagatingImeMode.get -> System.Windows.Forms.ImeMode +static System.Windows.Forms.Control.ReflectMessage(nint hWnd, ref System.Windows.Forms.Message m) -> bool +static System.Windows.Forms.ControlPaint.ContrastControlDark.get -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.CreateHBitmap16Bit(System.Drawing.Bitmap! bitmap, System.Drawing.Color background) -> nint +static System.Windows.Forms.ControlPaint.CreateHBitmapColorMask(System.Drawing.Bitmap! bitmap, nint monochromeMask) -> nint +static System.Windows.Forms.ControlPaint.CreateHBitmapTransparencyMask(System.Drawing.Bitmap! bitmap) -> nint +static System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color baseColor) -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.Dark(System.Drawing.Color baseColor, float percOfDarkDark) -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.DarkDark(System.Drawing.Color baseColor) -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Drawing.Color color, System.Windows.Forms.ButtonBorderStyle style) -> void +static System.Windows.Forms.ControlPaint.DrawBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Drawing.Color leftColor, int leftWidth, System.Windows.Forms.ButtonBorderStyle leftStyle, System.Drawing.Color topColor, int topWidth, System.Windows.Forms.ButtonBorderStyle topStyle, System.Drawing.Color rightColor, int rightWidth, System.Windows.Forms.ButtonBorderStyle rightStyle, System.Drawing.Color bottomColor, int bottomWidth, System.Windows.Forms.ButtonBorderStyle bottomStyle) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.Border3DStyle style) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.Border3DStyle style, System.Windows.Forms.Border3DSide sides) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.Border3DStyle style) -> void +static System.Windows.Forms.ControlPaint.DrawBorder3D(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.Border3DStyle style, System.Windows.Forms.Border3DSide sides) -> void +static System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.CaptionButton button, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawCaptionButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.CaptionButton button, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawCheckBox(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawComboButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawContainerGrabHandle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle) -> void +static System.Windows.Forms.ControlPaint.DrawFocusRectangle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawGrabHandle(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, bool primary, bool enabled) -> void +static System.Windows.Forms.ControlPaint.DrawGrid(System.Drawing.Graphics! graphics, System.Drawing.Rectangle area, System.Drawing.Size pixelsBetweenDots, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawImageDisabled(System.Drawing.Graphics! graphics, System.Drawing.Image! image, int x, int y, System.Drawing.Color background) -> void +static System.Windows.Forms.ControlPaint.DrawLockedFrame(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, bool primary) -> void +static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.MenuGlyph glyph) -> void +static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.MenuGlyph glyph, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.MenuGlyph glyph) -> void +static System.Windows.Forms.ControlPaint.DrawMenuGlyph(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.MenuGlyph glyph, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawMixedCheckBox(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawRadioButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawReversibleFrame(System.Drawing.Rectangle rectangle, System.Drawing.Color backColor, System.Windows.Forms.FrameStyle style) -> void +static System.Windows.Forms.ControlPaint.DrawReversibleLine(System.Drawing.Point start, System.Drawing.Point end, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics! graphics, int x, int y, int width, int height, System.Windows.Forms.ScrollButton button, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawScrollButton(System.Drawing.Graphics! graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ScrollButton button, System.Windows.Forms.ButtonState state) -> void +static System.Windows.Forms.ControlPaint.DrawSelectionFrame(System.Drawing.Graphics! graphics, bool active, System.Drawing.Rectangle outsideRect, System.Drawing.Rectangle insideRect, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics! graphics, System.Drawing.Color backColor, int x, int y, int width, int height) -> void +static System.Windows.Forms.ControlPaint.DrawSizeGrip(System.Drawing.Graphics! graphics, System.Drawing.Color backColor, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.Graphics! graphics, string! s, System.Drawing.Font! font, System.Drawing.Color color, System.Drawing.RectangleF layoutRectangle, System.Drawing.StringFormat! format) -> void +static System.Windows.Forms.ControlPaint.DrawStringDisabled(System.Drawing.IDeviceContext! dc, string! s, System.Drawing.Font! font, System.Drawing.Color color, System.Drawing.Rectangle layoutRectangle, System.Windows.Forms.TextFormatFlags format) -> void +static System.Windows.Forms.ControlPaint.DrawVisualStyleBorder(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ControlPaint.FillReversibleRectangle(System.Drawing.Rectangle rectangle, System.Drawing.Color backColor) -> void +static System.Windows.Forms.ControlPaint.Light(System.Drawing.Color baseColor) -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.Light(System.Drawing.Color baseColor, float percOfLightLight) -> System.Drawing.Color +static System.Windows.Forms.ControlPaint.LightLight(System.Drawing.Color baseColor) -> System.Drawing.Color +static System.Windows.Forms.Cursor.Clip.get -> System.Drawing.Rectangle +static System.Windows.Forms.Cursor.Clip.set -> void +static System.Windows.Forms.Cursor.Current.get -> System.Windows.Forms.Cursor? +static System.Windows.Forms.Cursor.Current.set -> void +static System.Windows.Forms.Cursor.Hide() -> void +static System.Windows.Forms.Cursor.operator !=(System.Windows.Forms.Cursor? left, System.Windows.Forms.Cursor? right) -> bool +static System.Windows.Forms.Cursor.operator ==(System.Windows.Forms.Cursor? left, System.Windows.Forms.Cursor? right) -> bool +static System.Windows.Forms.Cursor.Position.get -> System.Drawing.Point +static System.Windows.Forms.Cursor.Position.set -> void +static System.Windows.Forms.Cursor.Show() -> void +static System.Windows.Forms.Cursors.AppStarting.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.Arrow.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.Cross.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.Default.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.Hand.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.Help.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.HSplit.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.IBeam.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.No.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.NoMove2D.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.NoMoveHoriz.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.NoMoveVert.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanEast.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanNE.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanNorth.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanNW.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanSE.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanSouth.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanSW.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.PanWest.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.SizeAll.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.SizeNESW.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.SizeNS.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.SizeNWSE.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.SizeWE.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.UpArrow.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.VSplit.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.Cursors.WaitCursor.get -> System.Windows.Forms.Cursor! +static System.Windows.Forms.DataFormats.GetFormat(int id) -> System.Windows.Forms.DataFormats.Format! +static System.Windows.Forms.DataFormats.GetFormat(string! format) -> System.Windows.Forms.DataFormats.Format! +static System.Windows.Forms.DateTimePicker.MaximumDateTime.get -> System.DateTime +static System.Windows.Forms.DateTimePicker.MinimumDateTime.get -> System.DateTime +static System.Windows.Forms.FeatureSupport.GetVersionPresent(string! featureClassName, string! featureConstName) -> System.Version? +static System.Windows.Forms.FeatureSupport.IsPresent(string! featureClassName, string! featureConstName) -> bool +static System.Windows.Forms.FeatureSupport.IsPresent(string! featureClassName, string! featureConstName, System.Version! minimumVersion) -> bool +static System.Windows.Forms.Form.ActiveForm.get -> System.Windows.Forms.Form? +static System.Windows.Forms.Form.GetAutoScaleSize(System.Drawing.Font! font) -> System.Drawing.SizeF +static System.Windows.Forms.GridItemCollection.Empty -> System.Windows.Forms.GridItemCollection! +static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Drawing.Color textColor, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void +static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Drawing.Color textColor, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void +static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void +static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? groupBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void +static System.Windows.Forms.GroupBoxRenderer.DrawGroupBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.GroupBoxState state) -> void +static System.Windows.Forms.GroupBoxRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void +static System.Windows.Forms.GroupBoxRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.GroupBoxState state) -> bool +static System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState.get -> bool +static System.Windows.Forms.GroupBoxRenderer.RenderMatchingApplicationState.set -> void +static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url) -> void +static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, string? keyword) -> void +static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, System.Windows.Forms.HelpNavigator command, object? parameter) -> void +static System.Windows.Forms.Help.ShowHelp(System.Windows.Forms.Control? parent, string? url, System.Windows.Forms.HelpNavigator navigator) -> void +static System.Windows.Forms.Help.ShowHelpIndex(System.Windows.Forms.Control? parent, string? url) -> void +static System.Windows.Forms.Help.ShowPopup(System.Windows.Forms.Control? parent, string! caption, System.Drawing.Point location) -> void +static System.Windows.Forms.HtmlDocument.operator !=(System.Windows.Forms.HtmlDocument? left, System.Windows.Forms.HtmlDocument? right) -> bool +static System.Windows.Forms.HtmlDocument.operator ==(System.Windows.Forms.HtmlDocument? left, System.Windows.Forms.HtmlDocument? right) -> bool +static System.Windows.Forms.ImeContext.Disable(nint handle) -> void +static System.Windows.Forms.ImeContext.Enable(nint handle) -> void +static System.Windows.Forms.ImeContext.GetImeMode(nint handle) -> System.Windows.Forms.ImeMode +static System.Windows.Forms.ImeContext.IsOpen(nint handle) -> bool +static System.Windows.Forms.ImeContext.SetImeStatus(System.Windows.Forms.ImeMode imeMode, nint handle) -> void +static System.Windows.Forms.ImeContext.SetOpenStatus(bool open, nint handle) -> void +static System.Windows.Forms.ImeModeConversion.ImeModeConversionBits.get -> System.Collections.Generic.Dictionary! +static System.Windows.Forms.ImeModeConversion.IsCurrentConversionTableSupported.get -> bool +static System.Windows.Forms.InputLanguage.CurrentInputLanguage.get -> System.Windows.Forms.InputLanguage! +static System.Windows.Forms.InputLanguage.CurrentInputLanguage.set -> void +static System.Windows.Forms.InputLanguage.DefaultInputLanguage.get -> System.Windows.Forms.InputLanguage! +static System.Windows.Forms.InputLanguage.FromCulture(System.Globalization.CultureInfo! culture) -> System.Windows.Forms.InputLanguage? +static System.Windows.Forms.InputLanguage.InstalledInputLanguages.get -> System.Windows.Forms.InputLanguageCollection! +static System.Windows.Forms.LinkArea.operator !=(System.Windows.Forms.LinkArea linkArea1, System.Windows.Forms.LinkArea linkArea2) -> bool +static System.Windows.Forms.LinkArea.operator ==(System.Windows.Forms.LinkArea linkArea1, System.Windows.Forms.LinkArea linkArea2) -> bool +static System.Windows.Forms.ListBindingHelper.GetList(object? dataSource, string? dataMember) -> object? +static System.Windows.Forms.ListBindingHelper.GetList(object? list) -> object? +static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? dataSource, string? dataMember, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> System.ComponentModel.PropertyDescriptorCollection! +static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? list) -> System.ComponentModel.PropertyDescriptorCollection! +static System.Windows.Forms.ListBindingHelper.GetListItemProperties(object? list, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> System.ComponentModel.PropertyDescriptorCollection! +static System.Windows.Forms.ListBindingHelper.GetListItemType(object? dataSource, string? dataMember) -> System.Type? +static System.Windows.Forms.ListBindingHelper.GetListItemType(object? list) -> System.Type? +static System.Windows.Forms.ListBindingHelper.GetListName(object? list, System.ComponentModel.PropertyDescriptor![]? listAccessors) -> string! +static System.Windows.Forms.MessageBox.Show(string? text) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, bool displayHelpButton) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, string! keyword) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator, object? param) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, string! keyword) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.MessageBox.Show(System.Windows.Forms.IWin32Window? owner, string? text, string? caption, System.Windows.Forms.MessageBoxButtons buttons, System.Windows.Forms.MessageBoxIcon icon, System.Windows.Forms.MessageBoxDefaultButton defaultButton, System.Windows.Forms.MessageBoxOptions options, string! helpFilePath, System.Windows.Forms.HelpNavigator navigator, object? param) -> System.Windows.Forms.DialogResult +static System.Windows.Forms.NativeWindow.FromHandle(nint handle) -> System.Windows.Forms.NativeWindow? +static System.Windows.Forms.OSFeature.Feature.get -> System.Windows.Forms.OSFeature! +static System.Windows.Forms.OSFeature.IsPresent(System.Windows.Forms.SystemParameter enumVal) -> bool +static System.Windows.Forms.OwnerDrawPropertyBag.Copy(System.Windows.Forms.OwnerDrawPropertyBag? value) -> System.Windows.Forms.OwnerDrawPropertyBag! +static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonCheckedGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlight.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonCheckedHighlightBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedHighlight.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonPressedHighlightBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlight.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ButtonSelectedHighlightBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.CheckBackground.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.CheckPressedBackground.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.CheckSelectedBackground.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.GripDark.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.GripLight.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ImageMarginRevealedGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemPressedGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemSelected.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuItemSelectedGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuStripGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.MenuStripGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.OverflowButtonGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.RaftingContainerGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.RaftingContainerGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.SeparatorDark.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.SeparatorLight.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.StatusStripBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.StatusStripGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.StatusStripGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripBorder.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripContentPanelGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripDropDownBackground.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripGradientMiddle.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientBegin.get -> System.Drawing.Color +static System.Windows.Forms.ProfessionalColors.ToolStripPanelGradientEnd.get -> System.Drawing.Color +static System.Windows.Forms.ProgressBarRenderer.ChunkSpaceThickness.get -> int +static System.Windows.Forms.ProgressBarRenderer.ChunkThickness.get -> int +static System.Windows.Forms.ProgressBarRenderer.DrawHorizontalBar(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ProgressBarRenderer.DrawHorizontalChunks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ProgressBarRenderer.DrawVerticalBar(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ProgressBarRenderer.DrawVerticalChunks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.ProgressBarRenderer.IsSupported.get -> bool +static System.Windows.Forms.RadioButtonRenderer.DrawParentBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void +static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void +static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void +static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void +static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Drawing.Rectangle textBounds, string? radioButtonText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageBounds, bool focused, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void +static System.Windows.Forms.RadioButtonRenderer.DrawRadioButton(System.Drawing.Graphics! g, System.Drawing.Point glyphLocation, System.Windows.Forms.VisualStyles.RadioButtonState state) -> void +static System.Windows.Forms.RadioButtonRenderer.GetGlyphSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.RadioButtonState state) -> System.Drawing.Size +static System.Windows.Forms.RadioButtonRenderer.IsBackgroundPartiallyTransparent(System.Windows.Forms.VisualStyles.RadioButtonState state) -> bool +static System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState.get -> bool +static System.Windows.Forms.RadioButtonRenderer.RenderMatchingApplicationState.set -> void +static System.Windows.Forms.Screen.AllScreens.get -> System.Windows.Forms.Screen![]! +static System.Windows.Forms.Screen.FromControl(System.Windows.Forms.Control! control) -> System.Windows.Forms.Screen! +static System.Windows.Forms.Screen.FromHandle(nint hwnd) -> System.Windows.Forms.Screen! +static System.Windows.Forms.Screen.FromPoint(System.Drawing.Point point) -> System.Windows.Forms.Screen! +static System.Windows.Forms.Screen.FromRectangle(System.Drawing.Rectangle rect) -> System.Windows.Forms.Screen! +static System.Windows.Forms.Screen.GetBounds(System.Drawing.Point pt) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.GetBounds(System.Drawing.Rectangle rect) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.GetBounds(System.Windows.Forms.Control! ctl) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Point pt) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.GetWorkingArea(System.Drawing.Rectangle rect) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.GetWorkingArea(System.Windows.Forms.Control! ctl) -> System.Drawing.Rectangle +static System.Windows.Forms.Screen.PrimaryScreen.get -> System.Windows.Forms.Screen? +static System.Windows.Forms.ScrollBarRenderer.DrawArrowButton(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawHorizontalThumbGrip(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawLeftHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawLowerVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawRightHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawSizeBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawUpperVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.DrawVerticalThumbGrip(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ScrollBarState state) -> void +static System.Windows.Forms.ScrollBarRenderer.GetSizeBoxSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.ScrollBarState state) -> System.Drawing.Size +static System.Windows.Forms.ScrollBarRenderer.GetThumbGripSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.ScrollBarState state) -> System.Drawing.Size +static System.Windows.Forms.ScrollBarRenderer.IsSupported.get -> bool +static System.Windows.Forms.SendKeys.Flush() -> void +static System.Windows.Forms.SendKeys.Send(string! keys) -> void +static System.Windows.Forms.SendKeys.SendWait(string! keys) -> void +static System.Windows.Forms.SystemInformation.ActiveWindowTrackingDelay.get -> int +static System.Windows.Forms.SystemInformation.ArrangeDirection.get -> System.Windows.Forms.ArrangeDirection +static System.Windows.Forms.SystemInformation.ArrangeStartingPosition.get -> System.Windows.Forms.ArrangeStartingPosition +static System.Windows.Forms.SystemInformation.BootMode.get -> System.Windows.Forms.BootMode +static System.Windows.Forms.SystemInformation.Border3DSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.BorderMultiplierFactor.get -> int +static System.Windows.Forms.SystemInformation.BorderSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.CaptionButtonSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.CaptionHeight.get -> int +static System.Windows.Forms.SystemInformation.CaretBlinkTime.get -> int +static System.Windows.Forms.SystemInformation.CaretWidth.get -> int +static System.Windows.Forms.SystemInformation.ComputerName.get -> string! +static System.Windows.Forms.SystemInformation.CursorSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.DbcsEnabled.get -> bool +static System.Windows.Forms.SystemInformation.DebugOS.get -> bool +static System.Windows.Forms.SystemInformation.DoubleClickSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.DoubleClickTime.get -> int +static System.Windows.Forms.SystemInformation.DragFullWindows.get -> bool +static System.Windows.Forms.SystemInformation.DragSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.FixedFrameBorderSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.FontSmoothingContrast.get -> int +static System.Windows.Forms.SystemInformation.FontSmoothingType.get -> int +static System.Windows.Forms.SystemInformation.FrameBorderSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.GetBorderSizeForDpi(int dpi) -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.GetHorizontalScrollBarArrowWidthForDpi(int dpi) -> int +static System.Windows.Forms.SystemInformation.GetHorizontalScrollBarHeightForDpi(int dpi) -> int +static System.Windows.Forms.SystemInformation.GetMenuFontForDpi(int dpi) -> System.Drawing.Font! +static System.Windows.Forms.SystemInformation.GetVerticalScrollBarWidthForDpi(int dpi) -> int +static System.Windows.Forms.SystemInformation.HighContrast.get -> bool +static System.Windows.Forms.SystemInformation.HorizontalFocusThickness.get -> int +static System.Windows.Forms.SystemInformation.HorizontalResizeBorderThickness.get -> int +static System.Windows.Forms.SystemInformation.HorizontalScrollBarArrowWidth.get -> int +static System.Windows.Forms.SystemInformation.HorizontalScrollBarHeight.get -> int +static System.Windows.Forms.SystemInformation.HorizontalScrollBarThumbWidth.get -> int +static System.Windows.Forms.SystemInformation.IconHorizontalSpacing.get -> int +static System.Windows.Forms.SystemInformation.IconSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.IconSpacingSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.IconVerticalSpacing.get -> int +static System.Windows.Forms.SystemInformation.IsActiveWindowTrackingEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsComboBoxAnimationEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsDropShadowEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsFlatMenuEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsFontSmoothingEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsHotTrackingEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsIconTitleWrappingEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsKeyboardPreferred.get -> bool +static System.Windows.Forms.SystemInformation.IsListBoxSmoothScrollingEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsMenuAnimationEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsMenuFadeEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsMinimizeRestoreAnimationEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsSelectionFadeEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsSnapToDefaultEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsTitleBarGradientEnabled.get -> bool +static System.Windows.Forms.SystemInformation.IsToolTipAnimationEnabled.get -> bool +static System.Windows.Forms.SystemInformation.KanjiWindowHeight.get -> int +static System.Windows.Forms.SystemInformation.KeyboardDelay.get -> int +static System.Windows.Forms.SystemInformation.KeyboardSpeed.get -> int +static System.Windows.Forms.SystemInformation.MaxWindowTrackSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MenuAccessKeysUnderlined.get -> bool +static System.Windows.Forms.SystemInformation.MenuBarButtonSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MenuButtonSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MenuCheckSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MenuFont.get -> System.Drawing.Font! +static System.Windows.Forms.SystemInformation.MenuHeight.get -> int +static System.Windows.Forms.SystemInformation.MenuShowDelay.get -> int +static System.Windows.Forms.SystemInformation.MidEastEnabled.get -> bool +static System.Windows.Forms.SystemInformation.MinimizedWindowSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MinimizedWindowSpacingSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MinimumWindowSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MinWindowTrackSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MonitorCount.get -> int +static System.Windows.Forms.SystemInformation.MonitorsSameDisplayFormat.get -> bool +static System.Windows.Forms.SystemInformation.MouseButtons.get -> int +static System.Windows.Forms.SystemInformation.MouseButtonsSwapped.get -> bool +static System.Windows.Forms.SystemInformation.MouseHoverSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.MouseHoverTime.get -> int +static System.Windows.Forms.SystemInformation.MousePresent.get -> bool +static System.Windows.Forms.SystemInformation.MouseSpeed.get -> int +static System.Windows.Forms.SystemInformation.MouseWheelPresent.get -> bool +static System.Windows.Forms.SystemInformation.MouseWheelScrollDelta.get -> int +static System.Windows.Forms.SystemInformation.MouseWheelScrollLines.get -> int +static System.Windows.Forms.SystemInformation.NativeMouseWheelSupport.get -> bool +static System.Windows.Forms.SystemInformation.Network.get -> bool +static System.Windows.Forms.SystemInformation.PenWindows.get -> bool +static System.Windows.Forms.SystemInformation.PopupMenuAlignment.get -> System.Windows.Forms.LeftRightAlignment +static System.Windows.Forms.SystemInformation.PowerStatus.get -> System.Windows.Forms.PowerStatus! +static System.Windows.Forms.SystemInformation.PrimaryMonitorMaximizedWindowSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.PrimaryMonitorSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.RightAlignedMenus.get -> bool +static System.Windows.Forms.SystemInformation.ScreenOrientation.get -> System.Windows.Forms.ScreenOrientation +static System.Windows.Forms.SystemInformation.Secure.get -> bool +static System.Windows.Forms.SystemInformation.ShowSounds.get -> bool +static System.Windows.Forms.SystemInformation.SizingBorderWidth.get -> int +static System.Windows.Forms.SystemInformation.SmallCaptionButtonSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.SmallIconSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.TerminalServerSession.get -> bool +static System.Windows.Forms.SystemInformation.ToolWindowCaptionButtonSize.get -> System.Drawing.Size +static System.Windows.Forms.SystemInformation.ToolWindowCaptionHeight.get -> int +static System.Windows.Forms.SystemInformation.UIEffectsEnabled.get -> bool +static System.Windows.Forms.SystemInformation.UserDomainName.get -> string! +static System.Windows.Forms.SystemInformation.UserInteractive.get -> bool +static System.Windows.Forms.SystemInformation.UserName.get -> string! +static System.Windows.Forms.SystemInformation.VerticalFocusThickness.get -> int +static System.Windows.Forms.SystemInformation.VerticalResizeBorderThickness.get -> int +static System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeight.get -> int +static System.Windows.Forms.SystemInformation.VerticalScrollBarArrowHeightForDpi(int dpi) -> int +static System.Windows.Forms.SystemInformation.VerticalScrollBarThumbHeight.get -> int +static System.Windows.Forms.SystemInformation.VerticalScrollBarWidth.get -> int +static System.Windows.Forms.SystemInformation.VirtualScreen.get -> System.Drawing.Rectangle +static System.Windows.Forms.SystemInformation.WorkingArea.get -> System.Drawing.Rectangle +static System.Windows.Forms.TableLayoutPanelCellPosition.operator !=(System.Windows.Forms.TableLayoutPanelCellPosition p1, System.Windows.Forms.TableLayoutPanelCellPosition p2) -> bool +static System.Windows.Forms.TableLayoutPanelCellPosition.operator ==(System.Windows.Forms.TableLayoutPanelCellPosition p1, System.Windows.Forms.TableLayoutPanelCellPosition p2) -> bool +static System.Windows.Forms.TabPage.GetTabPageOfComponent(object? comp) -> System.Windows.Forms.TabPage? +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? tabItemText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image, System.Drawing.Rectangle imageRectangle, bool focused, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabItem(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TabItemState state) -> void +static System.Windows.Forms.TabRenderer.DrawTabPage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.TabRenderer.IsSupported.get -> bool +static System.Windows.Forms.TaskDialog.ShowDialog(nint hwndOwner, System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.IWin32Window! owner, System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialog.ShowDialog(System.Windows.Forms.TaskDialogPage! page, System.Windows.Forms.TaskDialogStartupLocation startupLocation = System.Windows.Forms.TaskDialogStartupLocation.CenterOwner) -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Abort.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Cancel.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Close.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Continue.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Help.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Ignore.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.No.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.OK.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.operator !=(System.Windows.Forms.TaskDialogButton? b1, System.Windows.Forms.TaskDialogButton? b2) -> bool +static System.Windows.Forms.TaskDialogButton.operator ==(System.Windows.Forms.TaskDialogButton? b1, System.Windows.Forms.TaskDialogButton? b2) -> bool +static System.Windows.Forms.TaskDialogButton.Retry.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.TryAgain.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogButton.Yes.get -> System.Windows.Forms.TaskDialogButton! +static System.Windows.Forms.TaskDialogFootnote.implicit operator System.Windows.Forms.TaskDialogFootnote!(string! footnoteText) -> System.Windows.Forms.TaskDialogFootnote! +static System.Windows.Forms.TaskDialogVerificationCheckBox.implicit operator System.Windows.Forms.TaskDialogVerificationCheckBox!(string! verificationText) -> System.Windows.Forms.TaskDialogVerificationCheckBox! +static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.TextBoxState state) -> void +static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Drawing.Rectangle textBounds, System.Windows.Forms.VisualStyles.TextBoxState state) -> void +static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Windows.Forms.TextFormatFlags flags, System.Windows.Forms.VisualStyles.TextBoxState state) -> void +static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, string? textBoxText, System.Drawing.Font? font, System.Windows.Forms.VisualStyles.TextBoxState state) -> void +static System.Windows.Forms.TextBoxRenderer.DrawTextBox(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TextBoxState state) -> void +static System.Windows.Forms.TextBoxRenderer.IsSupported.get -> bool +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font! font, System.Drawing.Point pt, System.Drawing.Color foreColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font! font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Point pt, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Rectangle bounds, System.Drawing.Color foreColor, System.Windows.Forms.TextFormatFlags flags) -> void +static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, string? text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.Drawing.IDeviceContext! dc, System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize) -> System.Drawing.Size +static System.Windows.Forms.TextRenderer.MeasureText(System.ReadOnlySpan text, System.Drawing.Font? font, System.Drawing.Size proposedSize, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Size +static System.Windows.Forms.ToolStrip.SetItemParent(System.Windows.Forms.ToolStripItem! item, System.Windows.Forms.ToolStrip! parent) -> void +static System.Windows.Forms.ToolStripManager.IsShortcutDefined(System.Windows.Forms.Keys shortcut) -> bool +static System.Windows.Forms.ToolStripManager.IsValidShortcut(System.Windows.Forms.Keys shortcut) -> bool +static System.Windows.Forms.ToolStripManager.RendererChanged -> System.EventHandler? +static System.Windows.Forms.ToolStripManager.RenderMode.get -> System.Windows.Forms.ToolStripManagerRenderMode +static System.Windows.Forms.ToolStripManager.RenderMode.set -> void +static System.Windows.Forms.ToolStripManager.VisualStylesEnabled.get -> bool +static System.Windows.Forms.ToolStripManager.VisualStylesEnabled.set -> void +static System.Windows.Forms.ToolStripRenderer.CreateDisabledImage(System.Drawing.Image! normalImage) -> System.Drawing.Image! +static System.Windows.Forms.ToolStripRenderer.Offset2X -> int +static System.Windows.Forms.ToolStripRenderer.Offset2Y -> int +static System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded() -> void +static System.Windows.Forms.ToolStripRenderer.ScaleArrowOffsetsIfNeeded(int dpi) -> void +static System.Windows.Forms.TrackBarRenderer.DrawBottomPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawHorizontalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawHorizontalTicks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, int numTicks, System.Windows.Forms.VisualStyles.EdgeStyle edgeStyle) -> void +static System.Windows.Forms.TrackBarRenderer.DrawHorizontalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.TrackBarRenderer.DrawLeftPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawRightPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawTopPointingThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawVerticalThumb(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> void +static System.Windows.Forms.TrackBarRenderer.DrawVerticalTicks(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, int numTicks, System.Windows.Forms.VisualStyles.EdgeStyle edgeStyle) -> void +static System.Windows.Forms.TrackBarRenderer.DrawVerticalTrack(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds) -> void +static System.Windows.Forms.TrackBarRenderer.GetBottomPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size +static System.Windows.Forms.TrackBarRenderer.GetLeftPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size +static System.Windows.Forms.TrackBarRenderer.GetRightPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size +static System.Windows.Forms.TrackBarRenderer.GetTopPointingThumbSize(System.Drawing.Graphics! g, System.Windows.Forms.VisualStyles.TrackBarThumbState state) -> System.Drawing.Size +static System.Windows.Forms.TrackBarRenderer.IsSupported.get -> bool +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.CheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.MixedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox.UncheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Default.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.CheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton.UncheckedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.CreateElement(string! className, int part, int state) -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin.SelectedPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedDown.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow.SortedUp.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item.SelectedNotFocus.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Demoted.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.DownPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.LeftPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.RightPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpDisabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpHot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpNormal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton.UpPressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.LeftAlign.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox.RightAlign.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Assist.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.ReadOnly.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Checked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.HotChecked.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Link.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Link.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Focused.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Closed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph.Opened.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.Selected.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item.SelectedNotFocus.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Active.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption.Inactive.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Disabled.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Hot.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Normal.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb.Pressed.get -> System.Windows.Forms.VisualStyles.VisualStyleElement! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Author.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.ColorScheme.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Company.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.ControlHighlightHot.get -> System.Drawing.Color +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Copyright.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Description.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.DisplayName.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.IsEnabledByUser.get -> bool +static System.Windows.Forms.VisualStyles.VisualStyleInformation.IsSupportedByOS.get -> bool +static System.Windows.Forms.VisualStyles.VisualStyleInformation.MinimumColorDepth.get -> int +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Size.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.SupportsFlatMenus.get -> bool +static System.Windows.Forms.VisualStyles.VisualStyleInformation.TextControlBorder.get -> System.Drawing.Color +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Url.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleInformation.Version.get -> string! +static System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> bool +static System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsSupported.get -> bool +static System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall.get -> bool +static System.Windows.Forms.WindowsFormsSynchronizationContext.AutoInstall.set -> void +static System.Windows.Forms.WindowsFormsSynchronizationContext.Uninstall() -> void +System.Drawing.Design.IPropertyValueUIService +System.Drawing.Design.IPropertyValueUIService.AddPropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler! newHandler) -> void +System.Drawing.Design.IPropertyValueUIService.GetPropertyUIValueItems(System.ComponentModel.ITypeDescriptorContext! context, System.ComponentModel.PropertyDescriptor! propDesc) -> System.Drawing.Design.PropertyValueUIItem![]! +System.Drawing.Design.IPropertyValueUIService.NotifyPropertyValueUIItemsChanged() -> void +System.Drawing.Design.IPropertyValueUIService.PropertyUIValueItemsChanged -> System.EventHandler? +System.Drawing.Design.IPropertyValueUIService.RemovePropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler! newHandler) -> void +System.Drawing.Design.PaintValueEventArgs +System.Drawing.Design.PaintValueEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Drawing.Design.PaintValueEventArgs.Context.get -> System.ComponentModel.ITypeDescriptorContext? +System.Drawing.Design.PaintValueEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Drawing.Design.PaintValueEventArgs.PaintValueEventArgs(System.ComponentModel.ITypeDescriptorContext? context, object? value, System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds) -> void +System.Drawing.Design.PaintValueEventArgs.Value.get -> object? +System.Drawing.Design.PropertyValueUIHandler +System.Drawing.Design.PropertyValueUIItem +System.Drawing.Design.PropertyValueUIItem.PropertyValueUIItem(System.Drawing.Image! uiItemImage, System.Drawing.Design.PropertyValueUIItemInvokeHandler! handler, string? tooltip) -> void +System.Drawing.Design.PropertyValueUIItemInvokeHandler +System.Drawing.Design.UITypeEditor +System.Drawing.Design.UITypeEditor.EditValue(System.IServiceProvider! provider, object? value) -> object? +System.Drawing.Design.UITypeEditor.GetEditStyle() -> System.Drawing.Design.UITypeEditorEditStyle +System.Drawing.Design.UITypeEditor.GetPaintValueSupported() -> bool +System.Drawing.Design.UITypeEditor.PaintValue(object? value, System.Drawing.Graphics! canvas, System.Drawing.Rectangle rectangle) -> void +System.Drawing.Design.UITypeEditor.UITypeEditor() -> void +System.Drawing.Design.UITypeEditorEditStyle +System.Drawing.Design.UITypeEditorEditStyle.DropDown = 3 -> System.Drawing.Design.UITypeEditorEditStyle +System.Drawing.Design.UITypeEditorEditStyle.Modal = 2 -> System.Drawing.Design.UITypeEditorEditStyle +System.Drawing.Design.UITypeEditorEditStyle.None = 1 -> System.Drawing.Design.UITypeEditorEditStyle +System.Resources.ResXDataNode +System.Resources.ResXDataNode.Comment.get -> string! +System.Resources.ResXDataNode.Comment.set -> void +System.Resources.ResXDataNode.FileRef.get -> System.Resources.ResXFileRef? +System.Resources.ResXDataNode.GetNodePosition() -> System.Drawing.Point +System.Resources.ResXDataNode.GetValue(System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> object? +System.Resources.ResXDataNode.GetValue(System.Reflection.AssemblyName![]? names) -> object? +System.Resources.ResXDataNode.GetValueTypeName(System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> string? +System.Resources.ResXDataNode.GetValueTypeName(System.Reflection.AssemblyName![]? names) -> string? +System.Resources.ResXDataNode.Name.get -> string! +System.Resources.ResXDataNode.Name.set -> void +System.Resources.ResXDataNode.ResXDataNode(string! name, object? value) -> void +System.Resources.ResXDataNode.ResXDataNode(string! name, object? value, System.Func? typeNameConverter) -> void +System.Resources.ResXDataNode.ResXDataNode(string! name, System.Resources.ResXFileRef! fileRef) -> void +System.Resources.ResXDataNode.ResXDataNode(string! name, System.Resources.ResXFileRef! fileRef, System.Func? typeNameConverter) -> void +System.Resources.ResXFileRef +System.Resources.ResXFileRef.Converter +System.Resources.ResXFileRef.Converter.Converter() -> void +System.Resources.ResXFileRef.FileName.get -> string! +System.Resources.ResXFileRef.ResXFileRef(string! fileName, string! typeName) -> void +System.Resources.ResXFileRef.ResXFileRef(string! fileName, string! typeName, System.Text.Encoding! textFileEncoding) -> void +System.Resources.ResXFileRef.TextFileEncoding.get -> System.Text.Encoding? +System.Resources.ResXFileRef.TypeName.get -> string! +System.Resources.ResXResourceReader +System.Resources.ResXResourceReader.~ResXResourceReader() -> void +System.Resources.ResXResourceReader.BasePath.get -> string? +System.Resources.ResXResourceReader.BasePath.set -> void +System.Resources.ResXResourceReader.Close() -> void +System.Resources.ResXResourceReader.GetEnumerator() -> System.Collections.IDictionaryEnumerator! +System.Resources.ResXResourceReader.GetMetadataEnumerator() -> System.Collections.IDictionaryEnumerator! +System.Resources.ResXResourceReader.ResXResourceReader(string! fileName) -> void +System.Resources.ResXResourceReader.ResXResourceReader(string! fileName, System.ComponentModel.Design.ITypeResolutionService? typeResolver) -> void +System.Resources.ResXResourceReader.ResXResourceReader(string! fileName, System.Reflection.AssemblyName![]! assemblyNames) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream, System.ComponentModel.Design.ITypeResolutionService! typeResolver) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.Stream! stream, System.Reflection.AssemblyName![]! assemblyNames) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader, System.ComponentModel.Design.ITypeResolutionService! typeResolver) -> void +System.Resources.ResXResourceReader.ResXResourceReader(System.IO.TextReader! reader, System.Reflection.AssemblyName![]! assemblyNames) -> void +System.Resources.ResXResourceReader.UseResXDataNodes.get -> bool +System.Resources.ResXResourceReader.UseResXDataNodes.set -> void +System.Resources.ResXResourceSet +System.Resources.ResXResourceSet.ResXResourceSet(string! fileName) -> void +System.Resources.ResXResourceSet.ResXResourceSet(System.IO.Stream! stream) -> void +System.Resources.ResXResourceWriter +System.Resources.ResXResourceWriter.~ResXResourceWriter() -> void +System.Resources.ResXResourceWriter.AddMetadata(string! name, byte[]! value) -> void +System.Resources.ResXResourceWriter.AddMetadata(string! name, object? value) -> void +System.Resources.ResXResourceWriter.AddMetadata(string! name, string? value) -> void +System.Resources.ResXResourceWriter.AddResource(string! name, byte[]? value) -> void +System.Resources.ResXResourceWriter.AddResource(string! name, object? value) -> void +System.Resources.ResXResourceWriter.AddResource(string! name, string? value) -> void +System.Resources.ResXResourceWriter.AddResource(System.Resources.ResXDataNode! node) -> void +System.Resources.ResXResourceWriter.BasePath.get -> string? +System.Resources.ResXResourceWriter.BasePath.set -> void +System.Resources.ResXResourceWriter.Close() -> void +System.Resources.ResXResourceWriter.Generate() -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(string! fileName) -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(string! fileName, System.Func! typeNameConverter) -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.Stream! stream) -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.Stream! stream, System.Func! typeNameConverter) -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.TextWriter! textWriter) -> void +System.Resources.ResXResourceWriter.ResXResourceWriter(System.IO.TextWriter! textWriter, System.Func! typeNameConverter) -> void +System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.AcceleratorChange = 32786 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Create = 32768 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.DefaultActionChange = 32785 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.DescriptionChange = 32781 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Destroy = 32769 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Focus = 32773 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.HelpChange = 32784 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Hide = 32771 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.LocationChange = 32779 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.NameChange = 32780 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.ParentChange = 32783 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Reorder = 32772 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Selection = 32774 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SelectionAdd = 32775 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SelectionRemove = 32776 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SelectionWithin = 32777 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.Show = 32770 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.StateChange = 32778 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemAlert = 2 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemCaptureEnd = 9 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemCaptureStart = 8 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemContextHelpEnd = 13 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemContextHelpStart = 12 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemDialogEnd = 17 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemDialogStart = 16 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemDragDropEnd = 15 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemDragDropStart = 14 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemForeground = 3 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMenuEnd = 5 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMenuPopupEnd = 7 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMenuPopupStart = 6 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMenuStart = 4 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMinimizeEnd = 23 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMinimizeStart = 22 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMoveSizeEnd = 11 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemMoveSizeStart = 10 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemScrollingEnd = 19 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemScrollingStart = 18 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemSound = 1 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemSwitchEnd = 21 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.SystemSwitchStart = 20 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleEvents.ValueChange = 32782 -> System.Windows.Forms.AccessibleEvents +System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Down = 2 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.FirstChild = 7 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.LastChild = 8 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Left = 3 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Next = 5 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Previous = 6 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Right = 4 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleNavigation.Up = 1 -> System.Windows.Forms.AccessibleNavigation +System.Windows.Forms.AccessibleObject +System.Windows.Forms.AccessibleObject.AccessibleObject() -> void +System.Windows.Forms.AccessibleObject.RaiseAutomationNotification(System.Windows.Forms.Automation.AutomationNotificationKind notificationKind, System.Windows.Forms.Automation.AutomationNotificationProcessing notificationProcessing, string? notificationText) -> bool +System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(nint handle) -> void +System.Windows.Forms.AccessibleObject.UseStdAccessibleObjects(nint handle, int objid) -> void +System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Alert = 8 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Animation = 54 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Application = 14 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Border = 19 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ButtonDropDown = 56 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ButtonDropDownGrid = 58 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ButtonMenu = 57 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Caret = 7 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Cell = 29 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Character = 32 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Chart = 17 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.CheckButton = 44 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Client = 10 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Clock = 61 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Column = 27 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ColumnHeader = 25 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ComboBox = 46 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Cursor = 6 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Default = -1 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Diagram = 53 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Dial = 49 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Dialog = 18 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Document = 15 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.DropList = 47 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Equation = 55 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Graphic = 40 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Grip = 4 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Grouping = 20 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.HelpBalloon = 31 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.HotkeyField = 50 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Indicator = 39 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.IpAddress = 63 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Link = 30 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.List = 33 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ListItem = 34 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.MenuBar = 2 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.MenuItem = 12 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.MenuPopup = 11 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.None = 0 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Outline = 35 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.OutlineButton = 64 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.OutlineItem = 36 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.PageTab = 37 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.PageTabList = 60 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Pane = 16 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ProgressBar = 48 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.PropertyPage = 38 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.PushButton = 43 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.RadioButton = 45 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Row = 28 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.RowHeader = 26 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ScrollBar = 3 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Separator = 21 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Slider = 51 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Sound = 5 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.SpinButton = 52 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.SplitButton = 62 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.StaticText = 41 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.StatusBar = 23 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Table = 24 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Text = 42 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.TitleBar = 1 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ToolBar = 22 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.ToolTip = 13 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.WhiteSpace = 59 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleRole.Window = 9 -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.AddSelection = 8 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.ExtendSelection = 4 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.None = 0 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.RemoveSelection = 16 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.TakeFocus = 1 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleSelection.TakeSelection = 2 -> System.Windows.Forms.AccessibleSelection +System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.AlertHigh = 268435456 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.AlertLow = 67108864 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.AlertMedium = 134217728 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Animated = 16384 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Busy = 2048 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Checked = 16 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Collapsed = 1024 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Default = 256 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Expanded = 512 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.ExtSelectable = 33554432 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Floating = 4096 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Focusable = 1048576 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Focused = 4 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.HasPopup = 1073741824 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.HotTracked = 128 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Indeterminate = 32 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Invisible = 32768 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Linked = 4194304 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Marqueed = 8192 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Mixed = 32 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Moveable = 262144 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.MultiSelectable = 16777216 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.None = 0 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Offscreen = 65536 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Pressed = 8 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Protected = 536870912 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.ReadOnly = 64 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Selectable = 2097152 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Selected = 2 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.SelfVoicing = 524288 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Sizeable = 131072 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Traversed = 8388608 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Unavailable = 1 -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AccessibleStates.Valid = System.Windows.Forms.AccessibleStates.Unavailable | System.Windows.Forms.AccessibleStates.Selected | System.Windows.Forms.AccessibleStates.Focused | System.Windows.Forms.AccessibleStates.Pressed | System.Windows.Forms.AccessibleStates.Checked | System.Windows.Forms.AccessibleStates.Indeterminate | System.Windows.Forms.AccessibleStates.ReadOnly | System.Windows.Forms.AccessibleStates.HotTracked | System.Windows.Forms.AccessibleStates.Default | System.Windows.Forms.AccessibleStates.Expanded | System.Windows.Forms.AccessibleStates.Collapsed | System.Windows.Forms.AccessibleStates.Busy | System.Windows.Forms.AccessibleStates.Floating | System.Windows.Forms.AccessibleStates.Marqueed | System.Windows.Forms.AccessibleStates.Animated | System.Windows.Forms.AccessibleStates.Invisible | System.Windows.Forms.AccessibleStates.Offscreen | System.Windows.Forms.AccessibleStates.Sizeable | System.Windows.Forms.AccessibleStates.Moveable | System.Windows.Forms.AccessibleStates.SelfVoicing | System.Windows.Forms.AccessibleStates.Focusable | System.Windows.Forms.AccessibleStates.Selectable | System.Windows.Forms.AccessibleStates.Linked | System.Windows.Forms.AccessibleStates.Traversed | System.Windows.Forms.AccessibleStates.MultiSelectable | System.Windows.Forms.AccessibleStates.ExtSelectable | System.Windows.Forms.AccessibleStates.AlertLow | System.Windows.Forms.AccessibleStates.AlertMedium | System.Windows.Forms.AccessibleStates.AlertHigh | System.Windows.Forms.AccessibleStates.Protected -> System.Windows.Forms.AccessibleStates +System.Windows.Forms.AmbientProperties +System.Windows.Forms.AmbientProperties.AmbientProperties() -> void +System.Windows.Forms.AmbientProperties.BackColor.get -> System.Drawing.Color +System.Windows.Forms.AmbientProperties.BackColor.set -> void +System.Windows.Forms.AmbientProperties.Cursor.get -> System.Windows.Forms.Cursor? +System.Windows.Forms.AmbientProperties.Cursor.set -> void +System.Windows.Forms.AmbientProperties.Font.get -> System.Drawing.Font? +System.Windows.Forms.AmbientProperties.Font.set -> void +System.Windows.Forms.AmbientProperties.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.AmbientProperties.ForeColor.set -> void +System.Windows.Forms.AnchorStyles +System.Windows.Forms.AnchorStyles.Bottom = 2 -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.AnchorStyles.Left = 4 -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.AnchorStyles.None = 0 -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.AnchorStyles.Right = 8 -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.AnchorStyles.Top = 1 -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.Appearance +System.Windows.Forms.Appearance.Button = 1 -> System.Windows.Forms.Appearance +System.Windows.Forms.Appearance.Normal = 0 -> System.Windows.Forms.Appearance +System.Windows.Forms.Application +System.Windows.Forms.Application.MessageLoopCallback +System.Windows.Forms.ApplicationContext +System.Windows.Forms.ApplicationContext.~ApplicationContext() -> void +System.Windows.Forms.ApplicationContext.ApplicationContext() -> void +System.Windows.Forms.ApplicationContext.ApplicationContext(System.Windows.Forms.Form? mainForm) -> void +System.Windows.Forms.ApplicationContext.Dispose() -> void +System.Windows.Forms.ApplicationContext.ExitThread() -> void +System.Windows.Forms.ApplicationContext.MainForm.get -> System.Windows.Forms.Form? +System.Windows.Forms.ApplicationContext.MainForm.set -> void +System.Windows.Forms.ApplicationContext.Tag.get -> object? +System.Windows.Forms.ApplicationContext.Tag.set -> void +System.Windows.Forms.ApplicationContext.ThreadExit -> System.EventHandler? +System.Windows.Forms.ArrangeDirection +System.Windows.Forms.ArrangeDirection.Down = 4 -> System.Windows.Forms.ArrangeDirection +System.Windows.Forms.ArrangeDirection.Left = 0 -> System.Windows.Forms.ArrangeDirection +System.Windows.Forms.ArrangeDirection.Right = 0 -> System.Windows.Forms.ArrangeDirection +System.Windows.Forms.ArrangeDirection.Up = 4 -> System.Windows.Forms.ArrangeDirection +System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrangeStartingPosition.BottomLeft = 0 -> System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrangeStartingPosition.BottomRight = 1 -> System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrangeStartingPosition.Hide = 8 -> System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrangeStartingPosition.TopLeft = 2 -> System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrangeStartingPosition.TopRight = System.Windows.Forms.ArrangeStartingPosition.BottomRight | System.Windows.Forms.ArrangeStartingPosition.TopLeft -> System.Windows.Forms.ArrangeStartingPosition +System.Windows.Forms.ArrowDirection +System.Windows.Forms.ArrowDirection.Down = 17 -> System.Windows.Forms.ArrowDirection +System.Windows.Forms.ArrowDirection.Left = 0 -> System.Windows.Forms.ArrowDirection +System.Windows.Forms.ArrowDirection.Right = 16 -> System.Windows.Forms.ArrowDirection +System.Windows.Forms.ArrowDirection.Up = 1 -> System.Windows.Forms.ArrowDirection +System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.AutoCompleteMode.Append = 2 -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.AutoCompleteMode.None = 0 -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.AutoCompleteMode.Suggest = 1 -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.AutoCompleteMode.SuggestAppend = 3 -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.AllSystemSources = 7 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.AllUrl = 6 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.CustomSource = 64 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.FileSystem = 1 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.FileSystemDirectories = 32 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.HistoryList = 2 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.ListItems = 256 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.None = 128 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteSource.RecentlyUsedList = 4 -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.AutoCompleteStringCollection +System.Windows.Forms.AutoCompleteStringCollection.Add(string! value) -> int +System.Windows.Forms.AutoCompleteStringCollection.AddRange(string![]! value) -> void +System.Windows.Forms.AutoCompleteStringCollection.AutoCompleteStringCollection() -> void +System.Windows.Forms.AutoCompleteStringCollection.Clear() -> void +System.Windows.Forms.AutoCompleteStringCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? +System.Windows.Forms.AutoCompleteStringCollection.Contains(string! value) -> bool +System.Windows.Forms.AutoCompleteStringCollection.CopyTo(string![]! array, int index) -> void +System.Windows.Forms.AutoCompleteStringCollection.Count.get -> int +System.Windows.Forms.AutoCompleteStringCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.AutoCompleteStringCollection.IndexOf(string! value) -> int +System.Windows.Forms.AutoCompleteStringCollection.Insert(int index, string! value) -> void +System.Windows.Forms.AutoCompleteStringCollection.IsReadOnly.get -> bool +System.Windows.Forms.AutoCompleteStringCollection.IsSynchronized.get -> bool +System.Windows.Forms.AutoCompleteStringCollection.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs! e) -> void +System.Windows.Forms.AutoCompleteStringCollection.Remove(string! value) -> void +System.Windows.Forms.AutoCompleteStringCollection.RemoveAt(int index) -> void +System.Windows.Forms.AutoCompleteStringCollection.SyncRoot.get -> object! +System.Windows.Forms.AutoCompleteStringCollection.this[int index].get -> string! +System.Windows.Forms.AutoCompleteStringCollection.this[int index].set -> void +System.Windows.Forms.AutoScaleMode +System.Windows.Forms.AutoScaleMode.Dpi = 2 -> System.Windows.Forms.AutoScaleMode +System.Windows.Forms.AutoScaleMode.Font = 1 -> System.Windows.Forms.AutoScaleMode +System.Windows.Forms.AutoScaleMode.Inherit = 3 -> System.Windows.Forms.AutoScaleMode +System.Windows.Forms.AutoScaleMode.None = 0 -> System.Windows.Forms.AutoScaleMode +System.Windows.Forms.AutoSizeMode +System.Windows.Forms.AutoSizeMode.GrowAndShrink = 0 -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.AutoSizeMode.GrowOnly = 1 -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.AutoValidate +System.Windows.Forms.AutoValidate.Disable = 0 -> System.Windows.Forms.AutoValidate +System.Windows.Forms.AutoValidate.EnableAllowFocusChange = 2 -> System.Windows.Forms.AutoValidate +System.Windows.Forms.AutoValidate.EnablePreventFocusChange = 1 -> System.Windows.Forms.AutoValidate +System.Windows.Forms.AutoValidate.Inherit = -1 -> System.Windows.Forms.AutoValidate +System.Windows.Forms.AxHost +System.Windows.Forms.AxHost.AboutBoxDelegate +System.Windows.Forms.AxHost.ActiveXInvokeKind +System.Windows.Forms.AxHost.ActiveXInvokeKind.MethodInvoke = 0 -> System.Windows.Forms.AxHost.ActiveXInvokeKind +System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertyGet = 1 -> System.Windows.Forms.AxHost.ActiveXInvokeKind +System.Windows.Forms.AxHost.ActiveXInvokeKind.PropertySet = 2 -> System.Windows.Forms.AxHost.ActiveXInvokeKind +System.Windows.Forms.AxHost.AxComponentEditor +System.Windows.Forms.AxHost.AxComponentEditor.AxComponentEditor() -> void +System.Windows.Forms.AxHost.AxHost(string! clsid) -> void +System.Windows.Forms.AxHost.AxHost(string! clsid, int flags) -> void +System.Windows.Forms.AxHost.BackColorChanged -> System.EventHandler? +System.Windows.Forms.AxHost.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.AxHost.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.AxHost.BeginInit() -> void +System.Windows.Forms.AxHost.BindingContextChanged -> System.EventHandler? +System.Windows.Forms.AxHost.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? +System.Windows.Forms.AxHost.Click -> System.EventHandler? +System.Windows.Forms.AxHost.ClsidAttribute +System.Windows.Forms.AxHost.ClsidAttribute.ClsidAttribute(string! clsid) -> void +System.Windows.Forms.AxHost.ClsidAttribute.Value.get -> string! +System.Windows.Forms.AxHost.ConnectionPointCookie +System.Windows.Forms.AxHost.ConnectionPointCookie.~ConnectionPointCookie() -> void +System.Windows.Forms.AxHost.ConnectionPointCookie.ConnectionPointCookie(object! source, object! sink, System.Type! eventInterface) -> void +System.Windows.Forms.AxHost.ConnectionPointCookie.Disconnect() -> void +System.Windows.Forms.AxHost.CursorChanged -> System.EventHandler? +System.Windows.Forms.AxHost.DoubleClick -> System.EventHandler? +System.Windows.Forms.AxHost.DoVerb(int verb) -> void +System.Windows.Forms.AxHost.DragDrop -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.AxHost.DragEnter -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.AxHost.DragLeave -> System.EventHandler? +System.Windows.Forms.AxHost.DragOver -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.AxHost.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void +System.Windows.Forms.AxHost.EditMode.get -> bool +System.Windows.Forms.AxHost.EnabledChanged -> System.EventHandler? +System.Windows.Forms.AxHost.EndInit() -> void +System.Windows.Forms.AxHost.FontChanged -> System.EventHandler? +System.Windows.Forms.AxHost.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.AxHost.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.AxHost.HasAboutBox.get -> bool +System.Windows.Forms.AxHost.HasPropertyPages() -> bool +System.Windows.Forms.AxHost.HelpRequested -> System.Windows.Forms.HelpEventHandler? +System.Windows.Forms.AxHost.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.AxHost.ImeMode.set -> void +System.Windows.Forms.AxHost.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.AxHost.InvalidActiveXStateException +System.Windows.Forms.AxHost.InvalidActiveXStateException.InvalidActiveXStateException() -> void +System.Windows.Forms.AxHost.InvalidActiveXStateException.InvalidActiveXStateException(string? name, System.Windows.Forms.AxHost.ActiveXInvokeKind kind) -> void +System.Windows.Forms.AxHost.InvokeEditMode() -> void +System.Windows.Forms.AxHost.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.AxHost.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.AxHost.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.AxHost.Layout -> System.Windows.Forms.LayoutEventHandler? +System.Windows.Forms.AxHost.MakeDirty() -> void +System.Windows.Forms.AxHost.MouseClick -> System.EventHandler? +System.Windows.Forms.AxHost.MouseDoubleClick -> System.EventHandler? +System.Windows.Forms.AxHost.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.AxHost.MouseEnter -> System.EventHandler? +System.Windows.Forms.AxHost.MouseHover -> System.EventHandler? +System.Windows.Forms.AxHost.MouseLeave -> System.EventHandler? +System.Windows.Forms.AxHost.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.AxHost.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.AxHost.MouseWheel -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.AxHost.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.AxHost.PropsValid() -> bool +System.Windows.Forms.AxHost.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? +System.Windows.Forms.AxHost.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? +System.Windows.Forms.AxHost.RaiseOnMouseDown(short button, short shift, float x, float y) -> void +System.Windows.Forms.AxHost.RaiseOnMouseDown(short button, short shift, int x, int y) -> void +System.Windows.Forms.AxHost.RaiseOnMouseMove(short button, short shift, float x, float y) -> void +System.Windows.Forms.AxHost.RaiseOnMouseMove(short button, short shift, int x, int y) -> void +System.Windows.Forms.AxHost.RaiseOnMouseUp(short button, short shift, float x, float y) -> void +System.Windows.Forms.AxHost.RaiseOnMouseUp(short button, short shift, int x, int y) -> void +System.Windows.Forms.AxHost.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.AxHost.ShowAboutBox() -> void +System.Windows.Forms.AxHost.ShowPropertyPages() -> void +System.Windows.Forms.AxHost.State +System.Windows.Forms.AxHost.State.Dispose() -> void +System.Windows.Forms.AxHost.State.State(System.IO.Stream! ms, int storageType, bool manualUpdate, string? licKey) -> void +System.Windows.Forms.AxHost.State.State(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +System.Windows.Forms.AxHost.StateConverter +System.Windows.Forms.AxHost.StateConverter.StateConverter() -> void +System.Windows.Forms.AxHost.StyleChanged -> System.EventHandler? +System.Windows.Forms.AxHost.TextChanged -> System.EventHandler? +System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute +System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.TypeLibraryTimeStampAttribute(string! timestamp) -> void +System.Windows.Forms.AxHost.TypeLibraryTimeStampAttribute.Value.get -> System.DateTime +System.Windows.Forms.BaseCollection +System.Windows.Forms.BaseCollection.BaseCollection() -> void +System.Windows.Forms.BaseCollection.CopyTo(System.Array! ar, int index) -> void +System.Windows.Forms.BaseCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.BaseCollection.IsReadOnly.get -> bool +System.Windows.Forms.BaseCollection.IsSynchronized.get -> bool +System.Windows.Forms.BaseCollection.SyncRoot.get -> object! +System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.Charging = 8 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.Critical = 4 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.High = 1 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.Low = 2 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.NoSystemBattery = 128 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BatteryChargeStatus.Unknown = 255 -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.BindableComponent +System.Windows.Forms.BindableComponent.BindableComponent() -> void +System.Windows.Forms.BindableComponent.BindingContext.get -> System.Windows.Forms.BindingContext? +System.Windows.Forms.BindableComponent.BindingContext.set -> void +System.Windows.Forms.BindableComponent.BindingContextChanged -> System.EventHandler! +System.Windows.Forms.BindableComponent.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! +System.Windows.Forms.Binding +System.Windows.Forms.Binding.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler +System.Windows.Forms.Binding.BindingMemberInfo.get -> System.Windows.Forms.BindingMemberInfo +System.Windows.Forms.Binding.ControlUpdateMode.get -> System.Windows.Forms.ControlUpdateMode +System.Windows.Forms.Binding.ControlUpdateMode.set -> void +System.Windows.Forms.Binding.DataSourceUpdateMode.get -> System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.Binding.DataSourceUpdateMode.set -> void +System.Windows.Forms.Binding.Format -> System.Windows.Forms.ConvertEventHandler +System.Windows.Forms.Binding.FormattingEnabled.get -> bool +System.Windows.Forms.Binding.FormattingEnabled.set -> void +System.Windows.Forms.Binding.IsBinding.get -> bool +System.Windows.Forms.Binding.Parse -> System.Windows.Forms.ConvertEventHandler +System.Windows.Forms.Binding.ReadValue() -> void +System.Windows.Forms.Binding.WriteValue() -> void +System.Windows.Forms.BindingCompleteContext +System.Windows.Forms.BindingCompleteContext.ControlUpdate = 0 -> System.Windows.Forms.BindingCompleteContext +System.Windows.Forms.BindingCompleteContext.DataSourceUpdate = 1 -> System.Windows.Forms.BindingCompleteContext +System.Windows.Forms.BindingCompleteEventArgs +System.Windows.Forms.BindingCompleteEventArgs.Binding.get -> System.Windows.Forms.Binding? +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteContext.get -> System.Windows.Forms.BindingCompleteContext +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context) -> void +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText) -> void +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText, System.Exception? exception) -> void +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteEventArgs(System.Windows.Forms.Binding? binding, System.Windows.Forms.BindingCompleteState state, System.Windows.Forms.BindingCompleteContext context, string? errorText, System.Exception? exception, bool cancel) -> void +System.Windows.Forms.BindingCompleteEventArgs.BindingCompleteState.get -> System.Windows.Forms.BindingCompleteState +System.Windows.Forms.BindingCompleteEventArgs.ErrorText.get -> string! +System.Windows.Forms.BindingCompleteEventArgs.Exception.get -> System.Exception? +System.Windows.Forms.BindingCompleteEventHandler +System.Windows.Forms.BindingCompleteState +System.Windows.Forms.BindingCompleteState.DataError = 1 -> System.Windows.Forms.BindingCompleteState +System.Windows.Forms.BindingCompleteState.Exception = 2 -> System.Windows.Forms.BindingCompleteState +System.Windows.Forms.BindingCompleteState.Success = 0 -> System.Windows.Forms.BindingCompleteState +System.Windows.Forms.BindingContext +System.Windows.Forms.BindingContext.Add(object! dataSource, System.Windows.Forms.BindingManagerBase! listManager) -> void +System.Windows.Forms.BindingContext.BindingContext() -> void +System.Windows.Forms.BindingContext.Clear() -> void +System.Windows.Forms.BindingContext.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? +System.Windows.Forms.BindingContext.Contains(object! dataSource) -> bool +System.Windows.Forms.BindingContext.Contains(object! dataSource, string? dataMember) -> bool +System.Windows.Forms.BindingContext.IsReadOnly.get -> bool +System.Windows.Forms.BindingContext.Remove(object! dataSource) -> void +System.Windows.Forms.BindingContext.this[object! dataSource, string? dataMember].get -> System.Windows.Forms.BindingManagerBase! +System.Windows.Forms.BindingContext.this[object! dataSource].get -> System.Windows.Forms.BindingManagerBase! +System.Windows.Forms.BindingManagerBase +System.Windows.Forms.BindingManagerBase.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler! +System.Windows.Forms.BindingManagerBase.BindingManagerBase() -> void +System.Windows.Forms.BindingManagerBase.Bindings.get -> System.Windows.Forms.BindingsCollection! +System.Windows.Forms.BindingManagerBase.CurrentChanged -> System.EventHandler! +System.Windows.Forms.BindingManagerBase.CurrentItemChanged -> System.EventHandler! +System.Windows.Forms.BindingManagerBase.DataError -> System.Windows.Forms.BindingManagerDataErrorEventHandler! +System.Windows.Forms.BindingManagerBase.IsBindingSuspended.get -> bool +System.Windows.Forms.BindingManagerBase.OnBindingComplete(System.Windows.Forms.BindingCompleteEventArgs! args) -> void +System.Windows.Forms.BindingManagerBase.onCurrentChangedHandler -> System.EventHandler? +System.Windows.Forms.BindingManagerBase.OnDataError(System.Exception! e) -> void +System.Windows.Forms.BindingManagerBase.onPositionChangedHandler -> System.EventHandler? +System.Windows.Forms.BindingManagerBase.PositionChanged -> System.EventHandler! +System.Windows.Forms.BindingManagerBase.PullData() -> void +System.Windows.Forms.BindingManagerBase.PushData() -> void +System.Windows.Forms.BindingManagerDataErrorEventArgs +System.Windows.Forms.BindingManagerDataErrorEventArgs.BindingManagerDataErrorEventArgs(System.Exception! exception) -> void +System.Windows.Forms.BindingManagerDataErrorEventArgs.Exception.get -> System.Exception! +System.Windows.Forms.BindingManagerDataErrorEventHandler +System.Windows.Forms.BindingMemberInfo +System.Windows.Forms.BindingMemberInfo.BindingField.get -> string! +System.Windows.Forms.BindingMemberInfo.BindingMember.get -> string! +System.Windows.Forms.BindingMemberInfo.BindingMemberInfo() -> void +System.Windows.Forms.BindingMemberInfo.BindingMemberInfo(string? dataMember) -> void +System.Windows.Forms.BindingMemberInfo.BindingPath.get -> string! +System.Windows.Forms.BindingMemberInfo.Equals(System.Windows.Forms.BindingMemberInfo other) -> bool +System.Windows.Forms.BindingNavigator +System.Windows.Forms.BindingNavigator.AddNewItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.AddNewItem.set -> void +System.Windows.Forms.BindingNavigator.BeginInit() -> void +System.Windows.Forms.BindingNavigator.BindingNavigator() -> void +System.Windows.Forms.BindingNavigator.BindingNavigator(bool addStandardItems) -> void +System.Windows.Forms.BindingNavigator.BindingNavigator(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.BindingNavigator.BindingNavigator(System.Windows.Forms.BindingSource? bindingSource) -> void +System.Windows.Forms.BindingNavigator.BindingSource.get -> System.Windows.Forms.BindingSource? +System.Windows.Forms.BindingNavigator.BindingSource.set -> void +System.Windows.Forms.BindingNavigator.CountItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.CountItem.set -> void +System.Windows.Forms.BindingNavigator.CountItemFormat.get -> string! +System.Windows.Forms.BindingNavigator.CountItemFormat.set -> void +System.Windows.Forms.BindingNavigator.DeleteItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.DeleteItem.set -> void +System.Windows.Forms.BindingNavigator.EndInit() -> void +System.Windows.Forms.BindingNavigator.MoveFirstItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.MoveFirstItem.set -> void +System.Windows.Forms.BindingNavigator.MoveLastItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.MoveLastItem.set -> void +System.Windows.Forms.BindingNavigator.MoveNextItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.MoveNextItem.set -> void +System.Windows.Forms.BindingNavigator.MovePreviousItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.MovePreviousItem.set -> void +System.Windows.Forms.BindingNavigator.PositionItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.BindingNavigator.PositionItem.set -> void +System.Windows.Forms.BindingNavigator.RefreshItems -> System.EventHandler? +System.Windows.Forms.BindingNavigator.Validate() -> bool +System.Windows.Forms.BindingsCollection +System.Windows.Forms.BindingsCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler? +System.Windows.Forms.BindingsCollection.CollectionChanging -> System.ComponentModel.CollectionChangeEventHandler? +System.Windows.Forms.BindingsCollection.this[int index].get -> System.Windows.Forms.Binding! +System.Windows.Forms.BindingSource +System.Windows.Forms.BindingSource.AddingNew -> System.ComponentModel.AddingNewEventHandler +System.Windows.Forms.BindingSource.BindingComplete -> System.Windows.Forms.BindingCompleteEventHandler +System.Windows.Forms.BindingSource.BindingSource() -> void +System.Windows.Forms.BindingSource.CancelEdit() -> void +System.Windows.Forms.BindingSource.CurrentChanged -> System.EventHandler +System.Windows.Forms.BindingSource.CurrentItemChanged -> System.EventHandler +System.Windows.Forms.BindingSource.DataError -> System.Windows.Forms.BindingManagerDataErrorEventHandler +System.Windows.Forms.BindingSource.DataMemberChanged -> System.EventHandler +System.Windows.Forms.BindingSource.DataSourceChanged -> System.EventHandler +System.Windows.Forms.BindingSource.EndEdit() -> void +System.Windows.Forms.BindingSource.IsBindingSuspended.get -> bool +System.Windows.Forms.BindingSource.ListChanged -> System.ComponentModel.ListChangedEventHandler +System.Windows.Forms.BindingSource.MoveFirst() -> void +System.Windows.Forms.BindingSource.MoveLast() -> void +System.Windows.Forms.BindingSource.MoveNext() -> void +System.Windows.Forms.BindingSource.MovePrevious() -> void +System.Windows.Forms.BindingSource.Position.get -> int +System.Windows.Forms.BindingSource.Position.set -> void +System.Windows.Forms.BindingSource.PositionChanged -> System.EventHandler +System.Windows.Forms.BindingSource.RaiseListChangedEvents.get -> bool +System.Windows.Forms.BindingSource.RaiseListChangedEvents.set -> void +System.Windows.Forms.BindingSource.RemoveCurrent() -> void +System.Windows.Forms.BindingSource.ResetBindings(bool metadataChanged) -> void +System.Windows.Forms.BindingSource.ResetCurrentItem() -> void +System.Windows.Forms.BindingSource.ResetItem(int itemIndex) -> void +System.Windows.Forms.BindingSource.ResumeBinding() -> void +System.Windows.Forms.BindingSource.SuspendBinding() -> void +System.Windows.Forms.BootMode +System.Windows.Forms.BootMode.FailSafe = 1 -> System.Windows.Forms.BootMode +System.Windows.Forms.BootMode.FailSafeWithNetwork = 2 -> System.Windows.Forms.BootMode +System.Windows.Forms.BootMode.Normal = 0 -> System.Windows.Forms.BootMode +System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.All = System.Windows.Forms.Border3DSide.Left | System.Windows.Forms.Border3DSide.Top | System.Windows.Forms.Border3DSide.Right | System.Windows.Forms.Border3DSide.Bottom | System.Windows.Forms.Border3DSide.Middle -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.Bottom = 8 -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.Left = 1 -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.Middle = 2048 -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.Right = 4 -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DSide.Top = 2 -> System.Windows.Forms.Border3DSide +System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Adjust = 8192 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Bump = 9 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Etched = 6 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Flat = 16394 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Raised = 5 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.RaisedInner = 4 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.RaisedOuter = 1 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.Sunken = 10 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.SunkenInner = 8 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.Border3DStyle.SunkenOuter = 2 -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.BorderStyle +System.Windows.Forms.BorderStyle.Fixed3D = 2 -> System.Windows.Forms.BorderStyle +System.Windows.Forms.BorderStyle.FixedSingle = 1 -> System.Windows.Forms.BorderStyle +System.Windows.Forms.BorderStyle.None = 0 -> System.Windows.Forms.BorderStyle +System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.All = System.Windows.Forms.BoundsSpecified.Location | System.Windows.Forms.BoundsSpecified.Size -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.Height = 8 -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.Location = System.Windows.Forms.BoundsSpecified.X | System.Windows.Forms.BoundsSpecified.Y -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.None = 0 -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.Size = System.Windows.Forms.BoundsSpecified.Width | System.Windows.Forms.BoundsSpecified.Height -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.Width = 4 -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.X = 1 -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.BoundsSpecified.Y = 2 -> System.Windows.Forms.BoundsSpecified +System.Windows.Forms.Button +System.Windows.Forms.Button.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.Button.AutoSizeMode.set -> void +System.Windows.Forms.Button.Button() -> void +System.Windows.Forms.Button.DoubleClick -> System.EventHandler? +System.Windows.Forms.Button.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Button.PerformClick() -> void +System.Windows.Forms.ButtonBase +System.Windows.Forms.ButtonBase.AutoEllipsis.get -> bool +System.Windows.Forms.ButtonBase.AutoEllipsis.set -> void +System.Windows.Forms.ButtonBase.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ButtonBase.ButtonBase() -> void +System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject +System.Windows.Forms.ButtonBase.ButtonBaseAccessibleObject.ButtonBaseAccessibleObject(System.Windows.Forms.Control! owner) -> void +System.Windows.Forms.ButtonBase.Command.get -> System.Windows.Input.ICommand? +System.Windows.Forms.ButtonBase.Command.set -> void +System.Windows.Forms.ButtonBase.CommandCanExecuteChanged -> System.EventHandler? +System.Windows.Forms.ButtonBase.CommandChanged -> System.EventHandler? +System.Windows.Forms.ButtonBase.CommandParameter.get -> object? +System.Windows.Forms.ButtonBase.CommandParameter.set -> void +System.Windows.Forms.ButtonBase.CommandParameterChanged -> System.EventHandler? +System.Windows.Forms.ButtonBase.FlatAppearance.get -> System.Windows.Forms.FlatButtonAppearance! +System.Windows.Forms.ButtonBase.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.ButtonBase.FlatStyle.set -> void +System.Windows.Forms.ButtonBase.Image.get -> System.Drawing.Image? +System.Windows.Forms.ButtonBase.Image.set -> void +System.Windows.Forms.ButtonBase.ImageAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ButtonBase.ImageAlign.set -> void +System.Windows.Forms.ButtonBase.ImageIndex.get -> int +System.Windows.Forms.ButtonBase.ImageIndex.set -> void +System.Windows.Forms.ButtonBase.ImageKey.get -> string! +System.Windows.Forms.ButtonBase.ImageKey.set -> void +System.Windows.Forms.ButtonBase.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ButtonBase.ImageList.set -> void +System.Windows.Forms.ButtonBase.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.ButtonBase.ImeMode.set -> void +System.Windows.Forms.ButtonBase.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.ButtonBase.IsDefault.get -> bool +System.Windows.Forms.ButtonBase.IsDefault.set -> void +System.Windows.Forms.ButtonBase.ResetFlagsandPaint() -> void +System.Windows.Forms.ButtonBase.TextImageRelation.get -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.ButtonBase.TextImageRelation.set -> void +System.Windows.Forms.ButtonBase.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.ButtonBase.UseCompatibleTextRendering.set -> void +System.Windows.Forms.ButtonBase.UseMnemonic.get -> bool +System.Windows.Forms.ButtonBase.UseMnemonic.set -> void +System.Windows.Forms.ButtonBase.UseVisualStyleBackColor.get -> bool +System.Windows.Forms.ButtonBase.UseVisualStyleBackColor.set -> void +System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.Dashed = 2 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.Dotted = 1 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.Inset = 4 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.None = 0 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.Outset = 5 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonBorderStyle.Solid = 3 -> System.Windows.Forms.ButtonBorderStyle +System.Windows.Forms.ButtonRenderer +System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.All = System.Windows.Forms.ButtonState.Inactive | System.Windows.Forms.ButtonState.Pushed | System.Windows.Forms.ButtonState.Checked | System.Windows.Forms.ButtonState.Flat -> System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.Checked = 1024 -> System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.Flat = 16384 -> System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.Inactive = 256 -> System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.Normal = 0 -> System.Windows.Forms.ButtonState +System.Windows.Forms.ButtonState.Pushed = 512 -> System.Windows.Forms.ButtonState +System.Windows.Forms.CacheVirtualItemsEventArgs +System.Windows.Forms.CacheVirtualItemsEventArgs.CacheVirtualItemsEventArgs(int startIndex, int endIndex) -> void +System.Windows.Forms.CacheVirtualItemsEventArgs.EndIndex.get -> int +System.Windows.Forms.CacheVirtualItemsEventArgs.StartIndex.get -> int +System.Windows.Forms.CacheVirtualItemsEventHandler +System.Windows.Forms.CaptionButton +System.Windows.Forms.CaptionButton.Close = 0 -> System.Windows.Forms.CaptionButton +System.Windows.Forms.CaptionButton.Help = 4 -> System.Windows.Forms.CaptionButton +System.Windows.Forms.CaptionButton.Maximize = 2 -> System.Windows.Forms.CaptionButton +System.Windows.Forms.CaptionButton.Minimize = 1 -> System.Windows.Forms.CaptionButton +System.Windows.Forms.CaptionButton.Restore = 3 -> System.Windows.Forms.CaptionButton +System.Windows.Forms.CharacterCasing +System.Windows.Forms.CharacterCasing.Lower = 2 -> System.Windows.Forms.CharacterCasing +System.Windows.Forms.CharacterCasing.Normal = 0 -> System.Windows.Forms.CharacterCasing +System.Windows.Forms.CharacterCasing.Upper = 1 -> System.Windows.Forms.CharacterCasing +System.Windows.Forms.CheckBox +System.Windows.Forms.CheckBox.Appearance.get -> System.Windows.Forms.Appearance +System.Windows.Forms.CheckBox.Appearance.set -> void +System.Windows.Forms.CheckBox.AppearanceChanged -> System.EventHandler? +System.Windows.Forms.CheckBox.AutoCheck.get -> bool +System.Windows.Forms.CheckBox.AutoCheck.set -> void +System.Windows.Forms.CheckBox.CheckAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.CheckBox.CheckAlign.set -> void +System.Windows.Forms.CheckBox.CheckBox() -> void +System.Windows.Forms.CheckBox.CheckBoxAccessibleObject +System.Windows.Forms.CheckBox.CheckBoxAccessibleObject.CheckBoxAccessibleObject(System.Windows.Forms.Control! owner) -> void +System.Windows.Forms.CheckBox.Checked.get -> bool +System.Windows.Forms.CheckBox.Checked.set -> void +System.Windows.Forms.CheckBox.CheckedChanged -> System.EventHandler? +System.Windows.Forms.CheckBox.CheckState.get -> System.Windows.Forms.CheckState +System.Windows.Forms.CheckBox.CheckState.set -> void +System.Windows.Forms.CheckBox.CheckStateChanged -> System.EventHandler? +System.Windows.Forms.CheckBox.DoubleClick -> System.EventHandler? +System.Windows.Forms.CheckBox.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.CheckBox.ThreeState.get -> bool +System.Windows.Forms.CheckBox.ThreeState.set -> void +System.Windows.Forms.CheckBoxRenderer +System.Windows.Forms.CheckedListBox +System.Windows.Forms.CheckedListBox.CheckedIndexCollection +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Contains(int index) -> bool +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.Count.get -> int +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IndexOf(int index) -> int +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.IsReadOnly.get -> bool +System.Windows.Forms.CheckedListBox.CheckedIndexCollection.this[int index].get -> int +System.Windows.Forms.CheckedListBox.CheckedIndices.get -> System.Windows.Forms.CheckedListBox.CheckedIndexCollection! +System.Windows.Forms.CheckedListBox.CheckedItemCollection +System.Windows.Forms.CheckedListBox.CheckedItemCollection.Contains(object? item) -> bool +System.Windows.Forms.CheckedListBox.CheckedItemCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.CheckedListBox.CheckedItemCollection.Count.get -> int +System.Windows.Forms.CheckedListBox.CheckedItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.CheckedListBox.CheckedItemCollection.IndexOf(object? item) -> int +System.Windows.Forms.CheckedListBox.CheckedItemCollection.IsReadOnly.get -> bool +System.Windows.Forms.CheckedListBox.CheckedItemCollection.this[int index].get -> object? +System.Windows.Forms.CheckedListBox.CheckedItemCollection.this[int index].set -> void +System.Windows.Forms.CheckedListBox.CheckedItems.get -> System.Windows.Forms.CheckedListBox.CheckedItemCollection! +System.Windows.Forms.CheckedListBox.CheckedListBox() -> void +System.Windows.Forms.CheckedListBox.CheckOnClick.get -> bool +System.Windows.Forms.CheckedListBox.CheckOnClick.set -> void +System.Windows.Forms.CheckedListBox.Click -> System.EventHandler? +System.Windows.Forms.CheckedListBox.DataSource.get -> object? +System.Windows.Forms.CheckedListBox.DataSource.set -> void +System.Windows.Forms.CheckedListBox.DataSourceChanged -> System.EventHandler? +System.Windows.Forms.CheckedListBox.DisplayMember.get -> string! +System.Windows.Forms.CheckedListBox.DisplayMember.set -> void +System.Windows.Forms.CheckedListBox.DisplayMemberChanged -> System.EventHandler? +System.Windows.Forms.CheckedListBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? +System.Windows.Forms.CheckedListBox.GetItemChecked(int index) -> bool +System.Windows.Forms.CheckedListBox.GetItemCheckState(int index) -> System.Windows.Forms.CheckState +System.Windows.Forms.CheckedListBox.ItemCheck -> System.Windows.Forms.ItemCheckEventHandler? +System.Windows.Forms.CheckedListBox.Items.get -> System.Windows.Forms.CheckedListBox.ObjectCollection! +System.Windows.Forms.CheckedListBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? +System.Windows.Forms.CheckedListBox.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.CheckedListBox.ObjectCollection +System.Windows.Forms.CheckedListBox.ObjectCollection.Add(object! item, bool isChecked) -> int +System.Windows.Forms.CheckedListBox.ObjectCollection.Add(object! item, System.Windows.Forms.CheckState check) -> int +System.Windows.Forms.CheckedListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.CheckedListBox! owner) -> void +System.Windows.Forms.CheckedListBox.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.CheckedListBox.Padding.set -> void +System.Windows.Forms.CheckedListBox.SetItemChecked(int index, bool value) -> void +System.Windows.Forms.CheckedListBox.SetItemCheckState(int index, System.Windows.Forms.CheckState value) -> void +System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes.get -> bool +System.Windows.Forms.CheckedListBox.ThreeDCheckBoxes.set -> void +System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.CheckedListBox.UseCompatibleTextRendering.set -> void +System.Windows.Forms.CheckedListBox.ValueMember.get -> string! +System.Windows.Forms.CheckedListBox.ValueMember.set -> void +System.Windows.Forms.CheckedListBox.ValueMemberChanged -> System.EventHandler? +System.Windows.Forms.CheckState +System.Windows.Forms.CheckState.Checked = 1 -> System.Windows.Forms.CheckState +System.Windows.Forms.CheckState.Indeterminate = 2 -> System.Windows.Forms.CheckState +System.Windows.Forms.CheckState.Unchecked = 0 -> System.Windows.Forms.CheckState +System.Windows.Forms.Clipboard +System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.ApplicationExitCall = 6 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.FormOwnerClosing = 5 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.MdiFormClosing = 2 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.None = 0 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.TaskManagerClosing = 4 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.UserClosing = 3 -> System.Windows.Forms.CloseReason +System.Windows.Forms.CloseReason.WindowsShutDown = 1 -> System.Windows.Forms.CloseReason +System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDepth.Depth16Bit = 16 -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDepth.Depth24Bit = 24 -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDepth.Depth32Bit = 32 -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDepth.Depth4Bit = 4 -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDepth.Depth8Bit = 8 -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ColorDialog +System.Windows.Forms.ColorDialog.Color.get -> System.Drawing.Color +System.Windows.Forms.ColorDialog.Color.set -> void +System.Windows.Forms.ColorDialog.ColorDialog() -> void +System.Windows.Forms.ColorDialog.CustomColors.get -> int[]! +System.Windows.Forms.ColorDialog.CustomColors.set -> void +System.Windows.Forms.ColumnClickEventArgs +System.Windows.Forms.ColumnClickEventArgs.Column.get -> int +System.Windows.Forms.ColumnClickEventArgs.ColumnClickEventArgs(int column) -> void +System.Windows.Forms.ColumnClickEventHandler +System.Windows.Forms.ColumnHeader +System.Windows.Forms.ColumnHeader.AutoResize(System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void +System.Windows.Forms.ColumnHeader.Clone() -> object! +System.Windows.Forms.ColumnHeader.ColumnHeader() -> void +System.Windows.Forms.ColumnHeader.ColumnHeader(int imageIndex) -> void +System.Windows.Forms.ColumnHeader.ColumnHeader(string! imageKey) -> void +System.Windows.Forms.ColumnHeader.DisplayIndex.get -> int +System.Windows.Forms.ColumnHeader.DisplayIndex.set -> void +System.Windows.Forms.ColumnHeader.ImageIndex.get -> int +System.Windows.Forms.ColumnHeader.ImageIndex.set -> void +System.Windows.Forms.ColumnHeader.ImageKey.get -> string! +System.Windows.Forms.ColumnHeader.ImageKey.set -> void +System.Windows.Forms.ColumnHeader.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ColumnHeader.Index.get -> int +System.Windows.Forms.ColumnHeader.ListView.get -> System.Windows.Forms.ListView? +System.Windows.Forms.ColumnHeader.Name.get -> string? +System.Windows.Forms.ColumnHeader.Name.set -> void +System.Windows.Forms.ColumnHeader.Tag.get -> object? +System.Windows.Forms.ColumnHeader.Tag.set -> void +System.Windows.Forms.ColumnHeader.Text.get -> string! +System.Windows.Forms.ColumnHeader.Text.set -> void +System.Windows.Forms.ColumnHeader.TextAlign.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.ColumnHeader.TextAlign.set -> void +System.Windows.Forms.ColumnHeader.Width.get -> int +System.Windows.Forms.ColumnHeader.Width.set -> void +System.Windows.Forms.ColumnHeaderAutoResizeStyle +System.Windows.Forms.ColumnHeaderAutoResizeStyle.ColumnContent = 2 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle +System.Windows.Forms.ColumnHeaderAutoResizeStyle.HeaderSize = 1 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle +System.Windows.Forms.ColumnHeaderAutoResizeStyle.None = 0 -> System.Windows.Forms.ColumnHeaderAutoResizeStyle +System.Windows.Forms.ColumnHeaderConverter +System.Windows.Forms.ColumnHeaderConverter.ColumnHeaderConverter() -> void +System.Windows.Forms.ColumnHeaderStyle +System.Windows.Forms.ColumnHeaderStyle.Clickable = 2 -> System.Windows.Forms.ColumnHeaderStyle +System.Windows.Forms.ColumnHeaderStyle.Nonclickable = 1 -> System.Windows.Forms.ColumnHeaderStyle +System.Windows.Forms.ColumnHeaderStyle.None = 0 -> System.Windows.Forms.ColumnHeaderStyle +System.Windows.Forms.ColumnReorderedEventArgs +System.Windows.Forms.ColumnReorderedEventArgs.ColumnReorderedEventArgs(int oldDisplayIndex, int newDisplayIndex, System.Windows.Forms.ColumnHeader? header) -> void +System.Windows.Forms.ColumnReorderedEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? +System.Windows.Forms.ColumnReorderedEventArgs.NewDisplayIndex.get -> int +System.Windows.Forms.ColumnReorderedEventArgs.OldDisplayIndex.get -> int +System.Windows.Forms.ColumnReorderedEventHandler +System.Windows.Forms.ColumnStyle +System.Windows.Forms.ColumnStyle.ColumnStyle() -> void +System.Windows.Forms.ColumnStyle.ColumnStyle(System.Windows.Forms.SizeType sizeType) -> void +System.Windows.Forms.ColumnStyle.ColumnStyle(System.Windows.Forms.SizeType sizeType, float width) -> void +System.Windows.Forms.ColumnStyle.Width.get -> float +System.Windows.Forms.ColumnStyle.Width.set -> void +System.Windows.Forms.ColumnWidthChangedEventArgs +System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnIndex.get -> int +System.Windows.Forms.ColumnWidthChangedEventArgs.ColumnWidthChangedEventArgs(int columnIndex) -> void +System.Windows.Forms.ColumnWidthChangedEventHandler +System.Windows.Forms.ColumnWidthChangingEventArgs +System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnIndex.get -> int +System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnWidthChangingEventArgs(int columnIndex, int newWidth) -> void +System.Windows.Forms.ColumnWidthChangingEventArgs.ColumnWidthChangingEventArgs(int columnIndex, int newWidth, bool cancel) -> void +System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth.get -> int +System.Windows.Forms.ColumnWidthChangingEventArgs.NewWidth.set -> void +System.Windows.Forms.ColumnWidthChangingEventHandler +System.Windows.Forms.ComboBox +System.Windows.Forms.ComboBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! +System.Windows.Forms.ComboBox.AutoCompleteCustomSource.set -> void +System.Windows.Forms.ComboBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.ComboBox.AutoCompleteMode.set -> void +System.Windows.Forms.ComboBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.ComboBox.AutoCompleteSource.set -> void +System.Windows.Forms.ComboBox.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ComboBox.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ComboBox.BeginUpdate() -> void +System.Windows.Forms.ComboBox.ChildAccessibleObject +System.Windows.Forms.ComboBox.ChildAccessibleObject.ChildAccessibleObject(System.Windows.Forms.ComboBox! owner, nint handle) -> void +System.Windows.Forms.ComboBox.ComboBox() -> void +System.Windows.Forms.ComboBox.DataSource.get -> object? +System.Windows.Forms.ComboBox.DataSource.set -> void +System.Windows.Forms.ComboBox.DoubleClick -> System.EventHandler? +System.Windows.Forms.ComboBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? +System.Windows.Forms.ComboBox.DrawMode.get -> System.Windows.Forms.DrawMode +System.Windows.Forms.ComboBox.DrawMode.set -> void +System.Windows.Forms.ComboBox.DropDown -> System.EventHandler? +System.Windows.Forms.ComboBox.DropDownClosed -> System.EventHandler? +System.Windows.Forms.ComboBox.DropDownHeight.get -> int +System.Windows.Forms.ComboBox.DropDownHeight.set -> void +System.Windows.Forms.ComboBox.DropDownStyle.get -> System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.ComboBox.DropDownStyle.set -> void +System.Windows.Forms.ComboBox.DropDownStyleChanged -> System.EventHandler? +System.Windows.Forms.ComboBox.DropDownWidth.get -> int +System.Windows.Forms.ComboBox.DropDownWidth.set -> void +System.Windows.Forms.ComboBox.DroppedDown.get -> bool +System.Windows.Forms.ComboBox.DroppedDown.set -> void +System.Windows.Forms.ComboBox.EndUpdate() -> void +System.Windows.Forms.ComboBox.FindString(string? s) -> int +System.Windows.Forms.ComboBox.FindString(string? s, int startIndex) -> int +System.Windows.Forms.ComboBox.FindStringExact(string? s) -> int +System.Windows.Forms.ComboBox.FindStringExact(string? s, int startIndex) -> int +System.Windows.Forms.ComboBox.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.ComboBox.FlatStyle.set -> void +System.Windows.Forms.ComboBox.GetItemHeight(int index) -> int +System.Windows.Forms.ComboBox.IntegralHeight.get -> bool +System.Windows.Forms.ComboBox.IntegralHeight.set -> void +System.Windows.Forms.ComboBox.ItemHeight.get -> int +System.Windows.Forms.ComboBox.ItemHeight.set -> void +System.Windows.Forms.ComboBox.Items.get -> System.Windows.Forms.ComboBox.ObjectCollection! +System.Windows.Forms.ComboBox.MaxDropDownItems.get -> int +System.Windows.Forms.ComboBox.MaxDropDownItems.set -> void +System.Windows.Forms.ComboBox.MaxLength.get -> int +System.Windows.Forms.ComboBox.MaxLength.set -> void +System.Windows.Forms.ComboBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? +System.Windows.Forms.ComboBox.ObjectCollection +System.Windows.Forms.ComboBox.ObjectCollection.Add(object! item) -> int +System.Windows.Forms.ComboBox.ObjectCollection.AddRange(object![]! items) -> void +System.Windows.Forms.ComboBox.ObjectCollection.Clear() -> void +System.Windows.Forms.ComboBox.ObjectCollection.Contains(object? value) -> bool +System.Windows.Forms.ComboBox.ObjectCollection.CopyTo(object![]! destination, int arrayIndex) -> void +System.Windows.Forms.ComboBox.ObjectCollection.Count.get -> int +System.Windows.Forms.ComboBox.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ComboBox.ObjectCollection.IndexOf(object? value) -> int +System.Windows.Forms.ComboBox.ObjectCollection.Insert(int index, object? item) -> void +System.Windows.Forms.ComboBox.ObjectCollection.IsReadOnly.get -> bool +System.Windows.Forms.ComboBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ComboBox! owner) -> void +System.Windows.Forms.ComboBox.ObjectCollection.Remove(object? value) -> void +System.Windows.Forms.ComboBox.ObjectCollection.RemoveAt(int index) -> void +System.Windows.Forms.ComboBox.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.ComboBox.Padding.set -> void +System.Windows.Forms.ComboBox.PaddingChanged -> System.EventHandler? +System.Windows.Forms.ComboBox.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ComboBox.PreferredHeight.get -> int +System.Windows.Forms.ComboBox.Select(int start, int length) -> void +System.Windows.Forms.ComboBox.SelectAll() -> void +System.Windows.Forms.ComboBox.SelectedIndexChanged -> System.EventHandler? +System.Windows.Forms.ComboBox.SelectedItem.get -> object? +System.Windows.Forms.ComboBox.SelectedItem.set -> void +System.Windows.Forms.ComboBox.SelectedText.get -> string! +System.Windows.Forms.ComboBox.SelectedText.set -> void +System.Windows.Forms.ComboBox.SelectionChangeCommitted -> System.EventHandler? +System.Windows.Forms.ComboBox.SelectionLength.get -> int +System.Windows.Forms.ComboBox.SelectionLength.set -> void +System.Windows.Forms.ComboBox.SelectionStart.get -> int +System.Windows.Forms.ComboBox.SelectionStart.set -> void +System.Windows.Forms.ComboBox.Sorted.get -> bool +System.Windows.Forms.ComboBox.Sorted.set -> void +System.Windows.Forms.ComboBox.TextUpdate -> System.EventHandler? +System.Windows.Forms.ComboBoxRenderer +System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.ComboBoxStyle.DropDown = 1 -> System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.ComboBoxStyle.DropDownList = 2 -> System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.ComboBoxStyle.Simple = 0 -> System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.CommonDialog +System.Windows.Forms.CommonDialog.CommonDialog() -> void +System.Windows.Forms.CommonDialog.HelpRequest -> System.EventHandler? +System.Windows.Forms.CommonDialog.ShowDialog() -> System.Windows.Forms.DialogResult +System.Windows.Forms.CommonDialog.ShowDialog(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult +System.Windows.Forms.CommonDialog.Tag.get -> object? +System.Windows.Forms.CommonDialog.Tag.set -> void +System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant +System.Windows.Forms.ComponentModel.Com2Interop.Com2Variant.Com2Variant() -> void +System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService +System.Windows.Forms.ComponentModel.Com2Interop.ICom2PropertyPageDisplayService.ShowPropertyPage(string! title, object! component, int dispid, System.Guid pageGuid, nint parentHandle) -> void +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.ComComponentNameChanged -> System.ComponentModel.Design.ComponentRenameEventHandler? +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.DropDownDone() -> void +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.EnsurePendingChangesCommitted() -> bool +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.HandleF4() -> void +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.InPropertySet.get -> bool +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.LoadState(Microsoft.Win32.RegistryKey? key) -> void +System.Windows.Forms.ComponentModel.Com2Interop.IComPropertyBrowser.SaveState(Microsoft.Win32.RegistryKey? key) -> void +System.Windows.Forms.ContainerControl +System.Windows.Forms.ContainerControl.ActiveControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.ContainerControl.ActiveControl.set -> void +System.Windows.Forms.ContainerControl.AutoScaleDimensions.get -> System.Drawing.SizeF +System.Windows.Forms.ContainerControl.AutoScaleDimensions.set -> void +System.Windows.Forms.ContainerControl.AutoScaleFactor.get -> System.Drawing.SizeF +System.Windows.Forms.ContainerControl.AutoScaleMode.get -> System.Windows.Forms.AutoScaleMode +System.Windows.Forms.ContainerControl.AutoScaleMode.set -> void +System.Windows.Forms.ContainerControl.AutoValidateChanged -> System.EventHandler? +System.Windows.Forms.ContainerControl.ContainerControl() -> void +System.Windows.Forms.ContainerControl.CurrentAutoScaleDimensions.get -> System.Drawing.SizeF +System.Windows.Forms.ContainerControl.ParentForm.get -> System.Windows.Forms.Form? +System.Windows.Forms.ContainerControl.PerformAutoScale() -> void +System.Windows.Forms.ContainerControl.Validate() -> bool +System.Windows.Forms.ContainerControl.Validate(bool checkAutoValidate) -> bool +System.Windows.Forms.ContentsResizedEventArgs +System.Windows.Forms.ContentsResizedEventArgs.ContentsResizedEventArgs(System.Drawing.Rectangle newRectangle) -> void +System.Windows.Forms.ContentsResizedEventArgs.NewRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ContentsResizedEventHandler +System.Windows.Forms.ContextMenuStrip +System.Windows.Forms.ContextMenuStrip.ContextMenuStrip() -> void +System.Windows.Forms.ContextMenuStrip.ContextMenuStrip(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.ContextMenuStrip.SourceControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.Control +System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int childID) -> void +System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID) -> void +System.Windows.Forms.Control.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject! +System.Windows.Forms.Control.AccessibleDefaultActionDescription.get -> string? +System.Windows.Forms.Control.AccessibleDefaultActionDescription.set -> void +System.Windows.Forms.Control.AccessibleDescription.get -> string? +System.Windows.Forms.Control.AccessibleDescription.set -> void +System.Windows.Forms.Control.AccessibleName.get -> string? +System.Windows.Forms.Control.AccessibleName.set -> void +System.Windows.Forms.Control.AccessibleRole.get -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.Control.AccessibleRole.set -> void +System.Windows.Forms.Control.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Control.BackColorChanged -> System.EventHandler? +System.Windows.Forms.Control.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.Control.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.Control.BeginInvoke(System.Action! method) -> System.IAsyncResult! +System.Windows.Forms.Control.BeginInvoke(System.Delegate! method) -> System.IAsyncResult! +System.Windows.Forms.Control.BeginInvoke(System.Delegate! method, params object?[]? args) -> System.IAsyncResult! +System.Windows.Forms.Control.BindingContextChanged -> System.EventHandler? +System.Windows.Forms.Control.Bottom.get -> int +System.Windows.Forms.Control.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.Control.Bounds.set -> void +System.Windows.Forms.Control.BringToFront() -> void +System.Windows.Forms.Control.CanFocus.get -> bool +System.Windows.Forms.Control.CanSelect.get -> bool +System.Windows.Forms.Control.Capture.get -> bool +System.Windows.Forms.Control.Capture.set -> void +System.Windows.Forms.Control.CausesValidation.get -> bool +System.Windows.Forms.Control.CausesValidation.set -> void +System.Windows.Forms.Control.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.Control.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? +System.Windows.Forms.Control.Click -> System.EventHandler? +System.Windows.Forms.Control.ClientRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.Control.ClientSize.get -> System.Drawing.Size +System.Windows.Forms.Control.ClientSize.set -> void +System.Windows.Forms.Control.ClientSizeChanged -> System.EventHandler? +System.Windows.Forms.Control.CompanyName.get -> string! +System.Windows.Forms.Control.Contains(System.Windows.Forms.Control? ctl) -> bool +System.Windows.Forms.Control.ContainsFocus.get -> bool +System.Windows.Forms.Control.ContextMenuStripChanged -> System.EventHandler? +System.Windows.Forms.Control.Control() -> void +System.Windows.Forms.Control.Control(string? text) -> void +System.Windows.Forms.Control.Control(string? text, int left, int top, int width, int height) -> void +System.Windows.Forms.Control.Control(System.Windows.Forms.Control? parent, string? text) -> void +System.Windows.Forms.Control.Control(System.Windows.Forms.Control? parent, string? text, int left, int top, int width, int height) -> void +System.Windows.Forms.Control.ControlAccessibleObject +System.Windows.Forms.Control.ControlAccessibleObject.ControlAccessibleObject(System.Windows.Forms.Control! ownerControl) -> void +System.Windows.Forms.Control.ControlAccessibleObject.Handle.get -> nint +System.Windows.Forms.Control.ControlAccessibleObject.Handle.set -> void +System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent) -> void +System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int childID) -> void +System.Windows.Forms.Control.ControlAccessibleObject.NotifyClients(System.Windows.Forms.AccessibleEvents accEvent, int objectID, int childID) -> void +System.Windows.Forms.Control.ControlAccessibleObject.Owner.get -> System.Windows.Forms.Control? +System.Windows.Forms.Control.ControlAdded -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.Control.ControlCollection +System.Windows.Forms.Control.ControlCollection.Contains(System.Windows.Forms.Control? control) -> bool +System.Windows.Forms.Control.ControlCollection.ControlCollection(System.Windows.Forms.Control! owner) -> void +System.Windows.Forms.Control.ControlCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.Control![]! +System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control! child) -> int +System.Windows.Forms.Control.ControlCollection.IndexOf(System.Windows.Forms.Control? control) -> int +System.Windows.Forms.Control.ControlCollection.Owner.get -> System.Windows.Forms.Control! +System.Windows.Forms.Control.ControlCollection.RemoveAt(int index) -> void +System.Windows.Forms.Control.ControlRemoved -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.Control.Controls.get -> System.Windows.Forms.Control.ControlCollection! +System.Windows.Forms.Control.CreateControl() -> void +System.Windows.Forms.Control.Created.get -> bool +System.Windows.Forms.Control.CreateGraphics() -> System.Drawing.Graphics! +System.Windows.Forms.Control.CursorChanged -> System.EventHandler? +System.Windows.Forms.Control.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! +System.Windows.Forms.Control.DataContextChanged -> System.EventHandler? +System.Windows.Forms.Control.DeviceDpi.get -> int +System.Windows.Forms.Control.Disposing.get -> bool +System.Windows.Forms.Control.DockChanged -> System.EventHandler? +System.Windows.Forms.Control.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects) -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.Control.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.Control.DoubleClick -> System.EventHandler? +System.Windows.Forms.Control.DpiChangedAfterParent -> System.EventHandler? +System.Windows.Forms.Control.DpiChangedBeforeParent -> System.EventHandler? +System.Windows.Forms.Control.DragDrop -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.Control.DragEnter -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.Control.DragLeave -> System.EventHandler? +System.Windows.Forms.Control.DragOver -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.Control.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void +System.Windows.Forms.Control.Enabled.get -> bool +System.Windows.Forms.Control.Enabled.set -> void +System.Windows.Forms.Control.EnabledChanged -> System.EventHandler? +System.Windows.Forms.Control.EndInvoke(System.IAsyncResult! asyncResult) -> object? +System.Windows.Forms.Control.Enter -> System.EventHandler? +System.Windows.Forms.Control.FindForm() -> System.Windows.Forms.Form? +System.Windows.Forms.Control.Focus() -> bool +System.Windows.Forms.Control.FontChanged -> System.EventHandler? +System.Windows.Forms.Control.FontHeight.get -> int +System.Windows.Forms.Control.FontHeight.set -> void +System.Windows.Forms.Control.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.Control.GetAutoSizeMode() -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point pt) -> System.Windows.Forms.Control? +System.Windows.Forms.Control.GetChildAtPoint(System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue) -> System.Windows.Forms.Control? +System.Windows.Forms.Control.GetContainerControl() -> System.Windows.Forms.IContainerControl? +System.Windows.Forms.Control.GetNextControl(System.Windows.Forms.Control? ctl, bool forward) -> System.Windows.Forms.Control? +System.Windows.Forms.Control.GetStyle(System.Windows.Forms.ControlStyles flag) -> bool +System.Windows.Forms.Control.GetTopLevel() -> bool +System.Windows.Forms.Control.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.Control.GotFocus -> System.EventHandler? +System.Windows.Forms.Control.Handle.get -> nint +System.Windows.Forms.Control.HandleCreated -> System.EventHandler? +System.Windows.Forms.Control.HandleDestroyed -> System.EventHandler? +System.Windows.Forms.Control.HasChildren.get -> bool +System.Windows.Forms.Control.Height.get -> int +System.Windows.Forms.Control.Height.set -> void +System.Windows.Forms.Control.HelpRequested -> System.Windows.Forms.HelpEventHandler? +System.Windows.Forms.Control.Hide() -> void +System.Windows.Forms.Control.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.Control.ImeMode.set -> void +System.Windows.Forms.Control.ImeModeChanged -> System.EventHandler! +System.Windows.Forms.Control.Invalidate() -> void +System.Windows.Forms.Control.Invalidate(bool invalidateChildren) -> void +System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle rc) -> void +System.Windows.Forms.Control.Invalidate(System.Drawing.Rectangle rc, bool invalidateChildren) -> void +System.Windows.Forms.Control.Invalidate(System.Drawing.Region? region) -> void +System.Windows.Forms.Control.Invalidate(System.Drawing.Region? region, bool invalidateChildren) -> void +System.Windows.Forms.Control.Invalidated -> System.Windows.Forms.InvalidateEventHandler? +System.Windows.Forms.Control.Invoke(System.Action! method) -> void +System.Windows.Forms.Control.Invoke(System.Delegate! method) -> object! +System.Windows.Forms.Control.Invoke(System.Delegate! method, params object?[]? args) -> object! +System.Windows.Forms.Control.Invoke(System.Func! method) -> T +System.Windows.Forms.Control.InvokeGotFocus(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void +System.Windows.Forms.Control.InvokeLostFocus(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void +System.Windows.Forms.Control.InvokeOnClick(System.Windows.Forms.Control? toInvoke, System.EventArgs! e) -> void +System.Windows.Forms.Control.InvokePaint(System.Windows.Forms.Control! c, System.Windows.Forms.PaintEventArgs! e) -> void +System.Windows.Forms.Control.InvokePaintBackground(System.Windows.Forms.Control! c, System.Windows.Forms.PaintEventArgs! e) -> void +System.Windows.Forms.Control.InvokeRequired.get -> bool +System.Windows.Forms.Control.IsAccessible.get -> bool +System.Windows.Forms.Control.IsAccessible.set -> void +System.Windows.Forms.Control.IsAncestorSiteInDesignMode.get -> bool +System.Windows.Forms.Control.IsDisposed.get -> bool +System.Windows.Forms.Control.IsHandleCreated.get -> bool +System.Windows.Forms.Control.IsMirrored.get -> bool +System.Windows.Forms.Control.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Control.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.Control.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Control.Layout -> System.Windows.Forms.LayoutEventHandler? +System.Windows.Forms.Control.Leave -> System.EventHandler? +System.Windows.Forms.Control.Left.get -> int +System.Windows.Forms.Control.Left.set -> void +System.Windows.Forms.Control.Location.get -> System.Drawing.Point +System.Windows.Forms.Control.Location.set -> void +System.Windows.Forms.Control.LocationChanged -> System.EventHandler? +System.Windows.Forms.Control.LogicalToDeviceUnits(int value) -> int +System.Windows.Forms.Control.LogicalToDeviceUnits(System.Drawing.Size value) -> System.Drawing.Size +System.Windows.Forms.Control.LostFocus -> System.EventHandler? +System.Windows.Forms.Control.Margin.get -> System.Windows.Forms.Padding +System.Windows.Forms.Control.Margin.set -> void +System.Windows.Forms.Control.MarginChanged -> System.EventHandler? +System.Windows.Forms.Control.MouseCaptureChanged -> System.EventHandler? +System.Windows.Forms.Control.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.MouseEnter -> System.EventHandler? +System.Windows.Forms.Control.MouseHover -> System.EventHandler? +System.Windows.Forms.Control.MouseLeave -> System.EventHandler? +System.Windows.Forms.Control.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.MouseWheel -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.Control.Move -> System.EventHandler? +System.Windows.Forms.Control.Name.get -> string! +System.Windows.Forms.Control.Name.set -> void +System.Windows.Forms.Control.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.Control.Padding.set -> void +System.Windows.Forms.Control.PaddingChanged -> System.EventHandler? +System.Windows.Forms.Control.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.Control.Parent.get -> System.Windows.Forms.Control? +System.Windows.Forms.Control.Parent.set -> void +System.Windows.Forms.Control.ParentChanged -> System.EventHandler? +System.Windows.Forms.Control.PerformLayout() -> void +System.Windows.Forms.Control.PerformLayout(System.Windows.Forms.Control? affectedControl, string? affectedProperty) -> void +System.Windows.Forms.Control.PointToClient(System.Drawing.Point p) -> System.Drawing.Point +System.Windows.Forms.Control.PointToScreen(System.Drawing.Point p) -> System.Drawing.Point +System.Windows.Forms.Control.PreferredSize.get -> System.Drawing.Size +System.Windows.Forms.Control.PreProcessControlMessage(ref System.Windows.Forms.Message msg) -> System.Windows.Forms.PreProcessControlState +System.Windows.Forms.Control.PreviewKeyDown -> System.Windows.Forms.PreviewKeyDownEventHandler? +System.Windows.Forms.Control.ProductName.get -> string! +System.Windows.Forms.Control.ProductVersion.get -> string! +System.Windows.Forms.Control.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? +System.Windows.Forms.Control.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? +System.Windows.Forms.Control.RaiseDragEvent(object! key, System.Windows.Forms.DragEventArgs! e) -> void +System.Windows.Forms.Control.RaiseKeyEvent(object! key, System.Windows.Forms.KeyEventArgs! e) -> void +System.Windows.Forms.Control.RaiseMouseEvent(object! key, System.Windows.Forms.MouseEventArgs! e) -> void +System.Windows.Forms.Control.RaisePaintEvent(object! key, System.Windows.Forms.PaintEventArgs! e) -> void +System.Windows.Forms.Control.RecreateHandle() -> void +System.Windows.Forms.Control.RecreatingHandle.get -> bool +System.Windows.Forms.Control.RectangleToClient(System.Drawing.Rectangle r) -> System.Drawing.Rectangle +System.Windows.Forms.Control.RectangleToScreen(System.Drawing.Rectangle r) -> System.Drawing.Rectangle +System.Windows.Forms.Control.Region.get -> System.Drawing.Region? +System.Windows.Forms.Control.Region.set -> void +System.Windows.Forms.Control.RegionChanged -> System.EventHandler? +System.Windows.Forms.Control.RenderRightToLeft.get -> bool +System.Windows.Forms.Control.ResetBindings() -> void +System.Windows.Forms.Control.ResetImeMode() -> void +System.Windows.Forms.Control.ResetMouseEventArgs() -> void +System.Windows.Forms.Control.Resize -> System.EventHandler? +System.Windows.Forms.Control.ResizeRedraw.get -> bool +System.Windows.Forms.Control.ResizeRedraw.set -> void +System.Windows.Forms.Control.ResumeLayout() -> void +System.Windows.Forms.Control.ResumeLayout(bool performLayout) -> void +System.Windows.Forms.Control.Right.get -> int +System.Windows.Forms.Control.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.Control.RtlTranslateAlignment(System.Drawing.ContentAlignment align) -> System.Drawing.ContentAlignment +System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.HorizontalAlignment align) -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.Control.RtlTranslateAlignment(System.Windows.Forms.LeftRightAlignment align) -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.Control.RtlTranslateContent(System.Drawing.ContentAlignment align) -> System.Drawing.ContentAlignment +System.Windows.Forms.Control.RtlTranslateHorizontal(System.Windows.Forms.HorizontalAlignment align) -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.Control.RtlTranslateLeftRight(System.Windows.Forms.LeftRightAlignment align) -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.Control.Scale(float dx, float dy) -> void +System.Windows.Forms.Control.Scale(float ratio) -> void +System.Windows.Forms.Control.Scale(System.Drawing.SizeF factor) -> void +System.Windows.Forms.Control.ScaleBitmapLogicalToDevice(ref System.Drawing.Bitmap! logicalBitmap) -> void +System.Windows.Forms.Control.Select() -> void +System.Windows.Forms.Control.SelectNextControl(System.Windows.Forms.Control? ctl, bool forward, bool tabStopOnly, bool nested, bool wrap) -> bool +System.Windows.Forms.Control.SendToBack() -> void +System.Windows.Forms.Control.SetAutoSizeMode(System.Windows.Forms.AutoSizeMode mode) -> void +System.Windows.Forms.Control.SetBounds(int x, int y, int width, int height) -> void +System.Windows.Forms.Control.SetBounds(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +System.Windows.Forms.Control.SetStyle(System.Windows.Forms.ControlStyles flag, bool value) -> void +System.Windows.Forms.Control.SetTopLevel(bool value) -> void +System.Windows.Forms.Control.Show() -> void +System.Windows.Forms.Control.Size.get -> System.Drawing.Size +System.Windows.Forms.Control.Size.set -> void +System.Windows.Forms.Control.SizeChanged -> System.EventHandler? +System.Windows.Forms.Control.StyleChanged -> System.EventHandler? +System.Windows.Forms.Control.SuspendLayout() -> void +System.Windows.Forms.Control.SystemColorsChanged -> System.EventHandler? +System.Windows.Forms.Control.TabIndex.get -> int +System.Windows.Forms.Control.TabIndex.set -> void +System.Windows.Forms.Control.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.Control.TabStop.get -> bool +System.Windows.Forms.Control.TabStop.set -> void +System.Windows.Forms.Control.TabStopChanged -> System.EventHandler? +System.Windows.Forms.Control.Tag.get -> object? +System.Windows.Forms.Control.Tag.set -> void +System.Windows.Forms.Control.TextChanged -> System.EventHandler? +System.Windows.Forms.Control.Top.get -> int +System.Windows.Forms.Control.Top.set -> void +System.Windows.Forms.Control.TopLevelControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.Control.Update() -> void +System.Windows.Forms.Control.UpdateBounds() -> void +System.Windows.Forms.Control.UpdateBounds(int x, int y, int width, int height) -> void +System.Windows.Forms.Control.UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight) -> void +System.Windows.Forms.Control.UpdateStyles() -> void +System.Windows.Forms.Control.UpdateZOrder() -> void +System.Windows.Forms.Control.UseWaitCursor.get -> bool +System.Windows.Forms.Control.UseWaitCursor.set -> void +System.Windows.Forms.Control.Validated -> System.EventHandler? +System.Windows.Forms.Control.Validating -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.Control.Visible.get -> bool +System.Windows.Forms.Control.Visible.set -> void +System.Windows.Forms.Control.VisibleChanged -> System.EventHandler? +System.Windows.Forms.Control.Width.get -> int +System.Windows.Forms.Control.Width.set -> void +System.Windows.Forms.Control.WindowTarget.get -> System.Windows.Forms.IWindowTarget! +System.Windows.Forms.Control.WindowTarget.set -> void +System.Windows.Forms.ControlBindingsCollection +System.Windows.Forms.ControlBindingsCollection.Clear() -> void +System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode.get -> System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.ControlBindingsCollection.DefaultDataSourceUpdateMode.set -> void +System.Windows.Forms.ControlBindingsCollection.RemoveAt(int index) -> void +System.Windows.Forms.ControlEventArgs +System.Windows.Forms.ControlEventArgs.Control.get -> System.Windows.Forms.Control? +System.Windows.Forms.ControlEventArgs.ControlEventArgs(System.Windows.Forms.Control? control) -> void +System.Windows.Forms.ControlEventHandler +System.Windows.Forms.ControlPaint +System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.AllPaintingInWmPaint = 8192 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.CacheText = 16384 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.ContainerControl = 1 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.DoubleBuffer = 65536 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.EnableNotifyMessage = 32768 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.FixedHeight = 64 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.FixedWidth = 32 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.Opaque = 4 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.OptimizedDoubleBuffer = 131072 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.ResizeRedraw = 16 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.Selectable = 512 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.StandardClick = 256 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.StandardDoubleClick = 4096 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.SupportsTransparentBackColor = 2048 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.UserMouse = 1024 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.UserPaint = 2 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlStyles.UseTextForAccessibility = 262144 -> System.Windows.Forms.ControlStyles +System.Windows.Forms.ControlUpdateMode +System.Windows.Forms.ControlUpdateMode.Never = 1 -> System.Windows.Forms.ControlUpdateMode +System.Windows.Forms.ControlUpdateMode.OnPropertyChanged = 0 -> System.Windows.Forms.ControlUpdateMode +System.Windows.Forms.ConvertEventArgs +System.Windows.Forms.ConvertEventArgs.ConvertEventArgs(object? value, System.Type? desiredType) -> void +System.Windows.Forms.ConvertEventArgs.DesiredType.get -> System.Type? +System.Windows.Forms.ConvertEventArgs.Value.get -> object? +System.Windows.Forms.ConvertEventArgs.Value.set -> void +System.Windows.Forms.ConvertEventHandler +System.Windows.Forms.CreateParams +System.Windows.Forms.CreateParams.Caption.get -> string? +System.Windows.Forms.CreateParams.Caption.set -> void +System.Windows.Forms.CreateParams.ClassName.get -> string? +System.Windows.Forms.CreateParams.ClassName.set -> void +System.Windows.Forms.CreateParams.ClassStyle.get -> int +System.Windows.Forms.CreateParams.ClassStyle.set -> void +System.Windows.Forms.CreateParams.CreateParams() -> void +System.Windows.Forms.CreateParams.ExStyle.get -> int +System.Windows.Forms.CreateParams.ExStyle.set -> void +System.Windows.Forms.CreateParams.Height.get -> int +System.Windows.Forms.CreateParams.Height.set -> void +System.Windows.Forms.CreateParams.Param.get -> object? +System.Windows.Forms.CreateParams.Param.set -> void +System.Windows.Forms.CreateParams.Parent.get -> nint +System.Windows.Forms.CreateParams.Parent.set -> void +System.Windows.Forms.CreateParams.Style.get -> int +System.Windows.Forms.CreateParams.Style.set -> void +System.Windows.Forms.CreateParams.Width.get -> int +System.Windows.Forms.CreateParams.Width.set -> void +System.Windows.Forms.CreateParams.X.get -> int +System.Windows.Forms.CreateParams.X.set -> void +System.Windows.Forms.CreateParams.Y.get -> int +System.Windows.Forms.CreateParams.Y.set -> void +System.Windows.Forms.CurrencyManager +System.Windows.Forms.CurrencyManager.ItemChanged -> System.Windows.Forms.ItemChangedEventHandler +System.Windows.Forms.CurrencyManager.ListChanged -> System.ComponentModel.ListChangedEventHandler +System.Windows.Forms.CurrencyManager.MetaDataChanged -> System.EventHandler +System.Windows.Forms.CurrencyManager.Refresh() -> void +System.Windows.Forms.Cursor +System.Windows.Forms.Cursor.CopyHandle() -> nint +System.Windows.Forms.Cursor.Cursor(nint handle) -> void +System.Windows.Forms.Cursor.Cursor(string! fileName) -> void +System.Windows.Forms.Cursor.Cursor(System.IO.Stream! stream) -> void +System.Windows.Forms.Cursor.Cursor(System.Type! type, string! resource) -> void +System.Windows.Forms.Cursor.Dispose() -> void +System.Windows.Forms.Cursor.Draw(System.Drawing.Graphics! g, System.Drawing.Rectangle targetRect) -> void +System.Windows.Forms.Cursor.DrawStretched(System.Drawing.Graphics! g, System.Drawing.Rectangle targetRect) -> void +System.Windows.Forms.Cursor.Handle.get -> nint +System.Windows.Forms.Cursor.HotSpot.get -> System.Drawing.Point +System.Windows.Forms.Cursor.Size.get -> System.Drawing.Size +System.Windows.Forms.Cursor.Tag.get -> object? +System.Windows.Forms.Cursor.Tag.set -> void +System.Windows.Forms.CursorConverter +System.Windows.Forms.CursorConverter.CursorConverter() -> void +System.Windows.Forms.Cursors +System.Windows.Forms.DataFormats +System.Windows.Forms.DataFormats.Format +System.Windows.Forms.DataFormats.Format.Format(string! name, int id) -> void +System.Windows.Forms.DataFormats.Format.Id.get -> int +System.Windows.Forms.DataFormats.Format.Name.get -> string! +System.Windows.Forms.DataGridView +System.Windows.Forms.DataGridView.AllowUserToAddRows.get -> bool +System.Windows.Forms.DataGridView.AllowUserToAddRows.set -> void +System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AllowUserToDeleteRows.get -> bool +System.Windows.Forms.DataGridView.AllowUserToDeleteRows.set -> void +System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AllowUserToOrderColumns.get -> bool +System.Windows.Forms.DataGridView.AllowUserToOrderColumns.set -> void +System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AllowUserToResizeColumns.get -> bool +System.Windows.Forms.DataGridView.AllowUserToResizeColumns.set -> void +System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AllowUserToResizeRows.get -> bool +System.Windows.Forms.DataGridView.AllowUserToResizeRows.set -> void +System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AreAllCellsSelected(bool includeInvisibleCells) -> bool +System.Windows.Forms.DataGridView.AutoGenerateColumns.get -> bool +System.Windows.Forms.DataGridView.AutoGenerateColumns.set -> void +System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged -> System.EventHandler +System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex) -> void +System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode) -> void +System.Windows.Forms.DataGridView.AutoResizeColumn(int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode, bool fixedHeight) -> void +System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight() -> void +System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(bool fixedRowHeadersWidth, bool fixedColumnsWidth) -> void +System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(int columnIndex) -> void +System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight(int columnIndex, bool fixedRowHeadersWidth, bool fixedColumnWidth) -> void +System.Windows.Forms.DataGridView.AutoResizeColumns() -> void +System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode) -> void +System.Windows.Forms.DataGridView.AutoResizeColumns(System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode, bool fixedHeight) -> void +System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex) -> void +System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode) -> void +System.Windows.Forms.DataGridView.AutoResizeRow(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> void +System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode) -> void +System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowHeight) -> void +System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode) -> void +System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowsHeight) -> void +System.Windows.Forms.DataGridView.AutoResizeRows() -> void +System.Windows.Forms.DataGridView.AutoResizeRows(int rowIndexStart, int rowsCount, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> void +System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode) -> void +System.Windows.Forms.DataGridView.AutoResizeRows(System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode, bool fixedWidth) -> void +System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged -> System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler +System.Windows.Forms.DataGridView.AutoSizeColumnsMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridView.AutoSizeColumnsMode.set -> void +System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged -> System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler +System.Windows.Forms.DataGridView.AutoSizeRowsMode.get -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridView.AutoSizeRowsMode.set -> void +System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler +System.Windows.Forms.DataGridView.BackColorChanged -> System.EventHandler +System.Windows.Forms.DataGridView.BackgroundColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridView.BackgroundColor.set -> void +System.Windows.Forms.DataGridView.BackgroundColorChanged -> System.EventHandler +System.Windows.Forms.DataGridView.BackgroundImageChanged -> System.EventHandler +System.Windows.Forms.DataGridView.BackgroundImageLayoutChanged -> System.EventHandler +System.Windows.Forms.DataGridView.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.DataGridView.BorderStyle.set -> void +System.Windows.Forms.DataGridView.BorderStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.CancelEdit() -> bool +System.Windows.Forms.DataGridView.CancelRowEdit -> System.Windows.Forms.QuestionEventHandler +System.Windows.Forms.DataGridView.CellBeginEdit -> System.Windows.Forms.DataGridViewCellCancelEventHandler +System.Windows.Forms.DataGridView.CellBorderStyle.get -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridView.CellBorderStyle.set -> void +System.Windows.Forms.DataGridView.CellBorderStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.CellClick -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellContentClick -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellContentDoubleClick -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellContextMenuStripChanged -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellContextMenuStripNeeded -> System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler +System.Windows.Forms.DataGridView.CellDoubleClick -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellEndEdit -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellEnter -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellErrorTextChanged -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellErrorTextNeeded -> System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler +System.Windows.Forms.DataGridView.CellFormatting -> System.Windows.Forms.DataGridViewCellFormattingEventHandler +System.Windows.Forms.DataGridView.CellLeave -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.CellMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.CellMouseDown -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.CellMouseEnter -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellMouseLeave -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellMouseMove -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.CellMouseUp -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.CellPainting -> System.Windows.Forms.DataGridViewCellPaintingEventHandler +System.Windows.Forms.DataGridView.CellParsing -> System.Windows.Forms.DataGridViewCellParsingEventHandler +System.Windows.Forms.DataGridView.CellStateChanged -> System.Windows.Forms.DataGridViewCellStateChangedEventHandler +System.Windows.Forms.DataGridView.CellStyleChanged -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellStyleContentChanged -> System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler +System.Windows.Forms.DataGridView.CellToolTipTextChanged -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellToolTipTextNeeded -> System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler +System.Windows.Forms.DataGridView.CellValidated -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellValidating -> System.Windows.Forms.DataGridViewCellValidatingEventHandler +System.Windows.Forms.DataGridView.CellValueChanged -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.CellValueNeeded -> System.Windows.Forms.DataGridViewCellValueEventHandler +System.Windows.Forms.DataGridView.CellValuePushed -> System.Windows.Forms.DataGridViewCellValueEventHandler +System.Windows.Forms.DataGridView.ClearSelection() -> void +System.Windows.Forms.DataGridView.ClearSelection(int columnIndexException, int rowIndexException, bool selectExceptionElement) -> void +System.Windows.Forms.DataGridView.ClipboardCopyMode.get -> System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridView.ClipboardCopyMode.set -> void +System.Windows.Forms.DataGridView.ColumnAdded -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnCount.get -> int +System.Windows.Forms.DataGridView.ColumnCount.set -> void +System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnDividerDoubleClick -> System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler +System.Windows.Forms.DataGridView.ColumnDividerWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnHeaderCellChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnHeaderMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle.set -> void +System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.ColumnHeadersHeight.get -> int +System.Windows.Forms.DataGridView.ColumnHeadersHeight.set -> void +System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged -> System.EventHandler +System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode.get -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode +System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode.set -> void +System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler +System.Windows.Forms.DataGridView.ColumnHeadersVisible.get -> bool +System.Windows.Forms.DataGridView.ColumnHeadersVisible.set -> void +System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnNameChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnRemoved -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnSortModeChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnStateChanged -> System.Windows.Forms.DataGridViewColumnStateChangedEventHandler +System.Windows.Forms.DataGridView.ColumnToolTipTextChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.ColumnWidthChanged -> System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts context) -> bool +System.Windows.Forms.DataGridView.CurrentCellAddress.get -> System.Drawing.Point +System.Windows.Forms.DataGridView.CurrentCellChanged -> System.EventHandler +System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged -> System.EventHandler +System.Windows.Forms.DataGridView.DataBindingComplete -> System.Windows.Forms.DataGridViewBindingCompleteEventHandler +System.Windows.Forms.DataGridView.DataError -> System.Windows.Forms.DataGridViewDataErrorEventHandler +System.Windows.Forms.DataGridView.DataGridView() -> void +System.Windows.Forms.DataGridView.DataGridViewAccessibleObject +System.Windows.Forms.DataGridView.DataGridViewAccessibleObject.DataGridViewAccessibleObject(System.Windows.Forms.DataGridView! owner) -> void +System.Windows.Forms.DataGridView.DataGridViewControlCollection +System.Windows.Forms.DataGridView.DataGridViewControlCollection.CopyTo(System.Windows.Forms.Control![]! array, int index) -> void +System.Windows.Forms.DataGridView.DataGridViewControlCollection.DataGridViewControlCollection(System.Windows.Forms.DataGridView! owner) -> void +System.Windows.Forms.DataGridView.DataGridViewControlCollection.Insert(int index, System.Windows.Forms.Control! value) -> void +System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject +System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.DataGridViewTopRowAccessibleObject() -> void +System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.DataGridViewTopRowAccessibleObject(System.Windows.Forms.DataGridView! owner) -> void +System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner.get -> System.Windows.Forms.DataGridView? +System.Windows.Forms.DataGridView.DataGridViewTopRowAccessibleObject.Owner.set -> void +System.Windows.Forms.DataGridView.DataMemberChanged -> System.EventHandler +System.Windows.Forms.DataGridView.DataSourceChanged -> System.EventHandler +System.Windows.Forms.DataGridView.DefaultCellStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.DefaultValuesNeeded -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.DisplayedColumnCount(bool includePartialColumns) -> int +System.Windows.Forms.DataGridView.DisplayedRowCount(bool includePartialRow) -> int +System.Windows.Forms.DataGridView.EditingControlShowing -> System.Windows.Forms.DataGridViewEditingControlShowingEventHandler +System.Windows.Forms.DataGridView.EditMode.get -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridView.EditMode.set -> void +System.Windows.Forms.DataGridView.EditModeChanged -> System.EventHandler +System.Windows.Forms.DataGridView.EnableHeadersVisualStyles.get -> bool +System.Windows.Forms.DataGridView.EnableHeadersVisualStyles.set -> void +System.Windows.Forms.DataGridView.EndEdit() -> bool +System.Windows.Forms.DataGridView.EndEdit(System.Windows.Forms.DataGridViewDataErrorContexts context) -> bool +System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnHiddenWidth.get -> int +System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex.get -> int +System.Windows.Forms.DataGridView.FirstDisplayedScrollingColumnIndex.set -> void +System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex.get -> int +System.Windows.Forms.DataGridView.FirstDisplayedScrollingRowIndex.set -> void +System.Windows.Forms.DataGridView.FontChanged -> System.EventHandler +System.Windows.Forms.DataGridView.ForeColorChanged -> System.EventHandler +System.Windows.Forms.DataGridView.GetCellCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridView.GetCellDisplayRectangle(int columnIndex, int rowIndex, bool cutOverflow) -> System.Drawing.Rectangle +System.Windows.Forms.DataGridView.GetColumnDisplayRectangle(int columnIndex, bool cutOverflow) -> System.Drawing.Rectangle +System.Windows.Forms.DataGridView.GetRowDisplayRectangle(int rowIndex, bool cutOverflow) -> System.Drawing.Rectangle +System.Windows.Forms.DataGridView.GridColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridView.GridColor.set -> void +System.Windows.Forms.DataGridView.GridColorChanged -> System.EventHandler +System.Windows.Forms.DataGridView.HitTestInfo +System.Windows.Forms.DataGridView.HitTestInfo.ColumnIndex.get -> int +System.Windows.Forms.DataGridView.HitTestInfo.ColumnX.get -> int +System.Windows.Forms.DataGridView.HitTestInfo.RowIndex.get -> int +System.Windows.Forms.DataGridView.HitTestInfo.RowY.get -> int +System.Windows.Forms.DataGridView.HitTestInfo.Type.get -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridView.HorizontalScrollingOffset.get -> int +System.Windows.Forms.DataGridView.HorizontalScrollingOffset.set -> void +System.Windows.Forms.DataGridView.InvalidateCell(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridView.InvalidateColumn(int columnIndex) -> void +System.Windows.Forms.DataGridView.InvalidateRow(int rowIndex) -> void +System.Windows.Forms.DataGridView.IsCurrentCellDirty.get -> bool +System.Windows.Forms.DataGridView.IsCurrentCellInEditMode.get -> bool +System.Windows.Forms.DataGridView.IsCurrentRowDirty.get -> bool +System.Windows.Forms.DataGridView.MultiSelect.get -> bool +System.Windows.Forms.DataGridView.MultiSelect.set -> void +System.Windows.Forms.DataGridView.MultiSelectChanged -> System.EventHandler +System.Windows.Forms.DataGridView.NewRowIndex.get -> int +System.Windows.Forms.DataGridView.NewRowNeeded -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.DataGridView.Padding.set -> void +System.Windows.Forms.DataGridView.PaddingChanged -> System.EventHandler +System.Windows.Forms.DataGridView.ProcessAKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessControlShiftF10Keys(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessDeleteKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessDownKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessEndKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessEnterKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessEscapeKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessF2Key(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessF3Key(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessHomeKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessInsertKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessLeftKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessNextKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessPriorKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessRightKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessSpaceKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessTabKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessUpKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ProcessZeroKey(System.Windows.Forms.Keys keyData) -> bool +System.Windows.Forms.DataGridView.ReadOnly.get -> bool +System.Windows.Forms.DataGridView.ReadOnly.set -> void +System.Windows.Forms.DataGridView.ReadOnlyChanged -> System.EventHandler +System.Windows.Forms.DataGridView.RefreshEdit() -> bool +System.Windows.Forms.DataGridView.RowContextMenuStripChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowContextMenuStripNeeded -> System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler +System.Windows.Forms.DataGridView.RowCount.get -> int +System.Windows.Forms.DataGridView.RowCount.set -> void +System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowDirtyStateNeeded -> System.Windows.Forms.QuestionEventHandler +System.Windows.Forms.DataGridView.RowDividerDoubleClick -> System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler +System.Windows.Forms.DataGridView.RowDividerHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowEnter -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.RowErrorTextChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowErrorTextNeeded -> System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler +System.Windows.Forms.DataGridView.RowHeaderCellChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowHeaderMouseClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick -> System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridView.RowHeadersBorderStyle.get -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridView.RowHeadersBorderStyle.set -> void +System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.RowHeadersVisible.get -> bool +System.Windows.Forms.DataGridView.RowHeadersVisible.set -> void +System.Windows.Forms.DataGridView.RowHeadersWidth.get -> int +System.Windows.Forms.DataGridView.RowHeadersWidth.set -> void +System.Windows.Forms.DataGridView.RowHeadersWidthChanged -> System.EventHandler +System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode.get -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode.set -> void +System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged -> System.Windows.Forms.DataGridViewAutoSizeModeEventHandler +System.Windows.Forms.DataGridView.RowHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowHeightInfoNeeded -> System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler +System.Windows.Forms.DataGridView.RowHeightInfoPushed -> System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler +System.Windows.Forms.DataGridView.RowLeave -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.RowMinimumHeightChanged -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowPostPaint -> System.Windows.Forms.DataGridViewRowPostPaintEventHandler +System.Windows.Forms.DataGridView.RowPrePaint -> System.Windows.Forms.DataGridViewRowPrePaintEventHandler +System.Windows.Forms.DataGridView.RowsAdded -> System.Windows.Forms.DataGridViewRowsAddedEventHandler +System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.RowsRemoved -> System.Windows.Forms.DataGridViewRowsRemovedEventHandler +System.Windows.Forms.DataGridView.RowStateChanged -> System.Windows.Forms.DataGridViewRowStateChangedEventHandler +System.Windows.Forms.DataGridView.RowUnshared -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.RowValidated -> System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridView.RowValidating -> System.Windows.Forms.DataGridViewCellCancelEventHandler +System.Windows.Forms.DataGridView.Scroll -> System.Windows.Forms.ScrollEventHandler +System.Windows.Forms.DataGridView.ScrollBars.get -> System.Windows.Forms.ScrollBars +System.Windows.Forms.DataGridView.ScrollBars.set -> void +System.Windows.Forms.DataGridView.SelectAll() -> void +System.Windows.Forms.DataGridView.SelectionChanged -> System.EventHandler +System.Windows.Forms.DataGridView.SelectionMode.get -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridView.SelectionMode.set -> void +System.Windows.Forms.DataGridView.ShowCellErrors.get -> bool +System.Windows.Forms.DataGridView.ShowCellErrors.set -> void +System.Windows.Forms.DataGridView.ShowCellToolTips.get -> bool +System.Windows.Forms.DataGridView.ShowCellToolTips.set -> void +System.Windows.Forms.DataGridView.ShowEditingIcon.get -> bool +System.Windows.Forms.DataGridView.ShowEditingIcon.set -> void +System.Windows.Forms.DataGridView.ShowRowErrors.get -> bool +System.Windows.Forms.DataGridView.ShowRowErrors.set -> void +System.Windows.Forms.DataGridView.SortCompare -> System.Windows.Forms.DataGridViewSortCompareEventHandler +System.Windows.Forms.DataGridView.Sorted -> System.EventHandler +System.Windows.Forms.DataGridView.SortOrder.get -> System.Windows.Forms.SortOrder +System.Windows.Forms.DataGridView.StandardTab.get -> bool +System.Windows.Forms.DataGridView.StandardTab.set -> void +System.Windows.Forms.DataGridView.StyleChanged -> System.EventHandler +System.Windows.Forms.DataGridView.TextChanged -> System.EventHandler +System.Windows.Forms.DataGridView.UpdateCellErrorText(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridView.UpdateCellValue(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridView.UpdateRowErrorText(int rowIndex) -> void +System.Windows.Forms.DataGridView.UpdateRowErrorText(int rowIndexStart, int rowIndexEnd) -> void +System.Windows.Forms.DataGridView.UpdateRowHeightInfo(int rowIndex, bool updateToEnd) -> void +System.Windows.Forms.DataGridView.UserAddedRow -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.UserDeletedRow -> System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridView.UserDeletingRow -> System.Windows.Forms.DataGridViewRowCancelEventHandler +System.Windows.Forms.DataGridView.VerticalScrollingOffset.get -> int +System.Windows.Forms.DataGridView.VirtualMode.get -> bool +System.Windows.Forms.DataGridView.VirtualMode.set -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.All.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.All.set -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Bottom.set -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle.DataGridViewAdvancedBorderStyle() -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Left.set -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Right.set -> void +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top.get -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedBorderStyle.Top.set -> void +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Inset = 3 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.InsetDouble = 4 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.None = 1 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.NotSet = 0 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Outset = 5 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetDouble = 6 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.OutsetPartial = 7 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAdvancedCellBorderStyle.Single = 2 -> System.Windows.Forms.DataGridViewAdvancedCellBorderStyle +System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells = 6 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCellsExceptHeader = 4 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells = 10 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader = 8 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill = 16 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.None = 1 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet = 0 -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs +System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn? +System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.DataGridViewAutoSizeColumnModeEventArgs(System.Windows.Forms.DataGridViewColumn? dataGridViewColumn, System.Windows.Forms.DataGridViewAutoSizeColumnMode previousMode) -> void +System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs.PreviousMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler +System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells = 6 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCellsExceptHeader = 4 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells = 10 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCellsExceptHeader = 8 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill = 16 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None = 1 -> System.Windows.Forms.DataGridViewAutoSizeColumnsMode +System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs +System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.DataGridViewAutoSizeColumnsModeEventArgs(System.Windows.Forms.DataGridViewAutoSizeColumnMode[]? previousModes) -> void +System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs.PreviousModes.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode[]? +System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler +System.Windows.Forms.DataGridViewAutoSizeModeEventArgs +System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.DataGridViewAutoSizeModeEventArgs(bool previousModeAutoSized) -> void +System.Windows.Forms.DataGridViewAutoSizeModeEventArgs.PreviousModeAutoSized.get -> bool +System.Windows.Forms.DataGridViewAutoSizeModeEventHandler +System.Windows.Forms.DataGridViewAutoSizeRowMode +System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCells = 3 -> System.Windows.Forms.DataGridViewAutoSizeRowMode +System.Windows.Forms.DataGridViewAutoSizeRowMode.AllCellsExceptHeader = 2 -> System.Windows.Forms.DataGridViewAutoSizeRowMode +System.Windows.Forms.DataGridViewAutoSizeRowMode.RowHeader = 1 -> System.Windows.Forms.DataGridViewAutoSizeRowMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells = 7 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders = 6 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders = 5 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells = 11 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCellsExceptHeaders = 10 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedHeaders = 9 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewAutoSizeRowsMode.None = 0 -> System.Windows.Forms.DataGridViewAutoSizeRowsMode +System.Windows.Forms.DataGridViewBand +System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType.get -> System.Type! +System.Windows.Forms.DataGridViewBand.DefaultHeaderCellType.set -> void +System.Windows.Forms.DataGridViewBand.Dispose() -> void +System.Windows.Forms.DataGridViewBand.HasDefaultCellStyle.get -> bool +System.Windows.Forms.DataGridViewBand.Index.get -> int +System.Windows.Forms.DataGridViewBand.Tag.get -> object? +System.Windows.Forms.DataGridViewBand.Tag.set -> void +System.Windows.Forms.DataGridViewBindingCompleteEventArgs +System.Windows.Forms.DataGridViewBindingCompleteEventArgs.DataGridViewBindingCompleteEventArgs(System.ComponentModel.ListChangedType listChangedType) -> void +System.Windows.Forms.DataGridViewBindingCompleteEventArgs.ListChangedType.get -> System.ComponentModel.ListChangedType +System.Windows.Forms.DataGridViewBindingCompleteEventHandler +System.Windows.Forms.DataGridViewButtonCell +System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCell() -> void +System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject +System.Windows.Forms.DataGridViewButtonCell.DataGridViewButtonCellAccessibleObject.DataGridViewButtonCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewButtonCell.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewButtonCell.FlatStyle.set -> void +System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue.get -> bool +System.Windows.Forms.DataGridViewButtonCell.UseColumnTextForButtonValue.set -> void +System.Windows.Forms.DataGridViewButtonColumn +System.Windows.Forms.DataGridViewButtonColumn.DataGridViewButtonColumn() -> void +System.Windows.Forms.DataGridViewButtonColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewButtonColumn.FlatStyle.set -> void +System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue.get -> bool +System.Windows.Forms.DataGridViewButtonColumn.UseColumnTextForButtonValue.set -> void +System.Windows.Forms.DataGridViewCell +System.Windows.Forms.DataGridViewCell.~DataGridViewCell() -> void +System.Windows.Forms.DataGridViewCell.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCell.ContentBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewCell.DataGridViewCell() -> void +System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject +System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DataGridViewCellAccessibleObject() -> void +System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.DataGridViewCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner.get -> System.Windows.Forms.DataGridViewCell? +System.Windows.Forms.DataGridViewCell.DataGridViewCellAccessibleObject.Owner.set -> void +System.Windows.Forms.DataGridViewCell.Dispose() -> void +System.Windows.Forms.DataGridViewCell.ErrorIconBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewCell.GetContentBounds(int rowIndex) -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewCell.HasStyle.get -> bool +System.Windows.Forms.DataGridViewCell.InheritedState.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewCell.IsInEditMode.get -> bool +System.Windows.Forms.DataGridViewCell.PreferredSize.get -> System.Drawing.Size +System.Windows.Forms.DataGridViewCell.RowIndex.get -> int +System.Windows.Forms.DataGridViewCell.Size.get -> System.Drawing.Size +System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.Custom = 0 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.None = 4 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.Raised = 2 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.RaisedHorizontal = 9 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.RaisedVertical = 6 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.Single = 1 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal = 8 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical = 5 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.Sunken = 3 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.SunkenHorizontal = 10 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellBorderStyle.SunkenVertical = 7 -> System.Windows.Forms.DataGridViewCellBorderStyle +System.Windows.Forms.DataGridViewCellCancelEventArgs +System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellCancelEventArgs.DataGridViewCellCancelEventArgs(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellCancelEventHandler +System.Windows.Forms.DataGridViewCellCollection +System.Windows.Forms.DataGridViewCellCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler +System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs +System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip.set -> void +System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.DataGridViewCellContextMenuStripNeededEventArgs(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler +System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs +System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText.get -> string? +System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText.set -> void +System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler +System.Windows.Forms.DataGridViewCellEventArgs +System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellEventArgs.DataGridViewCellEventArgs(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridViewCellEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellEventHandler +System.Windows.Forms.DataGridViewCellFormattingEventArgs +System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? +System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle.set -> void +System.Windows.Forms.DataGridViewCellFormattingEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellFormattingEventArgs.DataGridViewCellFormattingEventArgs(int columnIndex, int rowIndex, object? value, System.Type? desiredType, System.Windows.Forms.DataGridViewCellStyle? cellStyle) -> void +System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied.get -> bool +System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied.set -> void +System.Windows.Forms.DataGridViewCellFormattingEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellFormattingEventHandler +System.Windows.Forms.DataGridViewCellMouseEventArgs +System.Windows.Forms.DataGridViewCellMouseEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellMouseEventArgs.DataGridViewCellMouseEventArgs(int columnIndex, int rowIndex, int localX, int localY, System.Windows.Forms.MouseEventArgs? e) -> void +System.Windows.Forms.DataGridViewCellMouseEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellMouseEventHandler +System.Windows.Forms.DataGridViewCellPaintingEventArgs +System.Windows.Forms.DataGridViewCellPaintingEventArgs.CellBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewCellPaintingEventArgs.ClipBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewCellPaintingEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellPaintingEventArgs.Paint(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void +System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintContent(System.Drawing.Rectangle clipBounds) -> void +System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintParts.get -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewCellPaintingEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellPaintingEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewCellPaintingEventHandler +System.Windows.Forms.DataGridViewCellParsingEventArgs +System.Windows.Forms.DataGridViewCellParsingEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellParsingEventArgs.DataGridViewCellParsingEventArgs(int rowIndex, int columnIndex, object? value, System.Type? desiredType, System.Windows.Forms.DataGridViewCellStyle? inheritedCellStyle) -> void +System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle? +System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle.set -> void +System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied.get -> bool +System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied.set -> void +System.Windows.Forms.DataGridViewCellParsingEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellParsingEventHandler +System.Windows.Forms.DataGridViewCellStateChangedEventArgs +System.Windows.Forms.DataGridViewCellStateChangedEventArgs.Cell.get -> System.Windows.Forms.DataGridViewCell! +System.Windows.Forms.DataGridViewCellStateChangedEventArgs.DataGridViewCellStateChangedEventArgs(System.Windows.Forms.DataGridViewCell! dataGridViewCell, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void +System.Windows.Forms.DataGridViewCellStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewCellStateChangedEventHandler +System.Windows.Forms.DataGridViewCellStyle +System.Windows.Forms.DataGridViewCellStyle.Alignment.get -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewCellStyle.Alignment.set -> void +System.Windows.Forms.DataGridViewCellStyle.BackColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewCellStyle.BackColor.set -> void +System.Windows.Forms.DataGridViewCellStyle.DataGridViewCellStyle() -> void +System.Windows.Forms.DataGridViewCellStyle.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewCellStyle.ForeColor.set -> void +System.Windows.Forms.DataGridViewCellStyle.IsDataSourceNullValueDefault.get -> bool +System.Windows.Forms.DataGridViewCellStyle.IsFormatProviderDefault.get -> bool +System.Windows.Forms.DataGridViewCellStyle.IsNullValueDefault.get -> bool +System.Windows.Forms.DataGridViewCellStyle.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.DataGridViewCellStyle.Padding.set -> void +System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor.set -> void +System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor.set -> void +System.Windows.Forms.DataGridViewCellStyle.WrapMode.get -> System.Windows.Forms.DataGridViewTriState +System.Windows.Forms.DataGridViewCellStyle.WrapMode.set -> void +System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs +System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! +System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs.CellStyleScope.get -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler +System.Windows.Forms.DataGridViewCellStyleConverter +System.Windows.Forms.DataGridViewCellStyleConverter.DataGridViewCellStyleConverter() -> void +System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.AlternatingRows = 128 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.Cell = 1 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.Column = 2 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.ColumnHeaders = 16 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.DataGridView = 8 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.None = 0 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.Row = 4 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.RowHeaders = 32 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellStyleScopes.Rows = 64 -> System.Windows.Forms.DataGridViewCellStyleScopes +System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs +System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText.get -> string? +System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText.set -> void +System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler +System.Windows.Forms.DataGridViewCellValidatingEventArgs +System.Windows.Forms.DataGridViewCellValidatingEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellValidatingEventArgs.FormattedValue.get -> object? +System.Windows.Forms.DataGridViewCellValidatingEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellValidatingEventHandler +System.Windows.Forms.DataGridViewCellValueEventArgs +System.Windows.Forms.DataGridViewCellValueEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewCellValueEventArgs.DataGridViewCellValueEventArgs(int columnIndex, int rowIndex) -> void +System.Windows.Forms.DataGridViewCellValueEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewCellValueEventArgs.Value.get -> object? +System.Windows.Forms.DataGridViewCellValueEventArgs.Value.set -> void +System.Windows.Forms.DataGridViewCellValueEventHandler +System.Windows.Forms.DataGridViewCheckBoxCell +System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCell() -> void +System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCell(bool threeState) -> void +System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject +System.Windows.Forms.DataGridViewCheckBoxCell.DataGridViewCheckBoxCellAccessibleObject.DataGridViewCheckBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewCheckBoxCell.FlatStyle.set -> void +System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState.get -> bool +System.Windows.Forms.DataGridViewCheckBoxCell.ThreeState.set -> void +System.Windows.Forms.DataGridViewCheckBoxColumn +System.Windows.Forms.DataGridViewCheckBoxColumn.DataGridViewCheckBoxColumn() -> void +System.Windows.Forms.DataGridViewCheckBoxColumn.DataGridViewCheckBoxColumn(bool threeState) -> void +System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewCheckBoxColumn.FlatStyle.set -> void +System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState.get -> bool +System.Windows.Forms.DataGridViewCheckBoxColumn.ThreeState.set -> void +System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridViewClipboardCopyMode.Disable = 0 -> System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridViewClipboardCopyMode.EnableAlwaysIncludeHeaderText = 3 -> System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText = 1 -> System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText = 2 -> System.Windows.Forms.DataGridViewClipboardCopyMode +System.Windows.Forms.DataGridViewColumn +System.Windows.Forms.DataGridViewColumn.AutoSizeMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewColumn.AutoSizeMode.set -> void +System.Windows.Forms.DataGridViewColumn.DataGridViewColumn() -> void +System.Windows.Forms.DataGridViewColumn.DisplayIndex.get -> int +System.Windows.Forms.DataGridViewColumn.DisplayIndex.set -> void +System.Windows.Forms.DataGridViewColumn.Disposed -> System.EventHandler +System.Windows.Forms.DataGridViewColumn.DividerWidth.get -> int +System.Windows.Forms.DataGridViewColumn.DividerWidth.set -> void +System.Windows.Forms.DataGridViewColumn.FillWeight.get -> float +System.Windows.Forms.DataGridViewColumn.FillWeight.set -> void +System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode.get -> System.Windows.Forms.DataGridViewAutoSizeColumnMode +System.Windows.Forms.DataGridViewColumn.IsDataBound.get -> bool +System.Windows.Forms.DataGridViewColumn.MinimumWidth.get -> int +System.Windows.Forms.DataGridViewColumn.MinimumWidth.set -> void +System.Windows.Forms.DataGridViewColumn.SortMode.get -> System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewColumn.SortMode.set -> void +System.Windows.Forms.DataGridViewColumn.Width.get -> int +System.Windows.Forms.DataGridViewColumn.Width.set -> void +System.Windows.Forms.DataGridViewColumnCollection +System.Windows.Forms.DataGridViewColumnCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler +System.Windows.Forms.DataGridViewColumnCollection.GetColumnCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewColumnCollection.GetColumnsWidth(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute +System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.DataGridViewColumnDesignTimeVisibleAttribute() -> void +System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.DataGridViewColumnDesignTimeVisibleAttribute(bool visible) -> void +System.Windows.Forms.DataGridViewColumnDesignTimeVisibleAttribute.Visible.get -> bool +System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs +System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs.DataGridViewColumnDividerDoubleClickEventArgs(int columnIndex, System.Windows.Forms.HandledMouseEventArgs? e) -> void +System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler +System.Windows.Forms.DataGridViewColumnEventArgs +System.Windows.Forms.DataGridViewColumnEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! +System.Windows.Forms.DataGridViewColumnEventArgs.DataGridViewColumnEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> void +System.Windows.Forms.DataGridViewColumnEventHandler +System.Windows.Forms.DataGridViewColumnHeaderCell +System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCell() -> void +System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject +System.Windows.Forms.DataGridViewColumnHeaderCell.DataGridViewColumnHeaderCellAccessibleObject.DataGridViewColumnHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewColumnHeaderCell? owner) -> void +System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection.get -> System.Windows.Forms.SortOrder +System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection.set -> void +System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode +System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize = 2 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode +System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing = 1 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode +System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing = 0 -> System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode +System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewColumnSortMode.Automatic = 1 -> System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewColumnSortMode.NotSortable = 0 -> System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewColumnSortMode.Programmatic = 2 -> System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewColumnStateChangedEventArgs +System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! +System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.DataGridViewColumnStateChangedEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void +System.Windows.Forms.DataGridViewColumnStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewColumnStateChangedEventHandler +System.Windows.Forms.DataGridViewComboBoxCell +System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCell() -> void +System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject +System.Windows.Forms.DataGridViewComboBoxCell.DataGridViewComboBoxCellAccessibleObject.DataGridViewComboBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle.get -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyle.set -> void +System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly.get -> bool +System.Windows.Forms.DataGridViewComboBoxCell.DisplayStyleForCurrentCellOnly.set -> void +System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewComboBoxCell.FlatStyle.set -> void +System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection +System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Clear() -> void +System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.Count.get -> int +System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.IsReadOnly.get -> bool +System.Windows.Forms.DataGridViewComboBoxCell.ObjectCollection.RemoveAt(int index) -> void +System.Windows.Forms.DataGridViewComboBoxColumn +System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete.get -> bool +System.Windows.Forms.DataGridViewComboBoxColumn.AutoComplete.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.DataGridViewComboBoxColumn() -> void +System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle.get -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyle.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly.get -> bool +System.Windows.Forms.DataGridViewComboBoxColumn.DisplayStyleForCurrentCellOnly.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth.get -> int +System.Windows.Forms.DataGridViewComboBoxColumn.DropDownWidth.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.DataGridViewComboBoxColumn.FlatStyle.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems.get -> int +System.Windows.Forms.DataGridViewComboBoxColumn.MaxDropDownItems.set -> void +System.Windows.Forms.DataGridViewComboBoxColumn.Sorted.get -> bool +System.Windows.Forms.DataGridViewComboBoxColumn.Sorted.set -> void +System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox = 0 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxDisplayStyle.DropDownButton = 1 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxDisplayStyle.Nothing = 2 -> System.Windows.Forms.DataGridViewComboBoxDisplayStyle +System.Windows.Forms.DataGridViewComboBoxEditingControl +System.Windows.Forms.DataGridViewComboBoxEditingControl.DataGridViewComboBoxEditingControl() -> void +System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.BottomCenter = 512 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.BottomLeft = 256 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.BottomRight = 1024 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter = 32 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft = 16 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.MiddleRight = 64 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.NotSet = 0 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.TopCenter = 2 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.TopLeft = 1 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewContentAlignment.TopRight = 4 -> System.Windows.Forms.DataGridViewContentAlignment +System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.ClipboardContent = 16384 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.Commit = 512 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.CurrentCellChange = 4096 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.Display = 2 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.Formatting = 1 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.InitialValueRestoration = 1024 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.LeaveControl = 2048 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.Parsing = 256 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.PreferredSize = 4 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.RowDeletion = 8 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorContexts.Scroll = 8192 -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorEventArgs +System.Windows.Forms.DataGridViewDataErrorEventArgs.Context.get -> System.Windows.Forms.DataGridViewDataErrorContexts +System.Windows.Forms.DataGridViewDataErrorEventArgs.DataGridViewDataErrorEventArgs(System.Exception? exception, int columnIndex, int rowIndex, System.Windows.Forms.DataGridViewDataErrorContexts context) -> void +System.Windows.Forms.DataGridViewDataErrorEventArgs.Exception.get -> System.Exception? +System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException.get -> bool +System.Windows.Forms.DataGridViewDataErrorEventArgs.ThrowException.set -> void +System.Windows.Forms.DataGridViewDataErrorEventHandler +System.Windows.Forms.DataGridViewEditingControlShowingEventArgs +System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! +System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle.set -> void +System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.Control.get -> System.Windows.Forms.Control! +System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.DataGridViewEditingControlShowingEventArgs(System.Windows.Forms.Control! control, System.Windows.Forms.DataGridViewCellStyle! cellStyle) -> void +System.Windows.Forms.DataGridViewEditingControlShowingEventHandler +System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewEditMode.EditOnEnter = 0 -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewEditMode.EditOnF2 = 3 -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewEditMode.EditOnKeystroke = 1 -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2 = 2 -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewEditMode.EditProgrammatically = 4 -> System.Windows.Forms.DataGridViewEditMode +System.Windows.Forms.DataGridViewElement +System.Windows.Forms.DataGridViewElement.DataGridView.get -> System.Windows.Forms.DataGridView? +System.Windows.Forms.DataGridViewElement.DataGridViewElement() -> void +System.Windows.Forms.DataGridViewElement.RaiseCellClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void +System.Windows.Forms.DataGridViewElement.RaiseCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void +System.Windows.Forms.DataGridViewElement.RaiseCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void +System.Windows.Forms.DataGridViewElement.RaiseCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs! e) -> void +System.Windows.Forms.DataGridViewElement.RaiseDataError(System.Windows.Forms.DataGridViewDataErrorEventArgs! e) -> void +System.Windows.Forms.DataGridViewElement.RaiseMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.Displayed = 1 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.Frozen = 2 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.None = 0 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.ReadOnly = 4 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.Resizable = 8 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.ResizableSet = 16 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.Selected = 32 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewElementStates.Visible = 64 -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom = 0 -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderBorderStyle.None = 4 -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised = 2 -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderBorderStyle.Single = 1 -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken = 3 -> System.Windows.Forms.DataGridViewHeaderBorderStyle +System.Windows.Forms.DataGridViewHeaderCell +System.Windows.Forms.DataGridViewHeaderCell.ButtonState.get -> System.Windows.Forms.ButtonState +System.Windows.Forms.DataGridViewHeaderCell.DataGridViewHeaderCell() -> void +System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.Cell = 1 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.ColumnHeader = 2 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.HorizontalScrollBar = 5 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.None = 0 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.RowHeader = 3 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.TopLeftHeader = 4 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewHitTestType.VerticalScrollBar = 6 -> System.Windows.Forms.DataGridViewHitTestType +System.Windows.Forms.DataGridViewImageCell +System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCell() -> void +System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCell(bool valueIsIcon) -> void +System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject +System.Windows.Forms.DataGridViewImageCell.DataGridViewImageCellAccessibleObject.DataGridViewImageCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewImageCell.ImageLayout.get -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageCell.ImageLayout.set -> void +System.Windows.Forms.DataGridViewImageCell.ValueIsIcon.get -> bool +System.Windows.Forms.DataGridViewImageCell.ValueIsIcon.set -> void +System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageCellLayout.Normal = 1 -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageCellLayout.NotSet = 0 -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageCellLayout.Stretch = 2 -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageCellLayout.Zoom = 3 -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageColumn +System.Windows.Forms.DataGridViewImageColumn.DataGridViewImageColumn() -> void +System.Windows.Forms.DataGridViewImageColumn.DataGridViewImageColumn(bool valuesAreIcons) -> void +System.Windows.Forms.DataGridViewImageColumn.ImageLayout.get -> System.Windows.Forms.DataGridViewImageCellLayout +System.Windows.Forms.DataGridViewImageColumn.ImageLayout.set -> void +System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons.get -> bool +System.Windows.Forms.DataGridViewImageColumn.ValuesAreIcons.set -> void +System.Windows.Forms.DataGridViewLinkCell +System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkCell.ActiveLinkColor.set -> void +System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCell() -> void +System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject +System.Windows.Forms.DataGridViewLinkCell.DataGridViewLinkCellAccessibleObject.DataGridViewLinkCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewLinkCell.LinkBehavior.get -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.DataGridViewLinkCell.LinkBehavior.set -> void +System.Windows.Forms.DataGridViewLinkCell.LinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkCell.LinkColor.set -> void +System.Windows.Forms.DataGridViewLinkCell.LinkVisited.get -> bool +System.Windows.Forms.DataGridViewLinkCell.LinkVisited.set -> void +System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState.get -> bool +System.Windows.Forms.DataGridViewLinkCell.TrackVisitedState.set -> void +System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue.get -> bool +System.Windows.Forms.DataGridViewLinkCell.UseColumnTextForLinkValue.set -> void +System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkCell.VisitedLinkColor.set -> void +System.Windows.Forms.DataGridViewLinkColumn +System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkColumn.ActiveLinkColor.set -> void +System.Windows.Forms.DataGridViewLinkColumn.DataGridViewLinkColumn() -> void +System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior.get -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.DataGridViewLinkColumn.LinkBehavior.set -> void +System.Windows.Forms.DataGridViewLinkColumn.LinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkColumn.LinkColor.set -> void +System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState.get -> bool +System.Windows.Forms.DataGridViewLinkColumn.TrackVisitedState.set -> void +System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue.get -> bool +System.Windows.Forms.DataGridViewLinkColumn.UseColumnTextForLinkValue.set -> void +System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor.get -> System.Drawing.Color +System.Windows.Forms.DataGridViewLinkColumn.VisitedLinkColor.set -> void +System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.All = System.Windows.Forms.DataGridViewPaintParts.Background | System.Windows.Forms.DataGridViewPaintParts.Border | System.Windows.Forms.DataGridViewPaintParts.ContentBackground | System.Windows.Forms.DataGridViewPaintParts.ContentForeground | System.Windows.Forms.DataGridViewPaintParts.ErrorIcon | System.Windows.Forms.DataGridViewPaintParts.Focus | System.Windows.Forms.DataGridViewPaintParts.SelectionBackground -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.Background = 1 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.Border = 2 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.ContentBackground = 4 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.ContentForeground = 8 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.ErrorIcon = 16 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.Focus = 32 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.None = 0 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewPaintParts.SelectionBackground = 64 -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewRow +System.Windows.Forms.DataGridViewRow.DataGridViewRow() -> void +System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject +System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.DataGridViewRowAccessibleObject() -> void +System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.DataGridViewRowAccessibleObject(System.Windows.Forms.DataGridViewRow! owner) -> void +System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner.get -> System.Windows.Forms.DataGridViewRow? +System.Windows.Forms.DataGridViewRow.DataGridViewRowAccessibleObject.Owner.set -> void +System.Windows.Forms.DataGridViewRow.DividerHeight.get -> int +System.Windows.Forms.DataGridViewRow.DividerHeight.set -> void +System.Windows.Forms.DataGridViewRow.Height.get -> int +System.Windows.Forms.DataGridViewRow.Height.set -> void +System.Windows.Forms.DataGridViewRow.IsNewRow.get -> bool +System.Windows.Forms.DataGridViewRow.MinimumHeight.get -> int +System.Windows.Forms.DataGridViewRow.MinimumHeight.set -> void +System.Windows.Forms.DataGridViewRowCancelEventArgs +System.Windows.Forms.DataGridViewRowCancelEventArgs.DataGridViewRowCancelEventArgs(System.Windows.Forms.DataGridViewRow? dataGridViewRow) -> void +System.Windows.Forms.DataGridViewRowCancelEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow? +System.Windows.Forms.DataGridViewRowCancelEventArgs.Row.set -> void +System.Windows.Forms.DataGridViewRowCancelEventHandler +System.Windows.Forms.DataGridViewRowCollection +System.Windows.Forms.DataGridViewRowCollection.CollectionChanged -> System.ComponentModel.CollectionChangeEventHandler +System.Windows.Forms.DataGridViewRowCollection.Count.get -> int +System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetLastRow(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetNextRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetNextRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(int indexStart, System.Windows.Forms.DataGridViewElementStates includeFilter, System.Windows.Forms.DataGridViewElementStates excludeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowCollection.GetRowsHeight(System.Windows.Forms.DataGridViewElementStates includeFilter) -> int +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip.set -> void +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.DataGridViewRowContextMenuStripNeededEventArgs(int rowIndex) -> void +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler +System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs +System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.DataGridViewRowDividerDoubleClickEventArgs(int rowIndex, System.Windows.Forms.HandledMouseEventArgs! e) -> void +System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler +System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs +System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText.get -> string? +System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText.set -> void +System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler +System.Windows.Forms.DataGridViewRowEventArgs +System.Windows.Forms.DataGridViewRowEventArgs.DataGridViewRowEventArgs(System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> void +System.Windows.Forms.DataGridViewRowEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow! +System.Windows.Forms.DataGridViewRowEventHandler +System.Windows.Forms.DataGridViewRowHeaderCell +System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCell() -> void +System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject +System.Windows.Forms.DataGridViewRowHeaderCell.DataGridViewRowHeaderCellAccessibleObject.DataGridViewRowHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewRowHeaderCell? owner) -> void +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders = 2 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders = 3 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToFirstHeader = 4 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing = 1 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing = 0 -> System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.Height.set -> void +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.MinimumHeight.set -> void +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler +System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs +System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.Height.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.MinimumHeight.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler +System.Windows.Forms.DataGridViewRowPostPaintEventArgs +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ClipBounds.set -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DataGridViewRowPostPaintEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, string? errorText, System.Windows.Forms.DataGridViewCellStyle! inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DrawFocus(System.Drawing.Rectangle bounds, bool cellsPaintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.ErrorText.get -> string? +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.InheritedRowStyle.get -> System.Windows.Forms.DataGridViewCellStyle! +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsFirstDisplayedRow.get -> bool +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.IsLastVisibleRow.get -> bool +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCells(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsContent(System.Drawing.Rectangle clipBounds) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(bool paintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowPostPaintEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewRowPostPaintEventHandler +System.Windows.Forms.DataGridViewRowPrePaintEventArgs +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ClipBounds.set -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DataGridViewRowPrePaintEventArgs(System.Windows.Forms.DataGridView! dataGridView, System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle rowBounds, int rowIndex, System.Windows.Forms.DataGridViewElementStates rowState, string? errorText, System.Windows.Forms.DataGridViewCellStyle! inheritedRowStyle, bool isFirstDisplayedRow, bool isLastVisibleRow) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DrawFocus(System.Drawing.Rectangle bounds, bool cellsPaintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.ErrorText.get -> string? +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.InheritedRowStyle.get -> System.Windows.Forms.DataGridViewCellStyle! +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsFirstDisplayedRow.get -> bool +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.IsLastVisibleRow.get -> bool +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCells(System.Drawing.Rectangle clipBounds, System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle clipBounds, bool cellsPaintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsContent(System.Drawing.Rectangle clipBounds) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(bool paintSelectionBackground) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Windows.Forms.DataGridViewPaintParts paintParts) -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts.get -> System.Windows.Forms.DataGridViewPaintParts +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintParts.set -> void +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowPrePaintEventArgs.State.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewRowPrePaintEventHandler +System.Windows.Forms.DataGridViewRowsAddedEventArgs +System.Windows.Forms.DataGridViewRowsAddedEventArgs.DataGridViewRowsAddedEventArgs(int rowIndex, int rowCount) -> void +System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowCount.get -> int +System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowsAddedEventHandler +System.Windows.Forms.DataGridViewRowsRemovedEventArgs +System.Windows.Forms.DataGridViewRowsRemovedEventArgs.DataGridViewRowsRemovedEventArgs(int rowIndex, int rowCount) -> void +System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowCount.get -> int +System.Windows.Forms.DataGridViewRowsRemovedEventArgs.RowIndex.get -> int +System.Windows.Forms.DataGridViewRowsRemovedEventHandler +System.Windows.Forms.DataGridViewRowStateChangedEventArgs +System.Windows.Forms.DataGridViewRowStateChangedEventArgs.DataGridViewRowStateChangedEventArgs(System.Windows.Forms.DataGridViewRow! dataGridViewRow, System.Windows.Forms.DataGridViewElementStates stateChanged) -> void +System.Windows.Forms.DataGridViewRowStateChangedEventArgs.Row.get -> System.Windows.Forms.DataGridViewRow! +System.Windows.Forms.DataGridViewRowStateChangedEventArgs.StateChanged.get -> System.Windows.Forms.DataGridViewElementStates +System.Windows.Forms.DataGridViewRowStateChangedEventHandler +System.Windows.Forms.DataGridViewSelectedCellCollection +System.Windows.Forms.DataGridViewSelectedCellCollection.Clear() -> void +System.Windows.Forms.DataGridViewSelectedColumnCollection +System.Windows.Forms.DataGridViewSelectedColumnCollection.Clear() -> void +System.Windows.Forms.DataGridViewSelectedColumnCollection.Contains(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> bool +System.Windows.Forms.DataGridViewSelectedColumnCollection.CopyTo(System.Windows.Forms.DataGridViewColumn![]! array, int index) -> void +System.Windows.Forms.DataGridViewSelectedColumnCollection.Insert(int index, System.Windows.Forms.DataGridViewColumn! dataGridViewColumn) -> void +System.Windows.Forms.DataGridViewSelectedColumnCollection.this[int index].get -> System.Windows.Forms.DataGridViewColumn! +System.Windows.Forms.DataGridViewSelectedRowCollection +System.Windows.Forms.DataGridViewSelectedRowCollection.Clear() -> void +System.Windows.Forms.DataGridViewSelectedRowCollection.Contains(System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> bool +System.Windows.Forms.DataGridViewSelectedRowCollection.CopyTo(System.Windows.Forms.DataGridViewRow![]! array, int index) -> void +System.Windows.Forms.DataGridViewSelectedRowCollection.Insert(int index, System.Windows.Forms.DataGridViewRow! dataGridViewRow) -> void +System.Windows.Forms.DataGridViewSelectedRowCollection.this[int index].get -> System.Windows.Forms.DataGridViewRow! +System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSelectionMode.CellSelect = 0 -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect = 4 -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect = 2 -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect = 1 -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect = 3 -> System.Windows.Forms.DataGridViewSelectionMode +System.Windows.Forms.DataGridViewSortCompareEventArgs +System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue1.get -> object! +System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue2.get -> object! +System.Windows.Forms.DataGridViewSortCompareEventArgs.Column.get -> System.Windows.Forms.DataGridViewColumn! +System.Windows.Forms.DataGridViewSortCompareEventArgs.DataGridViewSortCompareEventArgs(System.Windows.Forms.DataGridViewColumn! dataGridViewColumn, object! cellValue1, object! cellValue2, int rowIndex1, int rowIndex2) -> void +System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex1.get -> int +System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex2.get -> int +System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult.get -> int +System.Windows.Forms.DataGridViewSortCompareEventArgs.SortResult.set -> void +System.Windows.Forms.DataGridViewSortCompareEventHandler +System.Windows.Forms.DataGridViewTextBoxCell +System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCell() -> void +System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject +System.Windows.Forms.DataGridViewTextBoxCell.DataGridViewTextBoxCellAccessibleObject.DataGridViewTextBoxCellAccessibleObject(System.Windows.Forms.DataGridViewCell? owner) -> void +System.Windows.Forms.DataGridViewTextBoxColumn +System.Windows.Forms.DataGridViewTextBoxColumn.DataGridViewTextBoxColumn() -> void +System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength.get -> int +System.Windows.Forms.DataGridViewTextBoxColumn.MaxInputLength.set -> void +System.Windows.Forms.DataGridViewTextBoxColumn.SortMode.get -> System.Windows.Forms.DataGridViewColumnSortMode +System.Windows.Forms.DataGridViewTextBoxColumn.SortMode.set -> void +System.Windows.Forms.DataGridViewTextBoxEditingControl +System.Windows.Forms.DataGridViewTextBoxEditingControl.DataGridViewTextBoxEditingControl() -> void +System.Windows.Forms.DataGridViewTopLeftHeaderCell +System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCell() -> void +System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject +System.Windows.Forms.DataGridViewTopLeftHeaderCell.DataGridViewTopLeftHeaderCellAccessibleObject.DataGridViewTopLeftHeaderCellAccessibleObject(System.Windows.Forms.DataGridViewTopLeftHeaderCell! owner) -> void +System.Windows.Forms.DataGridViewTriState +System.Windows.Forms.DataGridViewTriState.False = 2 -> System.Windows.Forms.DataGridViewTriState +System.Windows.Forms.DataGridViewTriState.NotSet = 0 -> System.Windows.Forms.DataGridViewTriState +System.Windows.Forms.DataGridViewTriState.True = 1 -> System.Windows.Forms.DataGridViewTriState +System.Windows.Forms.DataObject +System.Windows.Forms.DataObject.DataObject() -> void +System.Windows.Forms.DataObject.DataObject(object! data) -> void +System.Windows.Forms.DataObject.DataObject(string! format, object! data) -> void +System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.DataSourceUpdateMode.Never = 2 -> System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged = 1 -> System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.DataSourceUpdateMode.OnValidation = 0 -> System.Windows.Forms.DataSourceUpdateMode +System.Windows.Forms.DateBoldEventArgs +System.Windows.Forms.DateBoldEventArgs.DaysToBold.get -> int[]? +System.Windows.Forms.DateBoldEventArgs.DaysToBold.set -> void +System.Windows.Forms.DateBoldEventArgs.Size.get -> int +System.Windows.Forms.DateBoldEventArgs.StartDate.get -> System.DateTime +System.Windows.Forms.DateBoldEventHandler +System.Windows.Forms.DateRangeEventArgs +System.Windows.Forms.DateRangeEventArgs.DateRangeEventArgs(System.DateTime start, System.DateTime end) -> void +System.Windows.Forms.DateRangeEventArgs.End.get -> System.DateTime +System.Windows.Forms.DateRangeEventArgs.Start.get -> System.DateTime +System.Windows.Forms.DateRangeEventHandler +System.Windows.Forms.DateTimePicker +System.Windows.Forms.DateTimePicker.BackColorChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.CalendarFont.get -> System.Drawing.Font! +System.Windows.Forms.DateTimePicker.CalendarFont.set -> void +System.Windows.Forms.DateTimePicker.CalendarForeColor.get -> System.Drawing.Color +System.Windows.Forms.DateTimePicker.CalendarForeColor.set -> void +System.Windows.Forms.DateTimePicker.CalendarMonthBackground.get -> System.Drawing.Color +System.Windows.Forms.DateTimePicker.CalendarMonthBackground.set -> void +System.Windows.Forms.DateTimePicker.CalendarTitleBackColor.get -> System.Drawing.Color +System.Windows.Forms.DateTimePicker.CalendarTitleBackColor.set -> void +System.Windows.Forms.DateTimePicker.CalendarTitleForeColor.get -> System.Drawing.Color +System.Windows.Forms.DateTimePicker.CalendarTitleForeColor.set -> void +System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor.get -> System.Drawing.Color +System.Windows.Forms.DateTimePicker.CalendarTrailingForeColor.set -> void +System.Windows.Forms.DateTimePicker.Checked.get -> bool +System.Windows.Forms.DateTimePicker.Checked.set -> void +System.Windows.Forms.DateTimePicker.Click -> System.EventHandler? +System.Windows.Forms.DateTimePicker.CloseUp -> System.EventHandler? +System.Windows.Forms.DateTimePicker.CustomFormat.get -> string? +System.Windows.Forms.DateTimePicker.CustomFormat.set -> void +System.Windows.Forms.DateTimePicker.DateTimePicker() -> void +System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject +System.Windows.Forms.DateTimePicker.DateTimePickerAccessibleObject.DateTimePickerAccessibleObject(System.Windows.Forms.DateTimePicker! owner) -> void +System.Windows.Forms.DateTimePicker.DoubleClick -> System.EventHandler? +System.Windows.Forms.DateTimePicker.DropDown -> System.EventHandler? +System.Windows.Forms.DateTimePicker.DropDownAlign.get -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.DateTimePicker.DropDownAlign.set -> void +System.Windows.Forms.DateTimePicker.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.Format.get -> System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.DateTimePicker.Format.set -> void +System.Windows.Forms.DateTimePicker.FormatChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.MaxDate.get -> System.DateTime +System.Windows.Forms.DateTimePicker.MaxDate.set -> void +System.Windows.Forms.DateTimePicker.MinDate.get -> System.DateTime +System.Windows.Forms.DateTimePicker.MinDate.set -> void +System.Windows.Forms.DateTimePicker.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.DateTimePicker.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.DateTimePicker.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.DateTimePicker.Padding.set -> void +System.Windows.Forms.DateTimePicker.PaddingChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.DateTimePicker.PreferredHeight.get -> int +System.Windows.Forms.DateTimePicker.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.ShowCheckBox.get -> bool +System.Windows.Forms.DateTimePicker.ShowCheckBox.set -> void +System.Windows.Forms.DateTimePicker.ShowUpDown.get -> bool +System.Windows.Forms.DateTimePicker.ShowUpDown.set -> void +System.Windows.Forms.DateTimePicker.TextChanged -> System.EventHandler? +System.Windows.Forms.DateTimePicker.Value.get -> System.DateTime +System.Windows.Forms.DateTimePicker.Value.set -> void +System.Windows.Forms.DateTimePicker.ValueChanged -> System.EventHandler? +System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.DateTimePickerFormat.Custom = 8 -> System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.DateTimePickerFormat.Long = 1 -> System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.DateTimePickerFormat.Short = 2 -> System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.DateTimePickerFormat.Time = 4 -> System.Windows.Forms.DateTimePickerFormat +System.Windows.Forms.Day +System.Windows.Forms.Day.Default = 7 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Friday = 4 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Monday = 0 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Saturday = 5 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Sunday = 6 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Thursday = 3 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Tuesday = 1 -> System.Windows.Forms.Day +System.Windows.Forms.Day.Wednesday = 2 -> System.Windows.Forms.Day +System.Windows.Forms.Design.ComponentEditorForm +System.Windows.Forms.Design.ComponentEditorForm.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Design.ComponentEditorForm.ComponentEditorForm(object! component, System.Type![]! pageTypes) -> void +System.Windows.Forms.Design.ComponentEditorPage +System.Windows.Forms.Design.ComponentEditorPage.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate.get -> bool +System.Windows.Forms.Design.ComponentEditorPage.CommitOnDeactivate.set -> void +System.Windows.Forms.Design.ComponentEditorPage.Component.get -> System.ComponentModel.IComponent? +System.Windows.Forms.Design.ComponentEditorPage.Component.set -> void +System.Windows.Forms.Design.ComponentEditorPage.ComponentEditorPage() -> void +System.Windows.Forms.Design.ComponentEditorPage.EnterLoadingMode() -> void +System.Windows.Forms.Design.ComponentEditorPage.ExitLoadingMode() -> void +System.Windows.Forms.Design.ComponentEditorPage.FirstActivate.get -> bool +System.Windows.Forms.Design.ComponentEditorPage.FirstActivate.set -> void +System.Windows.Forms.Design.ComponentEditorPage.GetSelectedComponent() -> System.ComponentModel.IComponent? +System.Windows.Forms.Design.ComponentEditorPage.Icon.get -> System.Drawing.Icon! +System.Windows.Forms.Design.ComponentEditorPage.Icon.set -> void +System.Windows.Forms.Design.ComponentEditorPage.IsFirstActivate() -> bool +System.Windows.Forms.Design.ComponentEditorPage.IsLoading() -> bool +System.Windows.Forms.Design.ComponentEditorPage.Loading.get -> int +System.Windows.Forms.Design.ComponentEditorPage.Loading.set -> void +System.Windows.Forms.Design.ComponentEditorPage.LoadRequired.get -> bool +System.Windows.Forms.Design.ComponentEditorPage.LoadRequired.set -> void +System.Windows.Forms.Design.ComponentEditorPage.PageSite.get -> System.Windows.Forms.IComponentEditorPageSite? +System.Windows.Forms.Design.ComponentEditorPage.PageSite.set -> void +System.Windows.Forms.Design.EventsTab +System.Windows.Forms.Design.EventsTab.EventsTab(System.IServiceProvider? sp) -> void +System.Windows.Forms.Design.IUIService +System.Windows.Forms.Design.IUIService.CanShowComponentEditor(object! component) -> bool +System.Windows.Forms.Design.IUIService.GetDialogOwnerWindow() -> System.Windows.Forms.IWin32Window! +System.Windows.Forms.Design.IUIService.SetUIDirty() -> void +System.Windows.Forms.Design.IUIService.ShowComponentEditor(object! component, System.Windows.Forms.IWin32Window! parent) -> bool +System.Windows.Forms.Design.IUIService.ShowDialog(System.Windows.Forms.Form! form) -> System.Windows.Forms.DialogResult +System.Windows.Forms.Design.IUIService.ShowError(string! message) -> void +System.Windows.Forms.Design.IUIService.ShowError(System.Exception! ex) -> void +System.Windows.Forms.Design.IUIService.ShowError(System.Exception! ex, string! message) -> void +System.Windows.Forms.Design.IUIService.ShowMessage(string! message) -> void +System.Windows.Forms.Design.IUIService.ShowMessage(string! message, string! caption) -> void +System.Windows.Forms.Design.IUIService.ShowMessage(string! message, string! caption, System.Windows.Forms.MessageBoxButtons buttons) -> System.Windows.Forms.DialogResult +System.Windows.Forms.Design.IUIService.ShowToolWindow(System.Guid toolWindow) -> bool +System.Windows.Forms.Design.IUIService.Styles.get -> System.Collections.IDictionary! +System.Windows.Forms.Design.IWindowsFormsEditorService +System.Windows.Forms.Design.IWindowsFormsEditorService.CloseDropDown() -> void +System.Windows.Forms.Design.IWindowsFormsEditorService.DropDownControl(System.Windows.Forms.Control? control) -> void +System.Windows.Forms.Design.IWindowsFormsEditorService.ShowDialog(System.Windows.Forms.Form! dialog) -> System.Windows.Forms.DialogResult +System.Windows.Forms.Design.PropertyTab +System.Windows.Forms.Design.PropertyTab.~PropertyTab() -> void +System.Windows.Forms.Design.PropertyTab.PropertyTab() -> void +System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.All = System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip | System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ContextMenuStrip = 4 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.MenuStrip = 2 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.None = 0 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.StatusStrip = 8 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailability.ToolStrip = 1 -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute +System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ItemAdditionVisibility.get -> System.Windows.Forms.Design.ToolStripItemDesignerAvailability +System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ToolStripItemDesignerAvailabilityAttribute() -> void +System.Windows.Forms.Design.ToolStripItemDesignerAvailabilityAttribute.ToolStripItemDesignerAvailabilityAttribute(System.Windows.Forms.Design.ToolStripItemDesignerAvailability visibility) -> void +System.Windows.Forms.Design.WindowsFormsComponentEditor +System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(object! component, System.Windows.Forms.IWin32Window? owner) -> bool +System.Windows.Forms.Design.WindowsFormsComponentEditor.WindowsFormsComponentEditor() -> void +System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Abort = 3 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Cancel = 2 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Continue = 11 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Ignore = 5 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.No = 7 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.None = 0 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.OK = 1 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Retry = 4 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.TryAgain = 10 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DialogResult.Yes = 6 -> System.Windows.Forms.DialogResult +System.Windows.Forms.DockingAttribute +System.Windows.Forms.DockingAttribute.DockingAttribute() -> void +System.Windows.Forms.DockingAttribute.DockingAttribute(System.Windows.Forms.DockingBehavior dockingBehavior) -> void +System.Windows.Forms.DockingAttribute.DockingBehavior.get -> System.Windows.Forms.DockingBehavior +System.Windows.Forms.DockingBehavior +System.Windows.Forms.DockingBehavior.Ask = 1 -> System.Windows.Forms.DockingBehavior +System.Windows.Forms.DockingBehavior.AutoDock = 2 -> System.Windows.Forms.DockingBehavior +System.Windows.Forms.DockingBehavior.Never = 0 -> System.Windows.Forms.DockingBehavior +System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.Bottom = 2 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.Fill = 5 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.Left = 3 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.None = 0 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.Right = 4 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DockStyle.Top = 1 -> System.Windows.Forms.DockStyle +System.Windows.Forms.DomainUpDown +System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject +System.Windows.Forms.DomainUpDown.DomainItemAccessibleObject.DomainItemAccessibleObject(string? name, System.Windows.Forms.AccessibleObject! parent) -> void +System.Windows.Forms.DomainUpDown.DomainUpDown() -> void +System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject +System.Windows.Forms.DomainUpDown.DomainUpDownAccessibleObject.DomainUpDownAccessibleObject(System.Windows.Forms.DomainUpDown! owner) -> void +System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection +System.Windows.Forms.DomainUpDown.Items.get -> System.Windows.Forms.DomainUpDown.DomainUpDownItemCollection! +System.Windows.Forms.DomainUpDown.OnSelectedItemChanged(object? source, System.EventArgs! e) -> void +System.Windows.Forms.DomainUpDown.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.DomainUpDown.Padding.set -> void +System.Windows.Forms.DomainUpDown.PaddingChanged -> System.EventHandler? +System.Windows.Forms.DomainUpDown.SelectedIndex.get -> int +System.Windows.Forms.DomainUpDown.SelectedIndex.set -> void +System.Windows.Forms.DomainUpDown.SelectedItem.get -> object? +System.Windows.Forms.DomainUpDown.SelectedItem.set -> void +System.Windows.Forms.DomainUpDown.SelectedItemChanged -> System.EventHandler? +System.Windows.Forms.DomainUpDown.Sorted.get -> bool +System.Windows.Forms.DomainUpDown.Sorted.set -> void +System.Windows.Forms.DomainUpDown.Wrap.get -> bool +System.Windows.Forms.DomainUpDown.Wrap.set -> void +System.Windows.Forms.DpiChangedEventArgs +System.Windows.Forms.DpiChangedEventArgs.DeviceDpiNew.get -> int +System.Windows.Forms.DpiChangedEventArgs.DeviceDpiOld.get -> int +System.Windows.Forms.DpiChangedEventArgs.SuggestedRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.DpiChangedEventHandler +System.Windows.Forms.DragAction +System.Windows.Forms.DragAction.Cancel = 2 -> System.Windows.Forms.DragAction +System.Windows.Forms.DragAction.Continue = 0 -> System.Windows.Forms.DragAction +System.Windows.Forms.DragAction.Drop = 1 -> System.Windows.Forms.DragAction +System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.All = System.Windows.Forms.DragDropEffects.Scroll | System.Windows.Forms.DragDropEffects.Copy | System.Windows.Forms.DragDropEffects.Move -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.Copy = 1 -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.Link = 4 -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.Move = 2 -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.None = 0 -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragDropEffects.Scroll = -2147483648 -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragEventArgs +System.Windows.Forms.DragEventArgs.AllowedEffect.get -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragEventArgs.Data.get -> System.Windows.Forms.IDataObject? +System.Windows.Forms.DragEventArgs.DragEventArgs(System.Windows.Forms.IDataObject? data, int keyState, int x, int y, System.Windows.Forms.DragDropEffects allowedEffect, System.Windows.Forms.DragDropEffects effect) -> void +System.Windows.Forms.DragEventArgs.DragEventArgs(System.Windows.Forms.IDataObject? data, int keyState, int x, int y, System.Windows.Forms.DragDropEffects allowedEffect, System.Windows.Forms.DragDropEffects effect, System.Windows.Forms.DropImageType dropImageType, string? message, string? messageReplacementToken) -> void +System.Windows.Forms.DragEventArgs.DropImageType.get -> System.Windows.Forms.DropImageType +System.Windows.Forms.DragEventArgs.DropImageType.set -> void +System.Windows.Forms.DragEventArgs.Effect.get -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.DragEventArgs.Effect.set -> void +System.Windows.Forms.DragEventArgs.KeyState.get -> int +System.Windows.Forms.DragEventArgs.Message.get -> string? +System.Windows.Forms.DragEventArgs.Message.set -> void +System.Windows.Forms.DragEventArgs.MessageReplacementToken.get -> string? +System.Windows.Forms.DragEventArgs.MessageReplacementToken.set -> void +System.Windows.Forms.DragEventArgs.X.get -> int +System.Windows.Forms.DragEventArgs.Y.get -> int +System.Windows.Forms.DragEventHandler +System.Windows.Forms.DrawItemEventArgs +System.Windows.Forms.DrawItemEventArgs.BackColor.get -> System.Drawing.Color +System.Windows.Forms.DrawItemEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawItemEventArgs.Dispose() -> void +System.Windows.Forms.DrawItemEventArgs.DrawItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state) -> void +System.Windows.Forms.DrawItemEventArgs.DrawItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Font? font, System.Drawing.Rectangle rect, int index, System.Windows.Forms.DrawItemState state, System.Drawing.Color foreColor, System.Drawing.Color backColor) -> void +System.Windows.Forms.DrawItemEventArgs.Font.get -> System.Drawing.Font? +System.Windows.Forms.DrawItemEventArgs.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.DrawItemEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawItemEventArgs.Index.get -> int +System.Windows.Forms.DrawItemEventArgs.State.get -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemEventHandler +System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Checked = 8 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.ComboBoxEdit = 4096 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Default = 32 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Disabled = 4 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Focus = 16 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Grayed = 2 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.HotLight = 64 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Inactive = 128 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.NoAccelerator = 256 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.NoFocusRect = 512 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.None = 0 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawItemState.Selected = 1 -> System.Windows.Forms.DrawItemState +System.Windows.Forms.DrawListViewColumnHeaderEventArgs +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.BackColor.get -> System.Drawing.Color +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawBackground() -> void +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault.get -> bool +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawDefault.set -> void +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawListViewColumnHeaderEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, int columnIndex, System.Windows.Forms.ColumnHeader? header, System.Windows.Forms.ListViewItemStates state, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText() -> void +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Font.get -> System.Drawing.Font? +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? +System.Windows.Forms.DrawListViewColumnHeaderEventArgs.State.get -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.DrawListViewColumnHeaderEventHandler +System.Windows.Forms.DrawListViewItemEventArgs +System.Windows.Forms.DrawListViewItemEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawListViewItemEventArgs.DrawBackground() -> void +System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault.get -> bool +System.Windows.Forms.DrawListViewItemEventArgs.DrawDefault.set -> void +System.Windows.Forms.DrawListViewItemEventArgs.DrawFocusRectangle() -> void +System.Windows.Forms.DrawListViewItemEventArgs.DrawListViewItemEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.ListViewItem! item, System.Drawing.Rectangle bounds, int itemIndex, System.Windows.Forms.ListViewItemStates state) -> void +System.Windows.Forms.DrawListViewItemEventArgs.DrawText() -> void +System.Windows.Forms.DrawListViewItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void +System.Windows.Forms.DrawListViewItemEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawListViewItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.DrawListViewItemEventArgs.ItemIndex.get -> int +System.Windows.Forms.DrawListViewItemEventArgs.State.get -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.DrawListViewItemEventHandler +System.Windows.Forms.DrawListViewSubItemEventArgs +System.Windows.Forms.DrawListViewSubItemEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawListViewSubItemEventArgs.ColumnIndex.get -> int +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawBackground() -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault.get -> bool +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawDefault.set -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawFocusRectangle(System.Drawing.Rectangle bounds) -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawListViewSubItemEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle bounds, System.Windows.Forms.ListViewItem? item, System.Windows.Forms.ListViewItem.ListViewSubItem? subItem, int itemIndex, int columnIndex, System.Windows.Forms.ColumnHeader? header, System.Windows.Forms.ListViewItemStates itemState) -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText() -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void +System.Windows.Forms.DrawListViewSubItemEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawListViewSubItemEventArgs.Header.get -> System.Windows.Forms.ColumnHeader? +System.Windows.Forms.DrawListViewSubItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.DrawListViewSubItemEventArgs.ItemIndex.get -> int +System.Windows.Forms.DrawListViewSubItemEventArgs.ItemState.get -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.DrawListViewSubItemEventArgs.SubItem.get -> System.Windows.Forms.ListViewItem.ListViewSubItem? +System.Windows.Forms.DrawListViewSubItemEventHandler +System.Windows.Forms.DrawMode +System.Windows.Forms.DrawMode.Normal = 0 -> System.Windows.Forms.DrawMode +System.Windows.Forms.DrawMode.OwnerDrawFixed = 1 -> System.Windows.Forms.DrawMode +System.Windows.Forms.DrawMode.OwnerDrawVariable = 2 -> System.Windows.Forms.DrawMode +System.Windows.Forms.DrawToolTipEventArgs +System.Windows.Forms.DrawToolTipEventArgs.AssociatedControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.DrawToolTipEventArgs.AssociatedWindow.get -> System.Windows.Forms.IWin32Window? +System.Windows.Forms.DrawToolTipEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawToolTipEventArgs.DrawBackground() -> void +System.Windows.Forms.DrawToolTipEventArgs.DrawBorder() -> void +System.Windows.Forms.DrawToolTipEventArgs.DrawText() -> void +System.Windows.Forms.DrawToolTipEventArgs.DrawText(System.Windows.Forms.TextFormatFlags flags) -> void +System.Windows.Forms.DrawToolTipEventArgs.DrawToolTipEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.IWin32Window? associatedWindow, System.Windows.Forms.Control? associatedControl, System.Drawing.Rectangle bounds, string? toolTipText, System.Drawing.Color backColor, System.Drawing.Color foreColor, System.Drawing.Font? font) -> void +System.Windows.Forms.DrawToolTipEventArgs.Font.get -> System.Drawing.Font? +System.Windows.Forms.DrawToolTipEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawToolTipEventArgs.ToolTipText.get -> string? +System.Windows.Forms.DrawToolTipEventHandler +System.Windows.Forms.DrawTreeNodeEventArgs +System.Windows.Forms.DrawTreeNodeEventArgs.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault.get -> bool +System.Windows.Forms.DrawTreeNodeEventArgs.DrawDefault.set -> void +System.Windows.Forms.DrawTreeNodeEventArgs.DrawTreeNodeEventArgs(System.Drawing.Graphics! graphics, System.Windows.Forms.TreeNode? node, System.Drawing.Rectangle bounds, System.Windows.Forms.TreeNodeStates state) -> void +System.Windows.Forms.DrawTreeNodeEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.DrawTreeNodeEventArgs.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.DrawTreeNodeEventArgs.State.get -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.DrawTreeNodeEventHandler +System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Copy = 1 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Invalid = -1 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Label = 6 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Link = 4 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Move = 2 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.NoImage = 8 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.None = 0 -> System.Windows.Forms.DropImageType +System.Windows.Forms.DropImageType.Warning = 7 -> System.Windows.Forms.DropImageType +System.Windows.Forms.ErrorBlinkStyle +System.Windows.Forms.ErrorBlinkStyle.AlwaysBlink = 1 -> System.Windows.Forms.ErrorBlinkStyle +System.Windows.Forms.ErrorBlinkStyle.BlinkIfDifferentError = 0 -> System.Windows.Forms.ErrorBlinkStyle +System.Windows.Forms.ErrorBlinkStyle.NeverBlink = 2 -> System.Windows.Forms.ErrorBlinkStyle +System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.BottomLeft = 4 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.BottomRight = 5 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.MiddleLeft = 2 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.MiddleRight = 3 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.TopLeft = 0 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorIconAlignment.TopRight = 1 -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorProvider +System.Windows.Forms.ErrorProvider.BindToDataAndErrors(object? newDataSource, string? newDataMember) -> void +System.Windows.Forms.ErrorProvider.BlinkRate.get -> int +System.Windows.Forms.ErrorProvider.BlinkRate.set -> void +System.Windows.Forms.ErrorProvider.BlinkStyle.get -> System.Windows.Forms.ErrorBlinkStyle +System.Windows.Forms.ErrorProvider.BlinkStyle.set -> void +System.Windows.Forms.ErrorProvider.CanExtend(object? extendee) -> bool +System.Windows.Forms.ErrorProvider.Clear() -> void +System.Windows.Forms.ErrorProvider.ContainerControl.get -> System.Windows.Forms.ContainerControl? +System.Windows.Forms.ErrorProvider.ContainerControl.set -> void +System.Windows.Forms.ErrorProvider.DataMember.get -> string? +System.Windows.Forms.ErrorProvider.DataMember.set -> void +System.Windows.Forms.ErrorProvider.DataSource.get -> object? +System.Windows.Forms.ErrorProvider.DataSource.set -> void +System.Windows.Forms.ErrorProvider.ErrorProvider() -> void +System.Windows.Forms.ErrorProvider.ErrorProvider(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.ErrorProvider.ErrorProvider(System.Windows.Forms.ContainerControl! parentControl) -> void +System.Windows.Forms.ErrorProvider.GetError(System.Windows.Forms.Control! control) -> string! +System.Windows.Forms.ErrorProvider.GetIconAlignment(System.Windows.Forms.Control! control) -> System.Windows.Forms.ErrorIconAlignment +System.Windows.Forms.ErrorProvider.GetIconPadding(System.Windows.Forms.Control! control) -> int +System.Windows.Forms.ErrorProvider.HasErrors.get -> bool +System.Windows.Forms.ErrorProvider.Icon.get -> System.Drawing.Icon! +System.Windows.Forms.ErrorProvider.Icon.set -> void +System.Windows.Forms.ErrorProvider.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.ErrorProvider.SetError(System.Windows.Forms.Control! control, string? value) -> void +System.Windows.Forms.ErrorProvider.SetIconAlignment(System.Windows.Forms.Control! control, System.Windows.Forms.ErrorIconAlignment value) -> void +System.Windows.Forms.ErrorProvider.SetIconPadding(System.Windows.Forms.Control! control, int padding) -> void +System.Windows.Forms.ErrorProvider.Tag.get -> object? +System.Windows.Forms.ErrorProvider.Tag.set -> void +System.Windows.Forms.ErrorProvider.UpdateBinding() -> void +System.Windows.Forms.FeatureSupport +System.Windows.Forms.FeatureSupport.FeatureSupport() -> void +System.Windows.Forms.FileDialog +System.Windows.Forms.FileDialog.AddExtension.get -> bool +System.Windows.Forms.FileDialog.AddExtension.set -> void +System.Windows.Forms.FileDialog.AddToRecent.get -> bool +System.Windows.Forms.FileDialog.AddToRecent.set -> void +System.Windows.Forms.FileDialog.AutoUpgradeEnabled.get -> bool +System.Windows.Forms.FileDialog.AutoUpgradeEnabled.set -> void +System.Windows.Forms.FileDialog.CheckPathExists.get -> bool +System.Windows.Forms.FileDialog.CheckPathExists.set -> void +System.Windows.Forms.FileDialog.ClientGuid.get -> System.Guid? +System.Windows.Forms.FileDialog.ClientGuid.set -> void +System.Windows.Forms.FileDialog.CustomPlaces.get -> System.Windows.Forms.FileDialogCustomPlacesCollection! +System.Windows.Forms.FileDialog.DefaultExt.get -> string! +System.Windows.Forms.FileDialog.DefaultExt.set -> void +System.Windows.Forms.FileDialog.DereferenceLinks.get -> bool +System.Windows.Forms.FileDialog.DereferenceLinks.set -> void +System.Windows.Forms.FileDialog.FileName.get -> string! +System.Windows.Forms.FileDialog.FileName.set -> void +System.Windows.Forms.FileDialog.FileNames.get -> string![]! +System.Windows.Forms.FileDialog.FileOk -> System.ComponentModel.CancelEventHandler! +System.Windows.Forms.FileDialog.Filter.get -> string! +System.Windows.Forms.FileDialog.Filter.set -> void +System.Windows.Forms.FileDialog.FilterIndex.get -> int +System.Windows.Forms.FileDialog.FilterIndex.set -> void +System.Windows.Forms.FileDialog.InitialDirectory.get -> string! +System.Windows.Forms.FileDialog.InitialDirectory.set -> void +System.Windows.Forms.FileDialog.OkRequiresInteraction.get -> bool +System.Windows.Forms.FileDialog.OkRequiresInteraction.set -> void +System.Windows.Forms.FileDialog.RestoreDirectory.get -> bool +System.Windows.Forms.FileDialog.RestoreDirectory.set -> void +System.Windows.Forms.FileDialog.ShowHelp.get -> bool +System.Windows.Forms.FileDialog.ShowHelp.set -> void +System.Windows.Forms.FileDialog.ShowHiddenFiles.get -> bool +System.Windows.Forms.FileDialog.ShowHiddenFiles.set -> void +System.Windows.Forms.FileDialog.ShowPinnedPlaces.get -> bool +System.Windows.Forms.FileDialog.ShowPinnedPlaces.set -> void +System.Windows.Forms.FileDialog.SupportMultiDottedExtensions.get -> bool +System.Windows.Forms.FileDialog.SupportMultiDottedExtensions.set -> void +System.Windows.Forms.FileDialog.Title.get -> string! +System.Windows.Forms.FileDialog.Title.set -> void +System.Windows.Forms.FileDialog.ValidateNames.get -> bool +System.Windows.Forms.FileDialog.ValidateNames.set -> void +System.Windows.Forms.FixedPanel +System.Windows.Forms.FixedPanel.None = 0 -> System.Windows.Forms.FixedPanel +System.Windows.Forms.FixedPanel.Panel1 = 1 -> System.Windows.Forms.FixedPanel +System.Windows.Forms.FixedPanel.Panel2 = 2 -> System.Windows.Forms.FixedPanel +System.Windows.Forms.FlatButtonAppearance +System.Windows.Forms.FlatButtonAppearance.BorderColor.get -> System.Drawing.Color +System.Windows.Forms.FlatButtonAppearance.BorderColor.set -> void +System.Windows.Forms.FlatButtonAppearance.BorderSize.get -> int +System.Windows.Forms.FlatButtonAppearance.BorderSize.set -> void +System.Windows.Forms.FlatButtonAppearance.CheckedBackColor.get -> System.Drawing.Color +System.Windows.Forms.FlatButtonAppearance.CheckedBackColor.set -> void +System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor.get -> System.Drawing.Color +System.Windows.Forms.FlatButtonAppearance.MouseDownBackColor.set -> void +System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor.get -> System.Drawing.Color +System.Windows.Forms.FlatButtonAppearance.MouseOverBackColor.set -> void +System.Windows.Forms.FlatStyle +System.Windows.Forms.FlatStyle.Flat = 0 -> System.Windows.Forms.FlatStyle +System.Windows.Forms.FlatStyle.Popup = 1 -> System.Windows.Forms.FlatStyle +System.Windows.Forms.FlatStyle.Standard = 2 -> System.Windows.Forms.FlatStyle +System.Windows.Forms.FlatStyle.System = 3 -> System.Windows.Forms.FlatStyle +System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowDirection.BottomUp = 3 -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowDirection.LeftToRight = 0 -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowDirection.RightToLeft = 2 -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowDirection.TopDown = 1 -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowLayoutPanel +System.Windows.Forms.FlowLayoutPanel.FlowDirection.get -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowLayoutPanel.FlowDirection.set -> void +System.Windows.Forms.FlowLayoutPanel.FlowLayoutPanel() -> void +System.Windows.Forms.FlowLayoutPanel.GetFlowBreak(System.Windows.Forms.Control! control) -> bool +System.Windows.Forms.FlowLayoutPanel.SetFlowBreak(System.Windows.Forms.Control! control, bool value) -> void +System.Windows.Forms.FlowLayoutPanel.WrapContents.get -> bool +System.Windows.Forms.FlowLayoutPanel.WrapContents.set -> void +System.Windows.Forms.FlowLayoutSettings +System.Windows.Forms.FlowLayoutSettings.FlowDirection.get -> System.Windows.Forms.FlowDirection +System.Windows.Forms.FlowLayoutSettings.FlowDirection.set -> void +System.Windows.Forms.FlowLayoutSettings.GetFlowBreak(object! child) -> bool +System.Windows.Forms.FlowLayoutSettings.SetFlowBreak(object! child, bool value) -> void +System.Windows.Forms.FlowLayoutSettings.WrapContents.get -> bool +System.Windows.Forms.FlowLayoutSettings.WrapContents.set -> void +System.Windows.Forms.FolderBrowserDialog +System.Windows.Forms.FolderBrowserDialog.AddToRecent.get -> bool +System.Windows.Forms.FolderBrowserDialog.AddToRecent.set -> void +System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled.get -> bool +System.Windows.Forms.FolderBrowserDialog.AutoUpgradeEnabled.set -> void +System.Windows.Forms.FolderBrowserDialog.ClientGuid.get -> System.Guid? +System.Windows.Forms.FolderBrowserDialog.ClientGuid.set -> void +System.Windows.Forms.FolderBrowserDialog.Description.get -> string! +System.Windows.Forms.FolderBrowserDialog.Description.set -> void +System.Windows.Forms.FolderBrowserDialog.FolderBrowserDialog() -> void +System.Windows.Forms.FolderBrowserDialog.HelpRequest -> System.EventHandler? +System.Windows.Forms.FolderBrowserDialog.InitialDirectory.get -> string! +System.Windows.Forms.FolderBrowserDialog.InitialDirectory.set -> void +System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction.get -> bool +System.Windows.Forms.FolderBrowserDialog.OkRequiresInteraction.set -> void +System.Windows.Forms.FolderBrowserDialog.RootFolder.get -> System.Environment.SpecialFolder +System.Windows.Forms.FolderBrowserDialog.RootFolder.set -> void +System.Windows.Forms.FolderBrowserDialog.SelectedPath.get -> string! +System.Windows.Forms.FolderBrowserDialog.SelectedPath.set -> void +System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles.get -> bool +System.Windows.Forms.FolderBrowserDialog.ShowHiddenFiles.set -> void +System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton.get -> bool +System.Windows.Forms.FolderBrowserDialog.ShowNewFolderButton.set -> void +System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces.get -> bool +System.Windows.Forms.FolderBrowserDialog.ShowPinnedPlaces.set -> void +System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle.get -> bool +System.Windows.Forms.FolderBrowserDialog.UseDescriptionForTitle.set -> void +System.Windows.Forms.FontDialog +System.Windows.Forms.FontDialog.AllowScriptChange.get -> bool +System.Windows.Forms.FontDialog.AllowScriptChange.set -> void +System.Windows.Forms.FontDialog.AllowSimulations.get -> bool +System.Windows.Forms.FontDialog.AllowSimulations.set -> void +System.Windows.Forms.FontDialog.AllowVectorFonts.get -> bool +System.Windows.Forms.FontDialog.AllowVectorFonts.set -> void +System.Windows.Forms.FontDialog.AllowVerticalFonts.get -> bool +System.Windows.Forms.FontDialog.AllowVerticalFonts.set -> void +System.Windows.Forms.FontDialog.Apply -> System.EventHandler? +System.Windows.Forms.FontDialog.Color.get -> System.Drawing.Color +System.Windows.Forms.FontDialog.Color.set -> void +System.Windows.Forms.FontDialog.FixedPitchOnly.get -> bool +System.Windows.Forms.FontDialog.FixedPitchOnly.set -> void +System.Windows.Forms.FontDialog.Font.get -> System.Drawing.Font! +System.Windows.Forms.FontDialog.Font.set -> void +System.Windows.Forms.FontDialog.FontDialog() -> void +System.Windows.Forms.FontDialog.FontMustExist.get -> bool +System.Windows.Forms.FontDialog.FontMustExist.set -> void +System.Windows.Forms.FontDialog.MaxSize.get -> int +System.Windows.Forms.FontDialog.MaxSize.set -> void +System.Windows.Forms.FontDialog.MinSize.get -> int +System.Windows.Forms.FontDialog.MinSize.set -> void +System.Windows.Forms.FontDialog.Options.get -> int +System.Windows.Forms.FontDialog.ScriptsOnly.get -> bool +System.Windows.Forms.FontDialog.ScriptsOnly.set -> void +System.Windows.Forms.FontDialog.ShowApply.get -> bool +System.Windows.Forms.FontDialog.ShowApply.set -> void +System.Windows.Forms.FontDialog.ShowColor.get -> bool +System.Windows.Forms.FontDialog.ShowColor.set -> void +System.Windows.Forms.FontDialog.ShowEffects.get -> bool +System.Windows.Forms.FontDialog.ShowEffects.set -> void +System.Windows.Forms.FontDialog.ShowHelp.get -> bool +System.Windows.Forms.FontDialog.ShowHelp.set -> void +System.Windows.Forms.Form +System.Windows.Forms.Form.AcceptButton.get -> System.Windows.Forms.IButtonControl? +System.Windows.Forms.Form.AcceptButton.set -> void +System.Windows.Forms.Form.Activate() -> void +System.Windows.Forms.Form.Activated -> System.EventHandler? +System.Windows.Forms.Form.ActivateMdiChild(System.Windows.Forms.Form? form) -> void +System.Windows.Forms.Form.ActiveMdiChild.get -> System.Windows.Forms.Form? +System.Windows.Forms.Form.AddOwnedForm(System.Windows.Forms.Form? ownedForm) -> void +System.Windows.Forms.Form.AllowTransparency.get -> bool +System.Windows.Forms.Form.AllowTransparency.set -> void +System.Windows.Forms.Form.ApplyAutoScaling() -> void +System.Windows.Forms.Form.AutoScale.get -> bool +System.Windows.Forms.Form.AutoScale.set -> void +System.Windows.Forms.Form.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Form.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.Form.AutoSizeMode.set -> void +System.Windows.Forms.Form.AutoValidateChanged -> System.EventHandler? +System.Windows.Forms.Form.CancelButton.get -> System.Windows.Forms.IButtonControl? +System.Windows.Forms.Form.CancelButton.set -> void +System.Windows.Forms.Form.CenterToParent() -> void +System.Windows.Forms.Form.CenterToScreen() -> void +System.Windows.Forms.Form.ClientSize.get -> System.Drawing.Size +System.Windows.Forms.Form.ClientSize.set -> void +System.Windows.Forms.Form.Close() -> void +System.Windows.Forms.Form.Closed -> System.EventHandler? +System.Windows.Forms.Form.Closing -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.Form.ControlBox.get -> bool +System.Windows.Forms.Form.ControlBox.set -> void +System.Windows.Forms.Form.ControlCollection +System.Windows.Forms.Form.ControlCollection.ControlCollection(System.Windows.Forms.Form! owner) -> void +System.Windows.Forms.Form.Deactivate -> System.EventHandler? +System.Windows.Forms.Form.DesktopBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.Form.DesktopBounds.set -> void +System.Windows.Forms.Form.DesktopLocation.get -> System.Drawing.Point +System.Windows.Forms.Form.DesktopLocation.set -> void +System.Windows.Forms.Form.DialogResult.get -> System.Windows.Forms.DialogResult +System.Windows.Forms.Form.DialogResult.set -> void +System.Windows.Forms.Form.DpiChanged -> System.Windows.Forms.DpiChangedEventHandler? +System.Windows.Forms.Form.Form() -> void +System.Windows.Forms.Form.FormBorderStyle.get -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.Form.FormBorderStyle.set -> void +System.Windows.Forms.Form.FormClosed -> System.Windows.Forms.FormClosedEventHandler? +System.Windows.Forms.Form.FormClosing -> System.Windows.Forms.FormClosingEventHandler? +System.Windows.Forms.Form.HelpButton.get -> bool +System.Windows.Forms.Form.HelpButton.set -> void +System.Windows.Forms.Form.HelpButtonClicked -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.Form.Icon.get -> System.Drawing.Icon? +System.Windows.Forms.Form.Icon.set -> void +System.Windows.Forms.Form.InputLanguageChanged -> System.Windows.Forms.InputLanguageChangedEventHandler? +System.Windows.Forms.Form.InputLanguageChanging -> System.Windows.Forms.InputLanguageChangingEventHandler? +System.Windows.Forms.Form.IsMdiChild.get -> bool +System.Windows.Forms.Form.IsMdiContainer.get -> bool +System.Windows.Forms.Form.IsMdiContainer.set -> void +System.Windows.Forms.Form.IsRestrictedWindow.get -> bool +System.Windows.Forms.Form.KeyPreview.get -> bool +System.Windows.Forms.Form.KeyPreview.set -> void +System.Windows.Forms.Form.LayoutMdi(System.Windows.Forms.MdiLayout value) -> void +System.Windows.Forms.Form.Load -> System.EventHandler? +System.Windows.Forms.Form.Location.get -> System.Drawing.Point +System.Windows.Forms.Form.Location.set -> void +System.Windows.Forms.Form.MainMenuStrip.get -> System.Windows.Forms.MenuStrip? +System.Windows.Forms.Form.MainMenuStrip.set -> void +System.Windows.Forms.Form.Margin.get -> System.Windows.Forms.Padding +System.Windows.Forms.Form.Margin.set -> void +System.Windows.Forms.Form.MarginChanged -> System.EventHandler? +System.Windows.Forms.Form.MaximizeBox.get -> bool +System.Windows.Forms.Form.MaximizeBox.set -> void +System.Windows.Forms.Form.MaximizedBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.Form.MaximizedBounds.set -> void +System.Windows.Forms.Form.MaximizedBoundsChanged -> System.EventHandler? +System.Windows.Forms.Form.MaximumSizeChanged -> System.EventHandler? +System.Windows.Forms.Form.MdiChildActivate -> System.EventHandler? +System.Windows.Forms.Form.MdiChildren.get -> System.Windows.Forms.Form![]! +System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom.get -> bool +System.Windows.Forms.Form.MdiChildrenMinimizedAnchorBottom.set -> void +System.Windows.Forms.Form.MdiParent.get -> System.Windows.Forms.Form? +System.Windows.Forms.Form.MdiParent.set -> void +System.Windows.Forms.Form.MenuComplete -> System.EventHandler? +System.Windows.Forms.Form.MenuStart -> System.EventHandler? +System.Windows.Forms.Form.MinimizeBox.get -> bool +System.Windows.Forms.Form.MinimizeBox.set -> void +System.Windows.Forms.Form.MinimumSizeChanged -> System.EventHandler? +System.Windows.Forms.Form.Modal.get -> bool +System.Windows.Forms.Form.Opacity.get -> double +System.Windows.Forms.Form.Opacity.set -> void +System.Windows.Forms.Form.OwnedForms.get -> System.Windows.Forms.Form![]! +System.Windows.Forms.Form.Owner.get -> System.Windows.Forms.Form? +System.Windows.Forms.Form.Owner.set -> void +System.Windows.Forms.Form.RemoveOwnedForm(System.Windows.Forms.Form? ownedForm) -> void +System.Windows.Forms.Form.ResizeBegin -> System.EventHandler? +System.Windows.Forms.Form.ResizeEnd -> System.EventHandler? +System.Windows.Forms.Form.RestoreBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.Form.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.Form.SetDesktopBounds(int x, int y, int width, int height) -> void +System.Windows.Forms.Form.SetDesktopLocation(int x, int y) -> void +System.Windows.Forms.Form.Show(System.Windows.Forms.IWin32Window? owner) -> void +System.Windows.Forms.Form.ShowDialog() -> System.Windows.Forms.DialogResult +System.Windows.Forms.Form.ShowDialog(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult +System.Windows.Forms.Form.ShowIcon.get -> bool +System.Windows.Forms.Form.ShowIcon.set -> void +System.Windows.Forms.Form.ShowInTaskbar.get -> bool +System.Windows.Forms.Form.ShowInTaskbar.set -> void +System.Windows.Forms.Form.Shown -> System.EventHandler? +System.Windows.Forms.Form.Size.get -> System.Drawing.Size +System.Windows.Forms.Form.Size.set -> void +System.Windows.Forms.Form.SizeGripStyle.get -> System.Windows.Forms.SizeGripStyle +System.Windows.Forms.Form.SizeGripStyle.set -> void +System.Windows.Forms.Form.StartPosition.get -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.Form.StartPosition.set -> void +System.Windows.Forms.Form.TabIndex.get -> int +System.Windows.Forms.Form.TabIndex.set -> void +System.Windows.Forms.Form.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.Form.TabStop.get -> bool +System.Windows.Forms.Form.TabStop.set -> void +System.Windows.Forms.Form.TabStopChanged -> System.EventHandler? +System.Windows.Forms.Form.TopLevel.get -> bool +System.Windows.Forms.Form.TopLevel.set -> void +System.Windows.Forms.Form.TopMost.get -> bool +System.Windows.Forms.Form.TopMost.set -> void +System.Windows.Forms.Form.TransparencyKey.get -> System.Drawing.Color +System.Windows.Forms.Form.TransparencyKey.set -> void +System.Windows.Forms.Form.WindowState.get -> System.Windows.Forms.FormWindowState +System.Windows.Forms.Form.WindowState.set -> void +System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.Fixed3D = 2 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.FixedDialog = 3 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.FixedSingle = 1 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.FixedToolWindow = 5 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.None = 0 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.Sizable = 4 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormBorderStyle.SizableToolWindow = 6 -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.FormClosedEventArgs +System.Windows.Forms.FormClosedEventArgs.CloseReason.get -> System.Windows.Forms.CloseReason +System.Windows.Forms.FormClosedEventArgs.FormClosedEventArgs(System.Windows.Forms.CloseReason closeReason) -> void +System.Windows.Forms.FormClosedEventHandler +System.Windows.Forms.FormClosingEventArgs +System.Windows.Forms.FormClosingEventArgs.CloseReason.get -> System.Windows.Forms.CloseReason +System.Windows.Forms.FormClosingEventArgs.FormClosingEventArgs(System.Windows.Forms.CloseReason closeReason, bool cancel) -> void +System.Windows.Forms.FormClosingEventHandler +System.Windows.Forms.FormCollection +System.Windows.Forms.FormCollection.FormCollection() -> void +System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormStartPosition.CenterParent = 4 -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormStartPosition.CenterScreen = 1 -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormStartPosition.Manual = 0 -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormStartPosition.WindowsDefaultBounds = 3 -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormStartPosition.WindowsDefaultLocation = 2 -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.FormWindowState +System.Windows.Forms.FormWindowState.Maximized = 2 -> System.Windows.Forms.FormWindowState +System.Windows.Forms.FormWindowState.Minimized = 1 -> System.Windows.Forms.FormWindowState +System.Windows.Forms.FormWindowState.Normal = 0 -> System.Windows.Forms.FormWindowState +System.Windows.Forms.FrameStyle +System.Windows.Forms.FrameStyle.Dashed = 0 -> System.Windows.Forms.FrameStyle +System.Windows.Forms.FrameStyle.Thick = 1 -> System.Windows.Forms.FrameStyle +System.Windows.Forms.GetChildAtPointSkip +System.Windows.Forms.GetChildAtPointSkip.Disabled = 2 -> System.Windows.Forms.GetChildAtPointSkip +System.Windows.Forms.GetChildAtPointSkip.Invisible = 1 -> System.Windows.Forms.GetChildAtPointSkip +System.Windows.Forms.GetChildAtPointSkip.None = 0 -> System.Windows.Forms.GetChildAtPointSkip +System.Windows.Forms.GetChildAtPointSkip.Transparent = 4 -> System.Windows.Forms.GetChildAtPointSkip +System.Windows.Forms.GiveFeedbackEventArgs +System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset.get -> System.Drawing.Point +System.Windows.Forms.GiveFeedbackEventArgs.CursorOffset.set -> void +System.Windows.Forms.GiveFeedbackEventArgs.DragImage.get -> System.Drawing.Bitmap? +System.Windows.Forms.GiveFeedbackEventArgs.DragImage.set -> void +System.Windows.Forms.GiveFeedbackEventArgs.Effect.get -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.GiveFeedbackEventArgs.GiveFeedbackEventArgs(System.Windows.Forms.DragDropEffects effect, bool useDefaultCursors) -> void +System.Windows.Forms.GiveFeedbackEventArgs.GiveFeedbackEventArgs(System.Windows.Forms.DragDropEffects effect, bool useDefaultCursors, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> void +System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors.get -> bool +System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultCursors.set -> void +System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage.get -> bool +System.Windows.Forms.GiveFeedbackEventArgs.UseDefaultDragImage.set -> void +System.Windows.Forms.GiveFeedbackEventHandler +System.Windows.Forms.GridItem +System.Windows.Forms.GridItem.GridItem() -> void +System.Windows.Forms.GridItem.Tag.get -> object? +System.Windows.Forms.GridItem.Tag.set -> void +System.Windows.Forms.GridItemCollection +System.Windows.Forms.GridItemCollection.Count.get -> int +System.Windows.Forms.GridItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.GridItemCollection.this[int index].get -> System.Windows.Forms.GridItem! +System.Windows.Forms.GridItemCollection.this[string! label].get -> System.Windows.Forms.GridItem? +System.Windows.Forms.GridItemType +System.Windows.Forms.GridItemType.ArrayValue = 2 -> System.Windows.Forms.GridItemType +System.Windows.Forms.GridItemType.Category = 1 -> System.Windows.Forms.GridItemType +System.Windows.Forms.GridItemType.Property = 0 -> System.Windows.Forms.GridItemType +System.Windows.Forms.GridItemType.Root = 3 -> System.Windows.Forms.GridItemType +System.Windows.Forms.GroupBox +System.Windows.Forms.GroupBox.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.GroupBox.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.GroupBox.AutoSizeMode.set -> void +System.Windows.Forms.GroupBox.Click -> System.EventHandler? +System.Windows.Forms.GroupBox.DoubleClick -> System.EventHandler? +System.Windows.Forms.GroupBox.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.GroupBox.FlatStyle.set -> void +System.Windows.Forms.GroupBox.GroupBox() -> void +System.Windows.Forms.GroupBox.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.GroupBox.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.GroupBox.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.GroupBox.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.GroupBox.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.GroupBox.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.GroupBox.MouseEnter -> System.EventHandler? +System.Windows.Forms.GroupBox.MouseLeave -> System.EventHandler? +System.Windows.Forms.GroupBox.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.GroupBox.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.GroupBox.TabStop.get -> bool +System.Windows.Forms.GroupBox.TabStop.set -> void +System.Windows.Forms.GroupBox.TabStopChanged -> System.EventHandler? +System.Windows.Forms.GroupBox.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.GroupBox.UseCompatibleTextRendering.set -> void +System.Windows.Forms.GroupBoxRenderer +System.Windows.Forms.HandledMouseEventArgs +System.Windows.Forms.HandledMouseEventArgs.Handled.get -> bool +System.Windows.Forms.HandledMouseEventArgs.Handled.set -> void +System.Windows.Forms.HandledMouseEventArgs.HandledMouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta) -> void +System.Windows.Forms.HandledMouseEventArgs.HandledMouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta, bool defaultHandledValue) -> void +System.Windows.Forms.Help +System.Windows.Forms.HelpEventArgs +System.Windows.Forms.HelpEventArgs.Handled.get -> bool +System.Windows.Forms.HelpEventArgs.Handled.set -> void +System.Windows.Forms.HelpEventArgs.HelpEventArgs(System.Drawing.Point mousePos) -> void +System.Windows.Forms.HelpEventArgs.MousePos.get -> System.Drawing.Point +System.Windows.Forms.HelpEventHandler +System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.AssociateIndex = -2147483643 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.Find = -2147483644 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.Index = -2147483645 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.KeywordIndex = -2147483642 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.TableOfContents = -2147483646 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.Topic = -2147483647 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpNavigator.TopicId = -2147483641 -> System.Windows.Forms.HelpNavigator +System.Windows.Forms.HelpProvider +System.Windows.Forms.HelpProvider.HelpProvider() -> void +System.Windows.Forms.HelpProvider.Tag.get -> object? +System.Windows.Forms.HelpProvider.Tag.set -> void +System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.HorizontalAlignment.Center = 2 -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.HorizontalAlignment.Left = 0 -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.HorizontalAlignment.Right = 1 -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.HScrollBar +System.Windows.Forms.HScrollBar.HScrollBar() -> void +System.Windows.Forms.HScrollProperties +System.Windows.Forms.HScrollProperties.HScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void +System.Windows.Forms.HtmlDocument +System.Windows.Forms.HtmlDocument.ActiveElement.get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlDocument.ActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.HtmlDocument.ActiveLinkColor.set -> void +System.Windows.Forms.HtmlDocument.All.get -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlDocument.AttachEventHandler(string! eventName, System.EventHandler! eventHandler) -> void +System.Windows.Forms.HtmlDocument.BackColor.get -> System.Drawing.Color +System.Windows.Forms.HtmlDocument.BackColor.set -> void +System.Windows.Forms.HtmlDocument.Body.get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlDocument.Click -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.ContextMenuShowing -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.Cookie.get -> string! +System.Windows.Forms.HtmlDocument.Cookie.set -> void +System.Windows.Forms.HtmlDocument.CreateElement(string! elementTag) -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlDocument.DefaultEncoding.get -> string! +System.Windows.Forms.HtmlDocument.DetachEventHandler(string! eventName, System.EventHandler! eventHandler) -> void +System.Windows.Forms.HtmlDocument.Domain.get -> string! +System.Windows.Forms.HtmlDocument.Domain.set -> void +System.Windows.Forms.HtmlDocument.DomDocument.get -> object! +System.Windows.Forms.HtmlDocument.Encoding.get -> string! +System.Windows.Forms.HtmlDocument.Encoding.set -> void +System.Windows.Forms.HtmlDocument.ExecCommand(string! command, bool showUI, object! value) -> void +System.Windows.Forms.HtmlDocument.Focus() -> void +System.Windows.Forms.HtmlDocument.Focused.get -> bool +System.Windows.Forms.HtmlDocument.Focusing -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.HtmlDocument.ForeColor.set -> void +System.Windows.Forms.HtmlDocument.Forms.get -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlDocument.GetElementById(string! id) -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlDocument.GetElementFromPoint(System.Drawing.Point point) -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlDocument.GetElementsByTagName(string! tagName) -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlDocument.Images.get -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlDocument.InvokeScript(string! scriptName) -> object? +System.Windows.Forms.HtmlDocument.InvokeScript(string! scriptName, object![]? args) -> object? +System.Windows.Forms.HtmlDocument.LinkColor.get -> System.Drawing.Color +System.Windows.Forms.HtmlDocument.LinkColor.set -> void +System.Windows.Forms.HtmlDocument.Links.get -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlDocument.LosingFocus -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.MouseDown -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.MouseLeave -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.MouseMove -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.MouseOver -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.MouseUp -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.OpenNew(bool replaceInHistory) -> System.Windows.Forms.HtmlDocument? +System.Windows.Forms.HtmlDocument.RightToLeft.get -> bool +System.Windows.Forms.HtmlDocument.RightToLeft.set -> void +System.Windows.Forms.HtmlDocument.Stop -> System.Windows.Forms.HtmlElementEventHandler? +System.Windows.Forms.HtmlDocument.Title.get -> string! +System.Windows.Forms.HtmlDocument.Title.set -> void +System.Windows.Forms.HtmlDocument.Url.get -> System.Uri? +System.Windows.Forms.HtmlDocument.VisitedLinkColor.get -> System.Drawing.Color +System.Windows.Forms.HtmlDocument.VisitedLinkColor.set -> void +System.Windows.Forms.HtmlDocument.Window.get -> System.Windows.Forms.HtmlWindow? +System.Windows.Forms.HtmlDocument.Write(string! text) -> void +System.Windows.Forms.HtmlElement +System.Windows.Forms.HtmlElement.CanHaveChildren.get -> bool +System.Windows.Forms.HtmlElement.Click -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.ClientRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.HtmlElement.DoubleClick -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.Drag -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.DragEnd -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.DragLeave -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.DragOver -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.Enabled.get -> bool +System.Windows.Forms.HtmlElement.Enabled.set -> void +System.Windows.Forms.HtmlElement.Focus() -> void +System.Windows.Forms.HtmlElement.Focusing -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.GotFocus -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.KeyDown -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.KeyPress -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.KeyUp -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.LosingFocus -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.LostFocus -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseDown -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseEnter -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseLeave -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseMove -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseOver -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.MouseUp -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElement.OffsetRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.HtmlElement.RemoveFocus() -> void +System.Windows.Forms.HtmlElement.ScrollIntoView(bool alignWithTop) -> void +System.Windows.Forms.HtmlElement.ScrollLeft.get -> int +System.Windows.Forms.HtmlElement.ScrollLeft.set -> void +System.Windows.Forms.HtmlElement.ScrollRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.HtmlElement.ScrollTop.get -> int +System.Windows.Forms.HtmlElement.ScrollTop.set -> void +System.Windows.Forms.HtmlElement.TabIndex.get -> short +System.Windows.Forms.HtmlElement.TabIndex.set -> void +System.Windows.Forms.HtmlElementCollection +System.Windows.Forms.HtmlElementCollection.Count.get -> int +System.Windows.Forms.HtmlElementCollection.GetElementsByName(string! name) -> System.Windows.Forms.HtmlElementCollection! +System.Windows.Forms.HtmlElementCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.HtmlElementCollection.this[int index].get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlElementCollection.this[string! elementId].get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlElementErrorEventArgs +System.Windows.Forms.HtmlElementErrorEventArgs.Description.get -> string! +System.Windows.Forms.HtmlElementErrorEventArgs.Handled.get -> bool +System.Windows.Forms.HtmlElementErrorEventArgs.Handled.set -> void +System.Windows.Forms.HtmlElementErrorEventArgs.LineNumber.get -> int +System.Windows.Forms.HtmlElementErrorEventArgs.Url.get -> System.Uri! +System.Windows.Forms.HtmlElementErrorEventHandler +System.Windows.Forms.HtmlElementEventArgs +System.Windows.Forms.HtmlElementEventArgs.AltKeyPressed.get -> bool +System.Windows.Forms.HtmlElementEventArgs.BubbleEvent.get -> bool +System.Windows.Forms.HtmlElementEventArgs.BubbleEvent.set -> void +System.Windows.Forms.HtmlElementEventArgs.ClientMousePosition.get -> System.Drawing.Point +System.Windows.Forms.HtmlElementEventArgs.CtrlKeyPressed.get -> bool +System.Windows.Forms.HtmlElementEventArgs.EventType.get -> string! +System.Windows.Forms.HtmlElementEventArgs.FromElement.get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlElementEventArgs.KeyPressedCode.get -> int +System.Windows.Forms.HtmlElementEventArgs.MouseButtonsPressed.get -> System.Windows.Forms.MouseButtons +System.Windows.Forms.HtmlElementEventArgs.MousePosition.get -> System.Drawing.Point +System.Windows.Forms.HtmlElementEventArgs.OffsetMousePosition.get -> System.Drawing.Point +System.Windows.Forms.HtmlElementEventArgs.ReturnValue.get -> bool +System.Windows.Forms.HtmlElementEventArgs.ReturnValue.set -> void +System.Windows.Forms.HtmlElementEventArgs.ShiftKeyPressed.get -> bool +System.Windows.Forms.HtmlElementEventArgs.ToElement.get -> System.Windows.Forms.HtmlElement? +System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlElementInsertionOrientation +System.Windows.Forms.HtmlElementInsertionOrientation.AfterBegin = 1 -> System.Windows.Forms.HtmlElementInsertionOrientation +System.Windows.Forms.HtmlElementInsertionOrientation.AfterEnd = 3 -> System.Windows.Forms.HtmlElementInsertionOrientation +System.Windows.Forms.HtmlElementInsertionOrientation.BeforeBegin = 0 -> System.Windows.Forms.HtmlElementInsertionOrientation +System.Windows.Forms.HtmlElementInsertionOrientation.BeforeEnd = 2 -> System.Windows.Forms.HtmlElementInsertionOrientation +System.Windows.Forms.HtmlHistory +System.Windows.Forms.HtmlHistory.Back(int numberBack) -> void +System.Windows.Forms.HtmlHistory.Dispose() -> void +System.Windows.Forms.HtmlHistory.DomHistory.get -> object! +System.Windows.Forms.HtmlHistory.Forward(int numberForward) -> void +System.Windows.Forms.HtmlHistory.Go(int relativePosition) -> void +System.Windows.Forms.HtmlHistory.Go(string! urlString) -> void +System.Windows.Forms.HtmlHistory.Go(System.Uri! url) -> void +System.Windows.Forms.HtmlHistory.Length.get -> int +System.Windows.Forms.HtmlWindow +System.Windows.Forms.HtmlWindow.Close() -> void +System.Windows.Forms.HtmlWindow.Error -> System.Windows.Forms.HtmlElementErrorEventHandler +System.Windows.Forms.HtmlWindow.Focus() -> void +System.Windows.Forms.HtmlWindow.GotFocus -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindow.IsClosed.get -> bool +System.Windows.Forms.HtmlWindow.Load -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindow.LostFocus -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindow.MoveTo(int x, int y) -> void +System.Windows.Forms.HtmlWindow.MoveTo(System.Drawing.Point point) -> void +System.Windows.Forms.HtmlWindow.Position.get -> System.Drawing.Point +System.Windows.Forms.HtmlWindow.RemoveFocus() -> void +System.Windows.Forms.HtmlWindow.Resize -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindow.ResizeTo(int width, int height) -> void +System.Windows.Forms.HtmlWindow.ResizeTo(System.Drawing.Size size) -> void +System.Windows.Forms.HtmlWindow.Scroll -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindow.ScrollTo(int x, int y) -> void +System.Windows.Forms.HtmlWindow.ScrollTo(System.Drawing.Point point) -> void +System.Windows.Forms.HtmlWindow.Size.get -> System.Drawing.Size +System.Windows.Forms.HtmlWindow.Size.set -> void +System.Windows.Forms.HtmlWindow.Unload -> System.Windows.Forms.HtmlElementEventHandler +System.Windows.Forms.HtmlWindowCollection +System.Windows.Forms.HtmlWindowCollection.Count.get -> int +System.Windows.Forms.HtmlWindowCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.HtmlWindowCollection.this[int index].get -> System.Windows.Forms.HtmlWindow? +System.Windows.Forms.HtmlWindowCollection.this[string! windowId].get -> System.Windows.Forms.HtmlWindow? +System.Windows.Forms.IBindableComponent +System.Windows.Forms.IBindableComponent.BindingContext.get -> System.Windows.Forms.BindingContext? +System.Windows.Forms.IBindableComponent.BindingContext.set -> void +System.Windows.Forms.IBindableComponent.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! +System.Windows.Forms.IButtonControl +System.Windows.Forms.IButtonControl.DialogResult.get -> System.Windows.Forms.DialogResult +System.Windows.Forms.IButtonControl.DialogResult.set -> void +System.Windows.Forms.IButtonControl.NotifyDefault(bool value) -> void +System.Windows.Forms.IButtonControl.PerformClick() -> void +System.Windows.Forms.ICommandExecutor +System.Windows.Forms.ICommandExecutor.Execute() -> void +System.Windows.Forms.IComponentEditorPageSite +System.Windows.Forms.IComponentEditorPageSite.GetControl() -> System.Windows.Forms.Control! +System.Windows.Forms.IComponentEditorPageSite.SetDirty() -> void +System.Windows.Forms.IContainerControl +System.Windows.Forms.IContainerControl.ActivateControl(System.Windows.Forms.Control! active) -> bool +System.Windows.Forms.IContainerControl.ActiveControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.IContainerControl.ActiveControl.set -> void +System.Windows.Forms.ICurrencyManagerProvider +System.Windows.Forms.ICurrencyManagerProvider.CurrencyManager.get -> System.Windows.Forms.CurrencyManager? +System.Windows.Forms.ICurrencyManagerProvider.GetRelatedCurrencyManager(string? dataMember) -> System.Windows.Forms.CurrencyManager? +System.Windows.Forms.IDataGridColumnStyleEditingNotificationService +System.Windows.Forms.IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing(System.Windows.Forms.Control! editingControl) -> void +System.Windows.Forms.IDataGridViewEditingCell +System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue.get -> object! +System.Windows.Forms.IDataGridViewEditingCell.EditingCellFormattedValue.set -> void +System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged.get -> bool +System.Windows.Forms.IDataGridViewEditingCell.EditingCellValueChanged.set -> void +System.Windows.Forms.IDataGridViewEditingCell.GetEditingCellFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! +System.Windows.Forms.IDataGridViewEditingCell.PrepareEditingCellForEdit(bool selectAll) -> void +System.Windows.Forms.IDataGridViewEditingControl +System.Windows.Forms.IDataGridViewEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void +System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? +System.Windows.Forms.IDataGridViewEditingControl.EditingControlDataGridView.set -> void +System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue.get -> object! +System.Windows.Forms.IDataGridViewEditingControl.EditingControlFormattedValue.set -> void +System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex.get -> int +System.Windows.Forms.IDataGridViewEditingControl.EditingControlRowIndex.set -> void +System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged.get -> bool +System.Windows.Forms.IDataGridViewEditingControl.EditingControlValueChanged.set -> void +System.Windows.Forms.IDataGridViewEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool +System.Windows.Forms.IDataGridViewEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! +System.Windows.Forms.IDataGridViewEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! +System.Windows.Forms.IDataGridViewEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void +System.Windows.Forms.IDataGridViewEditingControl.RepositionEditingControlOnValueChange.get -> bool +System.Windows.Forms.IDataObject +System.Windows.Forms.IDataObject.GetData(string! format) -> object? +System.Windows.Forms.IDataObject.GetData(string! format, bool autoConvert) -> object? +System.Windows.Forms.IDataObject.GetData(System.Type! format) -> object? +System.Windows.Forms.IDataObject.GetDataPresent(string! format) -> bool +System.Windows.Forms.IDataObject.GetDataPresent(string! format, bool autoConvert) -> bool +System.Windows.Forms.IDataObject.GetDataPresent(System.Type! format) -> bool +System.Windows.Forms.IDataObject.GetFormats() -> string![]! +System.Windows.Forms.IDataObject.GetFormats(bool autoConvert) -> string![]! +System.Windows.Forms.IDataObject.SetData(object? data) -> void +System.Windows.Forms.IDataObject.SetData(string! format, bool autoConvert, object? data) -> void +System.Windows.Forms.IDataObject.SetData(string! format, object? data) -> void +System.Windows.Forms.IDataObject.SetData(System.Type! format, object? data) -> void +System.Windows.Forms.IDropTarget +System.Windows.Forms.IDropTarget.OnDragDrop(System.Windows.Forms.DragEventArgs! e) -> void +System.Windows.Forms.IDropTarget.OnDragEnter(System.Windows.Forms.DragEventArgs! e) -> void +System.Windows.Forms.IDropTarget.OnDragLeave(System.EventArgs! e) -> void +System.Windows.Forms.IDropTarget.OnDragOver(System.Windows.Forms.DragEventArgs! e) -> void +System.Windows.Forms.IFeatureSupport +System.Windows.Forms.IFeatureSupport.GetVersionPresent(object! feature) -> System.Version? +System.Windows.Forms.IFeatureSupport.IsPresent(object! feature) -> bool +System.Windows.Forms.IFeatureSupport.IsPresent(object! feature, System.Version! minimumVersion) -> bool +System.Windows.Forms.IFileReaderService +System.Windows.Forms.IFileReaderService.OpenFileFromSource(string! relativePath) -> System.IO.Stream! +System.Windows.Forms.ImageIndexConverter +System.Windows.Forms.ImageIndexConverter.ImageIndexConverter() -> void +System.Windows.Forms.ImageKeyConverter +System.Windows.Forms.ImageKeyConverter.ImageKeyConverter() -> void +System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageLayout.Center = 2 -> System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageLayout.None = 0 -> System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageLayout.Stretch = 3 -> System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageLayout.Tile = 1 -> System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageLayout.Zoom = 4 -> System.Windows.Forms.ImageLayout +System.Windows.Forms.ImageList +System.Windows.Forms.ImageList.ColorDepth.get -> System.Windows.Forms.ColorDepth +System.Windows.Forms.ImageList.ColorDepth.set -> void +System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, int x, int y, int index) -> void +System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, int x, int y, int width, int height, int index) -> void +System.Windows.Forms.ImageList.Draw(System.Drawing.Graphics! g, System.Drawing.Point pt, int index) -> void +System.Windows.Forms.ImageList.Handle.get -> nint +System.Windows.Forms.ImageList.HandleCreated.get -> bool +System.Windows.Forms.ImageList.ImageCollection +System.Windows.Forms.ImageList.ImageCollection.Add(string! key, System.Drawing.Icon! icon) -> void +System.Windows.Forms.ImageList.ImageCollection.Add(string! key, System.Drawing.Image! image) -> void +System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Icon! value) -> void +System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image! value) -> void +System.Windows.Forms.ImageList.ImageCollection.Add(System.Drawing.Image! value, System.Drawing.Color transparentColor) -> int +System.Windows.Forms.ImageList.ImageCollection.AddRange(System.Drawing.Image![]! images) -> void +System.Windows.Forms.ImageList.ImageCollection.AddStrip(System.Drawing.Image! value) -> int +System.Windows.Forms.ImageList.ImageCollection.Clear() -> void +System.Windows.Forms.ImageList.ImageCollection.Contains(System.Drawing.Image! image) -> bool +System.Windows.Forms.ImageList.ImageCollection.ContainsKey(string! key) -> bool +System.Windows.Forms.ImageList.ImageCollection.Count.get -> int +System.Windows.Forms.ImageList.ImageCollection.Empty.get -> bool +System.Windows.Forms.ImageList.ImageCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ImageList.ImageCollection.IndexOf(System.Drawing.Image! image) -> int +System.Windows.Forms.ImageList.ImageCollection.IndexOfKey(string! key) -> int +System.Windows.Forms.ImageList.ImageCollection.IsReadOnly.get -> bool +System.Windows.Forms.ImageList.ImageCollection.Keys.get -> System.Collections.Specialized.StringCollection! +System.Windows.Forms.ImageList.ImageCollection.Remove(System.Drawing.Image! image) -> void +System.Windows.Forms.ImageList.ImageCollection.RemoveAt(int index) -> void +System.Windows.Forms.ImageList.ImageCollection.RemoveByKey(string! key) -> void +System.Windows.Forms.ImageList.ImageCollection.SetKeyName(int index, string! name) -> void +System.Windows.Forms.ImageList.ImageCollection.this[int index].get -> System.Drawing.Image! +System.Windows.Forms.ImageList.ImageCollection.this[int index].set -> void +System.Windows.Forms.ImageList.ImageCollection.this[string! key].get -> System.Drawing.Image? +System.Windows.Forms.ImageList.ImageList() -> void +System.Windows.Forms.ImageList.ImageList(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.ImageList.Images.get -> System.Windows.Forms.ImageList.ImageCollection! +System.Windows.Forms.ImageList.ImageSize.get -> System.Drawing.Size +System.Windows.Forms.ImageList.ImageSize.set -> void +System.Windows.Forms.ImageList.ImageStream.get -> System.Windows.Forms.ImageListStreamer? +System.Windows.Forms.ImageList.ImageStream.set -> void +System.Windows.Forms.ImageList.RecreateHandle -> System.EventHandler? +System.Windows.Forms.ImageList.Tag.get -> object? +System.Windows.Forms.ImageList.Tag.set -> void +System.Windows.Forms.ImageList.TransparentColor.get -> System.Drawing.Color +System.Windows.Forms.ImageList.TransparentColor.set -> void +System.Windows.Forms.ImageListStreamer +System.Windows.Forms.ImageListStreamer.Dispose() -> void +System.Windows.Forms.ImageListStreamer.GetObjectData(System.Runtime.Serialization.SerializationInfo! si, System.Runtime.Serialization.StreamingContext context) -> void +System.Windows.Forms.ImeContext +System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Alpha = 8 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.AlphaFull = 7 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Close = 11 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Disable = 3 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Hangul = 10 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.HangulFull = 9 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Hiragana = 4 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Inherit = -1 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Katakana = 5 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.KatakanaHalf = 6 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.NoControl = 0 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.Off = 2 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.On = 1 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeMode.OnHalf = 12 -> System.Windows.Forms.ImeMode +System.Windows.Forms.ImeModeConversion +System.Windows.Forms.ImeModeConversion.ImeModeConversion() -> void +System.Windows.Forms.IMessageFilter +System.Windows.Forms.IMessageFilter.PreFilterMessage(ref System.Windows.Forms.Message m) -> bool +System.Windows.Forms.InputLanguage +System.Windows.Forms.InputLanguage.Culture.get -> System.Globalization.CultureInfo! +System.Windows.Forms.InputLanguage.Handle.get -> nint +System.Windows.Forms.InputLanguage.LayoutName.get -> string! +System.Windows.Forms.InputLanguageChangedEventArgs +System.Windows.Forms.InputLanguageChangedEventArgs.CharSet.get -> byte +System.Windows.Forms.InputLanguageChangedEventArgs.Culture.get -> System.Globalization.CultureInfo! +System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguage.get -> System.Windows.Forms.InputLanguage! +System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(System.Globalization.CultureInfo! culture, byte charSet) -> void +System.Windows.Forms.InputLanguageChangedEventArgs.InputLanguageChangedEventArgs(System.Windows.Forms.InputLanguage! inputLanguage, byte charSet) -> void +System.Windows.Forms.InputLanguageChangedEventHandler +System.Windows.Forms.InputLanguageChangingEventArgs +System.Windows.Forms.InputLanguageChangingEventArgs.Culture.get -> System.Globalization.CultureInfo! +System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguage.get -> System.Windows.Forms.InputLanguage! +System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguageChangingEventArgs(System.Globalization.CultureInfo! culture, bool sysCharSet) -> void +System.Windows.Forms.InputLanguageChangingEventArgs.InputLanguageChangingEventArgs(System.Windows.Forms.InputLanguage! inputLanguage, bool sysCharSet) -> void +System.Windows.Forms.InputLanguageChangingEventArgs.SysCharSet.get -> bool +System.Windows.Forms.InputLanguageChangingEventHandler +System.Windows.Forms.InputLanguageCollection +System.Windows.Forms.InputLanguageCollection.Contains(System.Windows.Forms.InputLanguage? value) -> bool +System.Windows.Forms.InputLanguageCollection.CopyTo(System.Windows.Forms.InputLanguage![]! array, int index) -> void +System.Windows.Forms.InputLanguageCollection.IndexOf(System.Windows.Forms.InputLanguage? value) -> int +System.Windows.Forms.InputLanguageCollection.this[int index].get -> System.Windows.Forms.InputLanguage! +System.Windows.Forms.InsertKeyMode +System.Windows.Forms.InsertKeyMode.Default = 0 -> System.Windows.Forms.InsertKeyMode +System.Windows.Forms.InsertKeyMode.Insert = 1 -> System.Windows.Forms.InsertKeyMode +System.Windows.Forms.InsertKeyMode.Overwrite = 2 -> System.Windows.Forms.InsertKeyMode +System.Windows.Forms.InvalidateEventArgs +System.Windows.Forms.InvalidateEventArgs.InvalidateEventArgs(System.Drawing.Rectangle invalidRect) -> void +System.Windows.Forms.InvalidateEventArgs.InvalidRect.get -> System.Drawing.Rectangle +System.Windows.Forms.InvalidateEventHandler +System.Windows.Forms.ItemActivation +System.Windows.Forms.ItemActivation.OneClick = 1 -> System.Windows.Forms.ItemActivation +System.Windows.Forms.ItemActivation.Standard = 0 -> System.Windows.Forms.ItemActivation +System.Windows.Forms.ItemActivation.TwoClick = 2 -> System.Windows.Forms.ItemActivation +System.Windows.Forms.ItemBoundsPortion +System.Windows.Forms.ItemBoundsPortion.Entire = 0 -> System.Windows.Forms.ItemBoundsPortion +System.Windows.Forms.ItemBoundsPortion.Icon = 1 -> System.Windows.Forms.ItemBoundsPortion +System.Windows.Forms.ItemBoundsPortion.ItemOnly = 3 -> System.Windows.Forms.ItemBoundsPortion +System.Windows.Forms.ItemBoundsPortion.Label = 2 -> System.Windows.Forms.ItemBoundsPortion +System.Windows.Forms.ItemChangedEventArgs +System.Windows.Forms.ItemChangedEventArgs.Index.get -> int +System.Windows.Forms.ItemChangedEventHandler +System.Windows.Forms.ItemCheckedEventArgs +System.Windows.Forms.ItemCheckedEventArgs.Item.get -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ItemCheckedEventArgs.ItemCheckedEventArgs(System.Windows.Forms.ListViewItem! item) -> void +System.Windows.Forms.ItemCheckedEventHandler +System.Windows.Forms.ItemCheckEventArgs +System.Windows.Forms.ItemCheckEventArgs.CurrentValue.get -> System.Windows.Forms.CheckState +System.Windows.Forms.ItemCheckEventArgs.Index.get -> int +System.Windows.Forms.ItemCheckEventArgs.ItemCheckEventArgs(int index, System.Windows.Forms.CheckState newCheckValue, System.Windows.Forms.CheckState currentValue) -> void +System.Windows.Forms.ItemCheckEventArgs.NewValue.get -> System.Windows.Forms.CheckState +System.Windows.Forms.ItemCheckEventArgs.NewValue.set -> void +System.Windows.Forms.ItemCheckEventHandler +System.Windows.Forms.ItemDragEventArgs +System.Windows.Forms.ItemDragEventArgs.Button.get -> System.Windows.Forms.MouseButtons +System.Windows.Forms.ItemDragEventArgs.Item.get -> object? +System.Windows.Forms.ItemDragEventArgs.ItemDragEventArgs(System.Windows.Forms.MouseButtons button) -> void +System.Windows.Forms.ItemDragEventArgs.ItemDragEventArgs(System.Windows.Forms.MouseButtons button, object? item) -> void +System.Windows.Forms.ItemDragEventHandler +System.Windows.Forms.IWin32Window +System.Windows.Forms.IWin32Window.Handle.get -> nint +System.Windows.Forms.IWindowTarget +System.Windows.Forms.IWindowTarget.OnHandleChange(nint newHandle) -> void +System.Windows.Forms.IWindowTarget.OnMessage(ref System.Windows.Forms.Message m) -> void +System.Windows.Forms.KeyEventArgs +System.Windows.Forms.KeyEventArgs.Control.get -> bool +System.Windows.Forms.KeyEventArgs.Handled.get -> bool +System.Windows.Forms.KeyEventArgs.Handled.set -> void +System.Windows.Forms.KeyEventArgs.KeyCode.get -> System.Windows.Forms.Keys +System.Windows.Forms.KeyEventArgs.KeyData.get -> System.Windows.Forms.Keys +System.Windows.Forms.KeyEventArgs.KeyEventArgs(System.Windows.Forms.Keys keyData) -> void +System.Windows.Forms.KeyEventArgs.KeyValue.get -> int +System.Windows.Forms.KeyEventArgs.Modifiers.get -> System.Windows.Forms.Keys +System.Windows.Forms.KeyEventArgs.SuppressKeyPress.get -> bool +System.Windows.Forms.KeyEventArgs.SuppressKeyPress.set -> void +System.Windows.Forms.KeyEventHandler +System.Windows.Forms.KeyPressEventArgs +System.Windows.Forms.KeyPressEventArgs.Handled.get -> bool +System.Windows.Forms.KeyPressEventArgs.Handled.set -> void +System.Windows.Forms.KeyPressEventArgs.KeyChar.get -> char +System.Windows.Forms.KeyPressEventArgs.KeyChar.set -> void +System.Windows.Forms.KeyPressEventArgs.KeyPressEventArgs(char keyChar) -> void +System.Windows.Forms.KeyPressEventHandler +System.Windows.Forms.Keys +System.Windows.Forms.Keys.A = 65 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Add = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Multiply -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Alt = 262144 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Apps = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RWin -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Attn = System.Windows.Forms.Keys.Capital | System.Windows.Forms.Keys.Oem102 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.B = 66 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Back = 8 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserBack = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LMenu -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserFavorites = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserSearch -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserForward = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserBack -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserHome = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserRefresh = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserSearch = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.BrowserStop = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserRefresh -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.C = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.B -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Cancel = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.RButton -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Capital = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.CapsLock = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Clear = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Control = 131072 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.ControlKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Crsel = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Attn -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D = 68 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D0 = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D3 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D2 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D4 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D5 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D4 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D6 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D4 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D7 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D6 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D8 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.D0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.D9 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D8 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Decimal = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Separator -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Delete = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.PrintScreen -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Divide = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Decimal -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Down = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.E = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.D -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.End = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Next -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Enter = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Clear -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.EraseEof = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Escape = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.HanjaMode -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Execute = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Print -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Exsel = System.Windows.Forms.Keys.D8 | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.D -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F1 = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F10 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F11 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F12 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F11 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F13 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F9 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F14 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F13 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F15 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F13 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F16 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F15 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F17 = 128 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F18 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F19 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F20 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F19 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F21 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F22 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F21 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F23 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F21 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F24 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F23 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F3 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F4 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F5 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F6 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F7 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.F5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F8 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F7 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.F9 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.F1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.FinalMode = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.G = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.F -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.H = 72 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.HanguelMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.HangulMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.HanjaMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Help = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Delete -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Home = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.I = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.IMEAccept = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.IMEAceept = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.IMEConvert = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.IMEModeChange = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.IMEAccept -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.IMENonconvert = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.IMEConvert -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Insert = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.PrintScreen -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.J = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.JunjaMode = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.HanguelMode -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.K = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.J -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.KanaMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Capital -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.KanjiMode = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.FinalMode -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.KeyCode = 65535 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.L = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.H -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LaunchApplication1 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LaunchApplication2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LaunchApplication1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LaunchMail = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LButton = 1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LControlKey = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Left = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Home -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LineFeed = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LMenu = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LShiftKey = System.Windows.Forms.Keys.Space | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.LWin = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Z -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.M = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.L -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.MButton = 4 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.MediaNextTrack = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.MediaPlayPause = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.MediaPreviousTrack = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.MediaStop = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MediaNextTrack -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Menu = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.ShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Modifiers = -65536 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Multiply = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.N = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.L -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Next = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NoName = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.None = 0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumLock = System.Windows.Forms.Keys.ShiftKey | System.Windows.Forms.Keys.F17 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad0 = 96 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad3 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad2 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad4 = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad5 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad4 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad6 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NumPad4 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad7 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad6 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad8 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.NumPad0 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.NumPad9 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.O = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.N -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem1 = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem102 = System.Windows.Forms.Keys.Next | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem2 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.OemPeriod -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem3 = 192 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem4 = System.Windows.Forms.Keys.Escape | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem5 = System.Windows.Forms.Keys.IMEConvert | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem6 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem7 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oem8 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem7 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemBackslash = System.Windows.Forms.Keys.Next | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemClear = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.NoName -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemCloseBrackets = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oemcomma = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemMinus = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oemcomma -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemOpenBrackets = System.Windows.Forms.Keys.Escape | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemPeriod = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oemcomma -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemPipe = System.Windows.Forms.Keys.IMEConvert | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oemplus = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Oem1 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemQuestion = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.OemPeriod -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemQuotes = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Oem5 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.OemSemicolon = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.MediaStop -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Oemtilde = 192 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.P = 80 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Pa1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NoName -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Packet = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.ProcessKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.PageDown = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.PageUp = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Pause = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Menu -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Play = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Exsel -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Print = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.PrintScreen = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Prior = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Space -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.ProcessKey = System.Windows.Forms.Keys.Left | System.Windows.Forms.Keys.Oem3 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Q = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.R = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.RButton = 2 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.RControlKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LControlKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Return = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Clear -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Right = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Up -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.RMenu = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LMenu -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.RShiftKey = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LShiftKey -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.RWin = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.S = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.R -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Scroll = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.NumLock -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Select = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.SelectMedia = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.LaunchMail -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Separator = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.NumPad8 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Shift = 65536 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.ShiftKey = 16 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Sleep = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Apps -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Snapshot = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.Down -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Space = 32 -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Subtract = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Separator -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.T = System.Windows.Forms.Keys.MButton | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Tab = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Back -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.U = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.T -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Up = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.Home -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.V = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.T -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.VolumeDown = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.BrowserHome -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.VolumeMute = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.BrowserHome -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.VolumeUp = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.VolumeDown -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.W = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.V -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.X = System.Windows.Forms.Keys.Back | System.Windows.Forms.Keys.P -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.XButton1 = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.MButton -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.XButton2 = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.MButton -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Y = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Z = System.Windows.Forms.Keys.RButton | System.Windows.Forms.Keys.X -> System.Windows.Forms.Keys +System.Windows.Forms.Keys.Zoom = System.Windows.Forms.Keys.LButton | System.Windows.Forms.Keys.Play -> System.Windows.Forms.Keys +System.Windows.Forms.KeysConverter +System.Windows.Forms.KeysConverter.Compare(object? a, object? b) -> int +System.Windows.Forms.KeysConverter.KeysConverter() -> void +System.Windows.Forms.Label +System.Windows.Forms.Label.AutoEllipsis.get -> bool +System.Windows.Forms.Label.AutoEllipsis.set -> void +System.Windows.Forms.Label.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Label.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.Label.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.Label.CalcImageRenderBounds(System.Drawing.Image! image, System.Drawing.Rectangle r, System.Drawing.ContentAlignment align) -> System.Drawing.Rectangle +System.Windows.Forms.Label.DrawImage(System.Drawing.Graphics! g, System.Drawing.Image! image, System.Drawing.Rectangle r, System.Drawing.ContentAlignment align) -> void +System.Windows.Forms.Label.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.Label.FlatStyle.set -> void +System.Windows.Forms.Label.Image.get -> System.Drawing.Image? +System.Windows.Forms.Label.Image.set -> void +System.Windows.Forms.Label.ImageAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.Label.ImageAlign.set -> void +System.Windows.Forms.Label.ImageIndex.get -> int +System.Windows.Forms.Label.ImageIndex.set -> void +System.Windows.Forms.Label.ImageKey.get -> string? +System.Windows.Forms.Label.ImageKey.set -> void +System.Windows.Forms.Label.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.Label.ImageList.set -> void +System.Windows.Forms.Label.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.Label.ImeMode.set -> void +System.Windows.Forms.Label.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.Label.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Label.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.Label.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Label.Label() -> void +System.Windows.Forms.Label.LiveSetting.get -> System.Windows.Forms.Automation.AutomationLiveSetting +System.Windows.Forms.Label.LiveSetting.set -> void +System.Windows.Forms.Label.TabStop.get -> bool +System.Windows.Forms.Label.TabStop.set -> void +System.Windows.Forms.Label.TabStopChanged -> System.EventHandler? +System.Windows.Forms.Label.TextAlignChanged -> System.EventHandler? +System.Windows.Forms.Label.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.Label.UseCompatibleTextRendering.set -> void +System.Windows.Forms.Label.UseMnemonic.get -> bool +System.Windows.Forms.Label.UseMnemonic.set -> void +System.Windows.Forms.LabelEditEventArgs +System.Windows.Forms.LabelEditEventArgs.CancelEdit.get -> bool +System.Windows.Forms.LabelEditEventArgs.CancelEdit.set -> void +System.Windows.Forms.LabelEditEventArgs.Item.get -> int +System.Windows.Forms.LabelEditEventArgs.Label.get -> string? +System.Windows.Forms.LabelEditEventArgs.LabelEditEventArgs(int item) -> void +System.Windows.Forms.LabelEditEventArgs.LabelEditEventArgs(int item, string? label) -> void +System.Windows.Forms.LabelEditEventHandler +System.Windows.Forms.Layout.ArrangedElementCollection +System.Windows.Forms.Layout.ArrangedElementCollection.CopyTo(System.Array! array, int index) -> void +System.Windows.Forms.Layout.LayoutEngine +System.Windows.Forms.Layout.LayoutEngine.LayoutEngine() -> void +System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter +System.Windows.Forms.Layout.TableLayoutSettingsTypeConverter.TableLayoutSettingsTypeConverter() -> void +System.Windows.Forms.LayoutEventArgs +System.Windows.Forms.LayoutEventArgs.AffectedComponent.get -> System.ComponentModel.IComponent? +System.Windows.Forms.LayoutEventArgs.AffectedControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.LayoutEventArgs.AffectedProperty.get -> string? +System.Windows.Forms.LayoutEventArgs.LayoutEventArgs(System.ComponentModel.IComponent? affectedComponent, string? affectedProperty) -> void +System.Windows.Forms.LayoutEventArgs.LayoutEventArgs(System.Windows.Forms.Control? affectedControl, string? affectedProperty) -> void +System.Windows.Forms.LayoutEventHandler +System.Windows.Forms.LayoutSettings +System.Windows.Forms.LayoutSettings.LayoutSettings() -> void +System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.LeftRightAlignment.Left = 0 -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.LeftRightAlignment.Right = 1 -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.LinkArea +System.Windows.Forms.LinkArea.Equals(System.Windows.Forms.LinkArea other) -> bool +System.Windows.Forms.LinkArea.IsEmpty.get -> bool +System.Windows.Forms.LinkArea.Length.get -> int +System.Windows.Forms.LinkArea.Length.set -> void +System.Windows.Forms.LinkArea.LinkArea() -> void +System.Windows.Forms.LinkArea.LinkArea(int start, int length) -> void +System.Windows.Forms.LinkArea.LinkAreaConverter +System.Windows.Forms.LinkArea.LinkAreaConverter.LinkAreaConverter() -> void +System.Windows.Forms.LinkArea.Start.get -> int +System.Windows.Forms.LinkArea.Start.set -> void +System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkBehavior.AlwaysUnderline = 1 -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkBehavior.HoverUnderline = 2 -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkBehavior.NeverUnderline = 3 -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkBehavior.SystemDefault = 0 -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkClickedEventArgs +System.Windows.Forms.LinkClickedEventArgs.LinkClickedEventArgs(string? linkText) -> void +System.Windows.Forms.LinkClickedEventArgs.LinkClickedEventArgs(string? linkText, int linkStart, int linkLength) -> void +System.Windows.Forms.LinkClickedEventArgs.LinkLength.get -> int +System.Windows.Forms.LinkClickedEventArgs.LinkStart.get -> int +System.Windows.Forms.LinkClickedEventArgs.LinkText.get -> string? +System.Windows.Forms.LinkClickedEventHandler +System.Windows.Forms.LinkConverter +System.Windows.Forms.LinkConverter.LinkConverter() -> void +System.Windows.Forms.LinkLabel +System.Windows.Forms.LinkLabel.ActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.LinkLabel.ActiveLinkColor.set -> void +System.Windows.Forms.LinkLabel.DisabledLinkColor.get -> System.Drawing.Color +System.Windows.Forms.LinkLabel.DisabledLinkColor.set -> void +System.Windows.Forms.LinkLabel.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.LinkLabel.FlatStyle.set -> void +System.Windows.Forms.LinkLabel.Link +System.Windows.Forms.LinkLabel.Link.Description.get -> string? +System.Windows.Forms.LinkLabel.Link.Description.set -> void +System.Windows.Forms.LinkLabel.Link.Enabled.get -> bool +System.Windows.Forms.LinkLabel.Link.Enabled.set -> void +System.Windows.Forms.LinkLabel.Link.Length.get -> int +System.Windows.Forms.LinkLabel.Link.Length.set -> void +System.Windows.Forms.LinkLabel.Link.Link() -> void +System.Windows.Forms.LinkLabel.Link.Link(int start, int length) -> void +System.Windows.Forms.LinkLabel.Link.Link(int start, int length, object? linkData) -> void +System.Windows.Forms.LinkLabel.Link.LinkData.get -> object? +System.Windows.Forms.LinkLabel.Link.LinkData.set -> void +System.Windows.Forms.LinkLabel.Link.Name.get -> string! +System.Windows.Forms.LinkLabel.Link.Name.set -> void +System.Windows.Forms.LinkLabel.Link.Start.get -> int +System.Windows.Forms.LinkLabel.Link.Start.set -> void +System.Windows.Forms.LinkLabel.Link.Tag.get -> object? +System.Windows.Forms.LinkLabel.Link.Tag.set -> void +System.Windows.Forms.LinkLabel.Link.Visited.get -> bool +System.Windows.Forms.LinkLabel.Link.Visited.set -> void +System.Windows.Forms.LinkLabel.LinkArea.get -> System.Windows.Forms.LinkArea +System.Windows.Forms.LinkLabel.LinkArea.set -> void +System.Windows.Forms.LinkLabel.LinkBehavior.get -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.LinkLabel.LinkBehavior.set -> void +System.Windows.Forms.LinkLabel.LinkClicked -> System.Windows.Forms.LinkLabelLinkClickedEventHandler? +System.Windows.Forms.LinkLabel.LinkCollection +System.Windows.Forms.LinkLabel.LinkCollection.Add(int start, int length) -> System.Windows.Forms.LinkLabel.Link! +System.Windows.Forms.LinkLabel.LinkCollection.Add(int start, int length, object? linkData) -> System.Windows.Forms.LinkLabel.Link! +System.Windows.Forms.LinkLabel.LinkCollection.Add(System.Windows.Forms.LinkLabel.Link! value) -> int +System.Windows.Forms.LinkLabel.LinkCollection.Contains(System.Windows.Forms.LinkLabel.Link! link) -> bool +System.Windows.Forms.LinkLabel.LinkCollection.Count.get -> int +System.Windows.Forms.LinkLabel.LinkCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.LinkLabel.LinkCollection.IndexOf(System.Windows.Forms.LinkLabel.Link! link) -> int +System.Windows.Forms.LinkLabel.LinkCollection.IsReadOnly.get -> bool +System.Windows.Forms.LinkLabel.LinkCollection.LinkCollection(System.Windows.Forms.LinkLabel! owner) -> void +System.Windows.Forms.LinkLabel.LinkCollection.LinksAdded.get -> bool +System.Windows.Forms.LinkLabel.LinkCollection.Remove(System.Windows.Forms.LinkLabel.Link! value) -> void +System.Windows.Forms.LinkLabel.LinkCollection.RemoveAt(int index) -> void +System.Windows.Forms.LinkLabel.LinkColor.get -> System.Drawing.Color +System.Windows.Forms.LinkLabel.LinkColor.set -> void +System.Windows.Forms.LinkLabel.LinkLabel() -> void +System.Windows.Forms.LinkLabel.Links.get -> System.Windows.Forms.LinkLabel.LinkCollection! +System.Windows.Forms.LinkLabel.LinkVisited.get -> bool +System.Windows.Forms.LinkLabel.LinkVisited.set -> void +System.Windows.Forms.LinkLabel.OverrideCursor.get -> System.Windows.Forms.Cursor? +System.Windows.Forms.LinkLabel.OverrideCursor.set -> void +System.Windows.Forms.LinkLabel.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.LinkLabel.Padding.set -> void +System.Windows.Forms.LinkLabel.PointInLink(int x, int y) -> System.Windows.Forms.LinkLabel.Link? +System.Windows.Forms.LinkLabel.TabStop.get -> bool +System.Windows.Forms.LinkLabel.TabStop.set -> void +System.Windows.Forms.LinkLabel.TabStopChanged -> System.EventHandler? +System.Windows.Forms.LinkLabel.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.LinkLabel.UseCompatibleTextRendering.set -> void +System.Windows.Forms.LinkLabel.VisitedLinkColor.get -> System.Drawing.Color +System.Windows.Forms.LinkLabel.VisitedLinkColor.set -> void +System.Windows.Forms.LinkLabelLinkClickedEventArgs +System.Windows.Forms.LinkLabelLinkClickedEventArgs.Button.get -> System.Windows.Forms.MouseButtons +System.Windows.Forms.LinkLabelLinkClickedEventArgs.Link.get -> System.Windows.Forms.LinkLabel.Link? +System.Windows.Forms.LinkLabelLinkClickedEventArgs.LinkLabelLinkClickedEventArgs(System.Windows.Forms.LinkLabel.Link? link) -> void +System.Windows.Forms.LinkLabelLinkClickedEventArgs.LinkLabelLinkClickedEventArgs(System.Windows.Forms.LinkLabel.Link? link, System.Windows.Forms.MouseButtons button) -> void +System.Windows.Forms.LinkLabelLinkClickedEventHandler +System.Windows.Forms.LinkState +System.Windows.Forms.LinkState.Active = 2 -> System.Windows.Forms.LinkState +System.Windows.Forms.LinkState.Hover = 1 -> System.Windows.Forms.LinkState +System.Windows.Forms.LinkState.Normal = 0 -> System.Windows.Forms.LinkState +System.Windows.Forms.LinkState.Visited = 4 -> System.Windows.Forms.LinkState +System.Windows.Forms.ListBindingConverter +System.Windows.Forms.ListBindingConverter.ListBindingConverter() -> void +System.Windows.Forms.ListBindingHelper +System.Windows.Forms.ListBox +System.Windows.Forms.ListBox.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ListBox.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ListBox.BeginUpdate() -> void +System.Windows.Forms.ListBox.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.ListBox.BorderStyle.set -> void +System.Windows.Forms.ListBox.ClearSelected() -> void +System.Windows.Forms.ListBox.Click -> System.EventHandler? +System.Windows.Forms.ListBox.ColumnWidth.get -> int +System.Windows.Forms.ListBox.ColumnWidth.set -> void +System.Windows.Forms.ListBox.CustomTabOffsets.get -> System.Windows.Forms.ListBox.IntegerCollection! +System.Windows.Forms.ListBox.DrawItem -> System.Windows.Forms.DrawItemEventHandler? +System.Windows.Forms.ListBox.EndUpdate() -> void +System.Windows.Forms.ListBox.FindString(string! s) -> int +System.Windows.Forms.ListBox.FindString(string! s, int startIndex) -> int +System.Windows.Forms.ListBox.FindStringExact(string! s) -> int +System.Windows.Forms.ListBox.FindStringExact(string! s, int startIndex) -> int +System.Windows.Forms.ListBox.GetItemHeight(int index) -> int +System.Windows.Forms.ListBox.GetItemRectangle(int index) -> System.Drawing.Rectangle +System.Windows.Forms.ListBox.GetSelected(int index) -> bool +System.Windows.Forms.ListBox.HorizontalExtent.get -> int +System.Windows.Forms.ListBox.HorizontalExtent.set -> void +System.Windows.Forms.ListBox.HorizontalScrollbar.get -> bool +System.Windows.Forms.ListBox.HorizontalScrollbar.set -> void +System.Windows.Forms.ListBox.IndexFromPoint(int x, int y) -> int +System.Windows.Forms.ListBox.IndexFromPoint(System.Drawing.Point p) -> int +System.Windows.Forms.ListBox.IntegerCollection +System.Windows.Forms.ListBox.IntegerCollection.Add(int item) -> int +System.Windows.Forms.ListBox.IntegerCollection.AddRange(int[]! items) -> void +System.Windows.Forms.ListBox.IntegerCollection.AddRange(System.Windows.Forms.ListBox.IntegerCollection! value) -> void +System.Windows.Forms.ListBox.IntegerCollection.Clear() -> void +System.Windows.Forms.ListBox.IntegerCollection.Contains(int item) -> bool +System.Windows.Forms.ListBox.IntegerCollection.CopyTo(System.Array! destination, int index) -> void +System.Windows.Forms.ListBox.IntegerCollection.Count.get -> int +System.Windows.Forms.ListBox.IntegerCollection.IndexOf(int item) -> int +System.Windows.Forms.ListBox.IntegerCollection.IntegerCollection(System.Windows.Forms.ListBox! owner) -> void +System.Windows.Forms.ListBox.IntegerCollection.Remove(int item) -> void +System.Windows.Forms.ListBox.IntegerCollection.RemoveAt(int index) -> void +System.Windows.Forms.ListBox.IntegerCollection.this[int index].get -> int +System.Windows.Forms.ListBox.IntegerCollection.this[int index].set -> void +System.Windows.Forms.ListBox.IntegralHeight.get -> bool +System.Windows.Forms.ListBox.IntegralHeight.set -> void +System.Windows.Forms.ListBox.Items.get -> System.Windows.Forms.ListBox.ObjectCollection! +System.Windows.Forms.ListBox.ListBox() -> void +System.Windows.Forms.ListBox.MeasureItem -> System.Windows.Forms.MeasureItemEventHandler? +System.Windows.Forms.ListBox.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ListBox.MultiColumn.get -> bool +System.Windows.Forms.ListBox.MultiColumn.set -> void +System.Windows.Forms.ListBox.ObjectCollection +System.Windows.Forms.ListBox.ObjectCollection.Add(object! item) -> int +System.Windows.Forms.ListBox.ObjectCollection.AddRange(object![]! items) -> void +System.Windows.Forms.ListBox.ObjectCollection.AddRange(System.Windows.Forms.ListBox.ObjectCollection! value) -> void +System.Windows.Forms.ListBox.ObjectCollection.Contains(object! value) -> bool +System.Windows.Forms.ListBox.ObjectCollection.CopyTo(object![]! destination, int arrayIndex) -> void +System.Windows.Forms.ListBox.ObjectCollection.Count.get -> int +System.Windows.Forms.ListBox.ObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListBox.ObjectCollection.IndexOf(object! value) -> int +System.Windows.Forms.ListBox.ObjectCollection.Insert(int index, object! item) -> void +System.Windows.Forms.ListBox.ObjectCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner) -> void +System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner, object![]! value) -> void +System.Windows.Forms.ListBox.ObjectCollection.ObjectCollection(System.Windows.Forms.ListBox! owner, System.Windows.Forms.ListBox.ObjectCollection! value) -> void +System.Windows.Forms.ListBox.ObjectCollection.Remove(object! value) -> void +System.Windows.Forms.ListBox.ObjectCollection.RemoveAt(int index) -> void +System.Windows.Forms.ListBox.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.ListBox.Padding.set -> void +System.Windows.Forms.ListBox.PaddingChanged -> System.EventHandler? +System.Windows.Forms.ListBox.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ListBox.PreferredHeight.get -> int +System.Windows.Forms.ListBox.ScrollAlwaysVisible.get -> bool +System.Windows.Forms.ListBox.ScrollAlwaysVisible.set -> void +System.Windows.Forms.ListBox.SelectedIndexChanged -> System.EventHandler? +System.Windows.Forms.ListBox.SelectedIndexCollection +System.Windows.Forms.ListBox.SelectedIndexCollection.Add(int index) -> void +System.Windows.Forms.ListBox.SelectedIndexCollection.Clear() -> void +System.Windows.Forms.ListBox.SelectedIndexCollection.Contains(int selectedIndex) -> bool +System.Windows.Forms.ListBox.SelectedIndexCollection.CopyTo(System.Array! destination, int index) -> void +System.Windows.Forms.ListBox.SelectedIndexCollection.Count.get -> int +System.Windows.Forms.ListBox.SelectedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListBox.SelectedIndexCollection.IndexOf(int selectedIndex) -> int +System.Windows.Forms.ListBox.SelectedIndexCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListBox.SelectedIndexCollection.Remove(int index) -> void +System.Windows.Forms.ListBox.SelectedIndexCollection.SelectedIndexCollection(System.Windows.Forms.ListBox! owner) -> void +System.Windows.Forms.ListBox.SelectedIndexCollection.this[int index].get -> int +System.Windows.Forms.ListBox.SelectedIndices.get -> System.Windows.Forms.ListBox.SelectedIndexCollection! +System.Windows.Forms.ListBox.SelectedItem.get -> object? +System.Windows.Forms.ListBox.SelectedItem.set -> void +System.Windows.Forms.ListBox.SelectedItems.get -> System.Windows.Forms.ListBox.SelectedObjectCollection! +System.Windows.Forms.ListBox.SelectedObjectCollection +System.Windows.Forms.ListBox.SelectedObjectCollection.Add(object! value) -> void +System.Windows.Forms.ListBox.SelectedObjectCollection.Clear() -> void +System.Windows.Forms.ListBox.SelectedObjectCollection.Contains(object? selectedObject) -> bool +System.Windows.Forms.ListBox.SelectedObjectCollection.CopyTo(System.Array! destination, int index) -> void +System.Windows.Forms.ListBox.SelectedObjectCollection.Count.get -> int +System.Windows.Forms.ListBox.SelectedObjectCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListBox.SelectedObjectCollection.IndexOf(object? selectedObject) -> int +System.Windows.Forms.ListBox.SelectedObjectCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListBox.SelectedObjectCollection.Remove(object! value) -> void +System.Windows.Forms.ListBox.SelectedObjectCollection.SelectedObjectCollection(System.Windows.Forms.ListBox! owner) -> void +System.Windows.Forms.ListBox.SelectedObjectCollection.this[int index].get -> object? +System.Windows.Forms.ListBox.SelectedObjectCollection.this[int index].set -> void +System.Windows.Forms.ListBox.SetSelected(int index, bool value) -> void +System.Windows.Forms.ListBox.Sorted.get -> bool +System.Windows.Forms.ListBox.Sorted.set -> void +System.Windows.Forms.ListBox.TextChanged -> System.EventHandler? +System.Windows.Forms.ListBox.TopIndex.get -> int +System.Windows.Forms.ListBox.TopIndex.set -> void +System.Windows.Forms.ListBox.UseCustomTabOffsets.get -> bool +System.Windows.Forms.ListBox.UseCustomTabOffsets.set -> void +System.Windows.Forms.ListBox.UseTabStops.get -> bool +System.Windows.Forms.ListBox.UseTabStops.set -> void +System.Windows.Forms.ListControl +System.Windows.Forms.ListControl.DataManager.get -> System.Windows.Forms.CurrencyManager? +System.Windows.Forms.ListControl.DataSource.get -> object? +System.Windows.Forms.ListControl.DataSource.set -> void +System.Windows.Forms.ListControl.DataSourceChanged -> System.EventHandler? +System.Windows.Forms.ListControl.DisplayMember.get -> string! +System.Windows.Forms.ListControl.DisplayMember.set -> void +System.Windows.Forms.ListControl.DisplayMemberChanged -> System.EventHandler? +System.Windows.Forms.ListControl.FilterItemOnProperty(object? item) -> object? +System.Windows.Forms.ListControl.FilterItemOnProperty(object? item, string? field) -> object? +System.Windows.Forms.ListControl.Format -> System.Windows.Forms.ListControlConvertEventHandler? +System.Windows.Forms.ListControl.FormatInfo.get -> System.IFormatProvider? +System.Windows.Forms.ListControl.FormatInfo.set -> void +System.Windows.Forms.ListControl.FormatInfoChanged -> System.EventHandler? +System.Windows.Forms.ListControl.FormatString.get -> string! +System.Windows.Forms.ListControl.FormatString.set -> void +System.Windows.Forms.ListControl.FormatStringChanged -> System.EventHandler? +System.Windows.Forms.ListControl.FormattingEnabled.get -> bool +System.Windows.Forms.ListControl.FormattingEnabled.set -> void +System.Windows.Forms.ListControl.FormattingEnabledChanged -> System.EventHandler? +System.Windows.Forms.ListControl.GetItemText(object? item) -> string? +System.Windows.Forms.ListControl.ListControl() -> void +System.Windows.Forms.ListControl.SelectedValue.get -> object? +System.Windows.Forms.ListControl.SelectedValue.set -> void +System.Windows.Forms.ListControl.SelectedValueChanged -> System.EventHandler? +System.Windows.Forms.ListControl.ValueMember.get -> string! +System.Windows.Forms.ListControl.ValueMember.set -> void +System.Windows.Forms.ListControl.ValueMemberChanged -> System.EventHandler? +System.Windows.Forms.ListControlConvertEventArgs +System.Windows.Forms.ListControlConvertEventArgs.ListControlConvertEventArgs(object? value, System.Type? desiredType, object? listItem) -> void +System.Windows.Forms.ListControlConvertEventArgs.ListItem.get -> object? +System.Windows.Forms.ListControlConvertEventHandler +System.Windows.Forms.ListView +System.Windows.Forms.ListView.Activation.get -> System.Windows.Forms.ItemActivation +System.Windows.Forms.ListView.Activation.set -> void +System.Windows.Forms.ListView.AfterLabelEdit -> System.Windows.Forms.LabelEditEventHandler? +System.Windows.Forms.ListView.Alignment.get -> System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListView.Alignment.set -> void +System.Windows.Forms.ListView.AllowColumnReorder.get -> bool +System.Windows.Forms.ListView.AllowColumnReorder.set -> void +System.Windows.Forms.ListView.ArrangeIcons() -> void +System.Windows.Forms.ListView.ArrangeIcons(System.Windows.Forms.ListViewAlignment value) -> void +System.Windows.Forms.ListView.AutoArrange.get -> bool +System.Windows.Forms.ListView.AutoArrange.set -> void +System.Windows.Forms.ListView.AutoResizeColumn(int columnIndex, System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void +System.Windows.Forms.ListView.AutoResizeColumns(System.Windows.Forms.ColumnHeaderAutoResizeStyle headerAutoResize) -> void +System.Windows.Forms.ListView.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ListView.BackgroundImageTiled.get -> bool +System.Windows.Forms.ListView.BackgroundImageTiled.set -> void +System.Windows.Forms.ListView.BeforeLabelEdit -> System.Windows.Forms.LabelEditEventHandler? +System.Windows.Forms.ListView.BeginUpdate() -> void +System.Windows.Forms.ListView.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.ListView.BorderStyle.set -> void +System.Windows.Forms.ListView.CacheVirtualItems -> System.Windows.Forms.CacheVirtualItemsEventHandler? +System.Windows.Forms.ListView.CheckBoxes.get -> bool +System.Windows.Forms.ListView.CheckBoxes.set -> void +System.Windows.Forms.ListView.CheckedIndexCollection +System.Windows.Forms.ListView.CheckedIndexCollection.CheckedIndexCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.CheckedIndexCollection.Contains(int checkedIndex) -> bool +System.Windows.Forms.ListView.CheckedIndexCollection.Count.get -> int +System.Windows.Forms.ListView.CheckedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.CheckedIndexCollection.IndexOf(int checkedIndex) -> int +System.Windows.Forms.ListView.CheckedIndexCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.CheckedIndexCollection.this[int index].get -> int +System.Windows.Forms.ListView.CheckedIndices.get -> System.Windows.Forms.ListView.CheckedIndexCollection! +System.Windows.Forms.ListView.CheckedItems.get -> System.Windows.Forms.ListView.CheckedListViewItemCollection! +System.Windows.Forms.ListView.CheckedListViewItemCollection +System.Windows.Forms.ListView.CheckedListViewItemCollection.CheckedListViewItemCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.CheckedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem? item) -> bool +System.Windows.Forms.ListView.CheckedListViewItemCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.ListView.CheckedListViewItemCollection.Count.get -> int +System.Windows.Forms.ListView.CheckedListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem! item) -> int +System.Windows.Forms.ListView.CheckedListViewItemCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.CheckedListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.Clear() -> void +System.Windows.Forms.ListView.ColumnClick -> System.Windows.Forms.ColumnClickEventHandler? +System.Windows.Forms.ListView.ColumnHeaderCollection +System.Windows.Forms.ListView.ColumnHeaderCollection.ColumnHeaderCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Contains(System.Windows.Forms.ColumnHeader? value) -> bool +System.Windows.Forms.ListView.ColumnHeaderCollection.Count.get -> int +System.Windows.Forms.ListView.ColumnHeaderCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOf(System.Windows.Forms.ColumnHeader? value) -> int +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, int imageIndex) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, string! imageKey) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text, int width) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.Insert(int index, System.Windows.Forms.ColumnHeader! value) -> void +System.Windows.Forms.ListView.ColumnHeaderCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.ColumnReordered -> System.Windows.Forms.ColumnReorderedEventHandler? +System.Windows.Forms.ListView.Columns.get -> System.Windows.Forms.ListView.ColumnHeaderCollection! +System.Windows.Forms.ListView.ColumnWidthChanged -> System.Windows.Forms.ColumnWidthChangedEventHandler? +System.Windows.Forms.ListView.ColumnWidthChanging -> System.Windows.Forms.ColumnWidthChangingEventHandler? +System.Windows.Forms.ListView.DrawColumnHeader -> System.Windows.Forms.DrawListViewColumnHeaderEventHandler? +System.Windows.Forms.ListView.DrawItem -> System.Windows.Forms.DrawListViewItemEventHandler? +System.Windows.Forms.ListView.DrawSubItem -> System.Windows.Forms.DrawListViewSubItemEventHandler? +System.Windows.Forms.ListView.EndUpdate() -> void +System.Windows.Forms.ListView.EnsureVisible(int index) -> void +System.Windows.Forms.ListView.FindItemWithText(string! text) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FindItemWithText(string! text, bool includeSubItemsInSearch, int startIndex) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FindItemWithText(string! text, bool includeSubItemsInSearch, int startIndex, bool isPrefixSearch) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint dir, System.Drawing.Point point) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FindNearestItem(System.Windows.Forms.SearchDirectionHint searchDirection, int x, int y) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FocusedItem.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.FocusedItem.set -> void +System.Windows.Forms.ListView.FullRowSelect.get -> bool +System.Windows.Forms.ListView.FullRowSelect.set -> void +System.Windows.Forms.ListView.GetItemAt(int x, int y) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.GetItemRect(int index) -> System.Drawing.Rectangle +System.Windows.Forms.ListView.GetItemRect(int index, System.Windows.Forms.ItemBoundsPortion portion) -> System.Drawing.Rectangle +System.Windows.Forms.ListView.GridLines.get -> bool +System.Windows.Forms.ListView.GridLines.set -> void +System.Windows.Forms.ListView.GroupCollapsedStateChanged -> System.EventHandler? +System.Windows.Forms.ListView.GroupImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ListView.GroupImageList.set -> void +System.Windows.Forms.ListView.Groups.get -> System.Windows.Forms.ListViewGroupCollection! +System.Windows.Forms.ListView.GroupTaskLinkClick -> System.EventHandler? +System.Windows.Forms.ListView.HeaderStyle.get -> System.Windows.Forms.ColumnHeaderStyle +System.Windows.Forms.ListView.HeaderStyle.set -> void +System.Windows.Forms.ListView.HideSelection.get -> bool +System.Windows.Forms.ListView.HideSelection.set -> void +System.Windows.Forms.ListView.HitTest(int x, int y) -> System.Windows.Forms.ListViewHitTestInfo! +System.Windows.Forms.ListView.HitTest(System.Drawing.Point point) -> System.Windows.Forms.ListViewHitTestInfo! +System.Windows.Forms.ListView.HotTracking.get -> bool +System.Windows.Forms.ListView.HotTracking.set -> void +System.Windows.Forms.ListView.HoverSelection.get -> bool +System.Windows.Forms.ListView.HoverSelection.set -> void +System.Windows.Forms.ListView.InsertionMark.get -> System.Windows.Forms.ListViewInsertionMark! +System.Windows.Forms.ListView.ItemActivate -> System.EventHandler? +System.Windows.Forms.ListView.ItemCheck -> System.Windows.Forms.ItemCheckEventHandler? +System.Windows.Forms.ListView.ItemChecked -> System.Windows.Forms.ItemCheckedEventHandler? +System.Windows.Forms.ListView.ItemDrag -> System.Windows.Forms.ItemDragEventHandler? +System.Windows.Forms.ListView.ItemMouseHover -> System.Windows.Forms.ListViewItemMouseHoverEventHandler? +System.Windows.Forms.ListView.Items.get -> System.Windows.Forms.ListView.ListViewItemCollection! +System.Windows.Forms.ListView.ItemSelectionChanged -> System.Windows.Forms.ListViewItemSelectionChangedEventHandler? +System.Windows.Forms.ListView.LabelEdit.get -> bool +System.Windows.Forms.ListView.LabelEdit.set -> void +System.Windows.Forms.ListView.LabelWrap.get -> bool +System.Windows.Forms.ListView.LabelWrap.set -> void +System.Windows.Forms.ListView.LargeImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ListView.LargeImageList.set -> void +System.Windows.Forms.ListView.ListView() -> void +System.Windows.Forms.ListView.ListViewItemCollection +System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListView.ListViewItemCollection! items) -> void +System.Windows.Forms.ListView.ListViewItemCollection.AddRange(System.Windows.Forms.ListViewItem![]! items) -> void +System.Windows.Forms.ListView.ListViewItemCollection.Contains(System.Windows.Forms.ListViewItem! item) -> bool +System.Windows.Forms.ListView.ListViewItemCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.ListView.ListViewItemCollection.Count.get -> int +System.Windows.Forms.ListView.ListViewItemCollection.Find(string! key, bool searchAllSubItems) -> System.Windows.Forms.ListViewItem![]! +System.Windows.Forms.ListView.ListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.ListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem! item) -> int +System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text) -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, System.Windows.Forms.ListViewItem! item) -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.ListViewItemCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.ListViewItemCollection.ListViewItemCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.ListViewItemSorter.get -> System.Collections.IComparer? +System.Windows.Forms.ListView.ListViewItemSorter.set -> void +System.Windows.Forms.ListView.MultiSelect.get -> bool +System.Windows.Forms.ListView.MultiSelect.set -> void +System.Windows.Forms.ListView.OwnerDraw.get -> bool +System.Windows.Forms.ListView.OwnerDraw.set -> void +System.Windows.Forms.ListView.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.ListView.Padding.set -> void +System.Windows.Forms.ListView.PaddingChanged -> System.EventHandler? +System.Windows.Forms.ListView.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ListView.RealizeProperties() -> void +System.Windows.Forms.ListView.RedrawItems(int startIndex, int endIndex, bool invalidateOnly) -> void +System.Windows.Forms.ListView.RetrieveVirtualItem -> System.Windows.Forms.RetrieveVirtualItemEventHandler? +System.Windows.Forms.ListView.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.ListView.Scrollable.get -> bool +System.Windows.Forms.ListView.Scrollable.set -> void +System.Windows.Forms.ListView.SearchForVirtualItem -> System.Windows.Forms.SearchForVirtualItemEventHandler? +System.Windows.Forms.ListView.SelectedIndexChanged -> System.EventHandler? +System.Windows.Forms.ListView.SelectedIndexCollection +System.Windows.Forms.ListView.SelectedIndexCollection.Add(int itemIndex) -> int +System.Windows.Forms.ListView.SelectedIndexCollection.Clear() -> void +System.Windows.Forms.ListView.SelectedIndexCollection.Contains(int selectedIndex) -> bool +System.Windows.Forms.ListView.SelectedIndexCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.ListView.SelectedIndexCollection.Count.get -> int +System.Windows.Forms.ListView.SelectedIndexCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.SelectedIndexCollection.IndexOf(int selectedIndex) -> int +System.Windows.Forms.ListView.SelectedIndexCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.SelectedIndexCollection.Remove(int itemIndex) -> void +System.Windows.Forms.ListView.SelectedIndexCollection.SelectedIndexCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.SelectedIndexCollection.this[int index].get -> int +System.Windows.Forms.ListView.SelectedIndices.get -> System.Windows.Forms.ListView.SelectedIndexCollection! +System.Windows.Forms.ListView.SelectedItems.get -> System.Windows.Forms.ListView.SelectedListViewItemCollection! +System.Windows.Forms.ListView.SelectedListViewItemCollection +System.Windows.Forms.ListView.SelectedListViewItemCollection.Clear() -> void +System.Windows.Forms.ListView.SelectedListViewItemCollection.Contains(System.Windows.Forms.ListViewItem? item) -> bool +System.Windows.Forms.ListView.SelectedListViewItemCollection.CopyTo(System.Array! dest, int index) -> void +System.Windows.Forms.ListView.SelectedListViewItemCollection.Count.get -> int +System.Windows.Forms.ListView.SelectedListViewItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOf(System.Windows.Forms.ListViewItem? item) -> int +System.Windows.Forms.ListView.SelectedListViewItemCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListView.SelectedListViewItemCollection.SelectedListViewItemCollection(System.Windows.Forms.ListView! owner) -> void +System.Windows.Forms.ListView.SelectedListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! +System.Windows.Forms.ListView.ShowGroups.get -> bool +System.Windows.Forms.ListView.ShowGroups.set -> void +System.Windows.Forms.ListView.ShowItemToolTips.get -> bool +System.Windows.Forms.ListView.ShowItemToolTips.set -> void +System.Windows.Forms.ListView.SmallImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ListView.SmallImageList.set -> void +System.Windows.Forms.ListView.Sort() -> void +System.Windows.Forms.ListView.Sorting.get -> System.Windows.Forms.SortOrder +System.Windows.Forms.ListView.Sorting.set -> void +System.Windows.Forms.ListView.StateImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ListView.StateImageList.set -> void +System.Windows.Forms.ListView.TextChanged -> System.EventHandler? +System.Windows.Forms.ListView.TileSize.get -> System.Drawing.Size +System.Windows.Forms.ListView.TileSize.set -> void +System.Windows.Forms.ListView.TopItem.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListView.TopItem.set -> void +System.Windows.Forms.ListView.UpdateExtendedStyles() -> void +System.Windows.Forms.ListView.UseCompatibleStateImageBehavior.get -> bool +System.Windows.Forms.ListView.UseCompatibleStateImageBehavior.set -> void +System.Windows.Forms.ListView.View.get -> System.Windows.Forms.View +System.Windows.Forms.ListView.View.set -> void +System.Windows.Forms.ListView.VirtualItemsSelectionRangeChanged -> System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler? +System.Windows.Forms.ListView.VirtualListSize.get -> int +System.Windows.Forms.ListView.VirtualListSize.set -> void +System.Windows.Forms.ListView.VirtualMode.get -> bool +System.Windows.Forms.ListView.VirtualMode.set -> void +System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListViewAlignment.Default = 0 -> System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListViewAlignment.Left = 1 -> System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListViewAlignment.SnapToGrid = 5 -> System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListViewAlignment.Top = 2 -> System.Windows.Forms.ListViewAlignment +System.Windows.Forms.ListViewGroup +System.Windows.Forms.ListViewGroup.CollapsedState.get -> System.Windows.Forms.ListViewGroupCollapsedState +System.Windows.Forms.ListViewGroup.CollapsedState.set -> void +System.Windows.Forms.ListViewGroup.Footer.get -> string! +System.Windows.Forms.ListViewGroup.Footer.set -> void +System.Windows.Forms.ListViewGroup.FooterAlignment.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.ListViewGroup.FooterAlignment.set -> void +System.Windows.Forms.ListViewGroup.Header.get -> string! +System.Windows.Forms.ListViewGroup.Header.set -> void +System.Windows.Forms.ListViewGroup.HeaderAlignment.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.ListViewGroup.HeaderAlignment.set -> void +System.Windows.Forms.ListViewGroup.Items.get -> System.Windows.Forms.ListView.ListViewItemCollection! +System.Windows.Forms.ListViewGroup.ListView.get -> System.Windows.Forms.ListView? +System.Windows.Forms.ListViewGroup.ListViewGroup() -> void +System.Windows.Forms.ListViewGroup.ListViewGroup(string? header) -> void +System.Windows.Forms.ListViewGroup.ListViewGroup(string? header, System.Windows.Forms.HorizontalAlignment headerAlignment) -> void +System.Windows.Forms.ListViewGroup.ListViewGroup(string? key, string? headerText) -> void +System.Windows.Forms.ListViewGroup.Name.get -> string? +System.Windows.Forms.ListViewGroup.Name.set -> void +System.Windows.Forms.ListViewGroup.Subtitle.get -> string! +System.Windows.Forms.ListViewGroup.Subtitle.set -> void +System.Windows.Forms.ListViewGroup.Tag.get -> object? +System.Windows.Forms.ListViewGroup.Tag.set -> void +System.Windows.Forms.ListViewGroup.TaskLink.get -> string! +System.Windows.Forms.ListViewGroup.TaskLink.set -> void +System.Windows.Forms.ListViewGroup.TitleImageIndex.get -> int +System.Windows.Forms.ListViewGroup.TitleImageIndex.set -> void +System.Windows.Forms.ListViewGroup.TitleImageKey.get -> string! +System.Windows.Forms.ListViewGroup.TitleImageKey.set -> void +System.Windows.Forms.ListViewGroupCollapsedState +System.Windows.Forms.ListViewGroupCollapsedState.Collapsed = 2 -> System.Windows.Forms.ListViewGroupCollapsedState +System.Windows.Forms.ListViewGroupCollapsedState.Default = 0 -> System.Windows.Forms.ListViewGroupCollapsedState +System.Windows.Forms.ListViewGroupCollapsedState.Expanded = 1 -> System.Windows.Forms.ListViewGroupCollapsedState +System.Windows.Forms.ListViewGroupCollection +System.Windows.Forms.ListViewGroupCollection.Add(string? key, string? headerText) -> System.Windows.Forms.ListViewGroup! +System.Windows.Forms.ListViewGroupCollection.Add(System.Windows.Forms.ListViewGroup! group) -> int +System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroup![]! groups) -> void +System.Windows.Forms.ListViewGroupCollection.AddRange(System.Windows.Forms.ListViewGroupCollection! groups) -> void +System.Windows.Forms.ListViewGroupCollection.Clear() -> void +System.Windows.Forms.ListViewGroupCollection.Contains(System.Windows.Forms.ListViewGroup! value) -> bool +System.Windows.Forms.ListViewGroupCollection.CopyTo(System.Array! array, int index) -> void +System.Windows.Forms.ListViewGroupCollection.Count.get -> int +System.Windows.Forms.ListViewGroupCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListViewGroupCollection.IndexOf(System.Windows.Forms.ListViewGroup! value) -> int +System.Windows.Forms.ListViewGroupCollection.Insert(int index, System.Windows.Forms.ListViewGroup! group) -> void +System.Windows.Forms.ListViewGroupCollection.Remove(System.Windows.Forms.ListViewGroup! group) -> void +System.Windows.Forms.ListViewGroupCollection.RemoveAt(int index) -> void +System.Windows.Forms.ListViewGroupCollection.this[int index].get -> System.Windows.Forms.ListViewGroup! +System.Windows.Forms.ListViewGroupCollection.this[int index].set -> void +System.Windows.Forms.ListViewGroupCollection.this[string! key].get -> System.Windows.Forms.ListViewGroup? +System.Windows.Forms.ListViewGroupCollection.this[string! key].set -> void +System.Windows.Forms.ListViewGroupEventArgs +System.Windows.Forms.ListViewGroupEventArgs.GroupIndex.get -> int +System.Windows.Forms.ListViewGroupEventArgs.ListViewGroupEventArgs(int groupIndex) -> void +System.Windows.Forms.ListViewHitTestInfo +System.Windows.Forms.ListViewHitTestInfo.Item.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListViewHitTestInfo.ListViewHitTestInfo(System.Windows.Forms.ListViewItem? hitItem, System.Windows.Forms.ListViewItem.ListViewSubItem? hitSubItem, System.Windows.Forms.ListViewHitTestLocations hitLocation) -> void +System.Windows.Forms.ListViewHitTestInfo.Location.get -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestInfo.SubItem.get -> System.Windows.Forms.ListViewItem.ListViewSubItem? +System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.AboveClientArea = 256 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.BelowClientArea = 16 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.Image = 2 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.Label = 4 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.LeftOfClientArea = 64 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.None = 1 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.RightOfClientArea = 32 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewHitTestLocations.StateImage = 512 -> System.Windows.Forms.ListViewHitTestLocations +System.Windows.Forms.ListViewInsertionMark +System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem.get -> bool +System.Windows.Forms.ListViewInsertionMark.AppearsAfterItem.set -> void +System.Windows.Forms.ListViewInsertionMark.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ListViewInsertionMark.Color.get -> System.Drawing.Color +System.Windows.Forms.ListViewInsertionMark.Color.set -> void +System.Windows.Forms.ListViewInsertionMark.Index.get -> int +System.Windows.Forms.ListViewInsertionMark.Index.set -> void +System.Windows.Forms.ListViewInsertionMark.NearestIndex(System.Drawing.Point pt) -> int +System.Windows.Forms.ListViewItem +System.Windows.Forms.ListViewItem.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ListViewItem.BackColor.set -> void +System.Windows.Forms.ListViewItem.BeginEdit() -> void +System.Windows.Forms.ListViewItem.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ListViewItem.Checked.get -> bool +System.Windows.Forms.ListViewItem.Checked.set -> void +System.Windows.Forms.ListViewItem.FindNearestItem(System.Windows.Forms.SearchDirectionHint searchDirection) -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListViewItem.Focused.get -> bool +System.Windows.Forms.ListViewItem.Focused.set -> void +System.Windows.Forms.ListViewItem.Font.get -> System.Drawing.Font! +System.Windows.Forms.ListViewItem.Font.set -> void +System.Windows.Forms.ListViewItem.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.ListViewItem.ForeColor.set -> void +System.Windows.Forms.ListViewItem.GetBounds(System.Windows.Forms.ItemBoundsPortion portion) -> System.Drawing.Rectangle +System.Windows.Forms.ListViewItem.GetSubItemAt(int x, int y) -> System.Windows.Forms.ListViewItem.ListViewSubItem? +System.Windows.Forms.ListViewItem.Group.get -> System.Windows.Forms.ListViewGroup? +System.Windows.Forms.ListViewItem.Group.set -> void +System.Windows.Forms.ListViewItem.ImageIndex.get -> int +System.Windows.Forms.ListViewItem.ImageIndex.set -> void +System.Windows.Forms.ListViewItem.ImageKey.get -> string! +System.Windows.Forms.ListViewItem.ImageKey.set -> void +System.Windows.Forms.ListViewItem.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ListViewItem.IndentCount.get -> int +System.Windows.Forms.ListViewItem.IndentCount.set -> void +System.Windows.Forms.ListViewItem.Index.get -> int +System.Windows.Forms.ListViewItem.ListView.get -> System.Windows.Forms.ListView? +System.Windows.Forms.ListViewItem.ListViewItem() -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font? font, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string![]? items, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text, int imageIndex) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text, string? imageKey) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(string? text, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, int imageIndex) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, int imageIndex, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, string? imageKey) -> void +System.Windows.Forms.ListViewItem.ListViewItem(System.Windows.Forms.ListViewItem.ListViewSubItem![]! subItems, string? imageKey, System.Windows.Forms.ListViewGroup? group) -> void +System.Windows.Forms.ListViewItem.ListViewSubItem +System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ListViewItem.ListViewSubItem.BackColor.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ListViewItem.ListViewSubItem.Font.get -> System.Drawing.Font! +System.Windows.Forms.ListViewItem.ListViewSubItem.Font.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.ListViewItem.ListViewSubItem.ForeColor.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem() -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem(System.Windows.Forms.ListViewItem? owner, string? text) -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.ListViewSubItem(System.Windows.Forms.ListViewItem? owner, string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.Name.get -> string! +System.Windows.Forms.ListViewItem.ListViewSubItem.Name.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.ResetStyle() -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.Tag.get -> object? +System.Windows.Forms.ListViewItem.ListViewSubItem.Tag.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItem.Text.get -> string! +System.Windows.Forms.ListViewItem.ListViewSubItem.Text.set -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(string? text) -> System.Windows.Forms.ListViewItem.ListViewSubItem! +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(string? text, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> System.Windows.Forms.ListViewItem.ListViewSubItem! +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Add(System.Windows.Forms.ListViewItem.ListViewSubItem! item) -> System.Windows.Forms.ListViewItem.ListViewSubItem! +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(string![]! items) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(string![]! items, System.Drawing.Color foreColor, System.Drawing.Color backColor, System.Drawing.Font! font) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.AddRange(System.Windows.Forms.ListViewItem.ListViewSubItem![]! items) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Clear() -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Contains(System.Windows.Forms.ListViewItem.ListViewSubItem? subItem) -> bool +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Count.get -> int +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOf(System.Windows.Forms.ListViewItem.ListViewSubItem? subItem) -> int +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Insert(int index, System.Windows.Forms.ListViewItem.ListViewSubItem! item) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IsReadOnly.get -> bool +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ListViewSubItemCollection(System.Windows.Forms.ListViewItem! owner) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.Remove(System.Windows.Forms.ListViewItem.ListViewSubItem? item) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveAt(int index) -> void +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem.ListViewSubItem! +System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[int index].set -> void +System.Windows.Forms.ListViewItem.Name.get -> string! +System.Windows.Forms.ListViewItem.Name.set -> void +System.Windows.Forms.ListViewItem.Position.get -> System.Drawing.Point +System.Windows.Forms.ListViewItem.Position.set -> void +System.Windows.Forms.ListViewItem.Selected.get -> bool +System.Windows.Forms.ListViewItem.Selected.set -> void +System.Windows.Forms.ListViewItem.StateImageIndex.get -> int +System.Windows.Forms.ListViewItem.StateImageIndex.set -> void +System.Windows.Forms.ListViewItem.SubItems.get -> System.Windows.Forms.ListViewItem.ListViewSubItemCollection! +System.Windows.Forms.ListViewItem.Tag.get -> object? +System.Windows.Forms.ListViewItem.Tag.set -> void +System.Windows.Forms.ListViewItem.Text.get -> string! +System.Windows.Forms.ListViewItem.Text.set -> void +System.Windows.Forms.ListViewItem.ToolTipText.get -> string! +System.Windows.Forms.ListViewItem.ToolTipText.set -> void +System.Windows.Forms.ListViewItem.UseItemStyleForSubItems.get -> bool +System.Windows.Forms.ListViewItem.UseItemStyleForSubItems.set -> void +System.Windows.Forms.ListViewItemConverter +System.Windows.Forms.ListViewItemConverter.ListViewItemConverter() -> void +System.Windows.Forms.ListViewItemMouseHoverEventArgs +System.Windows.Forms.ListViewItemMouseHoverEventArgs.Item.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListViewItemMouseHoverEventArgs.ListViewItemMouseHoverEventArgs(System.Windows.Forms.ListViewItem? item) -> void +System.Windows.Forms.ListViewItemMouseHoverEventHandler +System.Windows.Forms.ListViewItemSelectionChangedEventArgs +System.Windows.Forms.ListViewItemSelectionChangedEventArgs.IsSelected.get -> bool +System.Windows.Forms.ListViewItemSelectionChangedEventArgs.Item.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ItemIndex.get -> int +System.Windows.Forms.ListViewItemSelectionChangedEventArgs.ListViewItemSelectionChangedEventArgs(System.Windows.Forms.ListViewItem? item, int itemIndex, bool isSelected) -> void +System.Windows.Forms.ListViewItemSelectionChangedEventHandler +System.Windows.Forms.ListViewItemStateImageIndexConverter +System.Windows.Forms.ListViewItemStateImageIndexConverter.ListViewItemStateImageIndexConverter() -> void +System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Checked = 8 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Default = 32 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Focused = 16 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Grayed = 2 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Hot = 64 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Indeterminate = 256 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Marked = 128 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.Selected = 1 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewItemStates.ShowKeyboardCues = 512 -> System.Windows.Forms.ListViewItemStates +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.EndIndex.get -> int +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.IsSelected.get -> bool +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.ListViewVirtualItemsSelectionRangeChangedEventArgs(int startIndex, int endIndex, bool isSelected) -> void +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs.StartIndex.get -> int +System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler +System.Windows.Forms.MaskedTextBox +System.Windows.Forms.MaskedTextBox.AcceptsTab.get -> bool +System.Windows.Forms.MaskedTextBox.AcceptsTab.set -> void +System.Windows.Forms.MaskedTextBox.AcceptsTabChanged -> System.EventHandler? +System.Windows.Forms.MaskedTextBox.AllowPromptAsInput.get -> bool +System.Windows.Forms.MaskedTextBox.AllowPromptAsInput.set -> void +System.Windows.Forms.MaskedTextBox.AsciiOnly.get -> bool +System.Windows.Forms.MaskedTextBox.AsciiOnly.set -> void +System.Windows.Forms.MaskedTextBox.BeepOnError.get -> bool +System.Windows.Forms.MaskedTextBox.BeepOnError.set -> void +System.Windows.Forms.MaskedTextBox.CanUndo.get -> bool +System.Windows.Forms.MaskedTextBox.ClearUndo() -> void +System.Windows.Forms.MaskedTextBox.Culture.get -> System.Globalization.CultureInfo! +System.Windows.Forms.MaskedTextBox.Culture.set -> void +System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat.get -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskedTextBox.CutCopyMaskFormat.set -> void +System.Windows.Forms.MaskedTextBox.FormatProvider.get -> System.IFormatProvider? +System.Windows.Forms.MaskedTextBox.FormatProvider.set -> void +System.Windows.Forms.MaskedTextBox.GetFirstCharIndexFromLine(int lineNumber) -> int +System.Windows.Forms.MaskedTextBox.GetFirstCharIndexOfCurrentLine() -> int +System.Windows.Forms.MaskedTextBox.HidePromptOnLeave.get -> bool +System.Windows.Forms.MaskedTextBox.HidePromptOnLeave.set -> void +System.Windows.Forms.MaskedTextBox.InsertKeyMode.get -> System.Windows.Forms.InsertKeyMode +System.Windows.Forms.MaskedTextBox.InsertKeyMode.set -> void +System.Windows.Forms.MaskedTextBox.IsOverwriteMode.get -> bool +System.Windows.Forms.MaskedTextBox.IsOverwriteModeChanged -> System.EventHandler? +System.Windows.Forms.MaskedTextBox.Lines.get -> string![]! +System.Windows.Forms.MaskedTextBox.Lines.set -> void +System.Windows.Forms.MaskedTextBox.Mask.get -> string! +System.Windows.Forms.MaskedTextBox.Mask.set -> void +System.Windows.Forms.MaskedTextBox.MaskChanged -> System.EventHandler? +System.Windows.Forms.MaskedTextBox.MaskCompleted.get -> bool +System.Windows.Forms.MaskedTextBox.MaskedTextBox() -> void +System.Windows.Forms.MaskedTextBox.MaskedTextBox(string! mask) -> void +System.Windows.Forms.MaskedTextBox.MaskedTextBox(System.ComponentModel.MaskedTextProvider! maskedTextProvider) -> void +System.Windows.Forms.MaskedTextBox.MaskedTextProvider.get -> System.ComponentModel.MaskedTextProvider? +System.Windows.Forms.MaskedTextBox.MaskFull.get -> bool +System.Windows.Forms.MaskedTextBox.MaskInputRejected -> System.Windows.Forms.MaskInputRejectedEventHandler? +System.Windows.Forms.MaskedTextBox.MultilineChanged -> System.EventHandler? +System.Windows.Forms.MaskedTextBox.PasswordChar.get -> char +System.Windows.Forms.MaskedTextBox.PasswordChar.set -> void +System.Windows.Forms.MaskedTextBox.PromptChar.get -> char +System.Windows.Forms.MaskedTextBox.PromptChar.set -> void +System.Windows.Forms.MaskedTextBox.ReadOnly.get -> bool +System.Windows.Forms.MaskedTextBox.ReadOnly.set -> void +System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure.get -> bool +System.Windows.Forms.MaskedTextBox.RejectInputOnFirstFailure.set -> void +System.Windows.Forms.MaskedTextBox.ResetOnPrompt.get -> bool +System.Windows.Forms.MaskedTextBox.ResetOnPrompt.set -> void +System.Windows.Forms.MaskedTextBox.ResetOnSpace.get -> bool +System.Windows.Forms.MaskedTextBox.ResetOnSpace.set -> void +System.Windows.Forms.MaskedTextBox.ScrollToCaret() -> void +System.Windows.Forms.MaskedTextBox.SkipLiterals.get -> bool +System.Windows.Forms.MaskedTextBox.SkipLiterals.set -> void +System.Windows.Forms.MaskedTextBox.TextAlign.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.MaskedTextBox.TextAlign.set -> void +System.Windows.Forms.MaskedTextBox.TextAlignChanged -> System.EventHandler? +System.Windows.Forms.MaskedTextBox.TextMaskFormat.get -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskedTextBox.TextMaskFormat.set -> void +System.Windows.Forms.MaskedTextBox.TypeValidationCompleted -> System.Windows.Forms.TypeValidationEventHandler? +System.Windows.Forms.MaskedTextBox.Undo() -> void +System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar.get -> bool +System.Windows.Forms.MaskedTextBox.UseSystemPasswordChar.set -> void +System.Windows.Forms.MaskedTextBox.ValidateText() -> object? +System.Windows.Forms.MaskedTextBox.ValidatingType.get -> System.Type? +System.Windows.Forms.MaskedTextBox.ValidatingType.set -> void +System.Windows.Forms.MaskedTextBox.WordWrap.get -> bool +System.Windows.Forms.MaskedTextBox.WordWrap.set -> void +System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals = 0 -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskFormat.IncludeLiterals = 2 -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskFormat.IncludePrompt = 1 -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskFormat.IncludePromptAndLiterals = 3 -> System.Windows.Forms.MaskFormat +System.Windows.Forms.MaskInputRejectedEventArgs +System.Windows.Forms.MaskInputRejectedEventArgs.MaskInputRejectedEventArgs(int position, System.ComponentModel.MaskedTextResultHint rejectionHint) -> void +System.Windows.Forms.MaskInputRejectedEventArgs.Position.get -> int +System.Windows.Forms.MaskInputRejectedEventArgs.RejectionHint.get -> System.ComponentModel.MaskedTextResultHint +System.Windows.Forms.MaskInputRejectedEventHandler +System.Windows.Forms.MdiClient +System.Windows.Forms.MdiClient.ControlCollection +System.Windows.Forms.MdiClient.ControlCollection.ControlCollection(System.Windows.Forms.MdiClient! owner) -> void +System.Windows.Forms.MdiClient.LayoutMdi(System.Windows.Forms.MdiLayout value) -> void +System.Windows.Forms.MdiClient.MdiChildren.get -> System.Windows.Forms.Form![]! +System.Windows.Forms.MdiClient.MdiClient() -> void +System.Windows.Forms.MdiLayout +System.Windows.Forms.MdiLayout.ArrangeIcons = 3 -> System.Windows.Forms.MdiLayout +System.Windows.Forms.MdiLayout.Cascade = 0 -> System.Windows.Forms.MdiLayout +System.Windows.Forms.MdiLayout.TileHorizontal = 1 -> System.Windows.Forms.MdiLayout +System.Windows.Forms.MdiLayout.TileVertical = 2 -> System.Windows.Forms.MdiLayout +System.Windows.Forms.MeasureItemEventArgs +System.Windows.Forms.MeasureItemEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.MeasureItemEventArgs.Index.get -> int +System.Windows.Forms.MeasureItemEventArgs.ItemHeight.get -> int +System.Windows.Forms.MeasureItemEventArgs.ItemHeight.set -> void +System.Windows.Forms.MeasureItemEventArgs.ItemWidth.get -> int +System.Windows.Forms.MeasureItemEventArgs.ItemWidth.set -> void +System.Windows.Forms.MeasureItemEventArgs.MeasureItemEventArgs(System.Drawing.Graphics! graphics, int index) -> void +System.Windows.Forms.MeasureItemEventArgs.MeasureItemEventArgs(System.Drawing.Graphics! graphics, int index, int itemHeight) -> void +System.Windows.Forms.MeasureItemEventHandler +System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuGlyph.Arrow = 0 -> System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuGlyph.Bullet = 2 -> System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuGlyph.Checkmark = 1 -> System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuGlyph.Max = 2 -> System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuGlyph.Min = 0 -> System.Windows.Forms.MenuGlyph +System.Windows.Forms.MenuStrip +System.Windows.Forms.MenuStrip.CanOverflow.get -> bool +System.Windows.Forms.MenuStrip.CanOverflow.set -> void +System.Windows.Forms.MenuStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.MenuStrip.GripStyle.set -> void +System.Windows.Forms.MenuStrip.MdiWindowListItem.get -> System.Windows.Forms.ToolStripMenuItem? +System.Windows.Forms.MenuStrip.MdiWindowListItem.set -> void +System.Windows.Forms.MenuStrip.MenuActivate -> System.EventHandler? +System.Windows.Forms.MenuStrip.MenuDeactivate -> System.EventHandler? +System.Windows.Forms.MenuStrip.MenuStrip() -> void +System.Windows.Forms.MenuStrip.ShowItemToolTips.get -> bool +System.Windows.Forms.MenuStrip.ShowItemToolTips.set -> void +System.Windows.Forms.MenuStrip.Stretch.get -> bool +System.Windows.Forms.MenuStrip.Stretch.set -> void +System.Windows.Forms.MergeAction +System.Windows.Forms.MergeAction.Append = 0 -> System.Windows.Forms.MergeAction +System.Windows.Forms.MergeAction.Insert = 1 -> System.Windows.Forms.MergeAction +System.Windows.Forms.MergeAction.MatchOnly = 4 -> System.Windows.Forms.MergeAction +System.Windows.Forms.MergeAction.Remove = 3 -> System.Windows.Forms.MergeAction +System.Windows.Forms.MergeAction.Replace = 2 -> System.Windows.Forms.MergeAction +System.Windows.Forms.MessageBox +System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.AbortRetryIgnore = 2 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.CancelTryContinue = 6 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.OK = 0 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.OKCancel = 1 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.RetryCancel = 5 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.YesNo = 4 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxButtons.YesNoCancel = 3 -> System.Windows.Forms.MessageBoxButtons +System.Windows.Forms.MessageBoxDefaultButton +System.Windows.Forms.MessageBoxDefaultButton.Button1 = 0 -> System.Windows.Forms.MessageBoxDefaultButton +System.Windows.Forms.MessageBoxDefaultButton.Button2 = 256 -> System.Windows.Forms.MessageBoxDefaultButton +System.Windows.Forms.MessageBoxDefaultButton.Button3 = 512 -> System.Windows.Forms.MessageBoxDefaultButton +System.Windows.Forms.MessageBoxDefaultButton.Button4 = 768 -> System.Windows.Forms.MessageBoxDefaultButton +System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Asterisk = 64 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Error = 16 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Exclamation = 48 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Hand = 16 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Information = 64 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.None = 0 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Question = 32 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Stop = 16 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxIcon.Warning = 48 -> System.Windows.Forms.MessageBoxIcon +System.Windows.Forms.MessageBoxOptions +System.Windows.Forms.MessageBoxOptions.DefaultDesktopOnly = 131072 -> System.Windows.Forms.MessageBoxOptions +System.Windows.Forms.MessageBoxOptions.RightAlign = 524288 -> System.Windows.Forms.MessageBoxOptions +System.Windows.Forms.MessageBoxOptions.RtlReading = 1048576 -> System.Windows.Forms.MessageBoxOptions +System.Windows.Forms.MessageBoxOptions.ServiceNotification = 2097152 -> System.Windows.Forms.MessageBoxOptions +System.Windows.Forms.MethodInvoker +System.Windows.Forms.MonthCalendar +System.Windows.Forms.MonthCalendar.AddAnnuallyBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.AddBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.AddMonthlyBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates.get -> System.DateTime[]! +System.Windows.Forms.MonthCalendar.AnnuallyBoldedDates.set -> void +System.Windows.Forms.MonthCalendar.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.BoldedDates.get -> System.DateTime[]! +System.Windows.Forms.MonthCalendar.BoldedDates.set -> void +System.Windows.Forms.MonthCalendar.CalendarDimensions.get -> System.Drawing.Size +System.Windows.Forms.MonthCalendar.CalendarDimensions.set -> void +System.Windows.Forms.MonthCalendar.Click -> System.EventHandler? +System.Windows.Forms.MonthCalendar.DateChanged -> System.Windows.Forms.DateRangeEventHandler? +System.Windows.Forms.MonthCalendar.DateSelected -> System.Windows.Forms.DateRangeEventHandler? +System.Windows.Forms.MonthCalendar.DoubleClick -> System.EventHandler? +System.Windows.Forms.MonthCalendar.FirstDayOfWeek.get -> System.Windows.Forms.Day +System.Windows.Forms.MonthCalendar.FirstDayOfWeek.set -> void +System.Windows.Forms.MonthCalendar.GetDisplayRange(bool visible) -> System.Windows.Forms.SelectionRange! +System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.CalendarBackground = 6 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.Date = 7 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.DayOfWeek = 10 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.NextMonthButton = 4 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.NextMonthDate = 8 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.Nowhere = 0 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.PrevMonthButton = 5 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.PrevMonthDate = 9 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.TitleBackground = 1 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.TitleMonth = 2 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.TitleYear = 3 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.TodayLink = 12 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitArea.WeekNumbers = 11 -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitTest(int x, int y) -> System.Windows.Forms.MonthCalendar.HitTestInfo! +System.Windows.Forms.MonthCalendar.HitTest(System.Drawing.Point point) -> System.Windows.Forms.MonthCalendar.HitTestInfo! +System.Windows.Forms.MonthCalendar.HitTestInfo +System.Windows.Forms.MonthCalendar.HitTestInfo.HitArea.get -> System.Windows.Forms.MonthCalendar.HitArea +System.Windows.Forms.MonthCalendar.HitTestInfo.Point.get -> System.Drawing.Point +System.Windows.Forms.MonthCalendar.HitTestInfo.Time.get -> System.DateTime +System.Windows.Forms.MonthCalendar.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.MonthCalendar.ImeMode.set -> void +System.Windows.Forms.MonthCalendar.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.MaxDate.get -> System.DateTime +System.Windows.Forms.MonthCalendar.MaxDate.set -> void +System.Windows.Forms.MonthCalendar.MaxSelectionCount.get -> int +System.Windows.Forms.MonthCalendar.MaxSelectionCount.set -> void +System.Windows.Forms.MonthCalendar.MinDate.get -> System.DateTime +System.Windows.Forms.MonthCalendar.MinDate.set -> void +System.Windows.Forms.MonthCalendar.MonthCalendar() -> void +System.Windows.Forms.MonthCalendar.MonthlyBoldedDates.get -> System.DateTime[]! +System.Windows.Forms.MonthCalendar.MonthlyBoldedDates.set -> void +System.Windows.Forms.MonthCalendar.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.MonthCalendar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.MonthCalendar.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.MonthCalendar.Padding.set -> void +System.Windows.Forms.MonthCalendar.PaddingChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.MonthCalendar.RemoveAllAnnuallyBoldedDates() -> void +System.Windows.Forms.MonthCalendar.RemoveAllBoldedDates() -> void +System.Windows.Forms.MonthCalendar.RemoveAllMonthlyBoldedDates() -> void +System.Windows.Forms.MonthCalendar.RemoveAnnuallyBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.RemoveBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.RemoveMonthlyBoldedDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.ScrollChange.get -> int +System.Windows.Forms.MonthCalendar.ScrollChange.set -> void +System.Windows.Forms.MonthCalendar.SelectionEnd.get -> System.DateTime +System.Windows.Forms.MonthCalendar.SelectionEnd.set -> void +System.Windows.Forms.MonthCalendar.SelectionRange.get -> System.Windows.Forms.SelectionRange! +System.Windows.Forms.MonthCalendar.SelectionRange.set -> void +System.Windows.Forms.MonthCalendar.SelectionStart.get -> System.DateTime +System.Windows.Forms.MonthCalendar.SelectionStart.set -> void +System.Windows.Forms.MonthCalendar.SetCalendarDimensions(int x, int y) -> void +System.Windows.Forms.MonthCalendar.SetDate(System.DateTime date) -> void +System.Windows.Forms.MonthCalendar.SetSelectionRange(System.DateTime date1, System.DateTime date2) -> void +System.Windows.Forms.MonthCalendar.ShowToday.get -> bool +System.Windows.Forms.MonthCalendar.ShowToday.set -> void +System.Windows.Forms.MonthCalendar.ShowTodayCircle.get -> bool +System.Windows.Forms.MonthCalendar.ShowTodayCircle.set -> void +System.Windows.Forms.MonthCalendar.ShowWeekNumbers.get -> bool +System.Windows.Forms.MonthCalendar.ShowWeekNumbers.set -> void +System.Windows.Forms.MonthCalendar.SingleMonthSize.get -> System.Drawing.Size +System.Windows.Forms.MonthCalendar.Size.get -> System.Drawing.Size +System.Windows.Forms.MonthCalendar.Size.set -> void +System.Windows.Forms.MonthCalendar.TextChanged -> System.EventHandler? +System.Windows.Forms.MonthCalendar.TitleBackColor.get -> System.Drawing.Color +System.Windows.Forms.MonthCalendar.TitleBackColor.set -> void +System.Windows.Forms.MonthCalendar.TitleForeColor.get -> System.Drawing.Color +System.Windows.Forms.MonthCalendar.TitleForeColor.set -> void +System.Windows.Forms.MonthCalendar.TodayDate.get -> System.DateTime +System.Windows.Forms.MonthCalendar.TodayDate.set -> void +System.Windows.Forms.MonthCalendar.TodayDateSet.get -> bool +System.Windows.Forms.MonthCalendar.TrailingForeColor.get -> System.Drawing.Color +System.Windows.Forms.MonthCalendar.TrailingForeColor.set -> void +System.Windows.Forms.MonthCalendar.UpdateBoldedDates() -> void +System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.Left = 1048576 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.Middle = 4194304 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.None = 0 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.Right = 2097152 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.XButton1 = 8388608 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseButtons.XButton2 = 16777216 -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseEventArgs +System.Windows.Forms.MouseEventArgs.Button.get -> System.Windows.Forms.MouseButtons +System.Windows.Forms.MouseEventArgs.Clicks.get -> int +System.Windows.Forms.MouseEventArgs.Delta.get -> int +System.Windows.Forms.MouseEventArgs.Location.get -> System.Drawing.Point +System.Windows.Forms.MouseEventArgs.MouseEventArgs(System.Windows.Forms.MouseButtons button, int clicks, int x, int y, int delta) -> void +System.Windows.Forms.MouseEventArgs.X.get -> int +System.Windows.Forms.MouseEventArgs.Y.get -> int +System.Windows.Forms.MouseEventHandler +System.Windows.Forms.NativeWindow +System.Windows.Forms.NativeWindow.~NativeWindow() -> void +System.Windows.Forms.NativeWindow.AssignHandle(nint handle) -> void +System.Windows.Forms.NativeWindow.DefWndProc(ref System.Windows.Forms.Message m) -> void +System.Windows.Forms.NativeWindow.Handle.get -> nint +System.Windows.Forms.NativeWindow.NativeWindow() -> void +System.Windows.Forms.NavigateEventArgs +System.Windows.Forms.NavigateEventArgs.Forward.get -> bool +System.Windows.Forms.NavigateEventArgs.NavigateEventArgs(bool isForward) -> void +System.Windows.Forms.NavigateEventHandler +System.Windows.Forms.NodeLabelEditEventArgs +System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit.get -> bool +System.Windows.Forms.NodeLabelEditEventArgs.CancelEdit.set -> void +System.Windows.Forms.NodeLabelEditEventArgs.Label.get -> string? +System.Windows.Forms.NodeLabelEditEventArgs.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.NodeLabelEditEventArgs.NodeLabelEditEventArgs(System.Windows.Forms.TreeNode? node) -> void +System.Windows.Forms.NodeLabelEditEventArgs.NodeLabelEditEventArgs(System.Windows.Forms.TreeNode? node, string? label) -> void +System.Windows.Forms.NodeLabelEditEventHandler +System.Windows.Forms.NotifyIcon +System.Windows.Forms.NotifyIcon.BalloonTipClicked -> System.EventHandler? +System.Windows.Forms.NotifyIcon.BalloonTipClosed -> System.EventHandler? +System.Windows.Forms.NotifyIcon.BalloonTipIcon.get -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.NotifyIcon.BalloonTipIcon.set -> void +System.Windows.Forms.NotifyIcon.BalloonTipShown -> System.EventHandler? +System.Windows.Forms.NotifyIcon.BalloonTipText.get -> string! +System.Windows.Forms.NotifyIcon.BalloonTipText.set -> void +System.Windows.Forms.NotifyIcon.BalloonTipTitle.get -> string! +System.Windows.Forms.NotifyIcon.BalloonTipTitle.set -> void +System.Windows.Forms.NotifyIcon.Click -> System.EventHandler? +System.Windows.Forms.NotifyIcon.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +System.Windows.Forms.NotifyIcon.ContextMenuStrip.set -> void +System.Windows.Forms.NotifyIcon.DoubleClick -> System.EventHandler? +System.Windows.Forms.NotifyIcon.Icon.get -> System.Drawing.Icon? +System.Windows.Forms.NotifyIcon.Icon.set -> void +System.Windows.Forms.NotifyIcon.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.NotifyIcon.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.NotifyIcon.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.NotifyIcon.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.NotifyIcon.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.NotifyIcon.NotifyIcon() -> void +System.Windows.Forms.NotifyIcon.NotifyIcon(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.NotifyIcon.ShowBalloonTip(int timeout) -> void +System.Windows.Forms.NotifyIcon.ShowBalloonTip(int timeout, string! tipTitle, string! tipText, System.Windows.Forms.ToolTipIcon tipIcon) -> void +System.Windows.Forms.NotifyIcon.Tag.get -> object? +System.Windows.Forms.NotifyIcon.Tag.set -> void +System.Windows.Forms.NotifyIcon.Text.get -> string! +System.Windows.Forms.NotifyIcon.Text.set -> void +System.Windows.Forms.NotifyIcon.Visible.get -> bool +System.Windows.Forms.NotifyIcon.Visible.set -> void +System.Windows.Forms.NumericUpDown +System.Windows.Forms.NumericUpDown.Accelerations.get -> System.Windows.Forms.NumericUpDownAccelerationCollection! +System.Windows.Forms.NumericUpDown.BeginInit() -> void +System.Windows.Forms.NumericUpDown.DecimalPlaces.get -> int +System.Windows.Forms.NumericUpDown.DecimalPlaces.set -> void +System.Windows.Forms.NumericUpDown.EndInit() -> void +System.Windows.Forms.NumericUpDown.Hexadecimal.get -> bool +System.Windows.Forms.NumericUpDown.Hexadecimal.set -> void +System.Windows.Forms.NumericUpDown.Increment.get -> decimal +System.Windows.Forms.NumericUpDown.Increment.set -> void +System.Windows.Forms.NumericUpDown.Maximum.get -> decimal +System.Windows.Forms.NumericUpDown.Maximum.set -> void +System.Windows.Forms.NumericUpDown.Minimum.get -> decimal +System.Windows.Forms.NumericUpDown.Minimum.set -> void +System.Windows.Forms.NumericUpDown.NumericUpDown() -> void +System.Windows.Forms.NumericUpDown.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.NumericUpDown.Padding.set -> void +System.Windows.Forms.NumericUpDown.PaddingChanged -> System.EventHandler? +System.Windows.Forms.NumericUpDown.ParseEditText() -> void +System.Windows.Forms.NumericUpDown.TextChanged -> System.EventHandler? +System.Windows.Forms.NumericUpDown.ThousandsSeparator.get -> bool +System.Windows.Forms.NumericUpDown.ThousandsSeparator.set -> void +System.Windows.Forms.NumericUpDown.Value.get -> decimal +System.Windows.Forms.NumericUpDown.Value.set -> void +System.Windows.Forms.NumericUpDown.ValueChanged -> System.EventHandler? +System.Windows.Forms.NumericUpDownAcceleration +System.Windows.Forms.NumericUpDownAcceleration.Increment.get -> decimal +System.Windows.Forms.NumericUpDownAcceleration.Increment.set -> void +System.Windows.Forms.NumericUpDownAcceleration.NumericUpDownAcceleration(int seconds, decimal increment) -> void +System.Windows.Forms.NumericUpDownAcceleration.Seconds.get -> int +System.Windows.Forms.NumericUpDownAcceleration.Seconds.set -> void +System.Windows.Forms.NumericUpDownAccelerationCollection +System.Windows.Forms.NumericUpDownAccelerationCollection.Add(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> void +System.Windows.Forms.NumericUpDownAccelerationCollection.AddRange(params System.Windows.Forms.NumericUpDownAcceleration![]! accelerations) -> void +System.Windows.Forms.NumericUpDownAccelerationCollection.Clear() -> void +System.Windows.Forms.NumericUpDownAccelerationCollection.Contains(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> bool +System.Windows.Forms.NumericUpDownAccelerationCollection.CopyTo(System.Windows.Forms.NumericUpDownAcceleration![]! array, int index) -> void +System.Windows.Forms.NumericUpDownAccelerationCollection.Count.get -> int +System.Windows.Forms.NumericUpDownAccelerationCollection.IsReadOnly.get -> bool +System.Windows.Forms.NumericUpDownAccelerationCollection.NumericUpDownAccelerationCollection() -> void +System.Windows.Forms.NumericUpDownAccelerationCollection.Remove(System.Windows.Forms.NumericUpDownAcceleration! acceleration) -> bool +System.Windows.Forms.NumericUpDownAccelerationCollection.this[int index].get -> System.Windows.Forms.NumericUpDownAcceleration! +System.Windows.Forms.OpacityConverter +System.Windows.Forms.OpacityConverter.OpacityConverter() -> void +System.Windows.Forms.OpenFileDialog +System.Windows.Forms.OpenFileDialog.Multiselect.get -> bool +System.Windows.Forms.OpenFileDialog.Multiselect.set -> void +System.Windows.Forms.OpenFileDialog.OpenFile() -> System.IO.Stream! +System.Windows.Forms.OpenFileDialog.OpenFileDialog() -> void +System.Windows.Forms.OpenFileDialog.ReadOnlyChecked.get -> bool +System.Windows.Forms.OpenFileDialog.ReadOnlyChecked.set -> void +System.Windows.Forms.OpenFileDialog.SafeFileName.get -> string! +System.Windows.Forms.OpenFileDialog.SafeFileNames.get -> string![]! +System.Windows.Forms.OpenFileDialog.SelectReadOnly.get -> bool +System.Windows.Forms.OpenFileDialog.SelectReadOnly.set -> void +System.Windows.Forms.OpenFileDialog.ShowPreview.get -> bool +System.Windows.Forms.OpenFileDialog.ShowPreview.set -> void +System.Windows.Forms.OpenFileDialog.ShowReadOnly.get -> bool +System.Windows.Forms.OpenFileDialog.ShowReadOnly.set -> void +System.Windows.Forms.Orientation +System.Windows.Forms.Orientation.Horizontal = 0 -> System.Windows.Forms.Orientation +System.Windows.Forms.Orientation.Vertical = 1 -> System.Windows.Forms.Orientation +System.Windows.Forms.OSFeature +System.Windows.Forms.OSFeature.OSFeature() -> void +System.Windows.Forms.OwnerDrawPropertyBag +System.Windows.Forms.OwnerDrawPropertyBag.BackColor.get -> System.Drawing.Color +System.Windows.Forms.OwnerDrawPropertyBag.BackColor.set -> void +System.Windows.Forms.OwnerDrawPropertyBag.Font.get -> System.Drawing.Font? +System.Windows.Forms.OwnerDrawPropertyBag.Font.set -> void +System.Windows.Forms.OwnerDrawPropertyBag.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.OwnerDrawPropertyBag.ForeColor.set -> void +System.Windows.Forms.OwnerDrawPropertyBag.OwnerDrawPropertyBag(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +System.Windows.Forms.PageSetupDialog +System.Windows.Forms.PageSetupDialog.AllowMargins.get -> bool +System.Windows.Forms.PageSetupDialog.AllowMargins.set -> void +System.Windows.Forms.PageSetupDialog.AllowOrientation.get -> bool +System.Windows.Forms.PageSetupDialog.AllowOrientation.set -> void +System.Windows.Forms.PageSetupDialog.AllowPaper.get -> bool +System.Windows.Forms.PageSetupDialog.AllowPaper.set -> void +System.Windows.Forms.PageSetupDialog.AllowPrinter.get -> bool +System.Windows.Forms.PageSetupDialog.AllowPrinter.set -> void +System.Windows.Forms.PageSetupDialog.Document.get -> System.Drawing.Printing.PrintDocument? +System.Windows.Forms.PageSetupDialog.Document.set -> void +System.Windows.Forms.PageSetupDialog.EnableMetric.get -> bool +System.Windows.Forms.PageSetupDialog.EnableMetric.set -> void +System.Windows.Forms.PageSetupDialog.MinMargins.get -> System.Drawing.Printing.Margins? +System.Windows.Forms.PageSetupDialog.MinMargins.set -> void +System.Windows.Forms.PageSetupDialog.PageSettings.get -> System.Drawing.Printing.PageSettings? +System.Windows.Forms.PageSetupDialog.PageSettings.set -> void +System.Windows.Forms.PageSetupDialog.PageSetupDialog() -> void +System.Windows.Forms.PageSetupDialog.PrinterSettings.get -> System.Drawing.Printing.PrinterSettings? +System.Windows.Forms.PageSetupDialog.PrinterSettings.set -> void +System.Windows.Forms.PageSetupDialog.ShowHelp.get -> bool +System.Windows.Forms.PageSetupDialog.ShowHelp.set -> void +System.Windows.Forms.PageSetupDialog.ShowNetwork.get -> bool +System.Windows.Forms.PageSetupDialog.ShowNetwork.set -> void +System.Windows.Forms.PaintEventArgs +System.Windows.Forms.PaintEventArgs.~PaintEventArgs() -> void +System.Windows.Forms.PaintEventArgs.ClipRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.PaintEventArgs.Dispose() -> void +System.Windows.Forms.PaintEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.PaintEventArgs.PaintEventArgs(System.Drawing.Graphics! graphics, System.Drawing.Rectangle clipRect) -> void +System.Windows.Forms.PaintEventHandler +System.Windows.Forms.Panel +System.Windows.Forms.Panel.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.Panel.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.Panel.BorderStyle.set -> void +System.Windows.Forms.Panel.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Panel.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.Panel.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Panel.Panel() -> void +System.Windows.Forms.Panel.TabStop.get -> bool +System.Windows.Forms.Panel.TabStop.set -> void +System.Windows.Forms.Panel.TextChanged -> System.EventHandler? +System.Windows.Forms.PictureBox +System.Windows.Forms.PictureBox.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.PictureBox.BorderStyle.set -> void +System.Windows.Forms.PictureBox.CancelAsync() -> void +System.Windows.Forms.PictureBox.CausesValidation.get -> bool +System.Windows.Forms.PictureBox.CausesValidation.set -> void +System.Windows.Forms.PictureBox.CausesValidationChanged -> System.EventHandler +System.Windows.Forms.PictureBox.Enter -> System.EventHandler +System.Windows.Forms.PictureBox.FontChanged -> System.EventHandler +System.Windows.Forms.PictureBox.ForeColorChanged -> System.EventHandler +System.Windows.Forms.PictureBox.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.PictureBox.ImeMode.set -> void +System.Windows.Forms.PictureBox.ImeModeChanged -> System.EventHandler +System.Windows.Forms.PictureBox.KeyDown -> System.Windows.Forms.KeyEventHandler +System.Windows.Forms.PictureBox.KeyPress -> System.Windows.Forms.KeyPressEventHandler +System.Windows.Forms.PictureBox.KeyUp -> System.Windows.Forms.KeyEventHandler +System.Windows.Forms.PictureBox.Leave -> System.EventHandler +System.Windows.Forms.PictureBox.Load() -> void +System.Windows.Forms.PictureBox.LoadAsync() -> void +System.Windows.Forms.PictureBox.LoadCompleted -> System.ComponentModel.AsyncCompletedEventHandler +System.Windows.Forms.PictureBox.LoadProgressChanged -> System.ComponentModel.ProgressChangedEventHandler +System.Windows.Forms.PictureBox.PictureBox() -> void +System.Windows.Forms.PictureBox.RightToLeftChanged -> System.EventHandler +System.Windows.Forms.PictureBox.SizeMode.get -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBox.SizeMode.set -> void +System.Windows.Forms.PictureBox.SizeModeChanged -> System.EventHandler +System.Windows.Forms.PictureBox.TabIndex.get -> int +System.Windows.Forms.PictureBox.TabIndex.set -> void +System.Windows.Forms.PictureBox.TabIndexChanged -> System.EventHandler +System.Windows.Forms.PictureBox.TabStop.get -> bool +System.Windows.Forms.PictureBox.TabStop.set -> void +System.Windows.Forms.PictureBox.TabStopChanged -> System.EventHandler +System.Windows.Forms.PictureBox.TextChanged -> System.EventHandler +System.Windows.Forms.PictureBox.WaitOnLoad.get -> bool +System.Windows.Forms.PictureBox.WaitOnLoad.set -> void +System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBoxSizeMode.AutoSize = 2 -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBoxSizeMode.CenterImage = 3 -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBoxSizeMode.Normal = 0 -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBoxSizeMode.StretchImage = 1 -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PictureBoxSizeMode.Zoom = 4 -> System.Windows.Forms.PictureBoxSizeMode +System.Windows.Forms.PopupEventArgs +System.Windows.Forms.PopupEventArgs.AssociatedControl.get -> System.Windows.Forms.Control? +System.Windows.Forms.PopupEventArgs.AssociatedWindow.get -> System.Windows.Forms.IWin32Window? +System.Windows.Forms.PopupEventArgs.IsBalloon.get -> bool +System.Windows.Forms.PopupEventArgs.PopupEventArgs(System.Windows.Forms.IWin32Window? associatedWindow, System.Windows.Forms.Control? associatedControl, bool isBalloon, System.Drawing.Size size) -> void +System.Windows.Forms.PopupEventArgs.ToolTipSize.get -> System.Drawing.Size +System.Windows.Forms.PopupEventArgs.ToolTipSize.set -> void +System.Windows.Forms.PopupEventHandler +System.Windows.Forms.PowerLineStatus +System.Windows.Forms.PowerLineStatus.Offline = 0 -> System.Windows.Forms.PowerLineStatus +System.Windows.Forms.PowerLineStatus.Online = 1 -> System.Windows.Forms.PowerLineStatus +System.Windows.Forms.PowerLineStatus.Unknown = 255 -> System.Windows.Forms.PowerLineStatus +System.Windows.Forms.PowerState +System.Windows.Forms.PowerState.Hibernate = 1 -> System.Windows.Forms.PowerState +System.Windows.Forms.PowerState.Suspend = 0 -> System.Windows.Forms.PowerState +System.Windows.Forms.PowerStatus +System.Windows.Forms.PowerStatus.BatteryChargeStatus.get -> System.Windows.Forms.BatteryChargeStatus +System.Windows.Forms.PowerStatus.BatteryFullLifetime.get -> int +System.Windows.Forms.PowerStatus.BatteryLifePercent.get -> float +System.Windows.Forms.PowerStatus.BatteryLifeRemaining.get -> int +System.Windows.Forms.PowerStatus.PowerLineStatus.get -> System.Windows.Forms.PowerLineStatus +System.Windows.Forms.PreProcessControlState +System.Windows.Forms.PreProcessControlState.MessageNeeded = 1 -> System.Windows.Forms.PreProcessControlState +System.Windows.Forms.PreProcessControlState.MessageNotNeeded = 2 -> System.Windows.Forms.PreProcessControlState +System.Windows.Forms.PreProcessControlState.MessageProcessed = 0 -> System.Windows.Forms.PreProcessControlState +System.Windows.Forms.PreviewKeyDownEventArgs +System.Windows.Forms.PreviewKeyDownEventArgs.Alt.get -> bool +System.Windows.Forms.PreviewKeyDownEventArgs.Control.get -> bool +System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey.get -> bool +System.Windows.Forms.PreviewKeyDownEventArgs.IsInputKey.set -> void +System.Windows.Forms.PreviewKeyDownEventArgs.KeyCode.get -> System.Windows.Forms.Keys +System.Windows.Forms.PreviewKeyDownEventArgs.KeyData.get -> System.Windows.Forms.Keys +System.Windows.Forms.PreviewKeyDownEventArgs.KeyValue.get -> int +System.Windows.Forms.PreviewKeyDownEventArgs.Modifiers.get -> System.Windows.Forms.Keys +System.Windows.Forms.PreviewKeyDownEventArgs.PreviewKeyDownEventArgs(System.Windows.Forms.Keys keyData) -> void +System.Windows.Forms.PreviewKeyDownEventArgs.Shift.get -> bool +System.Windows.Forms.PreviewKeyDownEventHandler +System.Windows.Forms.PrintControllerWithStatusDialog +System.Windows.Forms.PrintControllerWithStatusDialog.PrintControllerWithStatusDialog(System.Drawing.Printing.PrintController! underlyingController) -> void +System.Windows.Forms.PrintControllerWithStatusDialog.PrintControllerWithStatusDialog(System.Drawing.Printing.PrintController! underlyingController, string! dialogTitle) -> void +System.Windows.Forms.PrintDialog +System.Windows.Forms.PrintDialog.AllowCurrentPage.get -> bool +System.Windows.Forms.PrintDialog.AllowCurrentPage.set -> void +System.Windows.Forms.PrintDialog.AllowPrintToFile.get -> bool +System.Windows.Forms.PrintDialog.AllowPrintToFile.set -> void +System.Windows.Forms.PrintDialog.AllowSelection.get -> bool +System.Windows.Forms.PrintDialog.AllowSelection.set -> void +System.Windows.Forms.PrintDialog.AllowSomePages.get -> bool +System.Windows.Forms.PrintDialog.AllowSomePages.set -> void +System.Windows.Forms.PrintDialog.Document.get -> System.Drawing.Printing.PrintDocument? +System.Windows.Forms.PrintDialog.Document.set -> void +System.Windows.Forms.PrintDialog.PrintDialog() -> void +System.Windows.Forms.PrintDialog.PrinterSettings.get -> System.Drawing.Printing.PrinterSettings! +System.Windows.Forms.PrintDialog.PrinterSettings.set -> void +System.Windows.Forms.PrintDialog.PrintToFile.get -> bool +System.Windows.Forms.PrintDialog.PrintToFile.set -> void +System.Windows.Forms.PrintDialog.ShowHelp.get -> bool +System.Windows.Forms.PrintDialog.ShowHelp.set -> void +System.Windows.Forms.PrintDialog.ShowNetwork.get -> bool +System.Windows.Forms.PrintDialog.ShowNetwork.set -> void +System.Windows.Forms.PrintDialog.UseEXDialog.get -> bool +System.Windows.Forms.PrintDialog.UseEXDialog.set -> void +System.Windows.Forms.PrintPreviewControl +System.Windows.Forms.PrintPreviewControl.AutoZoom.get -> bool +System.Windows.Forms.PrintPreviewControl.AutoZoom.set -> void +System.Windows.Forms.PrintPreviewControl.Columns.get -> int +System.Windows.Forms.PrintPreviewControl.Columns.set -> void +System.Windows.Forms.PrintPreviewControl.Document.get -> System.Drawing.Printing.PrintDocument? +System.Windows.Forms.PrintPreviewControl.Document.set -> void +System.Windows.Forms.PrintPreviewControl.InvalidatePreview() -> void +System.Windows.Forms.PrintPreviewControl.PrintPreviewControl() -> void +System.Windows.Forms.PrintPreviewControl.Rows.get -> int +System.Windows.Forms.PrintPreviewControl.Rows.set -> void +System.Windows.Forms.PrintPreviewControl.StartPage.get -> int +System.Windows.Forms.PrintPreviewControl.StartPage.set -> void +System.Windows.Forms.PrintPreviewControl.StartPageChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewControl.TabStop.get -> bool +System.Windows.Forms.PrintPreviewControl.TabStop.set -> void +System.Windows.Forms.PrintPreviewControl.TextChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewControl.UseAntiAlias.get -> bool +System.Windows.Forms.PrintPreviewControl.UseAntiAlias.set -> void +System.Windows.Forms.PrintPreviewControl.Zoom.get -> double +System.Windows.Forms.PrintPreviewControl.Zoom.set -> void +System.Windows.Forms.PrintPreviewDialog +System.Windows.Forms.PrintPreviewDialog.AcceptButton.get -> System.Windows.Forms.IButtonControl? +System.Windows.Forms.PrintPreviewDialog.AcceptButton.set -> void +System.Windows.Forms.PrintPreviewDialog.AccessibleDescription.get -> string? +System.Windows.Forms.PrintPreviewDialog.AccessibleDescription.set -> void +System.Windows.Forms.PrintPreviewDialog.AccessibleName.get -> string? +System.Windows.Forms.PrintPreviewDialog.AccessibleName.set -> void +System.Windows.Forms.PrintPreviewDialog.AccessibleRole.get -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.PrintPreviewDialog.AccessibleRole.set -> void +System.Windows.Forms.PrintPreviewDialog.AutoScale.get -> bool +System.Windows.Forms.PrintPreviewDialog.AutoScale.set -> void +System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.PrintPreviewDialog.AutoScrollMargin.set -> void +System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.PrintPreviewDialog.AutoScrollMinSize.set -> void +System.Windows.Forms.PrintPreviewDialog.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.AutoValidateChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.BackColorChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.CancelButton.get -> System.Windows.Forms.IButtonControl? +System.Windows.Forms.PrintPreviewDialog.CancelButton.set -> void +System.Windows.Forms.PrintPreviewDialog.CausesValidation.get -> bool +System.Windows.Forms.PrintPreviewDialog.CausesValidation.set -> void +System.Windows.Forms.PrintPreviewDialog.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.ContextMenuStripChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.ControlBox.get -> bool +System.Windows.Forms.PrintPreviewDialog.ControlBox.set -> void +System.Windows.Forms.PrintPreviewDialog.CursorChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.DataBindings.get -> System.Windows.Forms.ControlBindingsCollection! +System.Windows.Forms.PrintPreviewDialog.DockChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! +System.Windows.Forms.PrintPreviewDialog.Document.get -> System.Drawing.Printing.PrintDocument? +System.Windows.Forms.PrintPreviewDialog.Document.set -> void +System.Windows.Forms.PrintPreviewDialog.Enabled.get -> bool +System.Windows.Forms.PrintPreviewDialog.Enabled.set -> void +System.Windows.Forms.PrintPreviewDialog.EnabledChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.FontChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.FormBorderStyle.get -> System.Windows.Forms.FormBorderStyle +System.Windows.Forms.PrintPreviewDialog.FormBorderStyle.set -> void +System.Windows.Forms.PrintPreviewDialog.HelpButton.get -> bool +System.Windows.Forms.PrintPreviewDialog.HelpButton.set -> void +System.Windows.Forms.PrintPreviewDialog.Icon.get -> System.Drawing.Icon? +System.Windows.Forms.PrintPreviewDialog.Icon.set -> void +System.Windows.Forms.PrintPreviewDialog.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.PrintPreviewDialog.ImeMode.set -> void +System.Windows.Forms.PrintPreviewDialog.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.IsMdiContainer.get -> bool +System.Windows.Forms.PrintPreviewDialog.IsMdiContainer.set -> void +System.Windows.Forms.PrintPreviewDialog.KeyPreview.get -> bool +System.Windows.Forms.PrintPreviewDialog.KeyPreview.set -> void +System.Windows.Forms.PrintPreviewDialog.Location.get -> System.Drawing.Point +System.Windows.Forms.PrintPreviewDialog.Location.set -> void +System.Windows.Forms.PrintPreviewDialog.LocationChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.Margin.get -> System.Windows.Forms.Padding +System.Windows.Forms.PrintPreviewDialog.Margin.set -> void +System.Windows.Forms.PrintPreviewDialog.MarginChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.MaximizeBox.get -> bool +System.Windows.Forms.PrintPreviewDialog.MaximizeBox.set -> void +System.Windows.Forms.PrintPreviewDialog.MaximumSize.get -> System.Drawing.Size +System.Windows.Forms.PrintPreviewDialog.MaximumSize.set -> void +System.Windows.Forms.PrintPreviewDialog.MaximumSizeChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.MinimizeBox.get -> bool +System.Windows.Forms.PrintPreviewDialog.MinimizeBox.set -> void +System.Windows.Forms.PrintPreviewDialog.MinimumSize.get -> System.Drawing.Size +System.Windows.Forms.PrintPreviewDialog.MinimumSize.set -> void +System.Windows.Forms.PrintPreviewDialog.MinimumSizeChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.Opacity.get -> double +System.Windows.Forms.PrintPreviewDialog.Opacity.set -> void +System.Windows.Forms.PrintPreviewDialog.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.PrintPreviewDialog.Padding.set -> void +System.Windows.Forms.PrintPreviewDialog.PaddingChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.PrintPreviewControl.get -> System.Windows.Forms.PrintPreviewControl! +System.Windows.Forms.PrintPreviewDialog.PrintPreviewDialog() -> void +System.Windows.Forms.PrintPreviewDialog.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar.get -> bool +System.Windows.Forms.PrintPreviewDialog.ShowInTaskbar.set -> void +System.Windows.Forms.PrintPreviewDialog.Size.get -> System.Drawing.Size +System.Windows.Forms.PrintPreviewDialog.Size.set -> void +System.Windows.Forms.PrintPreviewDialog.SizeChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.SizeGripStyle.get -> System.Windows.Forms.SizeGripStyle +System.Windows.Forms.PrintPreviewDialog.SizeGripStyle.set -> void +System.Windows.Forms.PrintPreviewDialog.StartPosition.get -> System.Windows.Forms.FormStartPosition +System.Windows.Forms.PrintPreviewDialog.StartPosition.set -> void +System.Windows.Forms.PrintPreviewDialog.TabStop.get -> bool +System.Windows.Forms.PrintPreviewDialog.TabStop.set -> void +System.Windows.Forms.PrintPreviewDialog.TabStopChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.Tag.get -> object? +System.Windows.Forms.PrintPreviewDialog.Tag.set -> void +System.Windows.Forms.PrintPreviewDialog.TextChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.TopMost.get -> bool +System.Windows.Forms.PrintPreviewDialog.TopMost.set -> void +System.Windows.Forms.PrintPreviewDialog.TransparencyKey.get -> System.Drawing.Color +System.Windows.Forms.PrintPreviewDialog.TransparencyKey.set -> void +System.Windows.Forms.PrintPreviewDialog.UseAntiAlias.get -> bool +System.Windows.Forms.PrintPreviewDialog.UseAntiAlias.set -> void +System.Windows.Forms.PrintPreviewDialog.UseWaitCursor.get -> bool +System.Windows.Forms.PrintPreviewDialog.UseWaitCursor.set -> void +System.Windows.Forms.PrintPreviewDialog.Visible.get -> bool +System.Windows.Forms.PrintPreviewDialog.Visible.set -> void +System.Windows.Forms.PrintPreviewDialog.VisibleChanged -> System.EventHandler? +System.Windows.Forms.PrintPreviewDialog.WindowState.get -> System.Windows.Forms.FormWindowState +System.Windows.Forms.PrintPreviewDialog.WindowState.set -> void +System.Windows.Forms.ProfessionalColors +System.Windows.Forms.ProfessionalColorTable +System.Windows.Forms.ProfessionalColorTable.ProfessionalColorTable() -> void +System.Windows.Forms.ProfessionalColorTable.UseSystemColors.get -> bool +System.Windows.Forms.ProfessionalColorTable.UseSystemColors.set -> void +System.Windows.Forms.ProgressBar +System.Windows.Forms.ProgressBar.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.CausesValidation.get -> bool +System.Windows.Forms.ProgressBar.CausesValidation.set -> void +System.Windows.Forms.ProgressBar.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.DoubleClick -> System.EventHandler? +System.Windows.Forms.ProgressBar.Enter -> System.EventHandler? +System.Windows.Forms.ProgressBar.FontChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.ProgressBar.ImeMode.set -> void +System.Windows.Forms.ProgressBar.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.Increment(int value) -> void +System.Windows.Forms.ProgressBar.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ProgressBar.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.ProgressBar.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ProgressBar.Leave -> System.EventHandler? +System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed.get -> int +System.Windows.Forms.ProgressBar.MarqueeAnimationSpeed.set -> void +System.Windows.Forms.ProgressBar.Maximum.get -> int +System.Windows.Forms.ProgressBar.Maximum.set -> void +System.Windows.Forms.ProgressBar.Minimum.get -> int +System.Windows.Forms.ProgressBar.Minimum.set -> void +System.Windows.Forms.ProgressBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ProgressBar.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.ProgressBar.Padding.set -> void +System.Windows.Forms.ProgressBar.PaddingChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ProgressBar.PerformStep() -> void +System.Windows.Forms.ProgressBar.ProgressBar() -> void +System.Windows.Forms.ProgressBar.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.Step.get -> int +System.Windows.Forms.ProgressBar.Step.set -> void +System.Windows.Forms.ProgressBar.Style.get -> System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.ProgressBar.Style.set -> void +System.Windows.Forms.ProgressBar.TabStop.get -> bool +System.Windows.Forms.ProgressBar.TabStop.set -> void +System.Windows.Forms.ProgressBar.TabStopChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.TextChanged -> System.EventHandler? +System.Windows.Forms.ProgressBar.Value.get -> int +System.Windows.Forms.ProgressBar.Value.set -> void +System.Windows.Forms.ProgressBarRenderer +System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.ProgressBarStyle.Blocks = 0 -> System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.ProgressBarStyle.Continuous = 1 -> System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.ProgressBarStyle.Marquee = 2 -> System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.PropertyGrid +System.Windows.Forms.PropertyGrid.BackgroundImageChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.BackgroundImageLayoutChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs.get -> bool +System.Windows.Forms.PropertyGrid.CanShowVisualStyleGlyphs.set -> void +System.Windows.Forms.PropertyGrid.CategoryForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CategoryForeColor.set -> void +System.Windows.Forms.PropertyGrid.CategorySplitterColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CategorySplitterColor.set -> void +System.Windows.Forms.PropertyGrid.CollapseAllGridItems() -> void +System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsActiveLinkColor.set -> void +System.Windows.Forms.PropertyGrid.CommandsBackColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsBackColor.set -> void +System.Windows.Forms.PropertyGrid.CommandsBorderColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsBorderColor.set -> void +System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsDisabledLinkColor.set -> void +System.Windows.Forms.PropertyGrid.CommandsForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsForeColor.set -> void +System.Windows.Forms.PropertyGrid.CommandsLinkColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.CommandsLinkColor.set -> void +System.Windows.Forms.PropertyGrid.ContextMenuDefaultLocation.get -> System.Drawing.Point +System.Windows.Forms.PropertyGrid.DisabledItemForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.DisabledItemForeColor.set -> void +System.Windows.Forms.PropertyGrid.DrawFlatToolbar.get -> bool +System.Windows.Forms.PropertyGrid.DrawFlatToolbar.set -> void +System.Windows.Forms.PropertyGrid.ExpandAllGridItems() -> void +System.Windows.Forms.PropertyGrid.ForeColorChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.HelpBackColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.HelpBackColor.set -> void +System.Windows.Forms.PropertyGrid.HelpBorderColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.HelpBorderColor.set -> void +System.Windows.Forms.PropertyGrid.HelpForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.HelpForeColor.set -> void +System.Windows.Forms.PropertyGrid.KeyDown -> System.Windows.Forms.KeyEventHandler +System.Windows.Forms.PropertyGrid.KeyPress -> System.Windows.Forms.KeyPressEventHandler +System.Windows.Forms.PropertyGrid.KeyUp -> System.Windows.Forms.KeyEventHandler +System.Windows.Forms.PropertyGrid.LargeButtons.get -> bool +System.Windows.Forms.PropertyGrid.LargeButtons.set -> void +System.Windows.Forms.PropertyGrid.LineColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.LineColor.set -> void +System.Windows.Forms.PropertyGrid.MouseDown -> System.Windows.Forms.MouseEventHandler +System.Windows.Forms.PropertyGrid.MouseEnter -> System.EventHandler +System.Windows.Forms.PropertyGrid.MouseLeave -> System.EventHandler +System.Windows.Forms.PropertyGrid.MouseMove -> System.Windows.Forms.MouseEventHandler +System.Windows.Forms.PropertyGrid.MouseUp -> System.Windows.Forms.MouseEventHandler +System.Windows.Forms.PropertyGrid.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.PropertyGrid.Padding.set -> void +System.Windows.Forms.PropertyGrid.PaddingChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.PropertyGrid() -> void +System.Windows.Forms.PropertyGrid.PropertySort.get -> System.Windows.Forms.PropertySort +System.Windows.Forms.PropertyGrid.PropertySort.set -> void +System.Windows.Forms.PropertyGrid.PropertySortChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.PropertyTabChanged -> System.Windows.Forms.PropertyTabChangedEventHandler +System.Windows.Forms.PropertyGrid.PropertyTabCollection +System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type! propertyTabType) -> void +System.Windows.Forms.PropertyGrid.PropertyTabCollection.AddTabType(System.Type! propertyTabType, System.ComponentModel.PropertyTabScope tabScope) -> void +System.Windows.Forms.PropertyGrid.PropertyTabCollection.Clear(System.ComponentModel.PropertyTabScope tabScope) -> void +System.Windows.Forms.PropertyGrid.PropertyTabCollection.Count.get -> int +System.Windows.Forms.PropertyGrid.PropertyTabCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.PropertyGrid.PropertyTabCollection.RemoveTabType(System.Type! propertyTabType) -> void +System.Windows.Forms.PropertyGrid.PropertyTabCollection.this[int index].get -> System.Windows.Forms.Design.PropertyTab! +System.Windows.Forms.PropertyGrid.PropertyValueChanged -> System.Windows.Forms.PropertyValueChangedEventHandler +System.Windows.Forms.PropertyGrid.RefreshTabs(System.ComponentModel.PropertyTabScope tabScope) -> void +System.Windows.Forms.PropertyGrid.ResetSelectedProperty() -> void +System.Windows.Forms.PropertyGrid.SelectedGridItemChanged -> System.Windows.Forms.SelectedGridItemChangedEventHandler +System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.SelectedItemWithFocusBackColor.set -> void +System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.SelectedItemWithFocusForeColor.set -> void +System.Windows.Forms.PropertyGrid.SelectedObjectsChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.ShowEventsButton(bool value) -> void +System.Windows.Forms.PropertyGrid.TextChanged -> System.EventHandler +System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering.get -> bool +System.Windows.Forms.PropertyGrid.UseCompatibleTextRendering.set -> void +System.Windows.Forms.PropertyGrid.ViewBackColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.ViewBackColor.set -> void +System.Windows.Forms.PropertyGrid.ViewBorderColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.ViewBorderColor.set -> void +System.Windows.Forms.PropertyGrid.ViewForeColor.get -> System.Drawing.Color +System.Windows.Forms.PropertyGrid.ViewForeColor.set -> void +System.Windows.Forms.PropertyGridInternal.IRootGridEntry +System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes.get -> System.ComponentModel.AttributeCollection! +System.Windows.Forms.PropertyGridInternal.IRootGridEntry.BrowsableAttributes.set -> void +System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ResetBrowsableAttributes() -> void +System.Windows.Forms.PropertyGridInternal.IRootGridEntry.ShowCategories(bool showCategories) -> void +System.Windows.Forms.PropertyGridInternal.PropertiesTab +System.Windows.Forms.PropertyGridInternal.PropertiesTab.PropertiesTab() -> void +System.Windows.Forms.PropertyGridInternal.PropertyGridCommands +System.Windows.Forms.PropertyGridInternal.PropertyGridCommands.PropertyGridCommands() -> void +System.Windows.Forms.PropertyManager +System.Windows.Forms.PropertyManager.PropertyManager() -> void +System.Windows.Forms.PropertySort +System.Windows.Forms.PropertySort.Alphabetical = 1 -> System.Windows.Forms.PropertySort +System.Windows.Forms.PropertySort.Categorized = 2 -> System.Windows.Forms.PropertySort +System.Windows.Forms.PropertySort.CategorizedAlphabetical = 3 -> System.Windows.Forms.PropertySort +System.Windows.Forms.PropertySort.NoSort = 0 -> System.Windows.Forms.PropertySort +System.Windows.Forms.PropertyTabChangedEventArgs +System.Windows.Forms.PropertyTabChangedEventArgs.NewTab.get -> System.Windows.Forms.Design.PropertyTab? +System.Windows.Forms.PropertyTabChangedEventArgs.OldTab.get -> System.Windows.Forms.Design.PropertyTab? +System.Windows.Forms.PropertyTabChangedEventArgs.PropertyTabChangedEventArgs(System.Windows.Forms.Design.PropertyTab? oldTab, System.Windows.Forms.Design.PropertyTab? newTab) -> void +System.Windows.Forms.PropertyTabChangedEventHandler +System.Windows.Forms.PropertyValueChangedEventArgs +System.Windows.Forms.PropertyValueChangedEventArgs.ChangedItem.get -> System.Windows.Forms.GridItem? +System.Windows.Forms.PropertyValueChangedEventArgs.OldValue.get -> object? +System.Windows.Forms.PropertyValueChangedEventArgs.PropertyValueChangedEventArgs(System.Windows.Forms.GridItem? changedItem, object? oldValue) -> void +System.Windows.Forms.PropertyValueChangedEventHandler +System.Windows.Forms.QueryAccessibilityHelpEventArgs +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword.get -> string? +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpKeyword.set -> void +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace.get -> string? +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpNamespace.set -> void +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString.get -> string? +System.Windows.Forms.QueryAccessibilityHelpEventArgs.HelpString.set -> void +System.Windows.Forms.QueryAccessibilityHelpEventArgs.QueryAccessibilityHelpEventArgs() -> void +System.Windows.Forms.QueryAccessibilityHelpEventArgs.QueryAccessibilityHelpEventArgs(string? helpNamespace, string? helpString, string? helpKeyword) -> void +System.Windows.Forms.QueryAccessibilityHelpEventHandler +System.Windows.Forms.QueryContinueDragEventArgs +System.Windows.Forms.QueryContinueDragEventArgs.Action.get -> System.Windows.Forms.DragAction +System.Windows.Forms.QueryContinueDragEventArgs.Action.set -> void +System.Windows.Forms.QueryContinueDragEventArgs.EscapePressed.get -> bool +System.Windows.Forms.QueryContinueDragEventArgs.KeyState.get -> int +System.Windows.Forms.QueryContinueDragEventArgs.QueryContinueDragEventArgs(int keyState, bool escapePressed, System.Windows.Forms.DragAction action) -> void +System.Windows.Forms.QueryContinueDragEventHandler +System.Windows.Forms.QuestionEventArgs +System.Windows.Forms.QuestionEventArgs.QuestionEventArgs() -> void +System.Windows.Forms.QuestionEventArgs.QuestionEventArgs(bool response) -> void +System.Windows.Forms.QuestionEventArgs.Response.get -> bool +System.Windows.Forms.QuestionEventArgs.Response.set -> void +System.Windows.Forms.QuestionEventHandler +System.Windows.Forms.RadioButton +System.Windows.Forms.RadioButton.Appearance.get -> System.Windows.Forms.Appearance +System.Windows.Forms.RadioButton.Appearance.set -> void +System.Windows.Forms.RadioButton.AppearanceChanged -> System.EventHandler? +System.Windows.Forms.RadioButton.AutoCheck.get -> bool +System.Windows.Forms.RadioButton.AutoCheck.set -> void +System.Windows.Forms.RadioButton.CheckAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.RadioButton.CheckAlign.set -> void +System.Windows.Forms.RadioButton.Checked.get -> bool +System.Windows.Forms.RadioButton.Checked.set -> void +System.Windows.Forms.RadioButton.CheckedChanged -> System.EventHandler? +System.Windows.Forms.RadioButton.DoubleClick -> System.EventHandler? +System.Windows.Forms.RadioButton.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.RadioButton.PerformClick() -> void +System.Windows.Forms.RadioButton.RadioButton() -> void +System.Windows.Forms.RadioButton.RadioButtonAccessibleObject +System.Windows.Forms.RadioButton.RadioButtonAccessibleObject.RadioButtonAccessibleObject(System.Windows.Forms.RadioButton! owner) -> void +System.Windows.Forms.RadioButton.TabStop.get -> bool +System.Windows.Forms.RadioButton.TabStop.set -> void +System.Windows.Forms.RadioButtonRenderer +System.Windows.Forms.RelatedImageListAttribute +System.Windows.Forms.RelatedImageListAttribute.RelatedImageList.get -> string? +System.Windows.Forms.RelatedImageListAttribute.RelatedImageListAttribute(string? relatedImageList) -> void +System.Windows.Forms.RetrieveVirtualItemEventArgs +System.Windows.Forms.RetrieveVirtualItemEventArgs.Item.get -> System.Windows.Forms.ListViewItem? +System.Windows.Forms.RetrieveVirtualItemEventArgs.Item.set -> void +System.Windows.Forms.RetrieveVirtualItemEventArgs.ItemIndex.get -> int +System.Windows.Forms.RetrieveVirtualItemEventArgs.RetrieveVirtualItemEventArgs(int itemIndex) -> void +System.Windows.Forms.RetrieveVirtualItemEventHandler +System.Windows.Forms.RichTextBox +System.Windows.Forms.RichTextBox.AutoWordSelection.get -> bool +System.Windows.Forms.RichTextBox.AutoWordSelection.set -> void +System.Windows.Forms.RichTextBox.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.RichTextBox.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.RichTextBox.BulletIndent.get -> int +System.Windows.Forms.RichTextBox.BulletIndent.set -> void +System.Windows.Forms.RichTextBox.CanPaste(System.Windows.Forms.DataFormats.Format! clipFormat) -> bool +System.Windows.Forms.RichTextBox.CanRedo.get -> bool +System.Windows.Forms.RichTextBox.ContentsResized -> System.Windows.Forms.ContentsResizedEventHandler? +System.Windows.Forms.RichTextBox.DetectUrls.get -> bool +System.Windows.Forms.RichTextBox.DetectUrls.set -> void +System.Windows.Forms.RichTextBox.DragDrop -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.RichTextBox.DragEnter -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.RichTextBox.DragLeave -> System.EventHandler? +System.Windows.Forms.RichTextBox.DragOver -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.RichTextBox.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void +System.Windows.Forms.RichTextBox.EnableAutoDragDrop.get -> bool +System.Windows.Forms.RichTextBox.EnableAutoDragDrop.set -> void +System.Windows.Forms.RichTextBox.Find(char[]! characterSet) -> int +System.Windows.Forms.RichTextBox.Find(char[]! characterSet, int start) -> int +System.Windows.Forms.RichTextBox.Find(char[]! characterSet, int start, int end) -> int +System.Windows.Forms.RichTextBox.Find(string! str) -> int +System.Windows.Forms.RichTextBox.Find(string! str, int start, int end, System.Windows.Forms.RichTextBoxFinds options) -> int +System.Windows.Forms.RichTextBox.Find(string! str, int start, System.Windows.Forms.RichTextBoxFinds options) -> int +System.Windows.Forms.RichTextBox.Find(string! str, System.Windows.Forms.RichTextBoxFinds options) -> int +System.Windows.Forms.RichTextBox.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.RichTextBox.HScroll -> System.EventHandler? +System.Windows.Forms.RichTextBox.ImeChange -> System.EventHandler? +System.Windows.Forms.RichTextBox.LanguageOption.get -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBox.LanguageOption.set -> void +System.Windows.Forms.RichTextBox.LinkClicked -> System.Windows.Forms.LinkClickedEventHandler? +System.Windows.Forms.RichTextBox.LoadFile(string! path) -> void +System.Windows.Forms.RichTextBox.LoadFile(string! path, System.Windows.Forms.RichTextBoxStreamType fileType) -> void +System.Windows.Forms.RichTextBox.LoadFile(System.IO.Stream! data, System.Windows.Forms.RichTextBoxStreamType fileType) -> void +System.Windows.Forms.RichTextBox.Paste(System.Windows.Forms.DataFormats.Format! clipFormat) -> void +System.Windows.Forms.RichTextBox.Protected -> System.EventHandler? +System.Windows.Forms.RichTextBox.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? +System.Windows.Forms.RichTextBox.Redo() -> void +System.Windows.Forms.RichTextBox.RedoActionName.get -> string! +System.Windows.Forms.RichTextBox.RichTextBox() -> void +System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled.get -> bool +System.Windows.Forms.RichTextBox.RichTextShortcutsEnabled.set -> void +System.Windows.Forms.RichTextBox.RightMargin.get -> int +System.Windows.Forms.RichTextBox.RightMargin.set -> void +System.Windows.Forms.RichTextBox.Rtf.get -> string? +System.Windows.Forms.RichTextBox.Rtf.set -> void +System.Windows.Forms.RichTextBox.SaveFile(string! path) -> void +System.Windows.Forms.RichTextBox.SaveFile(string! path, System.Windows.Forms.RichTextBoxStreamType fileType) -> void +System.Windows.Forms.RichTextBox.SaveFile(System.IO.Stream! data, System.Windows.Forms.RichTextBoxStreamType fileType) -> void +System.Windows.Forms.RichTextBox.ScrollBars.get -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBox.ScrollBars.set -> void +System.Windows.Forms.RichTextBox.SelectedRtf.get -> string! +System.Windows.Forms.RichTextBox.SelectedRtf.set -> void +System.Windows.Forms.RichTextBox.SelectionAlignment.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.RichTextBox.SelectionAlignment.set -> void +System.Windows.Forms.RichTextBox.SelectionBackColor.get -> System.Drawing.Color +System.Windows.Forms.RichTextBox.SelectionBackColor.set -> void +System.Windows.Forms.RichTextBox.SelectionBullet.get -> bool +System.Windows.Forms.RichTextBox.SelectionBullet.set -> void +System.Windows.Forms.RichTextBox.SelectionChanged -> System.EventHandler? +System.Windows.Forms.RichTextBox.SelectionCharOffset.get -> int +System.Windows.Forms.RichTextBox.SelectionCharOffset.set -> void +System.Windows.Forms.RichTextBox.SelectionColor.get -> System.Drawing.Color +System.Windows.Forms.RichTextBox.SelectionColor.set -> void +System.Windows.Forms.RichTextBox.SelectionFont.get -> System.Drawing.Font? +System.Windows.Forms.RichTextBox.SelectionFont.set -> void +System.Windows.Forms.RichTextBox.SelectionHangingIndent.get -> int +System.Windows.Forms.RichTextBox.SelectionHangingIndent.set -> void +System.Windows.Forms.RichTextBox.SelectionIndent.get -> int +System.Windows.Forms.RichTextBox.SelectionIndent.set -> void +System.Windows.Forms.RichTextBox.SelectionProtected.get -> bool +System.Windows.Forms.RichTextBox.SelectionProtected.set -> void +System.Windows.Forms.RichTextBox.SelectionRightIndent.get -> int +System.Windows.Forms.RichTextBox.SelectionRightIndent.set -> void +System.Windows.Forms.RichTextBox.SelectionTabs.get -> int[]! +System.Windows.Forms.RichTextBox.SelectionTabs.set -> void +System.Windows.Forms.RichTextBox.SelectionType.get -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBox.ShowSelectionMargin.get -> bool +System.Windows.Forms.RichTextBox.ShowSelectionMargin.set -> void +System.Windows.Forms.RichTextBox.UndoActionName.get -> string! +System.Windows.Forms.RichTextBox.VScroll -> System.EventHandler? +System.Windows.Forms.RichTextBox.ZoomFactor.get -> float +System.Windows.Forms.RichTextBox.ZoomFactor.set -> void +System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxFinds.MatchCase = 4 -> System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxFinds.NoHighlight = 8 -> System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxFinds.None = 0 -> System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxFinds.Reverse = 16 -> System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxFinds.WholeWord = 2 -> System.Windows.Forms.RichTextBoxFinds +System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.AutoFont = 2 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.AutoFontSizeAdjust = 16 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.AutoKeyboard = 1 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.DualFont = 128 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.ImeAlwaysSendNotify = 8 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.ImeCancelComplete = 4 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxLanguageOptions.UIFonts = 32 -> System.Windows.Forms.RichTextBoxLanguageOptions +System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.Both = 3 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth = 19 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.ForcedHorizontal = 17 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical = 18 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.Horizontal = 1 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.None = 0 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxScrollBars.Vertical = 2 -> System.Windows.Forms.RichTextBoxScrollBars +System.Windows.Forms.RichTextBoxSelectionAttribute +System.Windows.Forms.RichTextBoxSelectionAttribute.All = 1 -> System.Windows.Forms.RichTextBoxSelectionAttribute +System.Windows.Forms.RichTextBoxSelectionAttribute.Mixed = -1 -> System.Windows.Forms.RichTextBoxSelectionAttribute +System.Windows.Forms.RichTextBoxSelectionAttribute.None = 0 -> System.Windows.Forms.RichTextBoxSelectionAttribute +System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxSelectionTypes.Empty = 0 -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxSelectionTypes.MultiChar = 4 -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxSelectionTypes.MultiObject = 8 -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxSelectionTypes.Object = 2 -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxSelectionTypes.Text = 1 -> System.Windows.Forms.RichTextBoxSelectionTypes +System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxStreamType.PlainText = 1 -> System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxStreamType.RichNoOleObjs = 2 -> System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxStreamType.RichText = 0 -> System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxStreamType.TextTextOleObjs = 3 -> System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxStreamType.UnicodePlainText = 4 -> System.Windows.Forms.RichTextBoxStreamType +System.Windows.Forms.RichTextBoxWordPunctuations +System.Windows.Forms.RichTextBoxWordPunctuations.All = 896 -> System.Windows.Forms.RichTextBoxWordPunctuations +System.Windows.Forms.RichTextBoxWordPunctuations.Custom = 512 -> System.Windows.Forms.RichTextBoxWordPunctuations +System.Windows.Forms.RichTextBoxWordPunctuations.Level1 = 128 -> System.Windows.Forms.RichTextBoxWordPunctuations +System.Windows.Forms.RichTextBoxWordPunctuations.Level2 = 256 -> System.Windows.Forms.RichTextBoxWordPunctuations +System.Windows.Forms.RightToLeft +System.Windows.Forms.RightToLeft.Inherit = 2 -> System.Windows.Forms.RightToLeft +System.Windows.Forms.RightToLeft.No = 0 -> System.Windows.Forms.RightToLeft +System.Windows.Forms.RightToLeft.Yes = 1 -> System.Windows.Forms.RightToLeft +System.Windows.Forms.RowStyle +System.Windows.Forms.RowStyle.Height.get -> float +System.Windows.Forms.RowStyle.Height.set -> void +System.Windows.Forms.RowStyle.RowStyle() -> void +System.Windows.Forms.RowStyle.RowStyle(System.Windows.Forms.SizeType sizeType) -> void +System.Windows.Forms.RowStyle.RowStyle(System.Windows.Forms.SizeType sizeType, float height) -> void +System.Windows.Forms.SaveFileDialog +System.Windows.Forms.SaveFileDialog.CheckWriteAccess.get -> bool +System.Windows.Forms.SaveFileDialog.CheckWriteAccess.set -> void +System.Windows.Forms.SaveFileDialog.CreatePrompt.get -> bool +System.Windows.Forms.SaveFileDialog.CreatePrompt.set -> void +System.Windows.Forms.SaveFileDialog.ExpandedMode.get -> bool +System.Windows.Forms.SaveFileDialog.ExpandedMode.set -> void +System.Windows.Forms.SaveFileDialog.OpenFile() -> System.IO.Stream! +System.Windows.Forms.SaveFileDialog.OverwritePrompt.get -> bool +System.Windows.Forms.SaveFileDialog.OverwritePrompt.set -> void +System.Windows.Forms.SaveFileDialog.SaveFileDialog() -> void +System.Windows.Forms.Screen +System.Windows.Forms.Screen.BitsPerPixel.get -> int +System.Windows.Forms.Screen.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.Screen.DeviceName.get -> string! +System.Windows.Forms.Screen.Primary.get -> bool +System.Windows.Forms.Screen.WorkingArea.get -> System.Drawing.Rectangle +System.Windows.Forms.ScrollableControl +System.Windows.Forms.ScrollableControl.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.ScrollableControl.AutoScrollMargin.set -> void +System.Windows.Forms.ScrollableControl.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.ScrollableControl.AutoScrollMinSize.set -> void +System.Windows.Forms.ScrollableControl.AutoScrollPosition.get -> System.Drawing.Point +System.Windows.Forms.ScrollableControl.AutoScrollPosition.set -> void +System.Windows.Forms.ScrollableControl.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! +System.Windows.Forms.ScrollableControl.DockPaddingEdges +System.Windows.Forms.ScrollableControl.DockPaddingEdges.All.get -> int +System.Windows.Forms.ScrollableControl.DockPaddingEdges.All.set -> void +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom.get -> int +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Bottom.set -> void +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left.get -> int +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Left.set -> void +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right.get -> int +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Right.set -> void +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top.get -> int +System.Windows.Forms.ScrollableControl.DockPaddingEdges.Top.set -> void +System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter +System.Windows.Forms.ScrollableControl.DockPaddingEdgesConverter.DockPaddingEdgesConverter() -> void +System.Windows.Forms.ScrollableControl.GetScrollState(int bit) -> bool +System.Windows.Forms.ScrollableControl.HorizontalScroll.get -> System.Windows.Forms.HScrollProperties! +System.Windows.Forms.ScrollableControl.HScroll.get -> bool +System.Windows.Forms.ScrollableControl.HScroll.set -> void +System.Windows.Forms.ScrollableControl.Scroll -> System.Windows.Forms.ScrollEventHandler? +System.Windows.Forms.ScrollableControl.ScrollableControl() -> void +System.Windows.Forms.ScrollableControl.ScrollControlIntoView(System.Windows.Forms.Control? activeControl) -> void +System.Windows.Forms.ScrollableControl.SetAutoScrollMargin(int x, int y) -> void +System.Windows.Forms.ScrollableControl.SetDisplayRectLocation(int x, int y) -> void +System.Windows.Forms.ScrollableControl.SetScrollState(int bit, bool value) -> void +System.Windows.Forms.ScrollableControl.VerticalScroll.get -> System.Windows.Forms.VScrollProperties! +System.Windows.Forms.ScrollableControl.VScroll.get -> bool +System.Windows.Forms.ScrollableControl.VScroll.set -> void +System.Windows.Forms.ScrollBar +System.Windows.Forms.ScrollBar.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.BackColorChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.Click -> System.EventHandler? +System.Windows.Forms.ScrollBar.DoubleClick -> System.EventHandler? +System.Windows.Forms.ScrollBar.FontChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.ScrollBar.ImeMode.set -> void +System.Windows.Forms.ScrollBar.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.LargeChange.get -> int +System.Windows.Forms.ScrollBar.LargeChange.set -> void +System.Windows.Forms.ScrollBar.Maximum.get -> int +System.Windows.Forms.ScrollBar.Maximum.set -> void +System.Windows.Forms.ScrollBar.Minimum.get -> int +System.Windows.Forms.ScrollBar.Minimum.set -> void +System.Windows.Forms.ScrollBar.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ScrollBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ScrollBar.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ScrollBar.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ScrollBar.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ScrollBar.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange.get -> bool +System.Windows.Forms.ScrollBar.ScaleScrollBarForDpiChange.set -> void +System.Windows.Forms.ScrollBar.Scroll -> System.Windows.Forms.ScrollEventHandler? +System.Windows.Forms.ScrollBar.ScrollBar() -> void +System.Windows.Forms.ScrollBar.SmallChange.get -> int +System.Windows.Forms.ScrollBar.SmallChange.set -> void +System.Windows.Forms.ScrollBar.TabStop.get -> bool +System.Windows.Forms.ScrollBar.TabStop.set -> void +System.Windows.Forms.ScrollBar.TextChanged -> System.EventHandler? +System.Windows.Forms.ScrollBar.UpdateScrollInfo() -> void +System.Windows.Forms.ScrollBar.Value.get -> int +System.Windows.Forms.ScrollBar.Value.set -> void +System.Windows.Forms.ScrollBar.ValueChanged -> System.EventHandler? +System.Windows.Forms.ScrollBarRenderer +System.Windows.Forms.ScrollBars +System.Windows.Forms.ScrollBars.Both = 3 -> System.Windows.Forms.ScrollBars +System.Windows.Forms.ScrollBars.Horizontal = 1 -> System.Windows.Forms.ScrollBars +System.Windows.Forms.ScrollBars.None = 0 -> System.Windows.Forms.ScrollBars +System.Windows.Forms.ScrollBars.Vertical = 2 -> System.Windows.Forms.ScrollBars +System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Down = 1 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Left = 2 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Max = 3 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Min = 0 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Right = 3 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollButton.Up = 0 -> System.Windows.Forms.ScrollButton +System.Windows.Forms.ScrollEventArgs +System.Windows.Forms.ScrollEventArgs.NewValue.get -> int +System.Windows.Forms.ScrollEventArgs.NewValue.set -> void +System.Windows.Forms.ScrollEventArgs.OldValue.get -> int +System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int newValue) -> void +System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int newValue, System.Windows.Forms.ScrollOrientation scroll) -> void +System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int oldValue, int newValue) -> void +System.Windows.Forms.ScrollEventArgs.ScrollEventArgs(System.Windows.Forms.ScrollEventType type, int oldValue, int newValue, System.Windows.Forms.ScrollOrientation scroll) -> void +System.Windows.Forms.ScrollEventArgs.ScrollOrientation.get -> System.Windows.Forms.ScrollOrientation +System.Windows.Forms.ScrollEventArgs.Type.get -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventHandler +System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.EndScroll = 8 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.First = 6 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.LargeDecrement = 2 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.LargeIncrement = 3 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.Last = 7 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.SmallDecrement = 0 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.SmallIncrement = 1 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.ThumbPosition = 4 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollEventType.ThumbTrack = 5 -> System.Windows.Forms.ScrollEventType +System.Windows.Forms.ScrollOrientation +System.Windows.Forms.ScrollOrientation.HorizontalScroll = 0 -> System.Windows.Forms.ScrollOrientation +System.Windows.Forms.ScrollOrientation.VerticalScroll = 1 -> System.Windows.Forms.ScrollOrientation +System.Windows.Forms.ScrollProperties +System.Windows.Forms.ScrollProperties.Enabled.get -> bool +System.Windows.Forms.ScrollProperties.Enabled.set -> void +System.Windows.Forms.ScrollProperties.LargeChange.get -> int +System.Windows.Forms.ScrollProperties.LargeChange.set -> void +System.Windows.Forms.ScrollProperties.Maximum.get -> int +System.Windows.Forms.ScrollProperties.Maximum.set -> void +System.Windows.Forms.ScrollProperties.Minimum.get -> int +System.Windows.Forms.ScrollProperties.Minimum.set -> void +System.Windows.Forms.ScrollProperties.ParentControl.get -> System.Windows.Forms.ScrollableControl? +System.Windows.Forms.ScrollProperties.ScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void +System.Windows.Forms.ScrollProperties.SmallChange.get -> int +System.Windows.Forms.ScrollProperties.SmallChange.set -> void +System.Windows.Forms.ScrollProperties.Value.get -> int +System.Windows.Forms.ScrollProperties.Value.set -> void +System.Windows.Forms.ScrollProperties.Visible.get -> bool +System.Windows.Forms.ScrollProperties.Visible.set -> void +System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchDirectionHint.Down = 40 -> System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchDirectionHint.Left = 37 -> System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchDirectionHint.Right = 39 -> System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchDirectionHint.Up = 38 -> System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchForVirtualItemEventArgs +System.Windows.Forms.SearchForVirtualItemEventArgs.Direction.get -> System.Windows.Forms.SearchDirectionHint +System.Windows.Forms.SearchForVirtualItemEventArgs.IncludeSubItemsInSearch.get -> bool +System.Windows.Forms.SearchForVirtualItemEventArgs.Index.get -> int +System.Windows.Forms.SearchForVirtualItemEventArgs.Index.set -> void +System.Windows.Forms.SearchForVirtualItemEventArgs.IsPrefixSearch.get -> bool +System.Windows.Forms.SearchForVirtualItemEventArgs.IsTextSearch.get -> bool +System.Windows.Forms.SearchForVirtualItemEventArgs.SearchForVirtualItemEventArgs(bool isTextSearch, bool isPrefixSearch, bool includeSubItemsInSearch, string? text, System.Drawing.Point startingPoint, System.Windows.Forms.SearchDirectionHint direction, int startIndex) -> void +System.Windows.Forms.SearchForVirtualItemEventArgs.StartIndex.get -> int +System.Windows.Forms.SearchForVirtualItemEventArgs.StartingPoint.get -> System.Drawing.Point +System.Windows.Forms.SearchForVirtualItemEventArgs.Text.get -> string? +System.Windows.Forms.SearchForVirtualItemEventHandler +System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Alias = 4 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Computer = 9 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.DeletedAccount = 6 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Domain = 3 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Group = 2 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Invalid = 7 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.Unknown = 8 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.User = 1 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SecurityIDType.WellKnownGroup = 5 -> System.Windows.Forms.SecurityIDType +System.Windows.Forms.SelectedGridItemChangedEventArgs +System.Windows.Forms.SelectedGridItemChangedEventArgs.NewSelection.get -> System.Windows.Forms.GridItem? +System.Windows.Forms.SelectedGridItemChangedEventArgs.OldSelection.get -> System.Windows.Forms.GridItem? +System.Windows.Forms.SelectedGridItemChangedEventArgs.SelectedGridItemChangedEventArgs(System.Windows.Forms.GridItem? oldSel, System.Windows.Forms.GridItem? newSel) -> void +System.Windows.Forms.SelectedGridItemChangedEventHandler +System.Windows.Forms.SelectionMode +System.Windows.Forms.SelectionMode.MultiExtended = 3 -> System.Windows.Forms.SelectionMode +System.Windows.Forms.SelectionMode.MultiSimple = 2 -> System.Windows.Forms.SelectionMode +System.Windows.Forms.SelectionMode.None = 0 -> System.Windows.Forms.SelectionMode +System.Windows.Forms.SelectionMode.One = 1 -> System.Windows.Forms.SelectionMode +System.Windows.Forms.SelectionRange +System.Windows.Forms.SelectionRange.End.get -> System.DateTime +System.Windows.Forms.SelectionRange.End.set -> void +System.Windows.Forms.SelectionRange.SelectionRange() -> void +System.Windows.Forms.SelectionRange.SelectionRange(System.DateTime lower, System.DateTime upper) -> void +System.Windows.Forms.SelectionRange.SelectionRange(System.Windows.Forms.SelectionRange! range) -> void +System.Windows.Forms.SelectionRange.Start.get -> System.DateTime +System.Windows.Forms.SelectionRange.Start.set -> void +System.Windows.Forms.SelectionRangeConverter +System.Windows.Forms.SelectionRangeConverter.SelectionRangeConverter() -> void +System.Windows.Forms.SendKeys +System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt0 = 262192 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt1 = 262193 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt2 = 262194 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt3 = 262195 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt4 = 262196 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt5 = 262197 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt6 = 262198 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt7 = 262199 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt8 = 262200 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Alt9 = 262201 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltBksp = 262152 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltDownArrow = 262184 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF1 = 262256 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF10 = 262265 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF11 = 262266 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF12 = 262267 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF2 = 262257 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF3 = 262258 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF4 = 262259 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF5 = 262260 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF6 = 262261 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF7 = 262262 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF8 = 262263 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltF9 = 262264 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltLeftArrow = 262181 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltRightArrow = 262183 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.AltUpArrow = 262182 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl0 = 131120 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl1 = 131121 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl2 = 131122 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl3 = 131123 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl4 = 131124 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl5 = 131125 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl6 = 131126 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl7 = 131127 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl8 = 131128 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ctrl9 = 131129 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlA = 131137 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlB = 131138 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlC = 131139 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlD = 131140 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlDel = 131118 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlE = 131141 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF = 131142 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF1 = 131184 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF10 = 131193 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF11 = 131194 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF12 = 131195 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF2 = 131185 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF3 = 131186 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF4 = 131187 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF5 = 131188 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF6 = 131189 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF7 = 131190 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF8 = 131191 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlF9 = 131192 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlG = 131143 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlH = 131144 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlI = 131145 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlIns = 131117 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlJ = 131146 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlK = 131147 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlL = 131148 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlM = 131149 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlN = 131150 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlO = 131151 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlP = 131152 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlQ = 131153 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlR = 131154 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlS = 131155 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift0 = 196656 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift1 = 196657 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift2 = 196658 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift3 = 196659 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift4 = 196660 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift5 = 196661 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift6 = 196662 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift7 = 196663 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift8 = 196664 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShift9 = 196665 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftA = 196673 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftB = 196674 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftC = 196675 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftD = 196676 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftE = 196677 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF = 196678 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF1 = 196720 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF10 = 196729 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF11 = 196730 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF12 = 196731 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF2 = 196721 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF3 = 196722 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF4 = 196723 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF5 = 196724 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF6 = 196725 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF7 = 196726 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF8 = 196727 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftF9 = 196728 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftG = 196679 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftH = 196680 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftI = 196681 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftJ = 196682 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftK = 196683 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftL = 196684 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftM = 196685 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftN = 196686 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftO = 196687 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftP = 196688 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftQ = 196689 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftR = 196690 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftS = 196691 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftT = 196692 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftU = 196693 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftV = 196694 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftW = 196695 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftX = 196696 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftY = 196697 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlShiftZ = 196698 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlT = 131156 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlU = 131157 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlV = 131158 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlW = 131159 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlX = 131160 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlY = 131161 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.CtrlZ = 131162 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Del = 46 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F1 = 112 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F10 = 121 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F11 = 122 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F12 = 123 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F2 = 113 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F3 = 114 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F4 = 115 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F5 = 116 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F6 = 117 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F7 = 118 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F8 = 119 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.F9 = 120 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.Ins = 45 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.None = 0 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftDel = 65582 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF1 = 65648 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF10 = 65657 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF11 = 65658 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF12 = 65659 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF2 = 65649 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF3 = 65650 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF4 = 65651 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF5 = 65652 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF6 = 65653 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF7 = 65654 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF8 = 65655 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftF9 = 65656 -> System.Windows.Forms.Shortcut +System.Windows.Forms.Shortcut.ShiftIns = 65581 -> System.Windows.Forms.Shortcut +System.Windows.Forms.SizeGripStyle +System.Windows.Forms.SizeGripStyle.Auto = 0 -> System.Windows.Forms.SizeGripStyle +System.Windows.Forms.SizeGripStyle.Hide = 2 -> System.Windows.Forms.SizeGripStyle +System.Windows.Forms.SizeGripStyle.Show = 1 -> System.Windows.Forms.SizeGripStyle +System.Windows.Forms.SizeType +System.Windows.Forms.SizeType.Absolute = 1 -> System.Windows.Forms.SizeType +System.Windows.Forms.SizeType.AutoSize = 0 -> System.Windows.Forms.SizeType +System.Windows.Forms.SizeType.Percent = 2 -> System.Windows.Forms.SizeType +System.Windows.Forms.SortOrder +System.Windows.Forms.SortOrder.Ascending = 1 -> System.Windows.Forms.SortOrder +System.Windows.Forms.SortOrder.Descending = 2 -> System.Windows.Forms.SortOrder +System.Windows.Forms.SortOrder.None = 0 -> System.Windows.Forms.SortOrder +System.Windows.Forms.SplitContainer +System.Windows.Forms.SplitContainer.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.SplitContainer.AutoScrollMargin.set -> void +System.Windows.Forms.SplitContainer.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.SplitContainer.AutoScrollMinSize.set -> void +System.Windows.Forms.SplitContainer.AutoScrollPosition.get -> System.Drawing.Point +System.Windows.Forms.SplitContainer.AutoScrollPosition.set -> void +System.Windows.Forms.SplitContainer.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.SplitContainer.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.SplitContainer.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.SplitContainer.BeginInit() -> void +System.Windows.Forms.SplitContainer.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.SplitContainer.BorderStyle.set -> void +System.Windows.Forms.SplitContainer.ControlAdded -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.SplitContainer.ControlRemoved -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.SplitContainer.Controls.get -> System.Windows.Forms.Control.ControlCollection! +System.Windows.Forms.SplitContainer.Dock.get -> System.Windows.Forms.DockStyle +System.Windows.Forms.SplitContainer.Dock.set -> void +System.Windows.Forms.SplitContainer.EndInit() -> void +System.Windows.Forms.SplitContainer.FixedPanel.get -> System.Windows.Forms.FixedPanel +System.Windows.Forms.SplitContainer.FixedPanel.set -> void +System.Windows.Forms.SplitContainer.IsSplitterFixed.get -> bool +System.Windows.Forms.SplitContainer.IsSplitterFixed.set -> void +System.Windows.Forms.SplitContainer.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs! e) -> void +System.Windows.Forms.SplitContainer.OnSplitterMoving(System.Windows.Forms.SplitterCancelEventArgs! e) -> void +System.Windows.Forms.SplitContainer.Orientation.get -> System.Windows.Forms.Orientation +System.Windows.Forms.SplitContainer.Orientation.set -> void +System.Windows.Forms.SplitContainer.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.SplitContainer.Padding.set -> void +System.Windows.Forms.SplitContainer.PaddingChanged -> System.EventHandler? +System.Windows.Forms.SplitContainer.Panel1.get -> System.Windows.Forms.SplitterPanel! +System.Windows.Forms.SplitContainer.Panel1Collapsed.get -> bool +System.Windows.Forms.SplitContainer.Panel1Collapsed.set -> void +System.Windows.Forms.SplitContainer.Panel1MinSize.get -> int +System.Windows.Forms.SplitContainer.Panel1MinSize.set -> void +System.Windows.Forms.SplitContainer.Panel2.get -> System.Windows.Forms.SplitterPanel! +System.Windows.Forms.SplitContainer.Panel2Collapsed.get -> bool +System.Windows.Forms.SplitContainer.Panel2Collapsed.set -> void +System.Windows.Forms.SplitContainer.Panel2MinSize.get -> int +System.Windows.Forms.SplitContainer.Panel2MinSize.set -> void +System.Windows.Forms.SplitContainer.SplitContainer() -> void +System.Windows.Forms.SplitContainer.SplitterDistance.get -> int +System.Windows.Forms.SplitContainer.SplitterDistance.set -> void +System.Windows.Forms.SplitContainer.SplitterIncrement.get -> int +System.Windows.Forms.SplitContainer.SplitterIncrement.set -> void +System.Windows.Forms.SplitContainer.SplitterMoved -> System.Windows.Forms.SplitterEventHandler? +System.Windows.Forms.SplitContainer.SplitterMoving -> System.Windows.Forms.SplitterCancelEventHandler? +System.Windows.Forms.SplitContainer.SplitterRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.SplitContainer.SplitterWidth.get -> int +System.Windows.Forms.SplitContainer.SplitterWidth.set -> void +System.Windows.Forms.SplitContainer.TabStop.get -> bool +System.Windows.Forms.SplitContainer.TabStop.set -> void +System.Windows.Forms.SplitContainer.TextChanged -> System.EventHandler? +System.Windows.Forms.Splitter +System.Windows.Forms.Splitter.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.Splitter.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.Splitter.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.Splitter.BorderStyle.set -> void +System.Windows.Forms.Splitter.Enter -> System.EventHandler? +System.Windows.Forms.Splitter.FontChanged -> System.EventHandler? +System.Windows.Forms.Splitter.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.Splitter.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.Splitter.ImeMode.set -> void +System.Windows.Forms.Splitter.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.Splitter.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Splitter.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.Splitter.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.Splitter.Leave -> System.EventHandler? +System.Windows.Forms.Splitter.MinExtra.get -> int +System.Windows.Forms.Splitter.MinExtra.set -> void +System.Windows.Forms.Splitter.MinSize.get -> int +System.Windows.Forms.Splitter.MinSize.set -> void +System.Windows.Forms.Splitter.SplitPosition.get -> int +System.Windows.Forms.Splitter.SplitPosition.set -> void +System.Windows.Forms.Splitter.Splitter() -> void +System.Windows.Forms.Splitter.SplitterMoved -> System.Windows.Forms.SplitterEventHandler? +System.Windows.Forms.Splitter.SplitterMoving -> System.Windows.Forms.SplitterEventHandler? +System.Windows.Forms.Splitter.TabStop.get -> bool +System.Windows.Forms.Splitter.TabStop.set -> void +System.Windows.Forms.Splitter.TabStopChanged -> System.EventHandler? +System.Windows.Forms.Splitter.TextChanged -> System.EventHandler? +System.Windows.Forms.SplitterCancelEventArgs +System.Windows.Forms.SplitterCancelEventArgs.MouseCursorX.get -> int +System.Windows.Forms.SplitterCancelEventArgs.MouseCursorY.get -> int +System.Windows.Forms.SplitterCancelEventArgs.SplitterCancelEventArgs(int mouseCursorX, int mouseCursorY, int splitX, int splitY) -> void +System.Windows.Forms.SplitterCancelEventArgs.SplitX.get -> int +System.Windows.Forms.SplitterCancelEventArgs.SplitX.set -> void +System.Windows.Forms.SplitterCancelEventArgs.SplitY.get -> int +System.Windows.Forms.SplitterCancelEventArgs.SplitY.set -> void +System.Windows.Forms.SplitterCancelEventHandler +System.Windows.Forms.SplitterEventArgs +System.Windows.Forms.SplitterEventArgs.SplitterEventArgs(int x, int y, int splitX, int splitY) -> void +System.Windows.Forms.SplitterEventArgs.SplitX.get -> int +System.Windows.Forms.SplitterEventArgs.SplitX.set -> void +System.Windows.Forms.SplitterEventArgs.SplitY.get -> int +System.Windows.Forms.SplitterEventArgs.SplitY.set -> void +System.Windows.Forms.SplitterEventArgs.X.get -> int +System.Windows.Forms.SplitterEventArgs.Y.get -> int +System.Windows.Forms.SplitterEventHandler +System.Windows.Forms.SplitterPanel +System.Windows.Forms.SplitterPanel.Anchor.get -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.SplitterPanel.Anchor.set -> void +System.Windows.Forms.SplitterPanel.AutoSize.get -> bool +System.Windows.Forms.SplitterPanel.AutoSize.set -> void +System.Windows.Forms.SplitterPanel.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.SplitterPanel.BorderStyle.set -> void +System.Windows.Forms.SplitterPanel.Dock.get -> System.Windows.Forms.DockStyle +System.Windows.Forms.SplitterPanel.Dock.set -> void +System.Windows.Forms.SplitterPanel.DockChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! +System.Windows.Forms.SplitterPanel.Height.get -> int +System.Windows.Forms.SplitterPanel.Height.set -> void +System.Windows.Forms.SplitterPanel.Location.get -> System.Drawing.Point +System.Windows.Forms.SplitterPanel.Location.set -> void +System.Windows.Forms.SplitterPanel.LocationChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.MaximumSize.get -> System.Drawing.Size +System.Windows.Forms.SplitterPanel.MaximumSize.set -> void +System.Windows.Forms.SplitterPanel.MinimumSize.get -> System.Drawing.Size +System.Windows.Forms.SplitterPanel.MinimumSize.set -> void +System.Windows.Forms.SplitterPanel.Name.get -> string! +System.Windows.Forms.SplitterPanel.Name.set -> void +System.Windows.Forms.SplitterPanel.Parent.get -> System.Windows.Forms.Control? +System.Windows.Forms.SplitterPanel.Parent.set -> void +System.Windows.Forms.SplitterPanel.Size.get -> System.Drawing.Size +System.Windows.Forms.SplitterPanel.Size.set -> void +System.Windows.Forms.SplitterPanel.SplitterPanel(System.Windows.Forms.SplitContainer! owner) -> void +System.Windows.Forms.SplitterPanel.TabIndex.get -> int +System.Windows.Forms.SplitterPanel.TabIndex.set -> void +System.Windows.Forms.SplitterPanel.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.TabStop.get -> bool +System.Windows.Forms.SplitterPanel.TabStop.set -> void +System.Windows.Forms.SplitterPanel.TabStopChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.Visible.get -> bool +System.Windows.Forms.SplitterPanel.Visible.set -> void +System.Windows.Forms.SplitterPanel.VisibleChanged -> System.EventHandler? +System.Windows.Forms.SplitterPanel.Width.get -> int +System.Windows.Forms.SplitterPanel.Width.set -> void +System.Windows.Forms.StatusStrip +System.Windows.Forms.StatusStrip.CanOverflow.get -> bool +System.Windows.Forms.StatusStrip.CanOverflow.set -> void +System.Windows.Forms.StatusStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.StatusStrip.GripStyle.set -> void +System.Windows.Forms.StatusStrip.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.StatusStrip.LayoutStyle.set -> void +System.Windows.Forms.StatusStrip.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.StatusStrip.Padding.set -> void +System.Windows.Forms.StatusStrip.PaddingChanged -> System.EventHandler? +System.Windows.Forms.StatusStrip.ShowItemToolTips.get -> bool +System.Windows.Forms.StatusStrip.ShowItemToolTips.set -> void +System.Windows.Forms.StatusStrip.SizeGripBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.StatusStrip.SizingGrip.get -> bool +System.Windows.Forms.StatusStrip.SizingGrip.set -> void +System.Windows.Forms.StatusStrip.StatusStrip() -> void +System.Windows.Forms.StatusStrip.Stretch.get -> bool +System.Windows.Forms.StatusStrip.Stretch.set -> void +System.Windows.Forms.StructFormat +System.Windows.Forms.StructFormat.Ansi = 1 -> System.Windows.Forms.StructFormat +System.Windows.Forms.StructFormat.Auto = 3 -> System.Windows.Forms.StructFormat +System.Windows.Forms.StructFormat.Unicode = 2 -> System.Windows.Forms.StructFormat +System.Windows.Forms.SystemInformation +System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.CaretWidthMetric = 8 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.DropShadow = 0 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.FlatMenu = 1 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.FontSmoothingContrastMetric = 2 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.FontSmoothingTypeMetric = 3 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.HorizontalFocusThicknessMetric = 10 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.MenuFadeEnabled = 4 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.SelectionFade = 5 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.ToolTipAnimationMetric = 6 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.UIEffects = 7 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.SystemParameter.VerticalFocusThicknessMetric = 9 -> System.Windows.Forms.SystemParameter +System.Windows.Forms.TabAlignment +System.Windows.Forms.TabAlignment.Bottom = 1 -> System.Windows.Forms.TabAlignment +System.Windows.Forms.TabAlignment.Left = 2 -> System.Windows.Forms.TabAlignment +System.Windows.Forms.TabAlignment.Right = 3 -> System.Windows.Forms.TabAlignment +System.Windows.Forms.TabAlignment.Top = 0 -> System.Windows.Forms.TabAlignment +System.Windows.Forms.TabAppearance +System.Windows.Forms.TabAppearance.Buttons = 1 -> System.Windows.Forms.TabAppearance +System.Windows.Forms.TabAppearance.FlatButtons = 2 -> System.Windows.Forms.TabAppearance +System.Windows.Forms.TabAppearance.Normal = 0 -> System.Windows.Forms.TabAppearance +System.Windows.Forms.TabControl +System.Windows.Forms.TabControl.Alignment.get -> System.Windows.Forms.TabAlignment +System.Windows.Forms.TabControl.Alignment.set -> void +System.Windows.Forms.TabControl.Appearance.get -> System.Windows.Forms.TabAppearance +System.Windows.Forms.TabControl.Appearance.set -> void +System.Windows.Forms.TabControl.BackColorChanged -> System.EventHandler? +System.Windows.Forms.TabControl.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.TabControl.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.TabControl.ControlCollection +System.Windows.Forms.TabControl.ControlCollection.ControlCollection(System.Windows.Forms.TabControl! owner) -> void +System.Windows.Forms.TabControl.Deselected -> System.Windows.Forms.TabControlEventHandler? +System.Windows.Forms.TabControl.Deselecting -> System.Windows.Forms.TabControlCancelEventHandler? +System.Windows.Forms.TabControl.DeselectTab(int index) -> void +System.Windows.Forms.TabControl.DeselectTab(string! tabPageName) -> void +System.Windows.Forms.TabControl.DeselectTab(System.Windows.Forms.TabPage! tabPage) -> void +System.Windows.Forms.TabControl.DrawItem -> System.Windows.Forms.DrawItemEventHandler? +System.Windows.Forms.TabControl.DrawMode.get -> System.Windows.Forms.TabDrawMode +System.Windows.Forms.TabControl.DrawMode.set -> void +System.Windows.Forms.TabControl.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.TabControl.GetControl(int index) -> System.Windows.Forms.Control! +System.Windows.Forms.TabControl.GetTabRect(int index) -> System.Drawing.Rectangle +System.Windows.Forms.TabControl.GetToolTipText(object! item) -> string! +System.Windows.Forms.TabControl.HotTrack.get -> bool +System.Windows.Forms.TabControl.HotTrack.set -> void +System.Windows.Forms.TabControl.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.TabControl.ImageList.set -> void +System.Windows.Forms.TabControl.ItemSize.get -> System.Drawing.Size +System.Windows.Forms.TabControl.ItemSize.set -> void +System.Windows.Forms.TabControl.Multiline.get -> bool +System.Windows.Forms.TabControl.Multiline.set -> void +System.Windows.Forms.TabControl.Padding.get -> System.Drawing.Point +System.Windows.Forms.TabControl.Padding.set -> void +System.Windows.Forms.TabControl.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.TabControl.RemoveAll() -> void +System.Windows.Forms.TabControl.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.TabControl.RowCount.get -> int +System.Windows.Forms.TabControl.Selected -> System.Windows.Forms.TabControlEventHandler? +System.Windows.Forms.TabControl.SelectedIndex.get -> int +System.Windows.Forms.TabControl.SelectedIndex.set -> void +System.Windows.Forms.TabControl.SelectedIndexChanged -> System.EventHandler? +System.Windows.Forms.TabControl.SelectedTab.get -> System.Windows.Forms.TabPage? +System.Windows.Forms.TabControl.SelectedTab.set -> void +System.Windows.Forms.TabControl.Selecting -> System.Windows.Forms.TabControlCancelEventHandler? +System.Windows.Forms.TabControl.SelectTab(int index) -> void +System.Windows.Forms.TabControl.SelectTab(string! tabPageName) -> void +System.Windows.Forms.TabControl.SelectTab(System.Windows.Forms.TabPage! tabPage) -> void +System.Windows.Forms.TabControl.ShowToolTips.get -> bool +System.Windows.Forms.TabControl.ShowToolTips.set -> void +System.Windows.Forms.TabControl.SizeMode.get -> System.Windows.Forms.TabSizeMode +System.Windows.Forms.TabControl.SizeMode.set -> void +System.Windows.Forms.TabControl.TabControl() -> void +System.Windows.Forms.TabControl.TabCount.get -> int +System.Windows.Forms.TabControl.TabPageCollection +System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text) -> void +System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text, int imageIndex) -> void +System.Windows.Forms.TabControl.TabPageCollection.Add(string? key, string? text, string! imageKey) -> void +System.Windows.Forms.TabControl.TabPageCollection.Add(string? text) -> void +System.Windows.Forms.TabControl.TabPageCollection.Add(System.Windows.Forms.TabPage! value) -> void +System.Windows.Forms.TabControl.TabPageCollection.AddRange(System.Windows.Forms.TabPage![]! pages) -> void +System.Windows.Forms.TabControl.TabPageCollection.Contains(System.Windows.Forms.TabPage! page) -> bool +System.Windows.Forms.TabControl.TabPageCollection.Count.get -> int +System.Windows.Forms.TabControl.TabPageCollection.GetEnumerator() -> System.Collections.IEnumerator! +System.Windows.Forms.TabControl.TabPageCollection.IndexOf(System.Windows.Forms.TabPage! page) -> int +System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text) -> void +System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text, int imageIndex) -> void +System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? key, string? text, string! imageKey) -> void +System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, string? text) -> void +System.Windows.Forms.TabControl.TabPageCollection.Insert(int index, System.Windows.Forms.TabPage! tabPage) -> void +System.Windows.Forms.TabControl.TabPageCollection.IsReadOnly.get -> bool +System.Windows.Forms.TabControl.TabPageCollection.Remove(System.Windows.Forms.TabPage! value) -> void +System.Windows.Forms.TabControl.TabPageCollection.RemoveAt(int index) -> void +System.Windows.Forms.TabControl.TabPageCollection.TabPageCollection(System.Windows.Forms.TabControl! owner) -> void +System.Windows.Forms.TabControl.TabPages.get -> System.Windows.Forms.TabControl.TabPageCollection! +System.Windows.Forms.TabControl.TextChanged -> System.EventHandler? +System.Windows.Forms.TabControl.UpdateTabSelection(bool updateFocus) -> void +System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlAction.Deselected = 3 -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlAction.Deselecting = 2 -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlAction.Selected = 1 -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlAction.Selecting = 0 -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlCancelEventArgs +System.Windows.Forms.TabControlCancelEventArgs.Action.get -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlCancelEventArgs.TabControlCancelEventArgs(System.Windows.Forms.TabPage? tabPage, int tabPageIndex, bool cancel, System.Windows.Forms.TabControlAction action) -> void +System.Windows.Forms.TabControlCancelEventArgs.TabPage.get -> System.Windows.Forms.TabPage? +System.Windows.Forms.TabControlCancelEventArgs.TabPageIndex.get -> int +System.Windows.Forms.TabControlCancelEventHandler +System.Windows.Forms.TabControlEventArgs +System.Windows.Forms.TabControlEventArgs.Action.get -> System.Windows.Forms.TabControlAction +System.Windows.Forms.TabControlEventArgs.TabControlEventArgs(System.Windows.Forms.TabPage? tabPage, int tabPageIndex, System.Windows.Forms.TabControlAction action) -> void +System.Windows.Forms.TabControlEventArgs.TabPage.get -> System.Windows.Forms.TabPage? +System.Windows.Forms.TabControlEventArgs.TabPageIndex.get -> int +System.Windows.Forms.TabControlEventHandler +System.Windows.Forms.TabDrawMode +System.Windows.Forms.TabDrawMode.Normal = 0 -> System.Windows.Forms.TabDrawMode +System.Windows.Forms.TabDrawMode.OwnerDrawFixed = 1 -> System.Windows.Forms.TabDrawMode +System.Windows.Forms.TableLayoutCellPaintEventArgs +System.Windows.Forms.TableLayoutCellPaintEventArgs.CellBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.TableLayoutCellPaintEventArgs.Column.get -> int +System.Windows.Forms.TableLayoutCellPaintEventArgs.Row.get -> int +System.Windows.Forms.TableLayoutCellPaintEventArgs.TableLayoutCellPaintEventArgs(System.Drawing.Graphics! g, System.Drawing.Rectangle clipRectangle, System.Drawing.Rectangle cellBounds, int column, int row) -> void +System.Windows.Forms.TableLayoutCellPaintEventHandler +System.Windows.Forms.TableLayoutColumnStyleCollection +System.Windows.Forms.TableLayoutColumnStyleCollection.Add(System.Windows.Forms.ColumnStyle! columnStyle) -> int +System.Windows.Forms.TableLayoutColumnStyleCollection.Contains(System.Windows.Forms.ColumnStyle! columnStyle) -> bool +System.Windows.Forms.TableLayoutColumnStyleCollection.IndexOf(System.Windows.Forms.ColumnStyle! columnStyle) -> int +System.Windows.Forms.TableLayoutColumnStyleCollection.Insert(int index, System.Windows.Forms.ColumnStyle! columnStyle) -> void +System.Windows.Forms.TableLayoutColumnStyleCollection.Remove(System.Windows.Forms.ColumnStyle! columnStyle) -> void +System.Windows.Forms.TableLayoutColumnStyleCollection.this[int index].get -> System.Windows.Forms.ColumnStyle! +System.Windows.Forms.TableLayoutColumnStyleCollection.this[int index].set -> void +System.Windows.Forms.TableLayoutControlCollection +System.Windows.Forms.TableLayoutControlCollection.Container.get -> System.Windows.Forms.TableLayoutPanel! +System.Windows.Forms.TableLayoutControlCollection.TableLayoutControlCollection(System.Windows.Forms.TableLayoutPanel! container) -> void +System.Windows.Forms.TableLayoutPanel +System.Windows.Forms.TableLayoutPanel.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.TableLayoutPanel.BorderStyle.set -> void +System.Windows.Forms.TableLayoutPanel.CellBorderStyle.get -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanel.CellBorderStyle.set -> void +System.Windows.Forms.TableLayoutPanel.CellPaint -> System.Windows.Forms.TableLayoutCellPaintEventHandler? +System.Windows.Forms.TableLayoutPanel.ColumnCount.get -> int +System.Windows.Forms.TableLayoutPanel.ColumnCount.set -> void +System.Windows.Forms.TableLayoutPanel.ColumnStyles.get -> System.Windows.Forms.TableLayoutColumnStyleCollection! +System.Windows.Forms.TableLayoutPanel.Controls.get -> System.Windows.Forms.TableLayoutControlCollection! +System.Windows.Forms.TableLayoutPanel.GetCellPosition(System.Windows.Forms.Control! control) -> System.Windows.Forms.TableLayoutPanelCellPosition +System.Windows.Forms.TableLayoutPanel.GetColumn(System.Windows.Forms.Control! control) -> int +System.Windows.Forms.TableLayoutPanel.GetColumnSpan(System.Windows.Forms.Control! control) -> int +System.Windows.Forms.TableLayoutPanel.GetColumnWidths() -> int[]! +System.Windows.Forms.TableLayoutPanel.GetControlFromPosition(int column, int row) -> System.Windows.Forms.Control? +System.Windows.Forms.TableLayoutPanel.GetPositionFromControl(System.Windows.Forms.Control? control) -> System.Windows.Forms.TableLayoutPanelCellPosition +System.Windows.Forms.TableLayoutPanel.GetRow(System.Windows.Forms.Control! control) -> int +System.Windows.Forms.TableLayoutPanel.GetRowHeights() -> int[]! +System.Windows.Forms.TableLayoutPanel.GetRowSpan(System.Windows.Forms.Control! control) -> int +System.Windows.Forms.TableLayoutPanel.GrowStyle.get -> System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutPanel.GrowStyle.set -> void +System.Windows.Forms.TableLayoutPanel.LayoutSettings.get -> System.Windows.Forms.TableLayoutSettings! +System.Windows.Forms.TableLayoutPanel.LayoutSettings.set -> void +System.Windows.Forms.TableLayoutPanel.RowCount.get -> int +System.Windows.Forms.TableLayoutPanel.RowCount.set -> void +System.Windows.Forms.TableLayoutPanel.RowStyles.get -> System.Windows.Forms.TableLayoutRowStyleCollection! +System.Windows.Forms.TableLayoutPanel.SetCellPosition(System.Windows.Forms.Control! control, System.Windows.Forms.TableLayoutPanelCellPosition position) -> void +System.Windows.Forms.TableLayoutPanel.SetColumn(System.Windows.Forms.Control! control, int column) -> void +System.Windows.Forms.TableLayoutPanel.SetColumnSpan(System.Windows.Forms.Control! control, int value) -> void +System.Windows.Forms.TableLayoutPanel.SetRow(System.Windows.Forms.Control! control, int row) -> void +System.Windows.Forms.TableLayoutPanel.SetRowSpan(System.Windows.Forms.Control! control, int value) -> void +System.Windows.Forms.TableLayoutPanel.TableLayoutPanel() -> void +System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.Inset = 2 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble = 3 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.None = 0 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.Outset = 4 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble = 5 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetPartial = 6 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single = 1 -> System.Windows.Forms.TableLayoutPanelCellBorderStyle +System.Windows.Forms.TableLayoutPanelCellPosition +System.Windows.Forms.TableLayoutPanelCellPosition.Column.get -> int +System.Windows.Forms.TableLayoutPanelCellPosition.Column.set -> void +System.Windows.Forms.TableLayoutPanelCellPosition.Equals(System.Windows.Forms.TableLayoutPanelCellPosition other) -> bool +System.Windows.Forms.TableLayoutPanelCellPosition.Row.get -> int +System.Windows.Forms.TableLayoutPanelCellPosition.Row.set -> void +System.Windows.Forms.TableLayoutPanelCellPosition.TableLayoutPanelCellPosition() -> void +System.Windows.Forms.TableLayoutPanelCellPosition.TableLayoutPanelCellPosition(int column, int row) -> void +System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutPanelGrowStyle.AddColumns = 2 -> System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutPanelGrowStyle.AddRows = 1 -> System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutPanelGrowStyle.FixedSize = 0 -> System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutRowStyleCollection +System.Windows.Forms.TableLayoutRowStyleCollection.Add(System.Windows.Forms.RowStyle! rowStyle) -> int +System.Windows.Forms.TableLayoutRowStyleCollection.Contains(System.Windows.Forms.RowStyle! rowStyle) -> bool +System.Windows.Forms.TableLayoutRowStyleCollection.IndexOf(System.Windows.Forms.RowStyle! rowStyle) -> int +System.Windows.Forms.TableLayoutRowStyleCollection.Insert(int index, System.Windows.Forms.RowStyle! rowStyle) -> void +System.Windows.Forms.TableLayoutRowStyleCollection.Remove(System.Windows.Forms.RowStyle! rowStyle) -> void +System.Windows.Forms.TableLayoutRowStyleCollection.this[int index].get -> System.Windows.Forms.RowStyle! +System.Windows.Forms.TableLayoutRowStyleCollection.this[int index].set -> void +System.Windows.Forms.TableLayoutSettings +System.Windows.Forms.TableLayoutSettings.ColumnCount.get -> int +System.Windows.Forms.TableLayoutSettings.ColumnCount.set -> void +System.Windows.Forms.TableLayoutSettings.ColumnStyles.get -> System.Windows.Forms.TableLayoutColumnStyleCollection! +System.Windows.Forms.TableLayoutSettings.GetCellPosition(object! control) -> System.Windows.Forms.TableLayoutPanelCellPosition +System.Windows.Forms.TableLayoutSettings.GetColumn(object! control) -> int +System.Windows.Forms.TableLayoutSettings.GetColumnSpan(object! control) -> int +System.Windows.Forms.TableLayoutSettings.GetRow(object! control) -> int +System.Windows.Forms.TableLayoutSettings.GetRowSpan(object! control) -> int +System.Windows.Forms.TableLayoutSettings.GrowStyle.get -> System.Windows.Forms.TableLayoutPanelGrowStyle +System.Windows.Forms.TableLayoutSettings.GrowStyle.set -> void +System.Windows.Forms.TableLayoutSettings.RowCount.get -> int +System.Windows.Forms.TableLayoutSettings.RowCount.set -> void +System.Windows.Forms.TableLayoutSettings.RowStyles.get -> System.Windows.Forms.TableLayoutRowStyleCollection! +System.Windows.Forms.TableLayoutSettings.SetCellPosition(object! control, System.Windows.Forms.TableLayoutPanelCellPosition cellPosition) -> void +System.Windows.Forms.TableLayoutSettings.SetColumn(object! control, int column) -> void +System.Windows.Forms.TableLayoutSettings.SetColumnSpan(object! control, int value) -> void +System.Windows.Forms.TableLayoutSettings.SetRow(object! control, int row) -> void +System.Windows.Forms.TableLayoutSettings.SetRowSpan(object! control, int value) -> void +System.Windows.Forms.TableLayoutStyle +System.Windows.Forms.TableLayoutStyle.SizeType.get -> System.Windows.Forms.SizeType +System.Windows.Forms.TableLayoutStyle.SizeType.set -> void +System.Windows.Forms.TableLayoutStyle.TableLayoutStyle() -> void +System.Windows.Forms.TableLayoutStyleCollection +System.Windows.Forms.TableLayoutStyleCollection.Add(System.Windows.Forms.TableLayoutStyle! style) -> int +System.Windows.Forms.TableLayoutStyleCollection.Clear() -> void +System.Windows.Forms.TableLayoutStyleCollection.Count.get -> int +System.Windows.Forms.TableLayoutStyleCollection.RemoveAt(int index) -> void +System.Windows.Forms.TableLayoutStyleCollection.this[int index].get -> System.Windows.Forms.TableLayoutStyle! +System.Windows.Forms.TableLayoutStyleCollection.this[int index].set -> void +System.Windows.Forms.TabPage +System.Windows.Forms.TabPage.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.TabPage.DockChanged -> System.EventHandler? +System.Windows.Forms.TabPage.Enabled.get -> bool +System.Windows.Forms.TabPage.Enabled.set -> void +System.Windows.Forms.TabPage.EnabledChanged -> System.EventHandler? +System.Windows.Forms.TabPage.ImageIndex.get -> int +System.Windows.Forms.TabPage.ImageIndex.set -> void +System.Windows.Forms.TabPage.ImageKey.get -> string! +System.Windows.Forms.TabPage.ImageKey.set -> void +System.Windows.Forms.TabPage.Location.get -> System.Drawing.Point +System.Windows.Forms.TabPage.Location.set -> void +System.Windows.Forms.TabPage.LocationChanged -> System.EventHandler? +System.Windows.Forms.TabPage.PreferredSize.get -> System.Drawing.Size +System.Windows.Forms.TabPage.TabIndex.get -> int +System.Windows.Forms.TabPage.TabIndex.set -> void +System.Windows.Forms.TabPage.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.TabPage.TabPage() -> void +System.Windows.Forms.TabPage.TabPage(string? text) -> void +System.Windows.Forms.TabPage.TabPageControlCollection +System.Windows.Forms.TabPage.TabPageControlCollection.TabPageControlCollection(System.Windows.Forms.TabPage! owner) -> void +System.Windows.Forms.TabPage.TabStop.get -> bool +System.Windows.Forms.TabPage.TabStop.set -> void +System.Windows.Forms.TabPage.TabStopChanged -> System.EventHandler? +System.Windows.Forms.TabPage.TextChanged -> System.EventHandler? +System.Windows.Forms.TabPage.ToolTipText.get -> string! +System.Windows.Forms.TabPage.ToolTipText.set -> void +System.Windows.Forms.TabPage.UseVisualStyleBackColor.get -> bool +System.Windows.Forms.TabPage.UseVisualStyleBackColor.set -> void +System.Windows.Forms.TabPage.Visible.get -> bool +System.Windows.Forms.TabPage.Visible.set -> void +System.Windows.Forms.TabPage.VisibleChanged -> System.EventHandler? +System.Windows.Forms.TabRenderer +System.Windows.Forms.TabSizeMode +System.Windows.Forms.TabSizeMode.FillToRight = 1 -> System.Windows.Forms.TabSizeMode +System.Windows.Forms.TabSizeMode.Fixed = 2 -> System.Windows.Forms.TabSizeMode +System.Windows.Forms.TabSizeMode.Normal = 0 -> System.Windows.Forms.TabSizeMode +System.Windows.Forms.TaskDialog +System.Windows.Forms.TaskDialog.Close() -> void +System.Windows.Forms.TaskDialog.Handle.get -> nint +System.Windows.Forms.TaskDialogButton +System.Windows.Forms.TaskDialogButton.AllowCloseDialog.get -> bool +System.Windows.Forms.TaskDialogButton.AllowCloseDialog.set -> void +System.Windows.Forms.TaskDialogButton.Click -> System.EventHandler? +System.Windows.Forms.TaskDialogButton.Enabled.get -> bool +System.Windows.Forms.TaskDialogButton.Enabled.set -> void +System.Windows.Forms.TaskDialogButton.PerformClick() -> void +System.Windows.Forms.TaskDialogButton.ShowShieldIcon.get -> bool +System.Windows.Forms.TaskDialogButton.ShowShieldIcon.set -> void +System.Windows.Forms.TaskDialogButton.TaskDialogButton() -> void +System.Windows.Forms.TaskDialogButton.TaskDialogButton(string? text, bool enabled = true, bool allowCloseDialog = true) -> void +System.Windows.Forms.TaskDialogButton.Text.get -> string? +System.Windows.Forms.TaskDialogButton.Text.set -> void +System.Windows.Forms.TaskDialogButton.Visible.get -> bool +System.Windows.Forms.TaskDialogButton.Visible.set -> void +System.Windows.Forms.TaskDialogButtonCollection +System.Windows.Forms.TaskDialogButtonCollection.Add(string? text, bool enabled = true, bool allowCloseDialog = true) -> System.Windows.Forms.TaskDialogButton! +System.Windows.Forms.TaskDialogButtonCollection.TaskDialogButtonCollection() -> void +System.Windows.Forms.TaskDialogCommandLinkButton +System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText.get -> string? +System.Windows.Forms.TaskDialogCommandLinkButton.DescriptionText.set -> void +System.Windows.Forms.TaskDialogCommandLinkButton.TaskDialogCommandLinkButton() -> void +System.Windows.Forms.TaskDialogCommandLinkButton.TaskDialogCommandLinkButton(string? text, string? descriptionText = null, bool enabled = true, bool allowCloseDialog = true) -> void +System.Windows.Forms.TaskDialogControl +System.Windows.Forms.TaskDialogControl.BoundPage.get -> System.Windows.Forms.TaskDialogPage? +System.Windows.Forms.TaskDialogControl.Tag.get -> object? +System.Windows.Forms.TaskDialogControl.Tag.set -> void +System.Windows.Forms.TaskDialogExpander +System.Windows.Forms.TaskDialogExpander.CollapsedButtonText.get -> string? +System.Windows.Forms.TaskDialogExpander.CollapsedButtonText.set -> void +System.Windows.Forms.TaskDialogExpander.Expanded.get -> bool +System.Windows.Forms.TaskDialogExpander.Expanded.set -> void +System.Windows.Forms.TaskDialogExpander.ExpandedButtonText.get -> string? +System.Windows.Forms.TaskDialogExpander.ExpandedButtonText.set -> void +System.Windows.Forms.TaskDialogExpander.ExpandedChanged -> System.EventHandler? +System.Windows.Forms.TaskDialogExpander.Position.get -> System.Windows.Forms.TaskDialogExpanderPosition +System.Windows.Forms.TaskDialogExpander.Position.set -> void +System.Windows.Forms.TaskDialogExpander.TaskDialogExpander() -> void +System.Windows.Forms.TaskDialogExpander.TaskDialogExpander(string? text) -> void +System.Windows.Forms.TaskDialogExpander.Text.get -> string? +System.Windows.Forms.TaskDialogExpander.Text.set -> void +System.Windows.Forms.TaskDialogExpanderPosition +System.Windows.Forms.TaskDialogExpanderPosition.AfterFootnote = 1 -> System.Windows.Forms.TaskDialogExpanderPosition +System.Windows.Forms.TaskDialogExpanderPosition.AfterText = 0 -> System.Windows.Forms.TaskDialogExpanderPosition +System.Windows.Forms.TaskDialogFootnote +System.Windows.Forms.TaskDialogFootnote.Icon.get -> System.Windows.Forms.TaskDialogIcon? +System.Windows.Forms.TaskDialogFootnote.Icon.set -> void +System.Windows.Forms.TaskDialogFootnote.TaskDialogFootnote() -> void +System.Windows.Forms.TaskDialogFootnote.TaskDialogFootnote(string? text) -> void +System.Windows.Forms.TaskDialogFootnote.Text.get -> string? +System.Windows.Forms.TaskDialogFootnote.Text.set -> void +System.Windows.Forms.TaskDialogIcon +System.Windows.Forms.TaskDialogIcon.Dispose() -> void +System.Windows.Forms.TaskDialogIcon.IconHandle.get -> nint +System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(nint iconHandle) -> void +System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(System.Drawing.Bitmap! image) -> void +System.Windows.Forms.TaskDialogIcon.TaskDialogIcon(System.Drawing.Icon! icon) -> void +System.Windows.Forms.TaskDialogLinkClickedEventArgs +System.Windows.Forms.TaskDialogLinkClickedEventArgs.LinkHref.get -> string! +System.Windows.Forms.TaskDialogLinkClickedEventArgs.TaskDialogLinkClickedEventArgs(string! linkHref) -> void +System.Windows.Forms.TaskDialogPage +System.Windows.Forms.TaskDialogPage.AllowCancel.get -> bool +System.Windows.Forms.TaskDialogPage.AllowCancel.set -> void +System.Windows.Forms.TaskDialogPage.AllowMinimize.get -> bool +System.Windows.Forms.TaskDialogPage.AllowMinimize.set -> void +System.Windows.Forms.TaskDialogPage.BoundDialog.get -> System.Windows.Forms.TaskDialog? +System.Windows.Forms.TaskDialogPage.Buttons.get -> System.Windows.Forms.TaskDialogButtonCollection! +System.Windows.Forms.TaskDialogPage.Buttons.set -> void +System.Windows.Forms.TaskDialogPage.Caption.get -> string? +System.Windows.Forms.TaskDialogPage.Caption.set -> void +System.Windows.Forms.TaskDialogPage.Created -> System.EventHandler? +System.Windows.Forms.TaskDialogPage.DefaultButton.get -> System.Windows.Forms.TaskDialogButton? +System.Windows.Forms.TaskDialogPage.DefaultButton.set -> void +System.Windows.Forms.TaskDialogPage.Destroyed -> System.EventHandler? +System.Windows.Forms.TaskDialogPage.EnableLinks.get -> bool +System.Windows.Forms.TaskDialogPage.EnableLinks.set -> void +System.Windows.Forms.TaskDialogPage.Expander.get -> System.Windows.Forms.TaskDialogExpander? +System.Windows.Forms.TaskDialogPage.Expander.set -> void +System.Windows.Forms.TaskDialogPage.Footnote.get -> System.Windows.Forms.TaskDialogFootnote? +System.Windows.Forms.TaskDialogPage.Footnote.set -> void +System.Windows.Forms.TaskDialogPage.Heading.get -> string? +System.Windows.Forms.TaskDialogPage.Heading.set -> void +System.Windows.Forms.TaskDialogPage.HelpRequest -> System.EventHandler? +System.Windows.Forms.TaskDialogPage.Icon.get -> System.Windows.Forms.TaskDialogIcon? +System.Windows.Forms.TaskDialogPage.Icon.set -> void +System.Windows.Forms.TaskDialogPage.LinkClicked -> System.EventHandler? +System.Windows.Forms.TaskDialogPage.Navigate(System.Windows.Forms.TaskDialogPage! page) -> void +System.Windows.Forms.TaskDialogPage.OnCreated(System.EventArgs! e) -> void +System.Windows.Forms.TaskDialogPage.OnDestroyed(System.EventArgs! e) -> void +System.Windows.Forms.TaskDialogPage.OnHelpRequest(System.EventArgs! e) -> void +System.Windows.Forms.TaskDialogPage.OnLinkClicked(System.Windows.Forms.TaskDialogLinkClickedEventArgs! e) -> void +System.Windows.Forms.TaskDialogPage.ProgressBar.get -> System.Windows.Forms.TaskDialogProgressBar? +System.Windows.Forms.TaskDialogPage.ProgressBar.set -> void +System.Windows.Forms.TaskDialogPage.RadioButtons.get -> System.Windows.Forms.TaskDialogRadioButtonCollection! +System.Windows.Forms.TaskDialogPage.RadioButtons.set -> void +System.Windows.Forms.TaskDialogPage.RightToLeftLayout.get -> bool +System.Windows.Forms.TaskDialogPage.RightToLeftLayout.set -> void +System.Windows.Forms.TaskDialogPage.SizeToContent.get -> bool +System.Windows.Forms.TaskDialogPage.SizeToContent.set -> void +System.Windows.Forms.TaskDialogPage.TaskDialogPage() -> void +System.Windows.Forms.TaskDialogPage.Text.get -> string? +System.Windows.Forms.TaskDialogPage.Text.set -> void +System.Windows.Forms.TaskDialogPage.Verification.get -> System.Windows.Forms.TaskDialogVerificationCheckBox? +System.Windows.Forms.TaskDialogPage.Verification.set -> void +System.Windows.Forms.TaskDialogProgressBar +System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed.get -> int +System.Windows.Forms.TaskDialogProgressBar.MarqueeSpeed.set -> void +System.Windows.Forms.TaskDialogProgressBar.Maximum.get -> int +System.Windows.Forms.TaskDialogProgressBar.Maximum.set -> void +System.Windows.Forms.TaskDialogProgressBar.Minimum.get -> int +System.Windows.Forms.TaskDialogProgressBar.Minimum.set -> void +System.Windows.Forms.TaskDialogProgressBar.State.get -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBar.State.set -> void +System.Windows.Forms.TaskDialogProgressBar.TaskDialogProgressBar() -> void +System.Windows.Forms.TaskDialogProgressBar.TaskDialogProgressBar(System.Windows.Forms.TaskDialogProgressBarState state) -> void +System.Windows.Forms.TaskDialogProgressBar.Value.get -> int +System.Windows.Forms.TaskDialogProgressBar.Value.set -> void +System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.Error = 2 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.Marquee = 3 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.MarqueePaused = 4 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.None = 5 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.Normal = 0 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogProgressBarState.Paused = 1 -> System.Windows.Forms.TaskDialogProgressBarState +System.Windows.Forms.TaskDialogRadioButton +System.Windows.Forms.TaskDialogRadioButton.Checked.get -> bool +System.Windows.Forms.TaskDialogRadioButton.Checked.set -> void +System.Windows.Forms.TaskDialogRadioButton.CheckedChanged -> System.EventHandler? +System.Windows.Forms.TaskDialogRadioButton.Enabled.get -> bool +System.Windows.Forms.TaskDialogRadioButton.Enabled.set -> void +System.Windows.Forms.TaskDialogRadioButton.TaskDialogRadioButton() -> void +System.Windows.Forms.TaskDialogRadioButton.TaskDialogRadioButton(string? text) -> void +System.Windows.Forms.TaskDialogRadioButton.Text.get -> string? +System.Windows.Forms.TaskDialogRadioButton.Text.set -> void +System.Windows.Forms.TaskDialogRadioButtonCollection +System.Windows.Forms.TaskDialogRadioButtonCollection.Add(string? text) -> System.Windows.Forms.TaskDialogRadioButton! +System.Windows.Forms.TaskDialogRadioButtonCollection.TaskDialogRadioButtonCollection() -> void +System.Windows.Forms.TaskDialogStartupLocation +System.Windows.Forms.TaskDialogStartupLocation.CenterOwner = 1 -> System.Windows.Forms.TaskDialogStartupLocation +System.Windows.Forms.TaskDialogStartupLocation.CenterScreen = 0 -> System.Windows.Forms.TaskDialogStartupLocation +System.Windows.Forms.TaskDialogVerificationCheckBox +System.Windows.Forms.TaskDialogVerificationCheckBox.Checked.get -> bool +System.Windows.Forms.TaskDialogVerificationCheckBox.Checked.set -> void +System.Windows.Forms.TaskDialogVerificationCheckBox.CheckedChanged -> System.EventHandler? +System.Windows.Forms.TaskDialogVerificationCheckBox.TaskDialogVerificationCheckBox() -> void +System.Windows.Forms.TaskDialogVerificationCheckBox.TaskDialogVerificationCheckBox(string? text, bool isChecked = false) -> void +System.Windows.Forms.TaskDialogVerificationCheckBox.Text.get -> string? +System.Windows.Forms.TaskDialogVerificationCheckBox.Text.set -> void +System.Windows.Forms.TextBox +System.Windows.Forms.TextBox.AcceptsReturn.get -> bool +System.Windows.Forms.TextBox.AcceptsReturn.set -> void +System.Windows.Forms.TextBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! +System.Windows.Forms.TextBox.AutoCompleteCustomSource.set -> void +System.Windows.Forms.TextBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.TextBox.AutoCompleteMode.set -> void +System.Windows.Forms.TextBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.TextBox.AutoCompleteSource.set -> void +System.Windows.Forms.TextBox.CharacterCasing.get -> System.Windows.Forms.CharacterCasing +System.Windows.Forms.TextBox.CharacterCasing.set -> void +System.Windows.Forms.TextBox.PasswordChar.get -> char +System.Windows.Forms.TextBox.PasswordChar.set -> void +System.Windows.Forms.TextBox.Paste(string? text) -> void +System.Windows.Forms.TextBox.ScrollBars.get -> System.Windows.Forms.ScrollBars +System.Windows.Forms.TextBox.ScrollBars.set -> void +System.Windows.Forms.TextBox.TextAlign.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.TextBox.TextAlign.set -> void +System.Windows.Forms.TextBox.TextAlignChanged -> System.EventHandler? +System.Windows.Forms.TextBox.TextBox() -> void +System.Windows.Forms.TextBox.UseSystemPasswordChar.get -> bool +System.Windows.Forms.TextBox.UseSystemPasswordChar.set -> void +System.Windows.Forms.TextBoxBase +System.Windows.Forms.TextBoxBase.AcceptsTab.get -> bool +System.Windows.Forms.TextBoxBase.AcceptsTab.set -> void +System.Windows.Forms.TextBoxBase.AcceptsTabChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.AppendText(string? text) -> void +System.Windows.Forms.TextBoxBase.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.TextBoxBase.BorderStyle.set -> void +System.Windows.Forms.TextBoxBase.BorderStyleChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.CanUndo.get -> bool +System.Windows.Forms.TextBoxBase.Clear() -> void +System.Windows.Forms.TextBoxBase.ClearUndo() -> void +System.Windows.Forms.TextBoxBase.Click -> System.EventHandler? +System.Windows.Forms.TextBoxBase.Copy() -> void +System.Windows.Forms.TextBoxBase.Cut() -> void +System.Windows.Forms.TextBoxBase.DeselectAll() -> void +System.Windows.Forms.TextBoxBase.GetFirstCharIndexFromLine(int lineNumber) -> int +System.Windows.Forms.TextBoxBase.GetFirstCharIndexOfCurrentLine() -> int +System.Windows.Forms.TextBoxBase.HideSelection.get -> bool +System.Windows.Forms.TextBoxBase.HideSelection.set -> void +System.Windows.Forms.TextBoxBase.HideSelectionChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.Lines.get -> string![]! +System.Windows.Forms.TextBoxBase.Lines.set -> void +System.Windows.Forms.TextBoxBase.Modified.get -> bool +System.Windows.Forms.TextBoxBase.Modified.set -> void +System.Windows.Forms.TextBoxBase.ModifiedChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.TextBoxBase.MultilineChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.TextBoxBase.Padding.set -> void +System.Windows.Forms.TextBoxBase.PaddingChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.TextBoxBase.Paste() -> void +System.Windows.Forms.TextBoxBase.PreferredHeight.get -> int +System.Windows.Forms.TextBoxBase.ReadOnly.get -> bool +System.Windows.Forms.TextBoxBase.ReadOnly.set -> void +System.Windows.Forms.TextBoxBase.ReadOnlyChanged -> System.EventHandler? +System.Windows.Forms.TextBoxBase.ScrollToCaret() -> void +System.Windows.Forms.TextBoxBase.Select(int start, int length) -> void +System.Windows.Forms.TextBoxBase.SelectAll() -> void +System.Windows.Forms.TextBoxBase.SelectionStart.get -> int +System.Windows.Forms.TextBoxBase.SelectionStart.set -> void +System.Windows.Forms.TextBoxBase.Undo() -> void +System.Windows.Forms.TextBoxBase.WordWrap.get -> bool +System.Windows.Forms.TextBoxBase.WordWrap.set -> void +System.Windows.Forms.TextBoxRenderer +System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextDataFormat.CommaSeparatedValue = 4 -> System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextDataFormat.Html = 3 -> System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextDataFormat.Rtf = 2 -> System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextDataFormat.Text = 0 -> System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextDataFormat.UnicodeText = 1 -> System.Windows.Forms.TextDataFormat +System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Bottom = 8 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Default = 0 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.EndEllipsis = 32768 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.ExpandTabs = 64 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.ExternalLeading = 512 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.GlyphOverhangPadding = 0 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.HidePrefix = 1048576 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.HorizontalCenter = 1 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Internal = 4096 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Left = 0 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.LeftAndRightPadding = 536870912 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.ModifyString = 65536 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.NoClipping = 256 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.NoFullWidthCharacterBreak = 524288 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.NoPadding = 268435456 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.NoPrefix = 2048 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.PathEllipsis = 16384 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.PrefixOnly = 2097152 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.PreserveGraphicsClipping = 16777216 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.PreserveGraphicsTranslateTransform = 33554432 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Right = 2 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.RightToLeft = 131072 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.SingleLine = 32 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.TextBoxControl = 8192 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.Top = 0 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.VerticalCenter = 4 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.WordBreak = 16 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextFormatFlags.WordEllipsis = 262144 -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextImageRelation.ImageAboveText = 1 -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextImageRelation.ImageBeforeText = 4 -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextImageRelation.Overlay = 0 -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextImageRelation.TextAboveImage = 2 -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextImageRelation.TextBeforeImage = 8 -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.TextRenderer +System.Windows.Forms.ThreadExceptionDialog +System.Windows.Forms.ThreadExceptionDialog.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ThreadExceptionDialog.ThreadExceptionDialog(System.Exception! t) -> void +System.Windows.Forms.TickStyle +System.Windows.Forms.TickStyle.Both = 3 -> System.Windows.Forms.TickStyle +System.Windows.Forms.TickStyle.BottomRight = 2 -> System.Windows.Forms.TickStyle +System.Windows.Forms.TickStyle.None = 0 -> System.Windows.Forms.TickStyle +System.Windows.Forms.TickStyle.TopLeft = 1 -> System.Windows.Forms.TickStyle +System.Windows.Forms.Timer +System.Windows.Forms.Timer.Interval.get -> int +System.Windows.Forms.Timer.Interval.set -> void +System.Windows.Forms.Timer.Start() -> void +System.Windows.Forms.Timer.Stop() -> void +System.Windows.Forms.Timer.Tag.get -> object? +System.Windows.Forms.Timer.Tag.set -> void +System.Windows.Forms.Timer.Tick -> System.EventHandler! +System.Windows.Forms.Timer.Timer() -> void +System.Windows.Forms.Timer.Timer(System.ComponentModel.IContainer! container) -> void +System.Windows.Forms.ToolStrip +System.Windows.Forms.ToolStrip.AllowItemReorder.get -> bool +System.Windows.Forms.ToolStrip.AllowItemReorder.set -> void +System.Windows.Forms.ToolStrip.AllowMerge.get -> bool +System.Windows.Forms.ToolStrip.AllowMerge.set -> void +System.Windows.Forms.ToolStrip.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.ToolStrip.AutoScrollMargin.set -> void +System.Windows.Forms.ToolStrip.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.ToolStrip.AutoScrollMinSize.set -> void +System.Windows.Forms.ToolStrip.AutoScrollPosition.get -> System.Drawing.Point +System.Windows.Forms.ToolStrip.AutoScrollPosition.set -> void +System.Windows.Forms.ToolStrip.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStrip.BackColor.set -> void +System.Windows.Forms.ToolStrip.BeginDrag -> System.EventHandler? +System.Windows.Forms.ToolStrip.CanOverflow.get -> bool +System.Windows.Forms.ToolStrip.CanOverflow.set -> void +System.Windows.Forms.ToolStrip.CausesValidation.get -> bool +System.Windows.Forms.ToolStrip.CausesValidation.set -> void +System.Windows.Forms.ToolStrip.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.ControlAdded -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.ToolStrip.ControlRemoved -> System.Windows.Forms.ControlEventHandler? +System.Windows.Forms.ToolStrip.Controls.get -> System.Windows.Forms.Control.ControlCollection! +System.Windows.Forms.ToolStrip.CursorChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.EndDrag -> System.EventHandler? +System.Windows.Forms.ToolStrip.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStrip.ForeColor.set -> void +System.Windows.Forms.ToolStrip.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point point) -> System.Windows.Forms.Control? +System.Windows.Forms.ToolStrip.GetChildAtPoint(System.Drawing.Point pt, System.Windows.Forms.GetChildAtPointSkip skipValue) -> System.Windows.Forms.Control? +System.Windows.Forms.ToolStrip.GetItemAt(int x, int y) -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStrip.GetItemAt(System.Drawing.Point point) -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStrip.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStrip.GripMargin.get -> System.Windows.Forms.Padding +System.Windows.Forms.ToolStrip.GripMargin.set -> void +System.Windows.Forms.ToolStrip.GripRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStrip.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStrip.GripStyle.set -> void +System.Windows.Forms.ToolStrip.HasChildren.get -> bool +System.Windows.Forms.ToolStrip.HorizontalScroll.get -> System.Windows.Forms.HScrollProperties! +System.Windows.Forms.ToolStrip.ImageList.get -> System.Windows.Forms.ImageList? +System.Windows.Forms.ToolStrip.ImageList.set -> void +System.Windows.Forms.ToolStrip.ImageScalingSize.get -> System.Drawing.Size +System.Windows.Forms.ToolStrip.ImageScalingSize.set -> void +System.Windows.Forms.ToolStrip.IsCurrentlyDragging.get -> bool +System.Windows.Forms.ToolStrip.IsDropDown.get -> bool +System.Windows.Forms.ToolStrip.ItemAdded -> System.Windows.Forms.ToolStripItemEventHandler? +System.Windows.Forms.ToolStrip.ItemClicked -> System.Windows.Forms.ToolStripItemClickedEventHandler? +System.Windows.Forms.ToolStrip.ItemRemoved -> System.Windows.Forms.ToolStripItemEventHandler? +System.Windows.Forms.ToolStrip.LayoutCompleted -> System.EventHandler? +System.Windows.Forms.ToolStrip.LayoutSettings.get -> System.Windows.Forms.LayoutSettings? +System.Windows.Forms.ToolStrip.LayoutSettings.set -> void +System.Windows.Forms.ToolStrip.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStrip.LayoutStyle.set -> void +System.Windows.Forms.ToolStrip.LayoutStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.Orientation.get -> System.Windows.Forms.Orientation +System.Windows.Forms.ToolStrip.OverflowButton.get -> System.Windows.Forms.ToolStripOverflowButton! +System.Windows.Forms.ToolStrip.PaintGrip -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ToolStrip.Renderer.get -> System.Windows.Forms.ToolStripRenderer! +System.Windows.Forms.ToolStrip.Renderer.set -> void +System.Windows.Forms.ToolStrip.RendererChanged -> System.EventHandler? +System.Windows.Forms.ToolStrip.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStrip.RenderMode.set -> void +System.Windows.Forms.ToolStrip.ResetMinimumSize() -> void +System.Windows.Forms.ToolStrip.SetAutoScrollMargin(int x, int y) -> void +System.Windows.Forms.ToolStrip.SetItemLocation(System.Windows.Forms.ToolStripItem! item, System.Drawing.Point location) -> void +System.Windows.Forms.ToolStrip.ShowItemToolTips.get -> bool +System.Windows.Forms.ToolStrip.ShowItemToolTips.set -> void +System.Windows.Forms.ToolStrip.Stretch.get -> bool +System.Windows.Forms.ToolStrip.Stretch.set -> void +System.Windows.Forms.ToolStrip.TabStop.get -> bool +System.Windows.Forms.ToolStrip.TabStop.set -> void +System.Windows.Forms.ToolStrip.ToolStrip() -> void +System.Windows.Forms.ToolStrip.ToolStrip(params System.Windows.Forms.ToolStripItem![]! items) -> void +System.Windows.Forms.ToolStrip.ToolStripAccessibleObject +System.Windows.Forms.ToolStrip.ToolStripAccessibleObject.ToolStripAccessibleObject(System.Windows.Forms.ToolStrip! owner) -> void +System.Windows.Forms.ToolStrip.VerticalScroll.get -> System.Windows.Forms.VScrollProperties! +System.Windows.Forms.ToolStripArrowRenderEventArgs +System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowColor.set -> void +System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripArrowRenderEventArgs.ArrowRectangle.set -> void +System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction.get -> System.Windows.Forms.ArrowDirection +System.Windows.Forms.ToolStripArrowRenderEventArgs.Direction.set -> void +System.Windows.Forms.ToolStripArrowRenderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.ToolStripArrowRenderEventArgs.Item.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripArrowRenderEventArgs.ToolStripArrowRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem? toolStripItem, System.Drawing.Rectangle arrowRectangle, System.Drawing.Color arrowColor, System.Windows.Forms.ArrowDirection arrowDirection) -> void +System.Windows.Forms.ToolStripArrowRenderEventHandler +System.Windows.Forms.ToolStripButton +System.Windows.Forms.ToolStripButton.AutoToolTip.get -> bool +System.Windows.Forms.ToolStripButton.AutoToolTip.set -> void +System.Windows.Forms.ToolStripButton.Checked.get -> bool +System.Windows.Forms.ToolStripButton.Checked.set -> void +System.Windows.Forms.ToolStripButton.CheckedChanged -> System.EventHandler? +System.Windows.Forms.ToolStripButton.CheckOnClick.get -> bool +System.Windows.Forms.ToolStripButton.CheckOnClick.set -> void +System.Windows.Forms.ToolStripButton.CheckState.get -> System.Windows.Forms.CheckState +System.Windows.Forms.ToolStripButton.CheckState.set -> void +System.Windows.Forms.ToolStripButton.CheckStateChanged -> System.EventHandler? +System.Windows.Forms.ToolStripButton.ToolStripButton() -> void +System.Windows.Forms.ToolStripButton.ToolStripButton(string? text) -> void +System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripButton.ToolStripButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripButton.ToolStripButton(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripComboBox +System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! +System.Windows.Forms.ToolStripComboBox.AutoCompleteCustomSource.set -> void +System.Windows.Forms.ToolStripComboBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.ToolStripComboBox.AutoCompleteMode.set -> void +System.Windows.Forms.ToolStripComboBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.ToolStripComboBox.AutoCompleteSource.set -> void +System.Windows.Forms.ToolStripComboBox.BeginUpdate() -> void +System.Windows.Forms.ToolStripComboBox.ComboBox.get -> System.Windows.Forms.ComboBox! +System.Windows.Forms.ToolStripComboBox.DoubleClick -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.DropDown -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.DropDownClosed -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.DropDownHeight.get -> int +System.Windows.Forms.ToolStripComboBox.DropDownHeight.set -> void +System.Windows.Forms.ToolStripComboBox.DropDownStyle.get -> System.Windows.Forms.ComboBoxStyle +System.Windows.Forms.ToolStripComboBox.DropDownStyle.set -> void +System.Windows.Forms.ToolStripComboBox.DropDownStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.DropDownWidth.get -> int +System.Windows.Forms.ToolStripComboBox.DropDownWidth.set -> void +System.Windows.Forms.ToolStripComboBox.DroppedDown.get -> bool +System.Windows.Forms.ToolStripComboBox.DroppedDown.set -> void +System.Windows.Forms.ToolStripComboBox.EndUpdate() -> void +System.Windows.Forms.ToolStripComboBox.FindString(string? s) -> int +System.Windows.Forms.ToolStripComboBox.FindString(string? s, int startIndex) -> int +System.Windows.Forms.ToolStripComboBox.FindStringExact(string? s) -> int +System.Windows.Forms.ToolStripComboBox.FindStringExact(string? s, int startIndex) -> int +System.Windows.Forms.ToolStripComboBox.FlatStyle.get -> System.Windows.Forms.FlatStyle +System.Windows.Forms.ToolStripComboBox.FlatStyle.set -> void +System.Windows.Forms.ToolStripComboBox.GetItemHeight(int index) -> int +System.Windows.Forms.ToolStripComboBox.IntegralHeight.get -> bool +System.Windows.Forms.ToolStripComboBox.IntegralHeight.set -> void +System.Windows.Forms.ToolStripComboBox.Items.get -> System.Windows.Forms.ComboBox.ObjectCollection! +System.Windows.Forms.ToolStripComboBox.MaxDropDownItems.get -> int +System.Windows.Forms.ToolStripComboBox.MaxDropDownItems.set -> void +System.Windows.Forms.ToolStripComboBox.MaxLength.get -> int +System.Windows.Forms.ToolStripComboBox.MaxLength.set -> void +System.Windows.Forms.ToolStripComboBox.Select(int start, int length) -> void +System.Windows.Forms.ToolStripComboBox.SelectAll() -> void +System.Windows.Forms.ToolStripComboBox.SelectedIndex.get -> int +System.Windows.Forms.ToolStripComboBox.SelectedIndex.set -> void +System.Windows.Forms.ToolStripComboBox.SelectedIndexChanged -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.SelectedItem.get -> object? +System.Windows.Forms.ToolStripComboBox.SelectedItem.set -> void +System.Windows.Forms.ToolStripComboBox.SelectedText.get -> string! +System.Windows.Forms.ToolStripComboBox.SelectedText.set -> void +System.Windows.Forms.ToolStripComboBox.SelectionLength.get -> int +System.Windows.Forms.ToolStripComboBox.SelectionLength.set -> void +System.Windows.Forms.ToolStripComboBox.SelectionStart.get -> int +System.Windows.Forms.ToolStripComboBox.SelectionStart.set -> void +System.Windows.Forms.ToolStripComboBox.Sorted.get -> bool +System.Windows.Forms.ToolStripComboBox.Sorted.set -> void +System.Windows.Forms.ToolStripComboBox.TextUpdate -> System.EventHandler? +System.Windows.Forms.ToolStripComboBox.ToolStripComboBox() -> void +System.Windows.Forms.ToolStripComboBox.ToolStripComboBox(string? name) -> void +System.Windows.Forms.ToolStripComboBox.ToolStripComboBox(System.Windows.Forms.Control! c) -> void +System.Windows.Forms.ToolStripContainer +System.Windows.Forms.ToolStripContainer.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.ToolStripContainer.AutoScrollMargin.set -> void +System.Windows.Forms.ToolStripContainer.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.ToolStripContainer.AutoScrollMinSize.set -> void +System.Windows.Forms.ToolStripContainer.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripContainer.BackColor.set -> void +System.Windows.Forms.ToolStripContainer.BackColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.BackgroundImage.get -> System.Drawing.Image? +System.Windows.Forms.ToolStripContainer.BackgroundImage.set -> void +System.Windows.Forms.ToolStripContainer.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.BottomToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible.get -> bool +System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible.set -> void +System.Windows.Forms.ToolStripContainer.CausesValidation.get -> bool +System.Windows.Forms.ToolStripContainer.CausesValidation.set -> void +System.Windows.Forms.ToolStripContainer.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.ContentPanel.get -> System.Windows.Forms.ToolStripContentPanel! +System.Windows.Forms.ToolStripContainer.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +System.Windows.Forms.ToolStripContainer.ContextMenuStrip.set -> void +System.Windows.Forms.ToolStripContainer.ContextMenuStripChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.Controls.get -> System.Windows.Forms.Control.ControlCollection! +System.Windows.Forms.ToolStripContainer.CursorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripContainer.ForeColor.set -> void +System.Windows.Forms.ToolStripContainer.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContainer.LeftToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible.get -> bool +System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible.set -> void +System.Windows.Forms.ToolStripContainer.RightToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible.get -> bool +System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible.set -> void +System.Windows.Forms.ToolStripContainer.ToolStripContainer() -> void +System.Windows.Forms.ToolStripContainer.TopToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible.get -> bool +System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible.set -> void +System.Windows.Forms.ToolStripContentPanel +System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.ToolStripContentPanel.AutoScrollMargin.set -> void +System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.ToolStripContentPanel.AutoScrollMinSize.set -> void +System.Windows.Forms.ToolStripContentPanel.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.CausesValidation.get -> bool +System.Windows.Forms.ToolStripContentPanel.CausesValidation.set -> void +System.Windows.Forms.ToolStripContentPanel.CausesValidationChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.DockChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.Load -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.Location.get -> System.Drawing.Point +System.Windows.Forms.ToolStripContentPanel.Location.set -> void +System.Windows.Forms.ToolStripContentPanel.LocationChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.Name.get -> string! +System.Windows.Forms.ToolStripContentPanel.Name.set -> void +System.Windows.Forms.ToolStripContentPanel.Renderer.get -> System.Windows.Forms.ToolStripRenderer! +System.Windows.Forms.ToolStripContentPanel.Renderer.set -> void +System.Windows.Forms.ToolStripContentPanel.RendererChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripContentPanel.RenderMode.set -> void +System.Windows.Forms.ToolStripContentPanel.TabIndex.get -> int +System.Windows.Forms.ToolStripContentPanel.TabIndex.set -> void +System.Windows.Forms.ToolStripContentPanel.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.TabStop.get -> bool +System.Windows.Forms.ToolStripContentPanel.TabStop.set -> void +System.Windows.Forms.ToolStripContentPanel.TabStopChanged -> System.EventHandler? +System.Windows.Forms.ToolStripContentPanel.ToolStripContentPanel() -> void +System.Windows.Forms.ToolStripContentPanelRenderEventArgs +System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled.get -> bool +System.Windows.Forms.ToolStripContentPanelRenderEventArgs.Handled.set -> void +System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanel.get -> System.Windows.Forms.ToolStripContentPanel! +System.Windows.Forms.ToolStripContentPanelRenderEventArgs.ToolStripContentPanelRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripContentPanel! contentPanel) -> void +System.Windows.Forms.ToolStripContentPanelRenderEventHandler +System.Windows.Forms.ToolStripControlHost +System.Windows.Forms.ToolStripControlHost.CausesValidation.get -> bool +System.Windows.Forms.ToolStripControlHost.CausesValidation.set -> void +System.Windows.Forms.ToolStripControlHost.Control.get -> System.Windows.Forms.Control! +System.Windows.Forms.ToolStripControlHost.ControlAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripControlHost.ControlAlign.set -> void +System.Windows.Forms.ToolStripControlHost.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripControlHost.DisplayStyle.set -> void +System.Windows.Forms.ToolStripControlHost.DisplayStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled.get -> bool +System.Windows.Forms.ToolStripControlHost.DoubleClickEnabled.set -> void +System.Windows.Forms.ToolStripControlHost.Enter -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.Focus() -> void +System.Windows.Forms.ToolStripControlHost.GotFocus -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.ImageAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripControlHost.ImageAlign.set -> void +System.Windows.Forms.ToolStripControlHost.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripControlHost.ImageScaling.set -> void +System.Windows.Forms.ToolStripControlHost.ImageTransparentColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripControlHost.ImageTransparentColor.set -> void +System.Windows.Forms.ToolStripControlHost.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripControlHost.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.ToolStripControlHost.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripControlHost.Leave -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.LostFocus -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage.get -> bool +System.Windows.Forms.ToolStripControlHost.RightToLeftAutoMirrorImage.set -> void +System.Windows.Forms.ToolStripControlHost.TextAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripControlHost.TextAlign.set -> void +System.Windows.Forms.ToolStripControlHost.TextImageRelation.get -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.ToolStripControlHost.TextImageRelation.set -> void +System.Windows.Forms.ToolStripControlHost.ToolStripControlHost(System.Windows.Forms.Control! c) -> void +System.Windows.Forms.ToolStripControlHost.ToolStripControlHost(System.Windows.Forms.Control! c, string! name) -> void +System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject +System.Windows.Forms.ToolStripControlHost.ToolStripHostedControlAccessibleObject.ToolStripHostedControlAccessibleObject(System.Windows.Forms.Control! toolStripHostedControl, System.Windows.Forms.ToolStripControlHost? toolStripControlHost) -> void +System.Windows.Forms.ToolStripControlHost.Validated -> System.EventHandler? +System.Windows.Forms.ToolStripControlHost.Validating -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.ToolStripDropDown +System.Windows.Forms.ToolStripDropDown.AllowItemReorder.get -> bool +System.Windows.Forms.ToolStripDropDown.AllowItemReorder.set -> void +System.Windows.Forms.ToolStripDropDown.AllowTransparency.get -> bool +System.Windows.Forms.ToolStripDropDown.AllowTransparency.set -> void +System.Windows.Forms.ToolStripDropDown.AutoClose.get -> bool +System.Windows.Forms.ToolStripDropDown.AutoClose.set -> void +System.Windows.Forms.ToolStripDropDown.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.BindingContextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.CanOverflow.get -> bool +System.Windows.Forms.ToolStripDropDown.CanOverflow.set -> void +System.Windows.Forms.ToolStripDropDown.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? +System.Windows.Forms.ToolStripDropDown.Close() -> void +System.Windows.Forms.ToolStripDropDown.Close(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void +System.Windows.Forms.ToolStripDropDown.Closed -> System.Windows.Forms.ToolStripDropDownClosedEventHandler? +System.Windows.Forms.ToolStripDropDown.Closing -> System.Windows.Forms.ToolStripDropDownClosingEventHandler? +System.Windows.Forms.ToolStripDropDown.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +System.Windows.Forms.ToolStripDropDown.ContextMenuStrip.set -> void +System.Windows.Forms.ToolStripDropDown.ContextMenuStripChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.DockChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.DropShadowEnabled.get -> bool +System.Windows.Forms.ToolStripDropDown.DropShadowEnabled.set -> void +System.Windows.Forms.ToolStripDropDown.Enter -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.FontChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.ToolStripDropDown.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStripDropDown.GripMargin.get -> System.Windows.Forms.Padding +System.Windows.Forms.ToolStripDropDown.GripMargin.set -> void +System.Windows.Forms.ToolStripDropDown.GripRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripDropDown.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStripDropDown.GripStyle.set -> void +System.Windows.Forms.ToolStripDropDown.HelpRequested -> System.Windows.Forms.HelpEventHandler? +System.Windows.Forms.ToolStripDropDown.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.IsAutoGenerated.get -> bool +System.Windows.Forms.ToolStripDropDown.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripDropDown.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.ToolStripDropDown.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripDropDown.Leave -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.Location.get -> System.Drawing.Point +System.Windows.Forms.ToolStripDropDown.Location.set -> void +System.Windows.Forms.ToolStripDropDown.Opacity.get -> double +System.Windows.Forms.ToolStripDropDown.Opacity.set -> void +System.Windows.Forms.ToolStripDropDown.Opened -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.Opening -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.ToolStripDropDown.OverflowButton.get -> System.Windows.Forms.ToolStripOverflowButton! +System.Windows.Forms.ToolStripDropDown.OwnerItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripDropDown.OwnerItem.set -> void +System.Windows.Forms.ToolStripDropDown.Region.get -> System.Drawing.Region? +System.Windows.Forms.ToolStripDropDown.Region.set -> void +System.Windows.Forms.ToolStripDropDown.RegionChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.Scroll -> System.Windows.Forms.ScrollEventHandler? +System.Windows.Forms.ToolStripDropDown.Show() -> void +System.Windows.Forms.ToolStripDropDown.Show(int x, int y) -> void +System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction) -> void +System.Windows.Forms.ToolStripDropDown.Show(System.Drawing.Point screenLocation) -> void +System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, int x, int y) -> void +System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, System.Drawing.Point position) -> void +System.Windows.Forms.ToolStripDropDown.Show(System.Windows.Forms.Control! control, System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction) -> void +System.Windows.Forms.ToolStripDropDown.Stretch.get -> bool +System.Windows.Forms.ToolStripDropDown.Stretch.set -> void +System.Windows.Forms.ToolStripDropDown.StyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.TabIndex.get -> int +System.Windows.Forms.ToolStripDropDown.TabIndex.set -> void +System.Windows.Forms.ToolStripDropDown.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.TabStopChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.TextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.ToolStripDropDown() -> void +System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject +System.Windows.Forms.ToolStripDropDown.ToolStripDropDownAccessibleObject.ToolStripDropDownAccessibleObject(System.Windows.Forms.ToolStripDropDown! owner) -> void +System.Windows.Forms.ToolStripDropDown.TopLevel.get -> bool +System.Windows.Forms.ToolStripDropDown.TopLevel.set -> void +System.Windows.Forms.ToolStripDropDown.Validated -> System.EventHandler? +System.Windows.Forms.ToolStripDropDown.Validating -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.ToolStripDropDown.Visible.get -> bool +System.Windows.Forms.ToolStripDropDown.Visible.set -> void +System.Windows.Forms.ToolStripDropDownButton +System.Windows.Forms.ToolStripDropDownButton.AutoToolTip.get -> bool +System.Windows.Forms.ToolStripDropDownButton.AutoToolTip.set -> void +System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow.get -> bool +System.Windows.Forms.ToolStripDropDownButton.ShowDropDownArrow.set -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton() -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text) -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripDropDownButton.ToolStripDropDownButton(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripDropDownClosedEventArgs +System.Windows.Forms.ToolStripDropDownClosedEventArgs.CloseReason.get -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownClosedEventArgs.ToolStripDropDownClosedEventArgs(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void +System.Windows.Forms.ToolStripDropDownClosedEventHandler +System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownCloseReason.AppClicked = 1 -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownCloseReason.AppFocusChange = 0 -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownCloseReason.CloseCalled = 4 -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownCloseReason.ItemClicked = 2 -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownCloseReason.Keyboard = 3 -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownClosingEventArgs +System.Windows.Forms.ToolStripDropDownClosingEventArgs.CloseReason.get -> System.Windows.Forms.ToolStripDropDownCloseReason +System.Windows.Forms.ToolStripDropDownClosingEventArgs.ToolStripDropDownClosingEventArgs(System.Windows.Forms.ToolStripDropDownCloseReason reason) -> void +System.Windows.Forms.ToolStripDropDownClosingEventHandler +System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.AboveLeft = 0 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.AboveRight = 1 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.BelowLeft = 2 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.BelowRight = 3 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.Default = 7 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.Left = 4 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownDirection.Right = 5 -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownItem +System.Windows.Forms.ToolStripDropDownItem.DropDown.get -> System.Windows.Forms.ToolStripDropDown! +System.Windows.Forms.ToolStripDropDownItem.DropDown.set -> void +System.Windows.Forms.ToolStripDropDownItem.DropDownClosed -> System.EventHandler? +System.Windows.Forms.ToolStripDropDownItem.DropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection +System.Windows.Forms.ToolStripDropDownItem.DropDownDirection.set -> void +System.Windows.Forms.ToolStripDropDownItem.DropDownItemClicked -> System.Windows.Forms.ToolStripItemClickedEventHandler? +System.Windows.Forms.ToolStripDropDownItem.DropDownItems.get -> System.Windows.Forms.ToolStripItemCollection! +System.Windows.Forms.ToolStripDropDownItem.DropDownOpened -> System.EventHandler? +System.Windows.Forms.ToolStripDropDownItem.DropDownOpening -> System.EventHandler? +System.Windows.Forms.ToolStripDropDownItem.HasDropDown.get -> bool +System.Windows.Forms.ToolStripDropDownItem.HideDropDown() -> void +System.Windows.Forms.ToolStripDropDownItem.ShowDropDown() -> void +System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem() -> void +System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void +System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripDropDownItem.ToolStripDropDownItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripDropDownItemAccessibleObject +System.Windows.Forms.ToolStripDropDownItemAccessibleObject.ToolStripDropDownItemAccessibleObject(System.Windows.Forms.ToolStripDropDownItem! item) -> void +System.Windows.Forms.ToolStripDropDownMenu +System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle.get -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripDropDownMenu.LayoutStyle.set -> void +System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin.get -> bool +System.Windows.Forms.ToolStripDropDownMenu.ShowCheckMargin.set -> void +System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin.get -> bool +System.Windows.Forms.ToolStripDropDownMenu.ShowImageMargin.set -> void +System.Windows.Forms.ToolStripDropDownMenu.ToolStripDropDownMenu() -> void +System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStripGripDisplayStyle.Horizontal = 0 -> System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStripGripDisplayStyle.Vertical = 1 -> System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStripGripRenderEventArgs +System.Windows.Forms.ToolStripGripRenderEventArgs.GripBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripGripRenderEventArgs.GripDisplayStyle.get -> System.Windows.Forms.ToolStripGripDisplayStyle +System.Windows.Forms.ToolStripGripRenderEventArgs.GripStyle.get -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStripGripRenderEventArgs.ToolStripGripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip) -> void +System.Windows.Forms.ToolStripGripRenderEventHandler +System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStripGripStyle.Hidden = 0 -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStripGripStyle.Visible = 1 -> System.Windows.Forms.ToolStripGripStyle +System.Windows.Forms.ToolStripItem +System.Windows.Forms.ToolStripItem.AccessibilityObject.get -> System.Windows.Forms.AccessibleObject! +System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription.get -> string? +System.Windows.Forms.ToolStripItem.AccessibleDefaultActionDescription.set -> void +System.Windows.Forms.ToolStripItem.AccessibleDescription.get -> string? +System.Windows.Forms.ToolStripItem.AccessibleDescription.set -> void +System.Windows.Forms.ToolStripItem.AccessibleName.get -> string? +System.Windows.Forms.ToolStripItem.AccessibleName.set -> void +System.Windows.Forms.ToolStripItem.AccessibleRole.get -> System.Windows.Forms.AccessibleRole +System.Windows.Forms.ToolStripItem.AccessibleRole.set -> void +System.Windows.Forms.ToolStripItem.Alignment.get -> System.Windows.Forms.ToolStripItemAlignment +System.Windows.Forms.ToolStripItem.Alignment.set -> void +System.Windows.Forms.ToolStripItem.Anchor.get -> System.Windows.Forms.AnchorStyles +System.Windows.Forms.ToolStripItem.Anchor.set -> void +System.Windows.Forms.ToolStripItem.AutoSize.get -> bool +System.Windows.Forms.ToolStripItem.AutoSize.set -> void +System.Windows.Forms.ToolStripItem.AutoToolTip.get -> bool +System.Windows.Forms.ToolStripItem.AutoToolTip.set -> void +System.Windows.Forms.ToolStripItem.Available.get -> bool +System.Windows.Forms.ToolStripItem.Available.set -> void +System.Windows.Forms.ToolStripItem.AvailableChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.BackColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Click -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Command.get -> System.Windows.Input.ICommand? +System.Windows.Forms.ToolStripItem.Command.set -> void +System.Windows.Forms.ToolStripItem.CommandCanExecuteChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.CommandChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.CommandParameter.get -> object? +System.Windows.Forms.ToolStripItem.CommandParameter.set -> void +System.Windows.Forms.ToolStripItem.CommandParameterChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.ContentRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripItem.DisplayStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Dock.get -> System.Windows.Forms.DockStyle +System.Windows.Forms.ToolStripItem.Dock.set -> void +System.Windows.Forms.ToolStripItem.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects) -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.ToolStripItem.DoDragDrop(object! data, System.Windows.Forms.DragDropEffects allowedEffects, System.Drawing.Bitmap? dragImage, System.Drawing.Point cursorOffset, bool useDefaultDragImage) -> System.Windows.Forms.DragDropEffects +System.Windows.Forms.ToolStripItem.DoubleClick -> System.EventHandler? +System.Windows.Forms.ToolStripItem.DoubleClickEnabled.get -> bool +System.Windows.Forms.ToolStripItem.DoubleClickEnabled.set -> void +System.Windows.Forms.ToolStripItem.DragDrop -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.ToolStripItem.DragEnter -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.ToolStripItem.DragLeave -> System.EventHandler? +System.Windows.Forms.ToolStripItem.DragOver -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.ToolStripItem.EnabledChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.GetCurrentParent() -> System.Windows.Forms.ToolStrip? +System.Windows.Forms.ToolStripItem.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.ToolStripItem.Height.get -> int +System.Windows.Forms.ToolStripItem.Height.set -> void +System.Windows.Forms.ToolStripItem.ImageAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripItem.ImageAlign.set -> void +System.Windows.Forms.ToolStripItem.ImageIndex.get -> int +System.Windows.Forms.ToolStripItem.ImageIndex.set -> void +System.Windows.Forms.ToolStripItem.ImageKey.get -> string! +System.Windows.Forms.ToolStripItem.ImageKey.set -> void +System.Windows.Forms.ToolStripItem.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripItem.ImageScaling.set -> void +System.Windows.Forms.ToolStripItem.ImageTransparentColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripItem.ImageTransparentColor.set -> void +System.Windows.Forms.ToolStripItem.Invalidate() -> void +System.Windows.Forms.ToolStripItem.Invalidate(System.Drawing.Rectangle r) -> void +System.Windows.Forms.ToolStripItem.IsDisposed.get -> bool +System.Windows.Forms.ToolStripItem.IsOnDropDown.get -> bool +System.Windows.Forms.ToolStripItem.IsOnOverflow.get -> bool +System.Windows.Forms.ToolStripItem.LocationChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Margin.get -> System.Windows.Forms.Padding +System.Windows.Forms.ToolStripItem.Margin.set -> void +System.Windows.Forms.ToolStripItem.MergeAction.get -> System.Windows.Forms.MergeAction +System.Windows.Forms.ToolStripItem.MergeAction.set -> void +System.Windows.Forms.ToolStripItem.MergeIndex.get -> int +System.Windows.Forms.ToolStripItem.MergeIndex.set -> void +System.Windows.Forms.ToolStripItem.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ToolStripItem.MouseEnter -> System.EventHandler? +System.Windows.Forms.ToolStripItem.MouseHover -> System.EventHandler? +System.Windows.Forms.ToolStripItem.MouseLeave -> System.EventHandler? +System.Windows.Forms.ToolStripItem.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ToolStripItem.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.ToolStripItem.Name.get -> string? +System.Windows.Forms.ToolStripItem.Name.set -> void +System.Windows.Forms.ToolStripItem.Overflow.get -> System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripItem.Overflow.set -> void +System.Windows.Forms.ToolStripItem.Owner.get -> System.Windows.Forms.ToolStrip? +System.Windows.Forms.ToolStripItem.Owner.set -> void +System.Windows.Forms.ToolStripItem.OwnerChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.OwnerItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripItem.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.ToolStripItem.Parent.get -> System.Windows.Forms.ToolStrip? +System.Windows.Forms.ToolStripItem.Parent.set -> void +System.Windows.Forms.ToolStripItem.PerformClick() -> void +System.Windows.Forms.ToolStripItem.Placement.get -> System.Windows.Forms.ToolStripItemPlacement +System.Windows.Forms.ToolStripItem.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? +System.Windows.Forms.ToolStripItem.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? +System.Windows.Forms.ToolStripItem.ResetMargin() -> void +System.Windows.Forms.ToolStripItem.ResetPadding() -> void +System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage.get -> bool +System.Windows.Forms.ToolStripItem.RightToLeftAutoMirrorImage.set -> void +System.Windows.Forms.ToolStripItem.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Select() -> void +System.Windows.Forms.ToolStripItem.Tag.get -> object? +System.Windows.Forms.ToolStripItem.Tag.set -> void +System.Windows.Forms.ToolStripItem.TextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.TextImageRelation.get -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.ToolStripItem.TextImageRelation.set -> void +System.Windows.Forms.ToolStripItem.ToolStripItem() -> void +System.Windows.Forms.ToolStripItem.ToolStripItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripItem.ToolStripItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject +System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.AddState(System.Windows.Forms.AccessibleStates state) -> void +System.Windows.Forms.ToolStripItem.ToolStripItemAccessibleObject.ToolStripItemAccessibleObject(System.Windows.Forms.ToolStripItem! ownerItem) -> void +System.Windows.Forms.ToolStripItem.ToolTipText.get -> string? +System.Windows.Forms.ToolStripItem.ToolTipText.set -> void +System.Windows.Forms.ToolStripItem.Visible.get -> bool +System.Windows.Forms.ToolStripItem.Visible.set -> void +System.Windows.Forms.ToolStripItem.VisibleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripItem.Width.get -> int +System.Windows.Forms.ToolStripItem.Width.set -> void +System.Windows.Forms.ToolStripItemAlignment +System.Windows.Forms.ToolStripItemAlignment.Left = 0 -> System.Windows.Forms.ToolStripItemAlignment +System.Windows.Forms.ToolStripItemAlignment.Right = 1 -> System.Windows.Forms.ToolStripItemAlignment +System.Windows.Forms.ToolStripItemClickedEventArgs +System.Windows.Forms.ToolStripItemClickedEventArgs.ClickedItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripItemClickedEventArgs.ToolStripItemClickedEventArgs(System.Windows.Forms.ToolStripItem? clickedItem) -> void +System.Windows.Forms.ToolStripItemClickedEventHandler +System.Windows.Forms.ToolStripItemCollection +System.Windows.Forms.ToolStripItemCollection.Add(string? text) -> System.Windows.Forms.ToolStripItem! +System.Windows.Forms.ToolStripItemCollection.Add(string? text, System.Drawing.Image? image) -> System.Windows.Forms.ToolStripItem! +System.Windows.Forms.ToolStripItemCollection.Add(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! +System.Windows.Forms.ToolStripItemCollection.Add(System.Drawing.Image? image) -> System.Windows.Forms.ToolStripItem! +System.Windows.Forms.ToolStripItemCollection.Add(System.Windows.Forms.ToolStripItem! value) -> int +System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem![]! toolStripItems) -> void +System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItemCollection! toolStripItems) -> void +System.Windows.Forms.ToolStripItemCollection.Contains(System.Windows.Forms.ToolStripItem! value) -> bool +System.Windows.Forms.ToolStripItemCollection.CopyTo(System.Windows.Forms.ToolStripItem![]! array, int index) -> void +System.Windows.Forms.ToolStripItemCollection.Find(string! key, bool searchAllChildren) -> System.Windows.Forms.ToolStripItem![]! +System.Windows.Forms.ToolStripItemCollection.IndexOf(System.Windows.Forms.ToolStripItem! value) -> int +System.Windows.Forms.ToolStripItemCollection.Insert(int index, System.Windows.Forms.ToolStripItem! value) -> void +System.Windows.Forms.ToolStripItemCollection.Remove(System.Windows.Forms.ToolStripItem! value) -> void +System.Windows.Forms.ToolStripItemCollection.RemoveAt(int index) -> void +System.Windows.Forms.ToolStripItemCollection.ToolStripItemCollection(System.Windows.Forms.ToolStrip! owner, System.Windows.Forms.ToolStripItem![]! value) -> void +System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripItemDisplayStyle.Image = 2 -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText = 3 -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripItemDisplayStyle.None = 0 -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripItemDisplayStyle.Text = 1 -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripItemEventArgs +System.Windows.Forms.ToolStripItemEventArgs.Item.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripItemEventArgs.ToolStripItemEventArgs(System.Windows.Forms.ToolStripItem? item) -> void +System.Windows.Forms.ToolStripItemEventHandler +System.Windows.Forms.ToolStripItemImageRenderEventArgs +System.Windows.Forms.ToolStripItemImageRenderEventArgs.Image.get -> System.Drawing.Image? +System.Windows.Forms.ToolStripItemImageRenderEventArgs.ImageRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripItemImageRenderEventArgs.ToolStripItemImageRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, System.Drawing.Image? image, System.Drawing.Rectangle imageRectangle) -> void +System.Windows.Forms.ToolStripItemImageRenderEventArgs.ToolStripItemImageRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, System.Drawing.Rectangle imageRectangle) -> void +System.Windows.Forms.ToolStripItemImageRenderEventHandler +System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripItemImageScaling.None = 0 -> System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripItemImageScaling.SizeToFit = 1 -> System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripItemOverflow.Always = 1 -> System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripItemOverflow.AsNeeded = 2 -> System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripItemOverflow.Never = 0 -> System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripItemPlacement +System.Windows.Forms.ToolStripItemPlacement.Main = 0 -> System.Windows.Forms.ToolStripItemPlacement +System.Windows.Forms.ToolStripItemPlacement.None = 2 -> System.Windows.Forms.ToolStripItemPlacement +System.Windows.Forms.ToolStripItemPlacement.Overflow = 1 -> System.Windows.Forms.ToolStripItemPlacement +System.Windows.Forms.ToolStripItemRenderEventArgs +System.Windows.Forms.ToolStripItemRenderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.ToolStripItemRenderEventArgs.Item.get -> System.Windows.Forms.ToolStripItem! +System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStrip.get -> System.Windows.Forms.ToolStrip? +System.Windows.Forms.ToolStripItemRenderEventArgs.ToolStripItemRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item) -> void +System.Windows.Forms.ToolStripItemRenderEventHandler +System.Windows.Forms.ToolStripItemTextRenderEventArgs +System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text.get -> string? +System.Windows.Forms.ToolStripItemTextRenderEventArgs.Text.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextColor.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextDirection.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont.get -> System.Drawing.Font? +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFont.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat.get -> System.Windows.Forms.TextFormatFlags +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextFormat.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripItemTextRenderEventArgs.TextRectangle.set -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.ToolStripItemTextRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, string? text, System.Drawing.Rectangle textRectangle, System.Drawing.Color textColor, System.Drawing.Font? textFont, System.Drawing.ContentAlignment textAlign) -> void +System.Windows.Forms.ToolStripItemTextRenderEventArgs.ToolStripItemTextRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripItem! item, string? text, System.Drawing.Rectangle textRectangle, System.Drawing.Color textColor, System.Drawing.Font? textFont, System.Windows.Forms.TextFormatFlags format) -> void +System.Windows.Forms.ToolStripItemTextRenderEventHandler +System.Windows.Forms.ToolStripLabel +System.Windows.Forms.ToolStripLabel.ActiveLinkColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripLabel.ActiveLinkColor.set -> void +System.Windows.Forms.ToolStripLabel.IsLink.get -> bool +System.Windows.Forms.ToolStripLabel.IsLink.set -> void +System.Windows.Forms.ToolStripLabel.LinkBehavior.get -> System.Windows.Forms.LinkBehavior +System.Windows.Forms.ToolStripLabel.LinkBehavior.set -> void +System.Windows.Forms.ToolStripLabel.LinkColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripLabel.LinkColor.set -> void +System.Windows.Forms.ToolStripLabel.LinkVisited.get -> bool +System.Windows.Forms.ToolStripLabel.LinkVisited.set -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel() -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text) -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink) -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(string? text, System.Drawing.Image? image, bool isLink, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripLabel.ToolStripLabel(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripLabel.VisitedLinkColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripLabel.VisitedLinkColor.set -> void +System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripLayoutStyle.Flow = 3 -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow = 1 -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripLayoutStyle.StackWithOverflow = 0 -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripLayoutStyle.Table = 4 -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow = 2 -> System.Windows.Forms.ToolStripLayoutStyle +System.Windows.Forms.ToolStripManager +System.Windows.Forms.ToolStripManagerRenderMode +System.Windows.Forms.ToolStripManagerRenderMode.Custom = 0 -> System.Windows.Forms.ToolStripManagerRenderMode +System.Windows.Forms.ToolStripManagerRenderMode.Professional = 2 -> System.Windows.Forms.ToolStripManagerRenderMode +System.Windows.Forms.ToolStripManagerRenderMode.System = 1 -> System.Windows.Forms.ToolStripManagerRenderMode +System.Windows.Forms.ToolStripMenuItem +System.Windows.Forms.ToolStripMenuItem.Checked.get -> bool +System.Windows.Forms.ToolStripMenuItem.Checked.set -> void +System.Windows.Forms.ToolStripMenuItem.CheckedChanged -> System.EventHandler? +System.Windows.Forms.ToolStripMenuItem.CheckOnClick.get -> bool +System.Windows.Forms.ToolStripMenuItem.CheckOnClick.set -> void +System.Windows.Forms.ToolStripMenuItem.CheckState.get -> System.Windows.Forms.CheckState +System.Windows.Forms.ToolStripMenuItem.CheckState.set -> void +System.Windows.Forms.ToolStripMenuItem.CheckStateChanged -> System.EventHandler? +System.Windows.Forms.ToolStripMenuItem.IsMdiWindowListEntry.get -> bool +System.Windows.Forms.ToolStripMenuItem.Overflow.get -> System.Windows.Forms.ToolStripItemOverflow +System.Windows.Forms.ToolStripMenuItem.Overflow.set -> void +System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString.get -> string? +System.Windows.Forms.ToolStripMenuItem.ShortcutKeyDisplayString.set -> void +System.Windows.Forms.ToolStripMenuItem.ShortcutKeys.get -> System.Windows.Forms.Keys +System.Windows.Forms.ToolStripMenuItem.ShortcutKeys.set -> void +System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys.get -> bool +System.Windows.Forms.ToolStripMenuItem.ShowShortcutKeys.set -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem() -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick, System.Windows.Forms.Keys shortcutKeys) -> void +System.Windows.Forms.ToolStripMenuItem.ToolStripMenuItem(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripOverflow +System.Windows.Forms.ToolStripOverflow.ToolStripOverflow(System.Windows.Forms.ToolStripItem! parentItem) -> void +System.Windows.Forms.ToolStripOverflowButton +System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage.get -> bool +System.Windows.Forms.ToolStripOverflowButton.RightToLeftAutoMirrorImage.set -> void +System.Windows.Forms.ToolStripPanel +System.Windows.Forms.ToolStripPanel.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.ToolStripPanel.AutoScrollMargin.set -> void +System.Windows.Forms.ToolStripPanel.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.ToolStripPanel.AutoScrollMinSize.set -> void +System.Windows.Forms.ToolStripPanel.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.ToolStripPanel.BeginInit() -> void +System.Windows.Forms.ToolStripPanel.EndInit() -> void +System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag) -> void +System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, int row) -> void +System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, int x, int y) -> void +System.Windows.Forms.ToolStripPanel.Join(System.Windows.Forms.ToolStrip! toolStripToDrag, System.Drawing.Point location) -> void +System.Windows.Forms.ToolStripPanel.Locked.get -> bool +System.Windows.Forms.ToolStripPanel.Locked.set -> void +System.Windows.Forms.ToolStripPanel.Orientation.get -> System.Windows.Forms.Orientation +System.Windows.Forms.ToolStripPanel.Orientation.set -> void +System.Windows.Forms.ToolStripPanel.PointToRow(System.Drawing.Point clientLocation) -> System.Windows.Forms.ToolStripPanelRow? +System.Windows.Forms.ToolStripPanel.Renderer.get -> System.Windows.Forms.ToolStripRenderer! +System.Windows.Forms.ToolStripPanel.Renderer.set -> void +System.Windows.Forms.ToolStripPanel.RendererChanged -> System.EventHandler? +System.Windows.Forms.ToolStripPanel.RenderMode.get -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripPanel.RenderMode.set -> void +System.Windows.Forms.ToolStripPanel.RowMargin.get -> System.Windows.Forms.Padding +System.Windows.Forms.ToolStripPanel.RowMargin.set -> void +System.Windows.Forms.ToolStripPanel.Rows.get -> System.Windows.Forms.ToolStripPanelRow![]! +System.Windows.Forms.ToolStripPanel.TabIndex.get -> int +System.Windows.Forms.ToolStripPanel.TabIndex.set -> void +System.Windows.Forms.ToolStripPanel.TabIndexChanged -> System.EventHandler? +System.Windows.Forms.ToolStripPanel.TabStop.get -> bool +System.Windows.Forms.ToolStripPanel.TabStop.set -> void +System.Windows.Forms.ToolStripPanel.TabStopChanged -> System.EventHandler? +System.Windows.Forms.ToolStripPanel.TextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripPanel.ToolStripPanel() -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Add(System.Windows.Forms.ToolStripPanelRow! value) -> int +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection! value) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanelRow![]! value) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Contains(System.Windows.Forms.ToolStripPanelRow! value) -> bool +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.CopyTo(System.Windows.Forms.ToolStripPanelRow![]! array, int index) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.IndexOf(System.Windows.Forms.ToolStripPanelRow! value) -> int +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Insert(int index, System.Windows.Forms.ToolStripPanelRow! value) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Remove(System.Windows.Forms.ToolStripPanelRow! value) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.RemoveAt(int index) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.ToolStripPanelRowCollection(System.Windows.Forms.ToolStripPanel! owner) -> void +System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.ToolStripPanelRowCollection(System.Windows.Forms.ToolStripPanel! owner, System.Windows.Forms.ToolStripPanelRow![]! value) -> void +System.Windows.Forms.ToolStripPanelRenderEventArgs +System.Windows.Forms.ToolStripPanelRenderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled.get -> bool +System.Windows.Forms.ToolStripPanelRenderEventArgs.Handled.set -> void +System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripPanelRenderEventArgs.ToolStripPanelRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripPanel! toolStripPanel) -> void +System.Windows.Forms.ToolStripPanelRenderEventHandler +System.Windows.Forms.ToolStripPanelRow +System.Windows.Forms.ToolStripPanelRow.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripPanelRow.CanMove(System.Windows.Forms.ToolStrip! toolStripToDrag) -> bool +System.Windows.Forms.ToolStripPanelRow.Controls.get -> System.Windows.Forms.Control![]! +System.Windows.Forms.ToolStripPanelRow.DisplayRectangle.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripPanelRow.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +System.Windows.Forms.ToolStripPanelRow.Margin.get -> System.Windows.Forms.Padding +System.Windows.Forms.ToolStripPanelRow.Margin.set -> void +System.Windows.Forms.ToolStripPanelRow.OnBoundsChanged(System.Drawing.Rectangle oldBounds, System.Drawing.Rectangle newBounds) -> void +System.Windows.Forms.ToolStripPanelRow.Orientation.get -> System.Windows.Forms.Orientation +System.Windows.Forms.ToolStripPanelRow.ToolStripPanel.get -> System.Windows.Forms.ToolStripPanel! +System.Windows.Forms.ToolStripPanelRow.ToolStripPanelRow(System.Windows.Forms.ToolStripPanel! parent) -> void +System.Windows.Forms.ToolStripProfessionalRenderer +System.Windows.Forms.ToolStripProfessionalRenderer.ColorTable.get -> System.Windows.Forms.ProfessionalColorTable! +System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges.get -> bool +System.Windows.Forms.ToolStripProfessionalRenderer.RoundedEdges.set -> void +System.Windows.Forms.ToolStripProfessionalRenderer.ToolStripProfessionalRenderer() -> void +System.Windows.Forms.ToolStripProfessionalRenderer.ToolStripProfessionalRenderer(System.Windows.Forms.ProfessionalColorTable! professionalColorTable) -> void +System.Windows.Forms.ToolStripProgressBar +System.Windows.Forms.ToolStripProgressBar.Increment(int value) -> void +System.Windows.Forms.ToolStripProgressBar.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripProgressBar.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.ToolStripProgressBar.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.ToolStripProgressBar.LocationChanged -> System.EventHandler? +System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed.get -> int +System.Windows.Forms.ToolStripProgressBar.MarqueeAnimationSpeed.set -> void +System.Windows.Forms.ToolStripProgressBar.Maximum.get -> int +System.Windows.Forms.ToolStripProgressBar.Maximum.set -> void +System.Windows.Forms.ToolStripProgressBar.Minimum.get -> int +System.Windows.Forms.ToolStripProgressBar.Minimum.set -> void +System.Windows.Forms.ToolStripProgressBar.OwnerChanged -> System.EventHandler? +System.Windows.Forms.ToolStripProgressBar.PerformStep() -> void +System.Windows.Forms.ToolStripProgressBar.ProgressBar.get -> System.Windows.Forms.ProgressBar! +System.Windows.Forms.ToolStripProgressBar.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.ToolStripProgressBar.Step.get -> int +System.Windows.Forms.ToolStripProgressBar.Step.set -> void +System.Windows.Forms.ToolStripProgressBar.Style.get -> System.Windows.Forms.ProgressBarStyle +System.Windows.Forms.ToolStripProgressBar.Style.set -> void +System.Windows.Forms.ToolStripProgressBar.TextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripProgressBar.ToolStripProgressBar() -> void +System.Windows.Forms.ToolStripProgressBar.ToolStripProgressBar(string? name) -> void +System.Windows.Forms.ToolStripProgressBar.Validated -> System.EventHandler? +System.Windows.Forms.ToolStripProgressBar.Validating -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.ToolStripProgressBar.Value.get -> int +System.Windows.Forms.ToolStripProgressBar.Value.set -> void +System.Windows.Forms.ToolStripRenderer +System.Windows.Forms.ToolStripRenderer.DrawArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawSplitButton(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.DrawToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +System.Windows.Forms.ToolStripRenderer.RenderArrow -> System.Windows.Forms.ToolStripArrowRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderDropDownButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderGrip -> System.Windows.Forms.ToolStripGripRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderImageMargin -> System.Windows.Forms.ToolStripRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderItemBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderItemCheck -> System.Windows.Forms.ToolStripItemImageRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderItemImage -> System.Windows.Forms.ToolStripItemImageRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderItemText -> System.Windows.Forms.ToolStripItemTextRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderLabelBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderMenuItemBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderOverflowButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderSeparator -> System.Windows.Forms.ToolStripSeparatorRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderSplitButtonBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderStatusStripSizingGrip -> System.Windows.Forms.ToolStripRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderToolStripBackground -> System.Windows.Forms.ToolStripRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderToolStripBorder -> System.Windows.Forms.ToolStripRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderToolStripContentPanelBackground -> System.Windows.Forms.ToolStripContentPanelRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderToolStripPanelBackground -> System.Windows.Forms.ToolStripPanelRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.RenderToolStripStatusLabelBackground -> System.Windows.Forms.ToolStripItemRenderEventHandler! +System.Windows.Forms.ToolStripRenderer.ToolStripRenderer() -> void +System.Windows.Forms.ToolStripRenderEventArgs +System.Windows.Forms.ToolStripRenderEventArgs.AffectedBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripRenderEventArgs.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripRenderEventArgs.ConnectedArea.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripRenderEventArgs.Graphics.get -> System.Drawing.Graphics! +System.Windows.Forms.ToolStripRenderEventArgs.ToolStrip.get -> System.Windows.Forms.ToolStrip! +System.Windows.Forms.ToolStripRenderEventArgs.ToolStripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip) -> void +System.Windows.Forms.ToolStripRenderEventArgs.ToolStripRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStrip! toolStrip, System.Drawing.Rectangle affectedBounds, System.Drawing.Color backColor) -> void +System.Windows.Forms.ToolStripRenderEventHandler +System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripRenderMode.Custom = 0 -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode = 3 -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripRenderMode.Professional = 2 -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripRenderMode.System = 1 -> System.Windows.Forms.ToolStripRenderMode +System.Windows.Forms.ToolStripSeparator +System.Windows.Forms.ToolStripSeparator.AutoToolTip.get -> bool +System.Windows.Forms.ToolStripSeparator.AutoToolTip.set -> void +System.Windows.Forms.ToolStripSeparator.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle +System.Windows.Forms.ToolStripSeparator.DisplayStyle.set -> void +System.Windows.Forms.ToolStripSeparator.DisplayStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled.get -> bool +System.Windows.Forms.ToolStripSeparator.DoubleClickEnabled.set -> void +System.Windows.Forms.ToolStripSeparator.EnabledChanged -> System.EventHandler? +System.Windows.Forms.ToolStripSeparator.ImageAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripSeparator.ImageAlign.set -> void +System.Windows.Forms.ToolStripSeparator.ImageIndex.get -> int +System.Windows.Forms.ToolStripSeparator.ImageIndex.set -> void +System.Windows.Forms.ToolStripSeparator.ImageKey.get -> string! +System.Windows.Forms.ToolStripSeparator.ImageKey.set -> void +System.Windows.Forms.ToolStripSeparator.ImageScaling.get -> System.Windows.Forms.ToolStripItemImageScaling +System.Windows.Forms.ToolStripSeparator.ImageScaling.set -> void +System.Windows.Forms.ToolStripSeparator.ImageTransparentColor.get -> System.Drawing.Color +System.Windows.Forms.ToolStripSeparator.ImageTransparentColor.set -> void +System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage.get -> bool +System.Windows.Forms.ToolStripSeparator.RightToLeftAutoMirrorImage.set -> void +System.Windows.Forms.ToolStripSeparator.TextAlign.get -> System.Drawing.ContentAlignment +System.Windows.Forms.ToolStripSeparator.TextAlign.set -> void +System.Windows.Forms.ToolStripSeparator.TextChanged -> System.EventHandler? +System.Windows.Forms.ToolStripSeparator.TextImageRelation.get -> System.Windows.Forms.TextImageRelation +System.Windows.Forms.ToolStripSeparator.TextImageRelation.set -> void +System.Windows.Forms.ToolStripSeparator.ToolStripSeparator() -> void +System.Windows.Forms.ToolStripSeparator.ToolTipText.get -> string? +System.Windows.Forms.ToolStripSeparator.ToolTipText.set -> void +System.Windows.Forms.ToolStripSeparatorRenderEventArgs +System.Windows.Forms.ToolStripSeparatorRenderEventArgs.ToolStripSeparatorRenderEventArgs(System.Drawing.Graphics! g, System.Windows.Forms.ToolStripSeparator! separator, bool vertical) -> void +System.Windows.Forms.ToolStripSeparatorRenderEventArgs.Vertical.get -> bool +System.Windows.Forms.ToolStripSeparatorRenderEventHandler +System.Windows.Forms.ToolStripSplitButton +System.Windows.Forms.ToolStripSplitButton.AutoToolTip.get -> bool +System.Windows.Forms.ToolStripSplitButton.AutoToolTip.set -> void +System.Windows.Forms.ToolStripSplitButton.ButtonBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripSplitButton.ButtonClick -> System.EventHandler? +System.Windows.Forms.ToolStripSplitButton.ButtonDoubleClick -> System.EventHandler? +System.Windows.Forms.ToolStripSplitButton.ButtonPressed.get -> bool +System.Windows.Forms.ToolStripSplitButton.ButtonSelected.get -> bool +System.Windows.Forms.ToolStripSplitButton.DefaultItem.get -> System.Windows.Forms.ToolStripItem? +System.Windows.Forms.ToolStripSplitButton.DefaultItem.set -> void +System.Windows.Forms.ToolStripSplitButton.DefaultItemChanged -> System.EventHandler? +System.Windows.Forms.ToolStripSplitButton.DropDownButtonBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripSplitButton.DropDownButtonPressed.get -> bool +System.Windows.Forms.ToolStripSplitButton.DropDownButtonSelected.get -> bool +System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth.get -> int +System.Windows.Forms.ToolStripSplitButton.DropDownButtonWidth.set -> void +System.Windows.Forms.ToolStripSplitButton.PerformButtonClick() -> void +System.Windows.Forms.ToolStripSplitButton.SplitterBounds.get -> System.Drawing.Rectangle +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton() -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, params System.Windows.Forms.ToolStripItem![]? dropDownItems) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButton(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject +System.Windows.Forms.ToolStripSplitButton.ToolStripSplitButtonAccessibleObject.ToolStripSplitButtonAccessibleObject(System.Windows.Forms.ToolStripSplitButton! item) -> void +System.Windows.Forms.ToolStripStatusLabel +System.Windows.Forms.ToolStripStatusLabel.Alignment.get -> System.Windows.Forms.ToolStripItemAlignment +System.Windows.Forms.ToolStripStatusLabel.Alignment.set -> void +System.Windows.Forms.ToolStripStatusLabel.BorderSides.get -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabel.BorderSides.set -> void +System.Windows.Forms.ToolStripStatusLabel.BorderStyle.get -> System.Windows.Forms.Border3DStyle +System.Windows.Forms.ToolStripStatusLabel.BorderStyle.set -> void +System.Windows.Forms.ToolStripStatusLabel.LiveSetting.get -> System.Windows.Forms.Automation.AutomationLiveSetting +System.Windows.Forms.ToolStripStatusLabel.LiveSetting.set -> void +System.Windows.Forms.ToolStripStatusLabel.Spring.get -> bool +System.Windows.Forms.ToolStripStatusLabel.Spring.set -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel() -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text) -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(string? text, System.Drawing.Image? image, System.EventHandler? onClick, string? name) -> void +System.Windows.Forms.ToolStripStatusLabel.ToolStripStatusLabel(System.Drawing.Image? image) -> void +System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.All = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom = 8 -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.Left = 1 -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.None = 0 -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.Right = 4 -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripStatusLabelBorderSides.Top = 2 -> System.Windows.Forms.ToolStripStatusLabelBorderSides +System.Windows.Forms.ToolStripSystemRenderer +System.Windows.Forms.ToolStripSystemRenderer.ToolStripSystemRenderer() -> void +System.Windows.Forms.ToolStripTextBox +System.Windows.Forms.ToolStripTextBox.AcceptsReturn.get -> bool +System.Windows.Forms.ToolStripTextBox.AcceptsReturn.set -> void +System.Windows.Forms.ToolStripTextBox.AcceptsTab.get -> bool +System.Windows.Forms.ToolStripTextBox.AcceptsTab.set -> void +System.Windows.Forms.ToolStripTextBox.AcceptsTabChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.AppendText(string? text) -> void +System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource.get -> System.Windows.Forms.AutoCompleteStringCollection! +System.Windows.Forms.ToolStripTextBox.AutoCompleteCustomSource.set -> void +System.Windows.Forms.ToolStripTextBox.AutoCompleteMode.get -> System.Windows.Forms.AutoCompleteMode +System.Windows.Forms.ToolStripTextBox.AutoCompleteMode.set -> void +System.Windows.Forms.ToolStripTextBox.AutoCompleteSource.get -> System.Windows.Forms.AutoCompleteSource +System.Windows.Forms.ToolStripTextBox.AutoCompleteSource.set -> void +System.Windows.Forms.ToolStripTextBox.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.ToolStripTextBox.BorderStyle.set -> void +System.Windows.Forms.ToolStripTextBox.BorderStyleChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.CanUndo.get -> bool +System.Windows.Forms.ToolStripTextBox.CharacterCasing.get -> System.Windows.Forms.CharacterCasing +System.Windows.Forms.ToolStripTextBox.CharacterCasing.set -> void +System.Windows.Forms.ToolStripTextBox.Clear() -> void +System.Windows.Forms.ToolStripTextBox.ClearUndo() -> void +System.Windows.Forms.ToolStripTextBox.Copy() -> void +System.Windows.Forms.ToolStripTextBox.Cut() -> void +System.Windows.Forms.ToolStripTextBox.DeselectAll() -> void +System.Windows.Forms.ToolStripTextBox.GetCharFromPosition(System.Drawing.Point pt) -> char +System.Windows.Forms.ToolStripTextBox.GetCharIndexFromPosition(System.Drawing.Point pt) -> int +System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexFromLine(int lineNumber) -> int +System.Windows.Forms.ToolStripTextBox.GetFirstCharIndexOfCurrentLine() -> int +System.Windows.Forms.ToolStripTextBox.GetLineFromCharIndex(int index) -> int +System.Windows.Forms.ToolStripTextBox.GetPositionFromCharIndex(int index) -> System.Drawing.Point +System.Windows.Forms.ToolStripTextBox.HideSelection.get -> bool +System.Windows.Forms.ToolStripTextBox.HideSelection.set -> void +System.Windows.Forms.ToolStripTextBox.HideSelectionChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.Lines.get -> string![]! +System.Windows.Forms.ToolStripTextBox.Lines.set -> void +System.Windows.Forms.ToolStripTextBox.MaxLength.get -> int +System.Windows.Forms.ToolStripTextBox.MaxLength.set -> void +System.Windows.Forms.ToolStripTextBox.Modified.get -> bool +System.Windows.Forms.ToolStripTextBox.Modified.set -> void +System.Windows.Forms.ToolStripTextBox.ModifiedChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.Multiline.get -> bool +System.Windows.Forms.ToolStripTextBox.Multiline.set -> void +System.Windows.Forms.ToolStripTextBox.MultilineChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.Paste() -> void +System.Windows.Forms.ToolStripTextBox.ReadOnly.get -> bool +System.Windows.Forms.ToolStripTextBox.ReadOnly.set -> void +System.Windows.Forms.ToolStripTextBox.ReadOnlyChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.ScrollToCaret() -> void +System.Windows.Forms.ToolStripTextBox.Select(int start, int length) -> void +System.Windows.Forms.ToolStripTextBox.SelectAll() -> void +System.Windows.Forms.ToolStripTextBox.SelectedText.get -> string! +System.Windows.Forms.ToolStripTextBox.SelectedText.set -> void +System.Windows.Forms.ToolStripTextBox.SelectionLength.get -> int +System.Windows.Forms.ToolStripTextBox.SelectionLength.set -> void +System.Windows.Forms.ToolStripTextBox.SelectionStart.get -> int +System.Windows.Forms.ToolStripTextBox.SelectionStart.set -> void +System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled.get -> bool +System.Windows.Forms.ToolStripTextBox.ShortcutsEnabled.set -> void +System.Windows.Forms.ToolStripTextBox.TextBox.get -> System.Windows.Forms.TextBox! +System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.ToolStripTextBox.TextBoxTextAlign.set -> void +System.Windows.Forms.ToolStripTextBox.TextBoxTextAlignChanged -> System.EventHandler? +System.Windows.Forms.ToolStripTextBox.TextLength.get -> int +System.Windows.Forms.ToolStripTextBox.ToolStripTextBox() -> void +System.Windows.Forms.ToolStripTextBox.ToolStripTextBox(string? name) -> void +System.Windows.Forms.ToolStripTextBox.ToolStripTextBox(System.Windows.Forms.Control! c) -> void +System.Windows.Forms.ToolStripTextBox.Undo() -> void +System.Windows.Forms.ToolStripTextBox.WordWrap.get -> bool +System.Windows.Forms.ToolStripTextBox.WordWrap.set -> void +System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolStripTextDirection.Horizontal = 1 -> System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolStripTextDirection.Inherit = 0 -> System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolStripTextDirection.Vertical270 = 3 -> System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolStripTextDirection.Vertical90 = 2 -> System.Windows.Forms.ToolStripTextDirection +System.Windows.Forms.ToolTip +System.Windows.Forms.ToolTip.~ToolTip() -> void +System.Windows.Forms.ToolTip.Active.get -> bool +System.Windows.Forms.ToolTip.Active.set -> void +System.Windows.Forms.ToolTip.AutomaticDelay.get -> int +System.Windows.Forms.ToolTip.AutomaticDelay.set -> void +System.Windows.Forms.ToolTip.AutoPopDelay.get -> int +System.Windows.Forms.ToolTip.AutoPopDelay.set -> void +System.Windows.Forms.ToolTip.BackColor.get -> System.Drawing.Color +System.Windows.Forms.ToolTip.BackColor.set -> void +System.Windows.Forms.ToolTip.CanExtend(object! target) -> bool +System.Windows.Forms.ToolTip.Draw -> System.Windows.Forms.DrawToolTipEventHandler? +System.Windows.Forms.ToolTip.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.ToolTip.ForeColor.set -> void +System.Windows.Forms.ToolTip.GetToolTip(System.Windows.Forms.Control? control) -> string? +System.Windows.Forms.ToolTip.Hide(System.Windows.Forms.IWin32Window! win) -> void +System.Windows.Forms.ToolTip.InitialDelay.get -> int +System.Windows.Forms.ToolTip.InitialDelay.set -> void +System.Windows.Forms.ToolTip.IsBalloon.get -> bool +System.Windows.Forms.ToolTip.IsBalloon.set -> void +System.Windows.Forms.ToolTip.OwnerDraw.get -> bool +System.Windows.Forms.ToolTip.OwnerDraw.set -> void +System.Windows.Forms.ToolTip.Popup -> System.Windows.Forms.PopupEventHandler? +System.Windows.Forms.ToolTip.RemoveAll() -> void +System.Windows.Forms.ToolTip.ReshowDelay.get -> int +System.Windows.Forms.ToolTip.ReshowDelay.set -> void +System.Windows.Forms.ToolTip.SetToolTip(System.Windows.Forms.Control! control, string? caption) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int duration) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int x, int y) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, int x, int y, int duration) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, System.Drawing.Point point) -> void +System.Windows.Forms.ToolTip.Show(string? text, System.Windows.Forms.IWin32Window! window, System.Drawing.Point point, int duration) -> void +System.Windows.Forms.ToolTip.ShowAlways.get -> bool +System.Windows.Forms.ToolTip.ShowAlways.set -> void +System.Windows.Forms.ToolTip.StopTimer() -> void +System.Windows.Forms.ToolTip.StripAmpersands.get -> bool +System.Windows.Forms.ToolTip.StripAmpersands.set -> void +System.Windows.Forms.ToolTip.Tag.get -> object? +System.Windows.Forms.ToolTip.Tag.set -> void +System.Windows.Forms.ToolTip.ToolTip() -> void +System.Windows.Forms.ToolTip.ToolTip(System.ComponentModel.IContainer! cont) -> void +System.Windows.Forms.ToolTip.ToolTipIcon.get -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.ToolTip.ToolTipIcon.set -> void +System.Windows.Forms.ToolTip.ToolTipTitle.get -> string! +System.Windows.Forms.ToolTip.ToolTipTitle.set -> void +System.Windows.Forms.ToolTip.UseAnimation.get -> bool +System.Windows.Forms.ToolTip.UseAnimation.set -> void +System.Windows.Forms.ToolTip.UseFading.get -> bool +System.Windows.Forms.ToolTip.UseFading.set -> void +System.Windows.Forms.ToolTipIcon +System.Windows.Forms.ToolTipIcon.Error = 3 -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.ToolTipIcon.Info = 1 -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.ToolTipIcon.None = 0 -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.ToolTipIcon.Warning = 2 -> System.Windows.Forms.ToolTipIcon +System.Windows.Forms.TrackBar +System.Windows.Forms.TrackBar.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.BeginInit() -> void +System.Windows.Forms.TrackBar.Click -> System.EventHandler? +System.Windows.Forms.TrackBar.DoubleClick -> System.EventHandler? +System.Windows.Forms.TrackBar.EndInit() -> void +System.Windows.Forms.TrackBar.FontChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.TrackBar.ImeMode.set -> void +System.Windows.Forms.TrackBar.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.LargeChange.get -> int +System.Windows.Forms.TrackBar.LargeChange.set -> void +System.Windows.Forms.TrackBar.Maximum.get -> int +System.Windows.Forms.TrackBar.Maximum.set -> void +System.Windows.Forms.TrackBar.Minimum.get -> int +System.Windows.Forms.TrackBar.Minimum.set -> void +System.Windows.Forms.TrackBar.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.TrackBar.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.TrackBar.Orientation.get -> System.Windows.Forms.Orientation +System.Windows.Forms.TrackBar.Orientation.set -> void +System.Windows.Forms.TrackBar.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.TrackBar.Padding.set -> void +System.Windows.Forms.TrackBar.PaddingChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.TrackBar.RightToLeftLayoutChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.Scroll -> System.EventHandler? +System.Windows.Forms.TrackBar.SetRange(int minValue, int maxValue) -> void +System.Windows.Forms.TrackBar.SmallChange.get -> int +System.Windows.Forms.TrackBar.SmallChange.set -> void +System.Windows.Forms.TrackBar.TextChanged -> System.EventHandler? +System.Windows.Forms.TrackBar.TickFrequency.get -> int +System.Windows.Forms.TrackBar.TickFrequency.set -> void +System.Windows.Forms.TrackBar.TickStyle.get -> System.Windows.Forms.TickStyle +System.Windows.Forms.TrackBar.TickStyle.set -> void +System.Windows.Forms.TrackBar.TrackBar() -> void +System.Windows.Forms.TrackBar.Value.get -> int +System.Windows.Forms.TrackBar.Value.set -> void +System.Windows.Forms.TrackBar.ValueChanged -> System.EventHandler? +System.Windows.Forms.TrackBarRenderer +System.Windows.Forms.TreeNode +System.Windows.Forms.TreeNode.BackColor.get -> System.Drawing.Color +System.Windows.Forms.TreeNode.BackColor.set -> void +System.Windows.Forms.TreeNode.BeginEdit() -> void +System.Windows.Forms.TreeNode.Bounds.get -> System.Drawing.Rectangle +System.Windows.Forms.TreeNode.Checked.get -> bool +System.Windows.Forms.TreeNode.Checked.set -> void +System.Windows.Forms.TreeNode.Collapse() -> void +System.Windows.Forms.TreeNode.Collapse(bool ignoreChildren) -> void +System.Windows.Forms.TreeNode.EndEdit(bool cancel) -> void +System.Windows.Forms.TreeNode.EnsureVisible() -> void +System.Windows.Forms.TreeNode.Expand() -> void +System.Windows.Forms.TreeNode.ExpandAll() -> void +System.Windows.Forms.TreeNode.ForeColor.get -> System.Drawing.Color +System.Windows.Forms.TreeNode.ForeColor.set -> void +System.Windows.Forms.TreeNode.GetNodeCount(bool includeSubTrees) -> int +System.Windows.Forms.TreeNode.Handle.get -> nint +System.Windows.Forms.TreeNode.ImageIndex.get -> int +System.Windows.Forms.TreeNode.ImageIndex.set -> void +System.Windows.Forms.TreeNode.Index.get -> int +System.Windows.Forms.TreeNode.IsEditing.get -> bool +System.Windows.Forms.TreeNode.IsExpanded.get -> bool +System.Windows.Forms.TreeNode.IsSelected.get -> bool +System.Windows.Forms.TreeNode.IsVisible.get -> bool +System.Windows.Forms.TreeNode.Level.get -> int +System.Windows.Forms.TreeNode.Remove() -> void +System.Windows.Forms.TreeNode.SelectedImageIndex.get -> int +System.Windows.Forms.TreeNode.SelectedImageIndex.set -> void +System.Windows.Forms.TreeNode.StateImageIndex.get -> int +System.Windows.Forms.TreeNode.StateImageIndex.set -> void +System.Windows.Forms.TreeNode.Toggle() -> void +System.Windows.Forms.TreeNode.TreeNode() -> void +System.Windows.Forms.TreeNodeCollection +System.Windows.Forms.TreeNodeCollection.Count.get -> int +System.Windows.Forms.TreeNodeCollection.IsReadOnly.get -> bool +System.Windows.Forms.TreeNodeConverter +System.Windows.Forms.TreeNodeConverter.TreeNodeConverter() -> void +System.Windows.Forms.TreeNodeMouseClickEventArgs +System.Windows.Forms.TreeNodeMouseClickEventArgs.Node.get -> System.Windows.Forms.TreeNode! +System.Windows.Forms.TreeNodeMouseClickEventArgs.TreeNodeMouseClickEventArgs(System.Windows.Forms.TreeNode! node, System.Windows.Forms.MouseButtons button, int clicks, int x, int y) -> void +System.Windows.Forms.TreeNodeMouseClickEventHandler +System.Windows.Forms.TreeNodeMouseHoverEventArgs +System.Windows.Forms.TreeNodeMouseHoverEventArgs.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.TreeNodeMouseHoverEventArgs.TreeNodeMouseHoverEventArgs(System.Windows.Forms.TreeNode? node) -> void +System.Windows.Forms.TreeNodeMouseHoverEventHandler +System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Checked = 8 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Default = 32 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Focused = 16 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Grayed = 2 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Hot = 64 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Indeterminate = 256 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Marked = 128 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.Selected = 1 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeNodeStates.ShowKeyboardCues = 512 -> System.Windows.Forms.TreeNodeStates +System.Windows.Forms.TreeView +System.Windows.Forms.TreeView.AfterCheck -> System.Windows.Forms.TreeViewEventHandler +System.Windows.Forms.TreeView.AfterCollapse -> System.Windows.Forms.TreeViewEventHandler +System.Windows.Forms.TreeView.AfterExpand -> System.Windows.Forms.TreeViewEventHandler +System.Windows.Forms.TreeView.AfterLabelEdit -> System.Windows.Forms.NodeLabelEditEventHandler +System.Windows.Forms.TreeView.AfterSelect -> System.Windows.Forms.TreeViewEventHandler +System.Windows.Forms.TreeView.BackgroundImageChanged -> System.EventHandler +System.Windows.Forms.TreeView.BackgroundImageLayoutChanged -> System.EventHandler +System.Windows.Forms.TreeView.BeforeCheck -> System.Windows.Forms.TreeViewCancelEventHandler +System.Windows.Forms.TreeView.BeforeCollapse -> System.Windows.Forms.TreeViewCancelEventHandler +System.Windows.Forms.TreeView.BeforeExpand -> System.Windows.Forms.TreeViewCancelEventHandler +System.Windows.Forms.TreeView.BeforeLabelEdit -> System.Windows.Forms.NodeLabelEditEventHandler +System.Windows.Forms.TreeView.BeforeSelect -> System.Windows.Forms.TreeViewCancelEventHandler +System.Windows.Forms.TreeView.BeginUpdate() -> void +System.Windows.Forms.TreeView.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.TreeView.BorderStyle.set -> void +System.Windows.Forms.TreeView.CheckBoxes.get -> bool +System.Windows.Forms.TreeView.CheckBoxes.set -> void +System.Windows.Forms.TreeView.CollapseAll() -> void +System.Windows.Forms.TreeView.DrawMode.get -> System.Windows.Forms.TreeViewDrawMode +System.Windows.Forms.TreeView.DrawMode.set -> void +System.Windows.Forms.TreeView.DrawNode -> System.Windows.Forms.DrawTreeNodeEventHandler +System.Windows.Forms.TreeView.EndUpdate() -> void +System.Windows.Forms.TreeView.ExpandAll() -> void +System.Windows.Forms.TreeView.FullRowSelect.get -> bool +System.Windows.Forms.TreeView.FullRowSelect.set -> void +System.Windows.Forms.TreeView.GetNodeCount(bool includeSubTrees) -> int +System.Windows.Forms.TreeView.HideSelection.get -> bool +System.Windows.Forms.TreeView.HideSelection.set -> void +System.Windows.Forms.TreeView.HotTracking.get -> bool +System.Windows.Forms.TreeView.HotTracking.set -> void +System.Windows.Forms.TreeView.ImageIndex.get -> int +System.Windows.Forms.TreeView.ImageIndex.set -> void +System.Windows.Forms.TreeView.Indent.get -> int +System.Windows.Forms.TreeView.Indent.set -> void +System.Windows.Forms.TreeView.ItemDrag -> System.Windows.Forms.ItemDragEventHandler +System.Windows.Forms.TreeView.ItemHeight.get -> int +System.Windows.Forms.TreeView.ItemHeight.set -> void +System.Windows.Forms.TreeView.LabelEdit.get -> bool +System.Windows.Forms.TreeView.LabelEdit.set -> void +System.Windows.Forms.TreeView.LineColor.get -> System.Drawing.Color +System.Windows.Forms.TreeView.LineColor.set -> void +System.Windows.Forms.TreeView.NodeMouseClick -> System.Windows.Forms.TreeNodeMouseClickEventHandler +System.Windows.Forms.TreeView.NodeMouseDoubleClick -> System.Windows.Forms.TreeNodeMouseClickEventHandler +System.Windows.Forms.TreeView.NodeMouseHover -> System.Windows.Forms.TreeNodeMouseHoverEventHandler +System.Windows.Forms.TreeView.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.TreeView.Padding.set -> void +System.Windows.Forms.TreeView.PaddingChanged -> System.EventHandler +System.Windows.Forms.TreeView.Paint -> System.Windows.Forms.PaintEventHandler +System.Windows.Forms.TreeView.RightToLeftLayoutChanged -> System.EventHandler +System.Windows.Forms.TreeView.Scrollable.get -> bool +System.Windows.Forms.TreeView.Scrollable.set -> void +System.Windows.Forms.TreeView.SelectedImageIndex.get -> int +System.Windows.Forms.TreeView.SelectedImageIndex.set -> void +System.Windows.Forms.TreeView.ShowLines.get -> bool +System.Windows.Forms.TreeView.ShowLines.set -> void +System.Windows.Forms.TreeView.ShowNodeToolTips.get -> bool +System.Windows.Forms.TreeView.ShowNodeToolTips.set -> void +System.Windows.Forms.TreeView.ShowPlusMinus.get -> bool +System.Windows.Forms.TreeView.ShowPlusMinus.set -> void +System.Windows.Forms.TreeView.ShowRootLines.get -> bool +System.Windows.Forms.TreeView.ShowRootLines.set -> void +System.Windows.Forms.TreeView.Sort() -> void +System.Windows.Forms.TreeView.Sorted.get -> bool +System.Windows.Forms.TreeView.Sorted.set -> void +System.Windows.Forms.TreeView.TextChanged -> System.EventHandler +System.Windows.Forms.TreeView.TreeView() -> void +System.Windows.Forms.TreeView.VisibleCount.get -> int +System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewAction.ByKeyboard = 1 -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewAction.ByMouse = 2 -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewAction.Collapse = 3 -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewAction.Expand = 4 -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewAction.Unknown = 0 -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewCancelEventArgs +System.Windows.Forms.TreeViewCancelEventArgs.Action.get -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewCancelEventArgs.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.TreeViewCancelEventArgs.TreeViewCancelEventArgs(System.Windows.Forms.TreeNode? node, bool cancel, System.Windows.Forms.TreeViewAction action) -> void +System.Windows.Forms.TreeViewCancelEventHandler +System.Windows.Forms.TreeViewDrawMode +System.Windows.Forms.TreeViewDrawMode.Normal = 0 -> System.Windows.Forms.TreeViewDrawMode +System.Windows.Forms.TreeViewDrawMode.OwnerDrawAll = 2 -> System.Windows.Forms.TreeViewDrawMode +System.Windows.Forms.TreeViewDrawMode.OwnerDrawText = 1 -> System.Windows.Forms.TreeViewDrawMode +System.Windows.Forms.TreeViewEventArgs +System.Windows.Forms.TreeViewEventArgs.Action.get -> System.Windows.Forms.TreeViewAction +System.Windows.Forms.TreeViewEventArgs.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.TreeViewEventArgs.TreeViewEventArgs(System.Windows.Forms.TreeNode? node) -> void +System.Windows.Forms.TreeViewEventArgs.TreeViewEventArgs(System.Windows.Forms.TreeNode? node, System.Windows.Forms.TreeViewAction action) -> void +System.Windows.Forms.TreeViewEventHandler +System.Windows.Forms.TreeViewHitTestInfo +System.Windows.Forms.TreeViewHitTestInfo.Location.get -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestInfo.Node.get -> System.Windows.Forms.TreeNode? +System.Windows.Forms.TreeViewHitTestInfo.TreeViewHitTestInfo(System.Windows.Forms.TreeNode? hitNode, System.Windows.Forms.TreeViewHitTestLocations hitLocation) -> void +System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.AboveClientArea = 256 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.BelowClientArea = 512 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.Image = 2 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.Indent = 8 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.Label = 4 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.LeftOfClientArea = 2048 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.None = 1 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.PlusMinus = 16 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.RightOfClientArea = 1024 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.RightOfLabel = 32 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewHitTestLocations.StateImage = 64 -> System.Windows.Forms.TreeViewHitTestLocations +System.Windows.Forms.TreeViewImageIndexConverter +System.Windows.Forms.TreeViewImageIndexConverter.TreeViewImageIndexConverter() -> void +System.Windows.Forms.TreeViewImageKeyConverter +System.Windows.Forms.TreeViewImageKeyConverter.TreeViewImageKeyConverter() -> void +System.Windows.Forms.TypeValidationEventArgs +System.Windows.Forms.TypeValidationEventArgs.Cancel.get -> bool +System.Windows.Forms.TypeValidationEventArgs.Cancel.set -> void +System.Windows.Forms.TypeValidationEventArgs.IsValidInput.get -> bool +System.Windows.Forms.TypeValidationEventArgs.Message.get -> string? +System.Windows.Forms.TypeValidationEventArgs.ReturnValue.get -> object? +System.Windows.Forms.TypeValidationEventArgs.TypeValidationEventArgs(System.Type? validatingType, bool isValidInput, object? returnValue, string? message) -> void +System.Windows.Forms.TypeValidationEventArgs.ValidatingType.get -> System.Type? +System.Windows.Forms.TypeValidationEventHandler +System.Windows.Forms.UICues +System.Windows.Forms.UICues.Changed = System.Windows.Forms.UICues.ChangeFocus | System.Windows.Forms.UICues.ChangeKeyboard -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.ChangeFocus = 4 -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.ChangeKeyboard = 8 -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.None = 0 -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.ShowFocus = 1 -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.ShowKeyboard = 2 -> System.Windows.Forms.UICues +System.Windows.Forms.UICues.Shown = System.Windows.Forms.UICues.ShowFocus | System.Windows.Forms.UICues.ShowKeyboard -> System.Windows.Forms.UICues +System.Windows.Forms.UICuesEventArgs +System.Windows.Forms.UICuesEventArgs.Changed.get -> System.Windows.Forms.UICues +System.Windows.Forms.UICuesEventArgs.ChangeFocus.get -> bool +System.Windows.Forms.UICuesEventArgs.ChangeKeyboard.get -> bool +System.Windows.Forms.UICuesEventArgs.ShowFocus.get -> bool +System.Windows.Forms.UICuesEventArgs.ShowKeyboard.get -> bool +System.Windows.Forms.UICuesEventArgs.UICuesEventArgs(System.Windows.Forms.UICues uicues) -> void +System.Windows.Forms.UICuesEventHandler +System.Windows.Forms.UnhandledExceptionMode +System.Windows.Forms.UnhandledExceptionMode.Automatic = 0 -> System.Windows.Forms.UnhandledExceptionMode +System.Windows.Forms.UnhandledExceptionMode.CatchException = 2 -> System.Windows.Forms.UnhandledExceptionMode +System.Windows.Forms.UnhandledExceptionMode.ThrowException = 1 -> System.Windows.Forms.UnhandledExceptionMode +System.Windows.Forms.UpDownBase +System.Windows.Forms.UpDownBase.AutoScrollMargin.get -> System.Drawing.Size +System.Windows.Forms.UpDownBase.AutoScrollMargin.set -> void +System.Windows.Forms.UpDownBase.AutoScrollMinSize.get -> System.Drawing.Size +System.Windows.Forms.UpDownBase.AutoScrollMinSize.set -> void +System.Windows.Forms.UpDownBase.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.UpDownBase.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.UpDownBase.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.UpDownBase.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.UpDownBase.BorderStyle.set -> void +System.Windows.Forms.UpDownBase.ChangingText.get -> bool +System.Windows.Forms.UpDownBase.ChangingText.set -> void +System.Windows.Forms.UpDownBase.DockPadding.get -> System.Windows.Forms.ScrollableControl.DockPaddingEdges! +System.Windows.Forms.UpDownBase.InterceptArrowKeys.get -> bool +System.Windows.Forms.UpDownBase.InterceptArrowKeys.set -> void +System.Windows.Forms.UpDownBase.MouseEnter -> System.EventHandler? +System.Windows.Forms.UpDownBase.MouseHover -> System.EventHandler? +System.Windows.Forms.UpDownBase.MouseLeave -> System.EventHandler? +System.Windows.Forms.UpDownBase.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.UpDownBase.PreferredHeight.get -> int +System.Windows.Forms.UpDownBase.ReadOnly.get -> bool +System.Windows.Forms.UpDownBase.ReadOnly.set -> void +System.Windows.Forms.UpDownBase.Select(int start, int length) -> void +System.Windows.Forms.UpDownBase.TextAlign.get -> System.Windows.Forms.HorizontalAlignment +System.Windows.Forms.UpDownBase.TextAlign.set -> void +System.Windows.Forms.UpDownBase.UpDownAlign.get -> System.Windows.Forms.LeftRightAlignment +System.Windows.Forms.UpDownBase.UpDownAlign.set -> void +System.Windows.Forms.UpDownBase.UpDownBase() -> void +System.Windows.Forms.UpDownBase.UserEdit.get -> bool +System.Windows.Forms.UpDownBase.UserEdit.set -> void +System.Windows.Forms.UpDownEventArgs +System.Windows.Forms.UpDownEventArgs.ButtonID.get -> int +System.Windows.Forms.UpDownEventArgs.UpDownEventArgs(int buttonPushed) -> void +System.Windows.Forms.UpDownEventHandler +System.Windows.Forms.UserControl +System.Windows.Forms.UserControl.AutoSizeChanged -> System.EventHandler? +System.Windows.Forms.UserControl.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +System.Windows.Forms.UserControl.AutoSizeMode.set -> void +System.Windows.Forms.UserControl.AutoValidateChanged -> System.EventHandler? +System.Windows.Forms.UserControl.BorderStyle.get -> System.Windows.Forms.BorderStyle +System.Windows.Forms.UserControl.BorderStyle.set -> void +System.Windows.Forms.UserControl.Load -> System.EventHandler? +System.Windows.Forms.UserControl.TextChanged -> System.EventHandler? +System.Windows.Forms.UserControl.UserControl() -> void +System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.Enabled = 2 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.ImmediateChildren = 16 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.None = 0 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.Selectable = 1 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.TabStop = 8 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.ValidationConstraints.Visible = 4 -> System.Windows.Forms.ValidationConstraints +System.Windows.Forms.View +System.Windows.Forms.View.Details = 1 -> System.Windows.Forms.View +System.Windows.Forms.View.LargeIcon = 0 -> System.Windows.Forms.View +System.Windows.Forms.View.List = 3 -> System.Windows.Forms.View +System.Windows.Forms.View.SmallIcon = 2 -> System.Windows.Forms.View +System.Windows.Forms.View.Tile = 4 -> System.Windows.Forms.View +System.Windows.Forms.VisualStyles.BackgroundType +System.Windows.Forms.VisualStyles.BackgroundType.BorderFill = 1 -> System.Windows.Forms.VisualStyles.BackgroundType +System.Windows.Forms.VisualStyles.BackgroundType.ImageFile = 0 -> System.Windows.Forms.VisualStyles.BackgroundType +System.Windows.Forms.VisualStyles.BackgroundType.None = 2 -> System.Windows.Forms.VisualStyles.BackgroundType +System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.AlwaysShowSizingBar = 2208 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.AutoSize = 2202 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.BackgroundFill = 2205 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.BorderOnly = 2203 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.Composited = 2204 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.GlyphOnly = 2207 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.GlyphTransparent = 2206 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.IntegralSizing = 2211 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.MirrorImage = 2209 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.SourceGrow = 2212 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.SourceShrink = 2213 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.Transparent = 2201 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BooleanProperty.UniformSizing = 2210 -> System.Windows.Forms.VisualStyles.BooleanProperty +System.Windows.Forms.VisualStyles.BorderType +System.Windows.Forms.VisualStyles.BorderType.Ellipse = 2 -> System.Windows.Forms.VisualStyles.BorderType +System.Windows.Forms.VisualStyles.BorderType.Rectangle = 0 -> System.Windows.Forms.VisualStyles.BorderType +System.Windows.Forms.VisualStyles.BorderType.RoundedRectangle = 1 -> System.Windows.Forms.VisualStyles.BorderType +System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.CheckedDisabled = 8 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.CheckedHot = 6 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal = 5 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.CheckedPressed = 7 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.MixedDisabled = 12 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.MixedHot = 10 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.MixedNormal = 9 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.MixedPressed = 11 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedDisabled = 4 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedHot = 2 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal = 1 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedPressed = 3 -> System.Windows.Forms.VisualStyles.CheckBoxState +System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.AccentColorHint = 3823 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.BorderColor = 3801 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.BorderColorHint = 3822 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.EdgeDarkShadowColor = 3807 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.EdgeFillColor = 3808 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.EdgeHighlightColor = 3805 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.EdgeLightColor = 3804 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.EdgeShadowColor = 3806 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.FillColor = 3802 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.FillColorHint = 3821 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GlowColor = 3816 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GlyphTextColor = 3819 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GlyphTransparentColor = 3820 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GradientColor1 = 3810 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GradientColor2 = 3811 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GradientColor3 = 3812 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GradientColor4 = 3813 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.GradientColor5 = 3814 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.ShadowColor = 3815 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.TextBorderColor = 3817 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.TextColor = 3803 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.TextShadowColor = 3818 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ColorProperty.TransparentColor = 3809 -> System.Windows.Forms.VisualStyles.ColorProperty +System.Windows.Forms.VisualStyles.ComboBoxState +System.Windows.Forms.VisualStyles.ComboBoxState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ComboBoxState +System.Windows.Forms.VisualStyles.ComboBoxState.Hot = 2 -> System.Windows.Forms.VisualStyles.ComboBoxState +System.Windows.Forms.VisualStyles.ComboBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.ComboBoxState +System.Windows.Forms.VisualStyles.ComboBoxState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ComboBoxState +System.Windows.Forms.VisualStyles.ContentAlignment +System.Windows.Forms.VisualStyles.ContentAlignment.Center = 1 -> System.Windows.Forms.VisualStyles.ContentAlignment +System.Windows.Forms.VisualStyles.ContentAlignment.Left = 0 -> System.Windows.Forms.VisualStyles.ContentAlignment +System.Windows.Forms.VisualStyles.ContentAlignment.Right = 2 -> System.Windows.Forms.VisualStyles.ContentAlignment +System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.EdgeEffects.FillInterior = 2048 -> System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.EdgeEffects.Flat = 16384 -> System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.EdgeEffects.Mono = 32768 -> System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.EdgeEffects.None = 0 -> System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.EdgeEffects.Soft = 4096 -> System.Windows.Forms.VisualStyles.EdgeEffects +System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.Edges.Bottom = 8 -> System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.Edges.Diagonal = 16 -> System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.Edges.Left = 1 -> System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.Edges.Right = 4 -> System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.Edges.Top = 2 -> System.Windows.Forms.VisualStyles.Edges +System.Windows.Forms.VisualStyles.EdgeStyle +System.Windows.Forms.VisualStyles.EdgeStyle.Bump = 9 -> System.Windows.Forms.VisualStyles.EdgeStyle +System.Windows.Forms.VisualStyles.EdgeStyle.Etched = 6 -> System.Windows.Forms.VisualStyles.EdgeStyle +System.Windows.Forms.VisualStyles.EdgeStyle.Raised = 5 -> System.Windows.Forms.VisualStyles.EdgeStyle +System.Windows.Forms.VisualStyles.EdgeStyle.Sunken = 10 -> System.Windows.Forms.VisualStyles.EdgeStyle +System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.BackgroundType = 4001 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.BorderType = 4002 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.ContentAlignment = 4006 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.FillType = 4003 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.GlyphFontSizingType = 4014 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.GlyphType = 4012 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.HorizontalAlignment = 4005 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.IconEffect = 4009 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.ImageLayout = 4011 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.ImageSelectType = 4013 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.OffsetType = 4008 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.SizingType = 4004 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.TextShadowType = 4010 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.TrueSizeScalingType = 4015 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.EnumProperty.VerticalAlignment = 4007 -> System.Windows.Forms.VisualStyles.EnumProperty +System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.GlyphImageFile = 3008 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile = 3001 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile1 = 3002 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile2 = 3003 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile3 = 3004 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile4 = 3005 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.ImageFile5 = 3006 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FilenameProperty.StockImageFile = 3007 -> System.Windows.Forms.VisualStyles.FilenameProperty +System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FillType.HorizontalGradient = 2 -> System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FillType.RadialGradient = 3 -> System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FillType.Solid = 0 -> System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FillType.TileImage = 4 -> System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FillType.VerticalGradient = 1 -> System.Windows.Forms.VisualStyles.FillType +System.Windows.Forms.VisualStyles.FontProperty +System.Windows.Forms.VisualStyles.FontProperty.GlyphFont = 2601 -> System.Windows.Forms.VisualStyles.FontProperty +System.Windows.Forms.VisualStyles.FontProperty.TextFont = 210 -> System.Windows.Forms.VisualStyles.FontProperty +System.Windows.Forms.VisualStyles.GlyphFontSizingType +System.Windows.Forms.VisualStyles.GlyphFontSizingType.Dpi = 2 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType +System.Windows.Forms.VisualStyles.GlyphFontSizingType.None = 0 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType +System.Windows.Forms.VisualStyles.GlyphFontSizingType.Size = 1 -> System.Windows.Forms.VisualStyles.GlyphFontSizingType +System.Windows.Forms.VisualStyles.GlyphType +System.Windows.Forms.VisualStyles.GlyphType.FontGlyph = 2 -> System.Windows.Forms.VisualStyles.GlyphType +System.Windows.Forms.VisualStyles.GlyphType.ImageGlyph = 1 -> System.Windows.Forms.VisualStyles.GlyphType +System.Windows.Forms.VisualStyles.GlyphType.None = 0 -> System.Windows.Forms.VisualStyles.GlyphType +System.Windows.Forms.VisualStyles.GroupBoxState +System.Windows.Forms.VisualStyles.GroupBoxState.Disabled = 2 -> System.Windows.Forms.VisualStyles.GroupBoxState +System.Windows.Forms.VisualStyles.GroupBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.GroupBoxState +System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Bottom = 15 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.BottomLeft = 16 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.BottomRight = 17 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Client = 1 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Left = 10 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Nowhere = 0 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Right = 11 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.Top = 12 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.TopLeft = 13 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestCode.TopRight = 14 -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.BackgroundSegment = 0 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.Caption = 4 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.FixedBorder = 2 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorder = System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight | System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderBottom = 128 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderLeft = 16 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderRight = 64 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.ResizingBorderTop = 32 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.SizingTemplate = 256 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HitTestOptions.SystemSizingMargins = 512 -> System.Windows.Forms.VisualStyles.HitTestOptions +System.Windows.Forms.VisualStyles.HorizontalAlign +System.Windows.Forms.VisualStyles.HorizontalAlign.Center = 1 -> System.Windows.Forms.VisualStyles.HorizontalAlign +System.Windows.Forms.VisualStyles.HorizontalAlign.Left = 0 -> System.Windows.Forms.VisualStyles.HorizontalAlign +System.Windows.Forms.VisualStyles.HorizontalAlign.Right = 2 -> System.Windows.Forms.VisualStyles.HorizontalAlign +System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.IconEffect.Alpha = 4 -> System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.IconEffect.Glow = 1 -> System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.IconEffect.None = 0 -> System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.IconEffect.Pulse = 3 -> System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.IconEffect.Shadow = 2 -> System.Windows.Forms.VisualStyles.IconEffect +System.Windows.Forms.VisualStyles.ImageOrientation +System.Windows.Forms.VisualStyles.ImageOrientation.Horizontal = 1 -> System.Windows.Forms.VisualStyles.ImageOrientation +System.Windows.Forms.VisualStyles.ImageOrientation.Vertical = 0 -> System.Windows.Forms.VisualStyles.ImageOrientation +System.Windows.Forms.VisualStyles.ImageSelectType +System.Windows.Forms.VisualStyles.ImageSelectType.Dpi = 2 -> System.Windows.Forms.VisualStyles.ImageSelectType +System.Windows.Forms.VisualStyles.ImageSelectType.None = 0 -> System.Windows.Forms.VisualStyles.ImageSelectType +System.Windows.Forms.VisualStyles.ImageSelectType.Size = 1 -> System.Windows.Forms.VisualStyles.ImageSelectType +System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.AlphaLevel = 2402 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.AlphaThreshold = 2415 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.BorderSize = 2403 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GlyphIndex = 2418 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio1 = 2406 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio2 = 2407 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio3 = 2408 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio4 = 2409 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.GradientRatio5 = 2410 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.Height = 2417 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.ImageCount = 2401 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi1 = 2420 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi2 = 2421 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi3 = 2422 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi4 = 2423 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.MinDpi5 = 2424 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.ProgressChunkSize = 2411 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.ProgressSpaceSize = 2412 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerHeight = 2405 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.RoundCornerWidth = 2404 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.Saturation = 2413 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.TextBorderSize = 2414 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.TrueSizeStretchMark = 2419 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.IntegerProperty.Width = 2416 -> System.Windows.Forms.VisualStyles.IntegerProperty +System.Windows.Forms.VisualStyles.MarginProperty +System.Windows.Forms.VisualStyles.MarginProperty.CaptionMargins = 3603 -> System.Windows.Forms.VisualStyles.MarginProperty +System.Windows.Forms.VisualStyles.MarginProperty.ContentMargins = 3602 -> System.Windows.Forms.VisualStyles.MarginProperty +System.Windows.Forms.VisualStyles.MarginProperty.SizingMargins = 3601 -> System.Windows.Forms.VisualStyles.MarginProperty +System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.AboveLastButton = 12 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.BelowLastButton = 13 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.BottomLeft = 3 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.BottomMiddle = 5 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.BottomRight = 4 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.LeftOfCaption = 8 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.LeftOfLastButton = 10 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.MiddleLeft = 6 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.MiddleRight = 7 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.RightOfCaption = 9 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.RightOfLastButton = 11 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.TopLeft = 0 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.TopMiddle = 2 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.OffsetType.TopRight = 1 -> System.Windows.Forms.VisualStyles.OffsetType +System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize = 3403 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize1 = 3404 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize2 = 3405 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize3 = 3406 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize4 = 3407 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.MinSize5 = 3408 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.Offset = 3401 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PointProperty.TextShadowOffset = 3402 -> System.Windows.Forms.VisualStyles.PointProperty +System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.PushButtonState.Default = 5 -> System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.PushButtonState.Disabled = 4 -> System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.PushButtonState.Hot = 2 -> System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.PushButtonState.Normal = 1 -> System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.PushButtonState.Pressed = 3 -> System.Windows.Forms.VisualStyles.PushButtonState +System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.CheckedDisabled = 8 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.CheckedHot = 6 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.CheckedNormal = 5 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.CheckedPressed = 7 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedDisabled = 4 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedHot = 2 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedNormal = 1 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.RadioButtonState.UncheckedPressed = 3 -> System.Windows.Forms.VisualStyles.RadioButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownDisabled = 8 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownHot = 6 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownNormal = 5 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.DownPressed = 7 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftDisabled = 12 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftHot = 10 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftNormal = 9 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.LeftPressed = 11 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightDisabled = 16 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightHot = 14 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightNormal = 13 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.RightPressed = 15 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpDisabled = 4 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpHot = 2 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpNormal = 1 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState.UpPressed = 3 -> System.Windows.Forms.VisualStyles.ScrollBarArrowButtonState +System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState +System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.LeftAlign = 2 -> System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState +System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState.RightAlign = 1 -> System.Windows.Forms.VisualStyles.ScrollBarSizeBoxState +System.Windows.Forms.VisualStyles.ScrollBarState +System.Windows.Forms.VisualStyles.ScrollBarState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ScrollBarState +System.Windows.Forms.VisualStyles.ScrollBarState.Hot = 2 -> System.Windows.Forms.VisualStyles.ScrollBarState +System.Windows.Forms.VisualStyles.ScrollBarState.Normal = 1 -> System.Windows.Forms.VisualStyles.ScrollBarState +System.Windows.Forms.VisualStyles.ScrollBarState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ScrollBarState +System.Windows.Forms.VisualStyles.SizingType +System.Windows.Forms.VisualStyles.SizingType.FixedSize = 0 -> System.Windows.Forms.VisualStyles.SizingType +System.Windows.Forms.VisualStyles.SizingType.Stretch = 1 -> System.Windows.Forms.VisualStyles.SizingType +System.Windows.Forms.VisualStyles.SizingType.Tile = 2 -> System.Windows.Forms.VisualStyles.SizingType +System.Windows.Forms.VisualStyles.StringProperty +System.Windows.Forms.VisualStyles.StringProperty.Text = 3201 -> System.Windows.Forms.VisualStyles.StringProperty +System.Windows.Forms.VisualStyles.TabItemState +System.Windows.Forms.VisualStyles.TabItemState.Disabled = 4 -> System.Windows.Forms.VisualStyles.TabItemState +System.Windows.Forms.VisualStyles.TabItemState.Hot = 2 -> System.Windows.Forms.VisualStyles.TabItemState +System.Windows.Forms.VisualStyles.TabItemState.Normal = 1 -> System.Windows.Forms.VisualStyles.TabItemState +System.Windows.Forms.VisualStyles.TabItemState.Selected = 3 -> System.Windows.Forms.VisualStyles.TabItemState +System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Assist = 7 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Disabled = 4 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Hot = 2 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Normal = 1 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Readonly = 6 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextBoxState.Selected = 3 -> System.Windows.Forms.VisualStyles.TextBoxState +System.Windows.Forms.VisualStyles.TextShadowType +System.Windows.Forms.VisualStyles.TextShadowType.Continuous = 2 -> System.Windows.Forms.VisualStyles.TextShadowType +System.Windows.Forms.VisualStyles.TextShadowType.None = 0 -> System.Windows.Forms.VisualStyles.TextShadowType +System.Windows.Forms.VisualStyles.TextShadowType.Single = 1 -> System.Windows.Forms.VisualStyles.TextShadowType +System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.Checked = 5 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.Disabled = 4 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.Hot = 2 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.HotChecked = 6 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.Normal = 1 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.ToolBarState.Pressed = 3 -> System.Windows.Forms.VisualStyles.ToolBarState +System.Windows.Forms.VisualStyles.TrackBarThumbState +System.Windows.Forms.VisualStyles.TrackBarThumbState.Disabled = 5 -> System.Windows.Forms.VisualStyles.TrackBarThumbState +System.Windows.Forms.VisualStyles.TrackBarThumbState.Hot = 2 -> System.Windows.Forms.VisualStyles.TrackBarThumbState +System.Windows.Forms.VisualStyles.TrackBarThumbState.Normal = 1 -> System.Windows.Forms.VisualStyles.TrackBarThumbState +System.Windows.Forms.VisualStyles.TrackBarThumbState.Pressed = 3 -> System.Windows.Forms.VisualStyles.TrackBarThumbState +System.Windows.Forms.VisualStyles.TrueSizeScalingType +System.Windows.Forms.VisualStyles.TrueSizeScalingType.Dpi = 2 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType +System.Windows.Forms.VisualStyles.TrueSizeScalingType.None = 0 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType +System.Windows.Forms.VisualStyles.TrueSizeScalingType.Size = 1 -> System.Windows.Forms.VisualStyles.TrueSizeScalingType +System.Windows.Forms.VisualStyles.VerticalAlignment +System.Windows.Forms.VisualStyles.VerticalAlignment.Bottom = 2 -> System.Windows.Forms.VisualStyles.VerticalAlignment +System.Windows.Forms.VisualStyles.VerticalAlignment.Center = 1 -> System.Windows.Forms.VisualStyles.VerticalAlignment +System.Windows.Forms.VisualStyles.VerticalAlignment.Top = 0 -> System.Windows.Forms.VisualStyles.VerticalAlignment +System.Windows.Forms.VisualStyles.VisualStyleElement +System.Windows.Forms.VisualStyles.VisualStyleElement.Button +System.Windows.Forms.VisualStyles.VisualStyleElement.Button.CheckBox +System.Windows.Forms.VisualStyles.VisualStyleElement.Button.GroupBox +System.Windows.Forms.VisualStyles.VisualStyleElement.Button.PushButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Button.RadioButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Button.UserButton +System.Windows.Forms.VisualStyles.VisualStyleElement.ClassName.get -> string! +System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox +System.Windows.Forms.VisualStyles.VisualStyleElement.ComboBox.DropDownButton +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderBackground +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderClose +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.HeaderPin +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.IEBarMenu +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupBackground +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupCollapse +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupExpand +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.NormalGroupHead +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupBackground +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupCollapse +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupExpand +System.Windows.Forms.VisualStyles.VisualStyleElement.ExplorerBar.SpecialGroupHead +System.Windows.Forms.VisualStyles.VisualStyleElement.Header +System.Windows.Forms.VisualStyles.VisualStyleElement.Header.Item +System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.Header.ItemRight +System.Windows.Forms.VisualStyles.VisualStyleElement.Header.SortArrow +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Detail +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.EmptyText +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Group +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.Item +System.Windows.Forms.VisualStyles.VisualStyleElement.ListView.SortedDetail +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarDropDown +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.BarItem +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Chevron +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.DropDown +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Item +System.Windows.Forms.VisualStyles.VisualStyleElement.Menu.Separator +System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand +System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.NewApplicationButton +System.Windows.Forms.VisualStyles.VisualStyleElement.MenuBand.Separator +System.Windows.Forms.VisualStyles.VisualStyleElement.Page +System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Down +System.Windows.Forms.VisualStyles.VisualStyleElement.Page.DownHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.Page.Up +System.Windows.Forms.VisualStyles.VisualStyleElement.Page.UpHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.Part.get -> int +System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar +System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Bar +System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.BarVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk +System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.ChunkVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Band +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Chevron +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.ChevronVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.Gripper +System.Windows.Forms.VisualStyles.VisualStyleElement.Rebar.GripperVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ArrowButton +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.GripperVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LeftTrackHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.LowerTrackVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.RightTrackHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.SizeBox +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.ThumbButtonVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ScrollBar.UpperTrackVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.Spin +System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Down +System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.DownHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.Up +System.Windows.Forms.VisualStyles.VisualStyleElement.Spin.UpHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOff +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.LogOffButtons +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MorePrograms +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.MoreProgramsArrow +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceList +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.PlaceListSeparator +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.Preview +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgList +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.ProgListSeparator +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPane +System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel.UserPicture +System.Windows.Forms.VisualStyles.VisualStyleElement.State.get -> int +System.Windows.Forms.VisualStyles.VisualStyleElement.Status +System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Bar +System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Gripper +System.Windows.Forms.VisualStyles.VisualStyleElement.Status.GripperPane +System.Windows.Forms.VisualStyles.VisualStyleElement.Status.Pane +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Body +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.Pane +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItem +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemBothEdges +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemLeftEdge +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TabItemRightEdge +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItem +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemBothEdges +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemLeftEdge +System.Windows.Forms.VisualStyles.VisualStyleElement.Tab.TopTabItemRightEdge +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButton +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.FlashButtonGroupMenu +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskBand.GroupCount +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundBottom +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundRight +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.BackgroundTop +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarBottom +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarRight +System.Windows.Forms.VisualStyles.VisualStyleElement.Taskbar.SizingBarTop +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock +System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock.Time +System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox +System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.Caret +System.Windows.Forms.VisualStyles.VisualStyleElement.TextBox.TextEdit +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.Button +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.DropDownButton +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorHorizontal +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SeparatorVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButton +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolBar.SplitButtonDropDown +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Balloon +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.BalloonTitle +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Close +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.Standard +System.Windows.Forms.VisualStyles.VisualStyleElement.ToolTip.StandardTitle +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Thumb +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbBottom +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbRight +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbTop +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.ThumbVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Ticks +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TicksVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.Track +System.Windows.Forms.VisualStyles.VisualStyleElement.TrackBar.TrackVertical +System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify +System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.AnimateBackground +System.Windows.Forms.VisualStyles.VisualStyleElement.TrayNotify.Background +System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView +System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Branch +System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Glyph +System.Windows.Forms.VisualStyles.VisualStyleElement.TreeView.Item +System.Windows.Forms.VisualStyles.VisualStyleElement.Window +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Caption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CaptionSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.CloseButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.Dialog +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottom +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameBottomSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameLeftSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRight +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.FrameRightSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HelpButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalScroll +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.HorizontalThumb +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MaxCaption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiCloseButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiHelpButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiMinButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiRestoreButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MdiSysButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.MinCaption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.RestoreButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCaptionSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallCloseButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottom +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameBottomSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeft +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameLeftSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRight +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallFrameRightSizingTemplate +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMaxCaption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SmallMinCaption +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.SysButton +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalScroll +System.Windows.Forms.VisualStyles.VisualStyleElement.Window.VerticalThumb +System.Windows.Forms.VisualStyles.VisualStyleInformation +System.Windows.Forms.VisualStyles.VisualStyleRenderer +System.Windows.Forms.VisualStyles.VisualStyleRenderer.Class.get -> string! +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Drawing.Rectangle clipRectangle) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawEdge(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.Edges edges, System.Windows.Forms.VisualStyles.EdgeStyle style, System.Windows.Forms.VisualStyles.EdgeEffects effects) -> System.Drawing.Rectangle +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Drawing.Image! image) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawImage(System.Drawing.Graphics! g, System.Drawing.Rectangle bounds, System.Windows.Forms.ImageList! imageList, int imageIndex) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawParentBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.Control! childControl) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.DrawText(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string? textToDraw, bool drawDisabled, System.Windows.Forms.TextFormatFlags flags) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundContentRectangle(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> System.Drawing.Rectangle +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundExtent(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle contentBounds) -> System.Drawing.Rectangle +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBackgroundRegion(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds) -> System.Drawing.Region? +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetBoolean(System.Windows.Forms.VisualStyles.BooleanProperty prop) -> bool +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetColor(System.Windows.Forms.VisualStyles.ColorProperty prop) -> System.Drawing.Color +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetEnumValue(System.Windows.Forms.VisualStyles.EnumProperty prop) -> int +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFilename(System.Windows.Forms.VisualStyles.FilenameProperty prop) -> string! +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetFont(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.FontProperty prop) -> System.Drawing.Font? +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetInteger(System.Windows.Forms.VisualStyles.IntegerProperty prop) -> int +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetMargins(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.MarginProperty prop) -> System.Windows.Forms.Padding +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, System.Windows.Forms.VisualStyles.ThemeSizeType type) -> System.Drawing.Size +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPartSize(System.Drawing.IDeviceContext! dc, System.Windows.Forms.VisualStyles.ThemeSizeType type) -> System.Drawing.Size +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetPoint(System.Windows.Forms.VisualStyles.PointProperty prop) -> System.Drawing.Point +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetString(System.Windows.Forms.VisualStyles.StringProperty prop) -> string! +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext! dc, string! textToDraw, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Rectangle +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextExtent(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle bounds, string! textToDraw, System.Windows.Forms.TextFormatFlags flags) -> System.Drawing.Rectangle +System.Windows.Forms.VisualStyles.VisualStyleRenderer.GetTextMetrics(System.Drawing.IDeviceContext! dc) -> System.Windows.Forms.VisualStyles.TextMetrics +System.Windows.Forms.VisualStyles.VisualStyleRenderer.Handle.get -> nint +System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.Graphics! g, System.Drawing.Rectangle backgroundRectangle, System.Drawing.Region! region, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle backgroundRectangle, nint hRgn, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.VisualStyleRenderer.HitTestBackground(System.Drawing.IDeviceContext! dc, System.Drawing.Rectangle backgroundRectangle, System.Drawing.Point pt, System.Windows.Forms.VisualStyles.HitTestOptions options) -> System.Windows.Forms.VisualStyles.HitTestCode +System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsBackgroundPartiallyTransparent() -> bool +System.Windows.Forms.VisualStyles.VisualStyleRenderer.LastHResult.get -> int +System.Windows.Forms.VisualStyles.VisualStyleRenderer.Part.get -> int +System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(string! className, int part, int state) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.SetParameters(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.State.get -> int +System.Windows.Forms.VisualStyles.VisualStyleRenderer.VisualStyleRenderer(string! className, int part, int state) -> void +System.Windows.Forms.VisualStyles.VisualStyleRenderer.VisualStyleRenderer(System.Windows.Forms.VisualStyles.VisualStyleElement! element) -> void +System.Windows.Forms.VisualStyles.VisualStyleState +System.Windows.Forms.VisualStyles.VisualStyleState.ClientAndNonClientAreasEnabled = System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled | System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled -> System.Windows.Forms.VisualStyles.VisualStyleState +System.Windows.Forms.VisualStyles.VisualStyleState.ClientAreaEnabled = 2 -> System.Windows.Forms.VisualStyles.VisualStyleState +System.Windows.Forms.VisualStyles.VisualStyleState.NonClientAreaEnabled = 1 -> System.Windows.Forms.VisualStyles.VisualStyleState +System.Windows.Forms.VisualStyles.VisualStyleState.NoneEnabled = 0 -> System.Windows.Forms.VisualStyles.VisualStyleState +System.Windows.Forms.VScrollBar +System.Windows.Forms.VScrollBar.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.VScrollBar.VScrollBar() -> void +System.Windows.Forms.VScrollProperties +System.Windows.Forms.VScrollProperties.VScrollProperties(System.Windows.Forms.ScrollableControl? container) -> void +System.Windows.Forms.WebBrowser +System.Windows.Forms.WebBrowser.AllowNavigation.get -> bool +System.Windows.Forms.WebBrowser.AllowNavigation.set -> void +System.Windows.Forms.WebBrowser.AllowWebBrowserDrop.get -> bool +System.Windows.Forms.WebBrowser.AllowWebBrowserDrop.set -> void +System.Windows.Forms.WebBrowser.CanGoBack.get -> bool +System.Windows.Forms.WebBrowser.CanGoBackChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.CanGoForward.get -> bool +System.Windows.Forms.WebBrowser.CanGoForwardChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.Document.get -> System.Windows.Forms.HtmlDocument? +System.Windows.Forms.WebBrowser.DocumentCompleted -> System.Windows.Forms.WebBrowserDocumentCompletedEventHandler? +System.Windows.Forms.WebBrowser.DocumentStream.get -> System.IO.Stream? +System.Windows.Forms.WebBrowser.DocumentStream.set -> void +System.Windows.Forms.WebBrowser.DocumentText.get -> string! +System.Windows.Forms.WebBrowser.DocumentText.set -> void +System.Windows.Forms.WebBrowser.DocumentTitle.get -> string! +System.Windows.Forms.WebBrowser.DocumentTitleChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.DocumentType.get -> string! +System.Windows.Forms.WebBrowser.EncryptionLevel.get -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowser.EncryptionLevelChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.FileDownload -> System.EventHandler? +System.Windows.Forms.WebBrowser.GoBack() -> bool +System.Windows.Forms.WebBrowser.GoForward() -> bool +System.Windows.Forms.WebBrowser.GoHome() -> void +System.Windows.Forms.WebBrowser.GoSearch() -> void +System.Windows.Forms.WebBrowser.IsBusy.get -> bool +System.Windows.Forms.WebBrowser.IsOffline.get -> bool +System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled.get -> bool +System.Windows.Forms.WebBrowser.IsWebBrowserContextMenuEnabled.set -> void +System.Windows.Forms.WebBrowser.Navigate(string! urlString) -> void +System.Windows.Forms.WebBrowser.Navigate(string! urlString, bool newWindow) -> void +System.Windows.Forms.WebBrowser.Navigate(string! urlString, string? targetFrameName) -> void +System.Windows.Forms.WebBrowser.Navigate(string! urlString, string? targetFrameName, byte[]? postData, string? additionalHeaders) -> void +System.Windows.Forms.WebBrowser.Navigate(System.Uri? url) -> void +System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, bool newWindow) -> void +System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, string? targetFrameName) -> void +System.Windows.Forms.WebBrowser.Navigate(System.Uri? url, string? targetFrameName, byte[]? postData, string? additionalHeaders) -> void +System.Windows.Forms.WebBrowser.Navigated -> System.Windows.Forms.WebBrowserNavigatedEventHandler? +System.Windows.Forms.WebBrowser.Navigating -> System.Windows.Forms.WebBrowserNavigatingEventHandler? +System.Windows.Forms.WebBrowser.NewWindow -> System.ComponentModel.CancelEventHandler? +System.Windows.Forms.WebBrowser.ObjectForScripting.get -> object? +System.Windows.Forms.WebBrowser.ObjectForScripting.set -> void +System.Windows.Forms.WebBrowser.Padding.get -> System.Windows.Forms.Padding +System.Windows.Forms.WebBrowser.Padding.set -> void +System.Windows.Forms.WebBrowser.PaddingChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.Print() -> void +System.Windows.Forms.WebBrowser.ProgressChanged -> System.Windows.Forms.WebBrowserProgressChangedEventHandler? +System.Windows.Forms.WebBrowser.ReadyState.get -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowser.Refresh(System.Windows.Forms.WebBrowserRefreshOption opt) -> void +System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed.get -> bool +System.Windows.Forms.WebBrowser.ScriptErrorsSuppressed.set -> void +System.Windows.Forms.WebBrowser.ScrollBarsEnabled.get -> bool +System.Windows.Forms.WebBrowser.ScrollBarsEnabled.set -> void +System.Windows.Forms.WebBrowser.ShowPageSetupDialog() -> void +System.Windows.Forms.WebBrowser.ShowPrintDialog() -> void +System.Windows.Forms.WebBrowser.ShowPrintPreviewDialog() -> void +System.Windows.Forms.WebBrowser.ShowPropertiesDialog() -> void +System.Windows.Forms.WebBrowser.ShowSaveAsDialog() -> void +System.Windows.Forms.WebBrowser.StatusTextChanged -> System.EventHandler? +System.Windows.Forms.WebBrowser.Stop() -> void +System.Windows.Forms.WebBrowser.Url.get -> System.Uri? +System.Windows.Forms.WebBrowser.Url.set -> void +System.Windows.Forms.WebBrowser.Version.get -> System.Version! +System.Windows.Forms.WebBrowser.WebBrowser() -> void +System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled.get -> bool +System.Windows.Forms.WebBrowser.WebBrowserShortcutsEnabled.set -> void +System.Windows.Forms.WebBrowser.WebBrowserSite +System.Windows.Forms.WebBrowser.WebBrowserSite.WebBrowserSite(System.Windows.Forms.WebBrowser! host) -> void +System.Windows.Forms.WebBrowserBase +System.Windows.Forms.WebBrowserBase.ActiveXInstance.get -> object? +System.Windows.Forms.WebBrowserBase.BackColorChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.BackgroundImageChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.BackgroundImageLayoutChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.BindingContextChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.ChangeUICues -> System.Windows.Forms.UICuesEventHandler? +System.Windows.Forms.WebBrowserBase.Click -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.CursorChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.DoubleClick -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.DragDrop -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.WebBrowserBase.DragEnter -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.WebBrowserBase.DragLeave -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.DragOver -> System.Windows.Forms.DragEventHandler? +System.Windows.Forms.WebBrowserBase.DrawToBitmap(System.Drawing.Bitmap! bitmap, System.Drawing.Rectangle targetBounds) -> void +System.Windows.Forms.WebBrowserBase.Enabled.get -> bool +System.Windows.Forms.WebBrowserBase.Enabled.set -> void +System.Windows.Forms.WebBrowserBase.EnabledChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.Enter -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.FontChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.ForeColorChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.GiveFeedback -> System.Windows.Forms.GiveFeedbackEventHandler? +System.Windows.Forms.WebBrowserBase.HelpRequested -> System.Windows.Forms.HelpEventHandler? +System.Windows.Forms.WebBrowserBase.ImeMode.get -> System.Windows.Forms.ImeMode +System.Windows.Forms.WebBrowserBase.ImeMode.set -> void +System.Windows.Forms.WebBrowserBase.ImeModeChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.KeyDown -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.WebBrowserBase.KeyPress -> System.Windows.Forms.KeyPressEventHandler? +System.Windows.Forms.WebBrowserBase.KeyUp -> System.Windows.Forms.KeyEventHandler? +System.Windows.Forms.WebBrowserBase.Layout -> System.Windows.Forms.LayoutEventHandler? +System.Windows.Forms.WebBrowserBase.Leave -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.MouseCaptureChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.MouseClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.MouseDoubleClick -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.MouseDown -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.MouseEnter -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.MouseHover -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.MouseLeave -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.MouseMove -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.MouseUp -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.MouseWheel -> System.Windows.Forms.MouseEventHandler? +System.Windows.Forms.WebBrowserBase.Paint -> System.Windows.Forms.PaintEventHandler? +System.Windows.Forms.WebBrowserBase.QueryAccessibilityHelp -> System.Windows.Forms.QueryAccessibilityHelpEventHandler? +System.Windows.Forms.WebBrowserBase.QueryContinueDrag -> System.Windows.Forms.QueryContinueDragEventHandler? +System.Windows.Forms.WebBrowserBase.RightToLeftChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.StyleChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.TextChanged -> System.EventHandler? +System.Windows.Forms.WebBrowserBase.UseWaitCursor.get -> bool +System.Windows.Forms.WebBrowserBase.UseWaitCursor.set -> void +System.Windows.Forms.WebBrowserDocumentCompletedEventArgs +System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.Url.get -> System.Uri? +System.Windows.Forms.WebBrowserDocumentCompletedEventArgs.WebBrowserDocumentCompletedEventArgs(System.Uri? url) -> void +System.Windows.Forms.WebBrowserDocumentCompletedEventHandler +System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Bit128 = 6 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Bit40 = 3 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Bit56 = 4 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Fortezza = 5 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Insecure = 0 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Mixed = 1 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserEncryptionLevel.Unknown = 2 -> System.Windows.Forms.WebBrowserEncryptionLevel +System.Windows.Forms.WebBrowserNavigatedEventArgs +System.Windows.Forms.WebBrowserNavigatedEventArgs.Url.get -> System.Uri? +System.Windows.Forms.WebBrowserNavigatedEventArgs.WebBrowserNavigatedEventArgs(System.Uri? url) -> void +System.Windows.Forms.WebBrowserNavigatedEventHandler +System.Windows.Forms.WebBrowserNavigatingEventArgs +System.Windows.Forms.WebBrowserNavigatingEventArgs.TargetFrameName.get -> string? +System.Windows.Forms.WebBrowserNavigatingEventArgs.Url.get -> System.Uri? +System.Windows.Forms.WebBrowserNavigatingEventArgs.WebBrowserNavigatingEventArgs(System.Uri? url, string? targetFrameName) -> void +System.Windows.Forms.WebBrowserNavigatingEventHandler +System.Windows.Forms.WebBrowserProgressChangedEventArgs +System.Windows.Forms.WebBrowserProgressChangedEventArgs.CurrentProgress.get -> long +System.Windows.Forms.WebBrowserProgressChangedEventArgs.MaximumProgress.get -> long +System.Windows.Forms.WebBrowserProgressChangedEventArgs.WebBrowserProgressChangedEventArgs(long currentProgress, long maximumProgress) -> void +System.Windows.Forms.WebBrowserProgressChangedEventHandler +System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserReadyState.Complete = 4 -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserReadyState.Interactive = 3 -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserReadyState.Loaded = 2 -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserReadyState.Loading = 1 -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserReadyState.Uninitialized = 0 -> System.Windows.Forms.WebBrowserReadyState +System.Windows.Forms.WebBrowserRefreshOption +System.Windows.Forms.WebBrowserRefreshOption.Completely = 3 -> System.Windows.Forms.WebBrowserRefreshOption +System.Windows.Forms.WebBrowserRefreshOption.Continue = 2 -> System.Windows.Forms.WebBrowserRefreshOption +System.Windows.Forms.WebBrowserRefreshOption.IfExpired = 1 -> System.Windows.Forms.WebBrowserRefreshOption +System.Windows.Forms.WebBrowserRefreshOption.Normal = 0 -> System.Windows.Forms.WebBrowserRefreshOption +System.Windows.Forms.WebBrowserSiteBase +System.Windows.Forms.WebBrowserSiteBase.Dispose() -> void +System.Windows.Forms.WindowsFormsSection +System.Windows.Forms.WindowsFormsSection.JitDebugging.get -> bool +System.Windows.Forms.WindowsFormsSection.JitDebugging.set -> void +System.Windows.Forms.WindowsFormsSection.WindowsFormsSection() -> void +System.Windows.Forms.WindowsFormsSynchronizationContext +System.Windows.Forms.WindowsFormsSynchronizationContext.Dispose() -> void +System.Windows.Forms.WindowsFormsSynchronizationContext.WindowsFormsSynchronizationContext() -> void +virtual System.Drawing.Design.PropertyValueUIItem.Image.get -> System.Drawing.Image! +virtual System.Drawing.Design.PropertyValueUIItem.InvokeHandler.get -> System.Drawing.Design.PropertyValueUIItemInvokeHandler! +virtual System.Drawing.Design.PropertyValueUIItem.Reset() -> void +virtual System.Drawing.Design.PropertyValueUIItem.ToolTip.get -> string? +virtual System.Drawing.Design.UITypeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext? context, System.IServiceProvider! provider, object? value) -> object? +virtual System.Drawing.Design.UITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext? context) -> System.Drawing.Design.UITypeEditorEditStyle +virtual System.Drawing.Design.UITypeEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext? context) -> bool +virtual System.Drawing.Design.UITypeEditor.IsDropDownResizable.get -> bool +virtual System.Drawing.Design.UITypeEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs! e) -> void +virtual System.Resources.ResXResourceReader.Dispose(bool disposing) -> void +virtual System.Resources.ResXResourceWriter.AddAlias(string? aliasName, System.Reflection.AssemblyName! assemblyName) -> void +virtual System.Resources.ResXResourceWriter.Dispose() -> void +virtual System.Resources.ResXResourceWriter.Dispose(bool disposing) -> void +virtual System.Windows.Forms.AccessibleObject.Bounds.get -> System.Drawing.Rectangle +virtual System.Windows.Forms.AccessibleObject.DefaultAction.get -> string? +virtual System.Windows.Forms.AccessibleObject.Description.get -> string? +virtual System.Windows.Forms.AccessibleObject.DoDefaultAction() -> void +virtual System.Windows.Forms.AccessibleObject.GetChild(int index) -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.GetChildCount() -> int +virtual System.Windows.Forms.AccessibleObject.GetFocused() -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.GetHelpTopic(out string? fileName) -> int +virtual System.Windows.Forms.AccessibleObject.GetSelected() -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.Help.get -> string? +virtual System.Windows.Forms.AccessibleObject.HitTest(int x, int y) -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.KeyboardShortcut.get -> string? +virtual System.Windows.Forms.AccessibleObject.Name.get -> string? +virtual System.Windows.Forms.AccessibleObject.Name.set -> void +virtual System.Windows.Forms.AccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation navdir) -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.Parent.get -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.AccessibleObject.RaiseLiveRegionChanged() -> bool +virtual System.Windows.Forms.AccessibleObject.Role.get -> System.Windows.Forms.AccessibleRole +virtual System.Windows.Forms.AccessibleObject.Select(System.Windows.Forms.AccessibleSelection flags) -> void +virtual System.Windows.Forms.AccessibleObject.State.get -> System.Windows.Forms.AccessibleStates +virtual System.Windows.Forms.AccessibleObject.Value.get -> string? +virtual System.Windows.Forms.AccessibleObject.Value.set -> void +virtual System.Windows.Forms.ApplicationContext.Dispose(bool disposing) -> void +virtual System.Windows.Forms.ApplicationContext.ExitThreadCore() -> void +virtual System.Windows.Forms.ApplicationContext.OnMainFormClosed(object? sender, System.EventArgs! e) -> void +virtual System.Windows.Forms.AxHost.AttachInterfaces() -> void +virtual System.Windows.Forms.AxHost.CreateSink() -> void +virtual System.Windows.Forms.AxHost.DetachSink() -> void +virtual System.Windows.Forms.AxHost.Enabled.get -> bool +virtual System.Windows.Forms.AxHost.Enabled.set -> void +virtual System.Windows.Forms.AxHost.OnInPlaceActive() -> void +virtual System.Windows.Forms.AxHost.RightToLeft.get -> bool +virtual System.Windows.Forms.AxHost.RightToLeft.set -> void +virtual System.Windows.Forms.AxHost.State.Dispose(bool disposing) -> void +virtual System.Windows.Forms.BaseCollection.Count.get -> int +virtual System.Windows.Forms.BaseCollection.List.get -> System.Collections.ArrayList? +virtual System.Windows.Forms.BindableComponent.OnBindingContextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.BindingContext.AddCore(object! dataSource, System.Windows.Forms.BindingManagerBase! listManager) -> void +virtual System.Windows.Forms.BindingContext.ClearCore() -> void +virtual System.Windows.Forms.BindingContext.OnCollectionChanged(System.ComponentModel.CollectionChangeEventArgs! ccevent) -> void +virtual System.Windows.Forms.BindingContext.RemoveCore(object! dataSource) -> void +virtual System.Windows.Forms.BindingManagerBase.GetItemProperties() -> System.ComponentModel.PropertyDescriptorCollection! +virtual System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Collections.ArrayList! dataSources, System.Collections.ArrayList! listAccessors) -> System.ComponentModel.PropertyDescriptorCollection? +virtual System.Windows.Forms.BindingManagerBase.GetItemProperties(System.Type! listType, int offset, System.Collections.ArrayList! dataSources, System.Collections.ArrayList! listAccessors) -> System.ComponentModel.PropertyDescriptorCollection? +virtual System.Windows.Forms.BindingNavigator.AddStandardItems() -> void +virtual System.Windows.Forms.BindingNavigator.OnRefreshItems() -> void +virtual System.Windows.Forms.BindingNavigator.RefreshItemsCore() -> void +virtual System.Windows.Forms.BindingSource.AllowEdit.get -> bool +virtual System.Windows.Forms.BindingSource.AllowNew.get -> bool +virtual System.Windows.Forms.BindingSource.AllowNew.set -> void +virtual System.Windows.Forms.BindingSource.AllowRemove.get -> bool +virtual System.Windows.Forms.BindingSource.Clear() -> void +virtual System.Windows.Forms.BindingSource.Count.get -> int +virtual System.Windows.Forms.BindingSource.IsFixedSize.get -> bool +virtual System.Windows.Forms.BindingSource.IsReadOnly.get -> bool +virtual System.Windows.Forms.BindingSource.IsSorted.get -> bool +virtual System.Windows.Forms.BindingSource.IsSynchronized.get -> bool +virtual System.Windows.Forms.BindingSource.RemoveAt(int index) -> void +virtual System.Windows.Forms.BindingSource.RemoveFilter() -> void +virtual System.Windows.Forms.BindingSource.RemoveSort() -> void +virtual System.Windows.Forms.BindingSource.ResetAllowNew() -> void +virtual System.Windows.Forms.BindingSource.SortDirection.get -> System.ComponentModel.ListSortDirection +virtual System.Windows.Forms.BindingSource.SupportsAdvancedSorting.get -> bool +virtual System.Windows.Forms.BindingSource.SupportsChangeNotification.get -> bool +virtual System.Windows.Forms.BindingSource.SupportsFiltering.get -> bool +virtual System.Windows.Forms.BindingSource.SupportsSearching.get -> bool +virtual System.Windows.Forms.BindingSource.SupportsSorting.get -> bool +virtual System.Windows.Forms.Button.DialogResult.get -> System.Windows.Forms.DialogResult +virtual System.Windows.Forms.Button.DialogResult.set -> void +virtual System.Windows.Forms.Button.NotifyDefault(bool value) -> void +virtual System.Windows.Forms.ButtonBase.OnCommandCanExecuteChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ButtonBase.OnCommandChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ButtonBase.OnCommandParameterChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ButtonBase.OnRequestCommandExecute(System.EventArgs! e) -> void +virtual System.Windows.Forms.ButtonBase.TextAlign.get -> System.Drawing.ContentAlignment +virtual System.Windows.Forms.ButtonBase.TextAlign.set -> void +virtual System.Windows.Forms.CheckBox.OnAppearanceChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.CheckBox.OnCheckedChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.CheckBox.OnCheckStateChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.CheckedListBox.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs! ice) -> void +virtual System.Windows.Forms.ColorDialog.AllowFullOpen.get -> bool +virtual System.Windows.Forms.ColorDialog.AllowFullOpen.set -> void +virtual System.Windows.Forms.ColorDialog.AnyColor.get -> bool +virtual System.Windows.Forms.ColorDialog.AnyColor.set -> void +virtual System.Windows.Forms.ColorDialog.FullOpen.get -> bool +virtual System.Windows.Forms.ColorDialog.FullOpen.set -> void +virtual System.Windows.Forms.ColorDialog.Instance.get -> nint +virtual System.Windows.Forms.ColorDialog.Options.get -> int +virtual System.Windows.Forms.ColorDialog.ShowHelp.get -> bool +virtual System.Windows.Forms.ColorDialog.ShowHelp.set -> void +virtual System.Windows.Forms.ColorDialog.SolidColorOnly.get -> bool +virtual System.Windows.Forms.ColorDialog.SolidColorOnly.set -> void +virtual System.Windows.Forms.ComboBox.AddItemsCore(object![]? value) -> void +virtual System.Windows.Forms.ComboBox.ObjectCollection.this[int index].get -> object? +virtual System.Windows.Forms.ComboBox.ObjectCollection.this[int index].set -> void +virtual System.Windows.Forms.ComboBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnDropDown(System.EventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnDropDownClosed(System.EventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnDropDownStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnSelectedItemChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnSelectionChangeCommitted(System.EventArgs! e) -> void +virtual System.Windows.Forms.ComboBox.OnTextUpdate(System.EventArgs! e) -> void +virtual System.Windows.Forms.CommonDialog.HookProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint +virtual System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs! e) -> void +virtual System.Windows.Forms.CommonDialog.OwnerWndProc(nint hWnd, int msg, nint wparam, nint lparam) -> nint +virtual System.Windows.Forms.ContainerControl.AutoValidate.get -> System.Windows.Forms.AutoValidate +virtual System.Windows.Forms.ContainerControl.AutoValidate.set -> void +virtual System.Windows.Forms.ContainerControl.OnAutoValidateChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ContainerControl.ProcessTabKey(bool forward) -> bool +virtual System.Windows.Forms.ContainerControl.ScaleMinMaxSize(float xScaleFactor, float yScaleFactor, bool updateContainerSize = true) -> void +virtual System.Windows.Forms.ContainerControl.UpdateDefaultButton() -> void +virtual System.Windows.Forms.ContainerControl.ValidateChildren() -> bool +virtual System.Windows.Forms.ContainerControl.ValidateChildren(System.Windows.Forms.ValidationConstraints validationConstraints) -> bool +virtual System.Windows.Forms.Control.AllowDrop.get -> bool +virtual System.Windows.Forms.Control.AllowDrop.set -> void +virtual System.Windows.Forms.Control.Anchor.get -> System.Windows.Forms.AnchorStyles +virtual System.Windows.Forms.Control.Anchor.set -> void +virtual System.Windows.Forms.Control.AutoScrollOffset.get -> System.Drawing.Point +virtual System.Windows.Forms.Control.AutoScrollOffset.set -> void +virtual System.Windows.Forms.Control.AutoSize.get -> bool +virtual System.Windows.Forms.Control.AutoSize.set -> void +virtual System.Windows.Forms.Control.BackColor.get -> System.Drawing.Color +virtual System.Windows.Forms.Control.BackColor.set -> void +virtual System.Windows.Forms.Control.BackgroundImage.get -> System.Drawing.Image? +virtual System.Windows.Forms.Control.BackgroundImage.set -> void +virtual System.Windows.Forms.Control.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +virtual System.Windows.Forms.Control.BackgroundImageLayout.set -> void +virtual System.Windows.Forms.Control.BindingContext.get -> System.Windows.Forms.BindingContext? +virtual System.Windows.Forms.Control.BindingContext.set -> void +virtual System.Windows.Forms.Control.CanEnableIme.get -> bool +virtual System.Windows.Forms.Control.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +virtual System.Windows.Forms.Control.ContextMenuStrip.set -> void +virtual System.Windows.Forms.Control.ControlCollection.Add(System.Windows.Forms.Control? value) -> void +virtual System.Windows.Forms.Control.ControlCollection.AddRange(System.Windows.Forms.Control![]! controls) -> void +virtual System.Windows.Forms.Control.ControlCollection.Clear() -> void +virtual System.Windows.Forms.Control.ControlCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.Control.ControlCollection.GetChildIndex(System.Windows.Forms.Control! child, bool throwException) -> int +virtual System.Windows.Forms.Control.ControlCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.Control.ControlCollection.Remove(System.Windows.Forms.Control? value) -> void +virtual System.Windows.Forms.Control.ControlCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.Control.ControlCollection.SetChildIndex(System.Windows.Forms.Control! child, int newIndex) -> void +virtual System.Windows.Forms.Control.ControlCollection.this[int index].get -> System.Windows.Forms.Control! +virtual System.Windows.Forms.Control.ControlCollection.this[string? key].get -> System.Windows.Forms.Control? +virtual System.Windows.Forms.Control.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +virtual System.Windows.Forms.Control.CreateControlsInstance() -> System.Windows.Forms.Control.ControlCollection! +virtual System.Windows.Forms.Control.CreateHandle() -> void +virtual System.Windows.Forms.Control.CreateParams.get -> System.Windows.Forms.CreateParams! +virtual System.Windows.Forms.Control.Cursor.get -> System.Windows.Forms.Cursor! +virtual System.Windows.Forms.Control.Cursor.set -> void +virtual System.Windows.Forms.Control.DataContext.get -> object? +virtual System.Windows.Forms.Control.DataContext.set -> void +virtual System.Windows.Forms.Control.DefaultCursor.get -> System.Windows.Forms.Cursor! +virtual System.Windows.Forms.Control.DefaultImeMode.get -> System.Windows.Forms.ImeMode +virtual System.Windows.Forms.Control.DefaultMargin.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.Control.DefaultMaximumSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Control.DefaultMinimumSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Control.DefaultPadding.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.Control.DefaultSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Control.DefWndProc(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.Control.DestroyHandle() -> void +virtual System.Windows.Forms.Control.DisplayRectangle.get -> System.Drawing.Rectangle +virtual System.Windows.Forms.Control.Dock.get -> System.Windows.Forms.DockStyle +virtual System.Windows.Forms.Control.Dock.set -> void +virtual System.Windows.Forms.Control.DoubleBuffered.get -> bool +virtual System.Windows.Forms.Control.DoubleBuffered.set -> void +virtual System.Windows.Forms.Control.Focused.get -> bool +virtual System.Windows.Forms.Control.Font.get -> System.Drawing.Font! +virtual System.Windows.Forms.Control.Font.set -> void +virtual System.Windows.Forms.Control.ForeColor.get -> System.Drawing.Color +virtual System.Windows.Forms.Control.ForeColor.set -> void +virtual System.Windows.Forms.Control.GetAccessibilityObjectById(int objectId) -> System.Windows.Forms.AccessibleObject? +virtual System.Windows.Forms.Control.GetPreferredSize(System.Drawing.Size proposedSize) -> System.Drawing.Size +virtual System.Windows.Forms.Control.GetScaledBounds(System.Drawing.Rectangle bounds, System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> System.Drawing.Rectangle +virtual System.Windows.Forms.Control.ImeModeBase.get -> System.Windows.Forms.ImeMode +virtual System.Windows.Forms.Control.ImeModeBase.set -> void +virtual System.Windows.Forms.Control.InitLayout() -> void +virtual System.Windows.Forms.Control.IsInputChar(char charCode) -> bool +virtual System.Windows.Forms.Control.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.Control.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine! +virtual System.Windows.Forms.Control.MaximumSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Control.MaximumSize.set -> void +virtual System.Windows.Forms.Control.MinimumSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Control.MinimumSize.set -> void +virtual System.Windows.Forms.Control.NotifyInvalidate(System.Drawing.Rectangle invalidatedArea) -> void +virtual System.Windows.Forms.Control.OnAutoSizeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnBackColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnBackgroundImageChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnBackgroundImageLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnBindingContextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnCausesValidationChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnChangeUICues(System.Windows.Forms.UICuesEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnClientSizeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnContextMenuStripChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnControlAdded(System.Windows.Forms.ControlEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnControlRemoved(System.Windows.Forms.ControlEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnCreateControl() -> void +virtual System.Windows.Forms.Control.OnCursorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDataContextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDockChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDoubleClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDpiChangedAfterParent(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDpiChangedBeforeParent(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDragDrop(System.Windows.Forms.DragEventArgs! drgevent) -> void +virtual System.Windows.Forms.Control.OnDragEnter(System.Windows.Forms.DragEventArgs! drgevent) -> void +virtual System.Windows.Forms.Control.OnDragLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnDragOver(System.Windows.Forms.DragEventArgs! drgevent) -> void +virtual System.Windows.Forms.Control.OnEnabledChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnEnter(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnFontChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnForeColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs! gfbevent) -> void +virtual System.Windows.Forms.Control.OnGotFocus(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnHandleCreated(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnHandleDestroyed(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnHelpRequested(System.Windows.Forms.HelpEventArgs! hevent) -> void +virtual System.Windows.Forms.Control.OnImeModeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnInvalidated(System.Windows.Forms.InvalidateEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnLayout(System.Windows.Forms.LayoutEventArgs! levent) -> void +virtual System.Windows.Forms.Control.OnLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnLocationChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnLostFocus(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMarginChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseCaptureChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseClick(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseDoubleClick(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseEnter(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseHover(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseMove(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMouseWheel(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnMove(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnNotifyMessage(System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.Control.OnPaddingChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnPaintBackground(System.Windows.Forms.PaintEventArgs! pevent) -> void +virtual System.Windows.Forms.Control.OnParentBackColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentBackgroundImageChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentBindingContextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentCursorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentDataContextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentEnabledChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentFontChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentForeColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentRightToLeftChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnParentVisibleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnPreviewKeyDown(System.Windows.Forms.PreviewKeyDownEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnPrint(System.Windows.Forms.PaintEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs! qcdevent) -> void +virtual System.Windows.Forms.Control.OnRegionChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnResize(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnRightToLeftChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnSizeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnTabIndexChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnTabStopChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnTextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnValidated(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.Control.OnVisibleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Control.PreProcessMessage(ref System.Windows.Forms.Message msg) -> bool +virtual System.Windows.Forms.Control.ProcessCmdKey(ref System.Windows.Forms.Message msg, System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.Control.ProcessDialogChar(char charCode) -> bool +virtual System.Windows.Forms.Control.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.Control.ProcessKeyEventArgs(ref System.Windows.Forms.Message m) -> bool +virtual System.Windows.Forms.Control.ProcessKeyMessage(ref System.Windows.Forms.Message m) -> bool +virtual System.Windows.Forms.Control.ProcessKeyPreview(ref System.Windows.Forms.Message m) -> bool +virtual System.Windows.Forms.Control.ProcessMnemonic(char charCode) -> bool +virtual System.Windows.Forms.Control.Refresh() -> void +virtual System.Windows.Forms.Control.RescaleConstantsForDpi(int deviceDpiOld, int deviceDpiNew) -> void +virtual System.Windows.Forms.Control.ResetBackColor() -> void +virtual System.Windows.Forms.Control.ResetCursor() -> void +virtual System.Windows.Forms.Control.ResetFont() -> void +virtual System.Windows.Forms.Control.ResetForeColor() -> void +virtual System.Windows.Forms.Control.ResetRightToLeft() -> void +virtual System.Windows.Forms.Control.ResetText() -> void +virtual System.Windows.Forms.Control.RightToLeft.get -> System.Windows.Forms.RightToLeft +virtual System.Windows.Forms.Control.RightToLeft.set -> void +virtual System.Windows.Forms.Control.ScaleChildren.get -> bool +virtual System.Windows.Forms.Control.ScaleControl(System.Drawing.SizeF factor, System.Windows.Forms.BoundsSpecified specified) -> void +virtual System.Windows.Forms.Control.ScaleCore(float dx, float dy) -> void +virtual System.Windows.Forms.Control.Select(bool directed, bool forward) -> void +virtual System.Windows.Forms.Control.SetBoundsCore(int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified) -> void +virtual System.Windows.Forms.Control.SetClientSizeCore(int x, int y) -> void +virtual System.Windows.Forms.Control.SetVisibleCore(bool value) -> void +virtual System.Windows.Forms.Control.ShowFocusCues.get -> bool +virtual System.Windows.Forms.Control.ShowKeyboardCues.get -> bool +virtual System.Windows.Forms.Control.SizeFromClientSize(System.Drawing.Size clientSize) -> System.Drawing.Size +virtual System.Windows.Forms.Control.Text.get -> string! +virtual System.Windows.Forms.Control.Text.set -> void +virtual System.Windows.Forms.Control.WndProc(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.DataGridView.AccessibilityNotifyCurrentCellChanged(System.Drawing.Point cellAddress) -> void +virtual System.Windows.Forms.DataGridView.BeginEdit(bool selectAll) -> bool +virtual System.Windows.Forms.DataGridView.NotifyCurrentCellDirty(bool dirty) -> void +virtual System.Windows.Forms.DataGridView.SetCurrentCellAddressCore(int columnIndex, int rowIndex, bool setAnchorCellAddress, bool validateCurrentCell, bool throughMouseClick) -> bool +virtual System.Windows.Forms.DataGridView.SetSelectedCellCore(int columnIndex, int rowIndex, bool selected) -> void +virtual System.Windows.Forms.DataGridView.SetSelectedColumnCore(int columnIndex, bool selected) -> void +virtual System.Windows.Forms.DataGridView.SetSelectedRowCore(int rowIndex, bool selected) -> void +virtual System.Windows.Forms.DataGridViewBand.Clone() -> object! +virtual System.Windows.Forms.DataGridViewBand.ContextMenuStrip.get -> System.Windows.Forms.ContextMenuStrip? +virtual System.Windows.Forms.DataGridViewBand.ContextMenuStrip.set -> void +virtual System.Windows.Forms.DataGridViewBand.DefaultCellStyle.get -> System.Windows.Forms.DataGridViewCellStyle! +virtual System.Windows.Forms.DataGridViewBand.DefaultCellStyle.set -> void +virtual System.Windows.Forms.DataGridViewBand.Displayed.get -> bool +virtual System.Windows.Forms.DataGridViewBand.Frozen.get -> bool +virtual System.Windows.Forms.DataGridViewBand.Frozen.set -> void +virtual System.Windows.Forms.DataGridViewBand.InheritedStyle.get -> System.Windows.Forms.DataGridViewCellStyle? +virtual System.Windows.Forms.DataGridViewBand.ReadOnly.get -> bool +virtual System.Windows.Forms.DataGridViewBand.ReadOnly.set -> void +virtual System.Windows.Forms.DataGridViewBand.Resizable.get -> System.Windows.Forms.DataGridViewTriState +virtual System.Windows.Forms.DataGridViewBand.Resizable.set -> void +virtual System.Windows.Forms.DataGridViewBand.Selected.get -> bool +virtual System.Windows.Forms.DataGridViewBand.Selected.set -> void +virtual System.Windows.Forms.DataGridViewBand.Visible.get -> bool +virtual System.Windows.Forms.DataGridViewBand.Visible.set -> void +virtual System.Windows.Forms.DataGridViewCell.DetachEditingControl() -> void +virtual System.Windows.Forms.DataGridViewCell.Displayed.get -> bool +virtual System.Windows.Forms.DataGridViewCell.Dispose(bool disposing) -> void +virtual System.Windows.Forms.DataGridViewCell.EnterUnsharesRow(int rowIndex, bool throughMouseClick) -> bool +virtual System.Windows.Forms.DataGridViewCell.Frozen.get -> bool +virtual System.Windows.Forms.DataGridViewCell.GetInheritedState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates +virtual System.Windows.Forms.DataGridViewCell.GetSize(int rowIndex) -> System.Drawing.Size +virtual System.Windows.Forms.DataGridViewCell.LeaveUnsharesRow(int rowIndex, bool throughMouseClick) -> bool +virtual System.Windows.Forms.DataGridViewCell.MouseEnterUnsharesRow(int rowIndex) -> bool +virtual System.Windows.Forms.DataGridViewCell.MouseLeaveUnsharesRow(int rowIndex) -> bool +virtual System.Windows.Forms.DataGridViewCell.OnEnter(int rowIndex, bool throughMouseClick) -> void +virtual System.Windows.Forms.DataGridViewCell.OnLeave(int rowIndex, bool throughMouseClick) -> void +virtual System.Windows.Forms.DataGridViewCell.OnMouseEnter(int rowIndex) -> void +virtual System.Windows.Forms.DataGridViewCell.OnMouseLeave(int rowIndex) -> void +virtual System.Windows.Forms.DataGridViewCell.ReadOnly.get -> bool +virtual System.Windows.Forms.DataGridViewCell.ReadOnly.set -> void +virtual System.Windows.Forms.DataGridViewCell.Resizable.get -> bool +virtual System.Windows.Forms.DataGridViewCell.Selected.get -> bool +virtual System.Windows.Forms.DataGridViewCell.Selected.set -> void +virtual System.Windows.Forms.DataGridViewCell.Visible.get -> bool +virtual System.Windows.Forms.DataGridViewCellCollection.Clear() -> void +virtual System.Windows.Forms.DataGridViewCellCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged.get -> bool +virtual System.Windows.Forms.DataGridViewCheckBoxCell.EditingCellValueChanged.set -> void +virtual System.Windows.Forms.DataGridViewCheckBoxCell.PrepareEditingCellForEdit(bool selectAll) -> void +virtual System.Windows.Forms.DataGridViewColumn.GetPreferredWidth(System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode, bool fixedHeight) -> int +virtual System.Windows.Forms.DataGridViewColumnCollection.Clear() -> void +virtual System.Windows.Forms.DataGridViewColumnCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete.get -> bool +virtual System.Windows.Forms.DataGridViewComboBoxCell.AutoComplete.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth.get -> int +virtual System.Windows.Forms.DataGridViewComboBoxCell.DropDownWidth.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems.get -> int +virtual System.Windows.Forms.DataGridViewComboBoxCell.MaxDropDownItems.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxCell.Sorted.get -> bool +virtual System.Windows.Forms.DataGridViewComboBoxCell.Sorted.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex.get -> int +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlRowIndex.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged.get -> bool +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlValueChanged.set -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void +virtual System.Windows.Forms.DataGridViewComboBoxEditingControl.RepositionEditingControlOnValueChange.get -> bool +virtual System.Windows.Forms.DataGridViewElement.OnDataGridViewChanged() -> void +virtual System.Windows.Forms.DataGridViewElement.State.get -> System.Windows.Forms.DataGridViewElementStates +virtual System.Windows.Forms.DataGridViewRow.GetPreferredHeight(int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth) -> int +virtual System.Windows.Forms.DataGridViewRow.GetState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates +virtual System.Windows.Forms.DataGridViewRowCollection.Add() -> int +virtual System.Windows.Forms.DataGridViewRowCollection.Add(int count) -> int +virtual System.Windows.Forms.DataGridViewRowCollection.AddCopies(int indexSource, int count) -> int +virtual System.Windows.Forms.DataGridViewRowCollection.AddCopy(int indexSource) -> int +virtual System.Windows.Forms.DataGridViewRowCollection.Clear() -> void +virtual System.Windows.Forms.DataGridViewRowCollection.GetRowState(int rowIndex) -> System.Windows.Forms.DataGridViewElementStates +virtual System.Windows.Forms.DataGridViewRowCollection.Insert(int rowIndex, int count) -> void +virtual System.Windows.Forms.DataGridViewRowCollection.InsertCopies(int indexSource, int indexDestination, int count) -> void +virtual System.Windows.Forms.DataGridViewRowCollection.InsertCopy(int indexSource, int indexDestination) -> void +virtual System.Windows.Forms.DataGridViewRowCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength.get -> int +virtual System.Windows.Forms.DataGridViewTextBoxCell.MaxInputLength.set -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.ApplyCellStyleToEditingControl(System.Windows.Forms.DataGridViewCellStyle! dataGridViewCellStyle) -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView.get -> System.Windows.Forms.DataGridView? +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlDataGridView.set -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue.get -> object! +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlFormattedValue.set -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex.get -> int +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlRowIndex.set -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged.get -> bool +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlValueChanged.set -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingControlWantsInputKey(System.Windows.Forms.Keys keyData, bool dataGridViewWantsInputKey) -> bool +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.EditingPanelCursor.get -> System.Windows.Forms.Cursor! +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.GetEditingControlFormattedValue(System.Windows.Forms.DataGridViewDataErrorContexts context) -> object! +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.PrepareEditingControlForEdit(bool selectAll) -> void +virtual System.Windows.Forms.DataGridViewTextBoxEditingControl.RepositionEditingControlOnValueChange.get -> bool +virtual System.Windows.Forms.DataObject.ContainsAudio() -> bool +virtual System.Windows.Forms.DataObject.ContainsFileDropList() -> bool +virtual System.Windows.Forms.DataObject.ContainsImage() -> bool +virtual System.Windows.Forms.DataObject.ContainsText() -> bool +virtual System.Windows.Forms.DataObject.ContainsText(System.Windows.Forms.TextDataFormat format) -> bool +virtual System.Windows.Forms.DataObject.GetAudioStream() -> System.IO.Stream? +virtual System.Windows.Forms.DataObject.GetData(string! format) -> object? +virtual System.Windows.Forms.DataObject.GetData(string! format, bool autoConvert) -> object? +virtual System.Windows.Forms.DataObject.GetData(System.Type! format) -> object? +virtual System.Windows.Forms.DataObject.GetDataPresent(string! format) -> bool +virtual System.Windows.Forms.DataObject.GetDataPresent(string! format, bool autoConvert) -> bool +virtual System.Windows.Forms.DataObject.GetDataPresent(System.Type! format) -> bool +virtual System.Windows.Forms.DataObject.GetFileDropList() -> System.Collections.Specialized.StringCollection! +virtual System.Windows.Forms.DataObject.GetFormats() -> string![]! +virtual System.Windows.Forms.DataObject.GetFormats(bool autoConvert) -> string![]! +virtual System.Windows.Forms.DataObject.GetImage() -> System.Drawing.Image? +virtual System.Windows.Forms.DataObject.GetText() -> string! +virtual System.Windows.Forms.DataObject.GetText(System.Windows.Forms.TextDataFormat format) -> string! +virtual System.Windows.Forms.DataObject.SetAudio(byte[]! audioBytes) -> void +virtual System.Windows.Forms.DataObject.SetAudio(System.IO.Stream! audioStream) -> void +virtual System.Windows.Forms.DataObject.SetData(object? data) -> void +virtual System.Windows.Forms.DataObject.SetData(string! format, bool autoConvert, object? data) -> void +virtual System.Windows.Forms.DataObject.SetData(string! format, object? data) -> void +virtual System.Windows.Forms.DataObject.SetData(System.Type! format, object? data) -> void +virtual System.Windows.Forms.DataObject.SetFileDropList(System.Collections.Specialized.StringCollection! filePaths) -> void +virtual System.Windows.Forms.DataObject.SetImage(System.Drawing.Image! image) -> void +virtual System.Windows.Forms.DataObject.SetText(string! textData) -> void +virtual System.Windows.Forms.DataObject.SetText(string! textData, System.Windows.Forms.TextDataFormat format) -> void +virtual System.Windows.Forms.DateTimePicker.OnCloseUp(System.EventArgs! eventargs) -> void +virtual System.Windows.Forms.DateTimePicker.OnDropDown(System.EventArgs! eventargs) -> void +virtual System.Windows.Forms.DateTimePicker.OnFormatChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.DateTimePicker.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.DateTimePicker.OnValueChanged(System.EventArgs! eventargs) -> void +virtual System.Windows.Forms.DateTimePicker.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.DateTimePicker.RightToLeftLayout.set -> void +virtual System.Windows.Forms.Design.ComponentEditorForm.OnSelChangeSelector(object? source, System.Windows.Forms.TreeViewEventArgs! e) -> void +virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm() -> System.Windows.Forms.DialogResult +virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(int page) -> System.Windows.Forms.DialogResult +virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window? owner) -> System.Windows.Forms.DialogResult +virtual System.Windows.Forms.Design.ComponentEditorForm.ShowForm(System.Windows.Forms.IWin32Window? owner, int page) -> System.Windows.Forms.DialogResult +virtual System.Windows.Forms.Design.ComponentEditorPage.Activate() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.ApplyChanges() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.Deactivate() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.GetControl() -> System.Windows.Forms.Control! +virtual System.Windows.Forms.Design.ComponentEditorPage.IsPageMessage(ref System.Windows.Forms.Message msg) -> bool +virtual System.Windows.Forms.Design.ComponentEditorPage.OnApplyComplete() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.ReloadComponent() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.SetComponent(System.ComponentModel.IComponent? component) -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.SetDirty() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.SetSite(System.Windows.Forms.IComponentEditorPageSite? site) -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.ShowHelp() -> void +virtual System.Windows.Forms.Design.ComponentEditorPage.SupportsHelp() -> bool +virtual System.Windows.Forms.Design.ComponentEditorPage.Title.get -> string! +virtual System.Windows.Forms.Design.PropertyTab.Bitmap.get -> System.Drawing.Bitmap? +virtual System.Windows.Forms.Design.PropertyTab.CanExtend(object! extendee) -> bool +virtual System.Windows.Forms.Design.PropertyTab.Components.get -> object![]? +virtual System.Windows.Forms.Design.PropertyTab.Components.set -> void +virtual System.Windows.Forms.Design.PropertyTab.Dispose() -> void +virtual System.Windows.Forms.Design.PropertyTab.Dispose(bool disposing) -> void +virtual System.Windows.Forms.Design.PropertyTab.GetDefaultProperty(object! component) -> System.ComponentModel.PropertyDescriptor? +virtual System.Windows.Forms.Design.PropertyTab.GetProperties(object! component) -> System.ComponentModel.PropertyDescriptorCollection? +virtual System.Windows.Forms.Design.PropertyTab.GetProperties(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Attribute![]? attributes) -> System.ComponentModel.PropertyDescriptorCollection? +virtual System.Windows.Forms.Design.PropertyTab.HelpKeyword.get -> string? +virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.EditComponent(System.ComponentModel.ITypeDescriptorContext? context, object! component, System.Windows.Forms.IWin32Window? owner) -> bool +virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.GetComponentEditorPages() -> System.Type![]? +virtual System.Windows.Forms.Design.WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex() -> int +virtual System.Windows.Forms.DrawItemEventArgs.Dispose(bool disposing) -> void +virtual System.Windows.Forms.DrawItemEventArgs.DrawBackground() -> void +virtual System.Windows.Forms.DrawItemEventArgs.DrawFocusRectangle() -> void +virtual System.Windows.Forms.ErrorProvider.OnRightToLeftChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ErrorProvider.RightToLeft.get -> bool +virtual System.Windows.Forms.ErrorProvider.RightToLeft.set -> void +virtual System.Windows.Forms.FeatureSupport.IsPresent(object! feature) -> bool +virtual System.Windows.Forms.FeatureSupport.IsPresent(object! feature, System.Version! minimumVersion) -> bool +virtual System.Windows.Forms.FileDialog.CheckFileExists.get -> bool +virtual System.Windows.Forms.FileDialog.CheckFileExists.set -> void +virtual System.Windows.Forms.FontDialog.OnApply(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.AutoScaleBaseSize.get -> System.Drawing.Size +virtual System.Windows.Forms.Form.AutoScaleBaseSize.set -> void +virtual System.Windows.Forms.Form.OnActivated(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnClosed(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnClosing(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnDeactivate(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnDpiChanged(System.Windows.Forms.DpiChangedEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnFormClosed(System.Windows.Forms.FormClosedEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnFormClosing(System.Windows.Forms.FormClosingEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnGetDpiScaledSize(int deviceDpiOld, int deviceDpiNew, ref System.Drawing.Size desiredSize) -> bool +virtual System.Windows.Forms.Form.OnHelpButtonClicked(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnInputLanguageChanged(System.Windows.Forms.InputLanguageChangedEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnInputLanguageChanging(System.Windows.Forms.InputLanguageChangingEventArgs! e) -> void +virtual System.Windows.Forms.Form.OnLoad(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMaximizedBoundsChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMaximumSizeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMdiChildActivate(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMenuComplete(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMenuStart(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnMinimumSizeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnResizeBegin(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnResizeEnd(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.OnShown(System.EventArgs! e) -> void +virtual System.Windows.Forms.Form.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.Form.RightToLeftLayout.set -> void +virtual System.Windows.Forms.Form.ShowWithoutActivation.get -> bool +virtual System.Windows.Forms.FormCollection.this[int index].get -> System.Windows.Forms.Form? +virtual System.Windows.Forms.FormCollection.this[string? name].get -> System.Windows.Forms.Form? +virtual System.Windows.Forms.GridItem.Expandable.get -> bool +virtual System.Windows.Forms.GridItem.Expanded.get -> bool +virtual System.Windows.Forms.GridItem.Expanded.set -> void +virtual System.Windows.Forms.HelpProvider.CanExtend(object? target) -> bool +virtual System.Windows.Forms.HelpProvider.GetHelpKeyword(System.Windows.Forms.Control! ctl) -> string? +virtual System.Windows.Forms.HelpProvider.GetHelpNavigator(System.Windows.Forms.Control! ctl) -> System.Windows.Forms.HelpNavigator +virtual System.Windows.Forms.HelpProvider.GetHelpString(System.Windows.Forms.Control! ctl) -> string? +virtual System.Windows.Forms.HelpProvider.GetShowHelp(System.Windows.Forms.Control! ctl) -> bool +virtual System.Windows.Forms.HelpProvider.HelpNamespace.get -> string? +virtual System.Windows.Forms.HelpProvider.HelpNamespace.set -> void +virtual System.Windows.Forms.HelpProvider.ResetShowHelp(System.Windows.Forms.Control! ctl) -> void +virtual System.Windows.Forms.HelpProvider.SetHelpKeyword(System.Windows.Forms.Control! ctl, string? keyword) -> void +virtual System.Windows.Forms.HelpProvider.SetHelpNavigator(System.Windows.Forms.Control! ctl, System.Windows.Forms.HelpNavigator navigator) -> void +virtual System.Windows.Forms.HelpProvider.SetHelpString(System.Windows.Forms.Control! ctl, string? helpString) -> void +virtual System.Windows.Forms.HelpProvider.SetShowHelp(System.Windows.Forms.Control! ctl, bool value) -> void +virtual System.Windows.Forms.ImageIndexConverter.IncludeNoneAsStandardValue.get -> bool +virtual System.Windows.Forms.ImageKeyConverter.IncludeNoneAsStandardValue.get -> bool +virtual System.Windows.Forms.KeyEventArgs.Alt.get -> bool +virtual System.Windows.Forms.KeyEventArgs.Shift.get -> bool +virtual System.Windows.Forms.Label.BorderStyle.get -> System.Windows.Forms.BorderStyle +virtual System.Windows.Forms.Label.BorderStyle.set -> void +virtual System.Windows.Forms.Label.OnTextAlignChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Label.PreferredHeight.get -> int +virtual System.Windows.Forms.Label.PreferredWidth.get -> int +virtual System.Windows.Forms.Label.RenderTransparent.get -> bool +virtual System.Windows.Forms.Label.RenderTransparent.set -> void +virtual System.Windows.Forms.Label.TextAlign.get -> System.Drawing.ContentAlignment +virtual System.Windows.Forms.Label.TextAlign.set -> void +virtual System.Windows.Forms.Layout.ArrangedElementCollection.Count.get -> int +virtual System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator() -> System.Collections.IEnumerator! +virtual System.Windows.Forms.Layout.ArrangedElementCollection.IsReadOnly.get -> bool +virtual System.Windows.Forms.Layout.LayoutEngine.InitLayout(object! child, System.Windows.Forms.BoundsSpecified specified) -> void +virtual System.Windows.Forms.Layout.LayoutEngine.Layout(object! container, System.Windows.Forms.LayoutEventArgs! layoutEventArgs) -> bool +virtual System.Windows.Forms.LayoutSettings.LayoutEngine.get -> System.Windows.Forms.Layout.LayoutEngine? +virtual System.Windows.Forms.LinkLabel.LinkCollection.Clear() -> void +virtual System.Windows.Forms.LinkLabel.LinkCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.LinkLabel.LinkCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.LinkLabel.LinkCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.LinkLabel.LinkCollection.this[int index].get -> System.Windows.Forms.LinkLabel.Link! +virtual System.Windows.Forms.LinkLabel.LinkCollection.this[int index].set -> void +virtual System.Windows.Forms.LinkLabel.LinkCollection.this[string! key].get -> System.Windows.Forms.LinkLabel.Link? +virtual System.Windows.Forms.LinkLabel.OnLinkClicked(System.Windows.Forms.LinkLabelLinkClickedEventArgs! e) -> void +virtual System.Windows.Forms.ListBox.AddItemsCore(object![]! value) -> void +virtual System.Windows.Forms.ListBox.CreateItemCollection() -> System.Windows.Forms.ListBox.ObjectCollection! +virtual System.Windows.Forms.ListBox.DrawMode.get -> System.Windows.Forms.DrawMode +virtual System.Windows.Forms.ListBox.DrawMode.set -> void +virtual System.Windows.Forms.ListBox.ItemHeight.get -> int +virtual System.Windows.Forms.ListBox.ItemHeight.set -> void +virtual System.Windows.Forms.ListBox.ObjectCollection.Clear() -> void +virtual System.Windows.Forms.ListBox.ObjectCollection.this[int index].get -> object! +virtual System.Windows.Forms.ListBox.ObjectCollection.this[int index].set -> void +virtual System.Windows.Forms.ListBox.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void +virtual System.Windows.Forms.ListBox.OnMeasureItem(System.Windows.Forms.MeasureItemEventArgs! e) -> void +virtual System.Windows.Forms.ListBox.SelectionMode.get -> System.Windows.Forms.SelectionMode +virtual System.Windows.Forms.ListBox.SelectionMode.set -> void +virtual System.Windows.Forms.ListBox.Sort() -> void +virtual System.Windows.Forms.ListBox.WmReflectCommand(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.ListControl.AllowSelection.get -> bool +virtual System.Windows.Forms.ListControl.OnDataSourceChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnDisplayMemberChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnFormat(System.Windows.Forms.ListControlConvertEventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnFormatInfoChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnFormatStringChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnFormattingEnabledChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnSelectedIndexChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnSelectedValueChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.OnValueMemberChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListControl.RefreshItems() -> void +virtual System.Windows.Forms.ListControl.SetItemCore(int index, object! value) -> void +virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ListView.CheckedListViewItemCollection.this[string? key].get -> System.Windows.Forms.ListViewItem? +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, int imageIndex) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? key, string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign, string! imageKey) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text, int width) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(string? text, int width, System.Windows.Forms.HorizontalAlignment textAlign) -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Add(System.Windows.Forms.ColumnHeader! value) -> int +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(System.Windows.Forms.ColumnHeader![]! values) -> void +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Clear() -> void +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.Remove(System.Windows.Forms.ColumnHeader! column) -> void +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.this[int index].get -> System.Windows.Forms.ColumnHeader! +virtual System.Windows.Forms.ListView.ColumnHeaderCollection.this[string? key].get -> System.Windows.Forms.ColumnHeader? +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? key, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? key, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Add(System.Windows.Forms.ListViewItem! value) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Clear() -> void +virtual System.Windows.Forms.ListView.ListViewItemCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ListView.ListViewItemCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? key, string? text, int imageIndex) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Insert(int index, string? key, string? text, string? imageKey) -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.Remove(System.Windows.Forms.ListViewItem! item) -> void +virtual System.Windows.Forms.ListView.ListViewItemCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.ListView.ListViewItemCollection.RemoveByKey(string! key) -> void +virtual System.Windows.Forms.ListView.ListViewItemCollection.this[int index].get -> System.Windows.Forms.ListViewItem! +virtual System.Windows.Forms.ListView.ListViewItemCollection.this[int index].set -> void +virtual System.Windows.Forms.ListView.ListViewItemCollection.this[string! key].get -> System.Windows.Forms.ListViewItem? +virtual System.Windows.Forms.ListView.OnAfterLabelEdit(System.Windows.Forms.LabelEditEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnBeforeLabelEdit(System.Windows.Forms.LabelEditEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnCacheVirtualItems(System.Windows.Forms.CacheVirtualItemsEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnColumnClick(System.Windows.Forms.ColumnClickEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnColumnReordered(System.Windows.Forms.ColumnReorderedEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnColumnWidthChanged(System.Windows.Forms.ColumnWidthChangedEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnColumnWidthChanging(System.Windows.Forms.ColumnWidthChangingEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnDrawColumnHeader(System.Windows.Forms.DrawListViewColumnHeaderEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnDrawItem(System.Windows.Forms.DrawListViewItemEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnDrawSubItem(System.Windows.Forms.DrawListViewSubItemEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnGroupCollapsedStateChanged(System.Windows.Forms.ListViewGroupEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnGroupTaskLinkClick(System.Windows.Forms.ListViewGroupEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnItemActivate(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnItemCheck(System.Windows.Forms.ItemCheckEventArgs! ice) -> void +virtual System.Windows.Forms.ListView.OnItemChecked(System.Windows.Forms.ItemCheckedEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnItemDrag(System.Windows.Forms.ItemDragEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnItemMouseHover(System.Windows.Forms.ListViewItemMouseHoverEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnItemSelectionChanged(System.Windows.Forms.ListViewItemSelectionChangedEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnRetrieveVirtualItem(System.Windows.Forms.RetrieveVirtualItemEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnSearchForVirtualItem(System.Windows.Forms.SearchForVirtualItemEventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnSelectedIndexChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ListView.OnVirtualItemsSelectionRangeChanged(System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventArgs! e) -> void +virtual System.Windows.Forms.ListView.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.ListView.RightToLeftLayout.set -> void +virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ListView.SelectedListViewItemCollection.this[string? key].get -> System.Windows.Forms.ListViewItem? +virtual System.Windows.Forms.ListViewItem.Clone() -> object! +virtual System.Windows.Forms.ListViewItem.Deserialize(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +virtual System.Windows.Forms.ListViewItem.EnsureVisible() -> void +virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.ListViewItem.ListViewSubItemCollection.this[string! key].get -> System.Windows.Forms.ListViewItem.ListViewSubItem? +virtual System.Windows.Forms.ListViewItem.Remove() -> void +virtual System.Windows.Forms.ListViewItem.Serialize(System.Runtime.Serialization.SerializationInfo! info, System.Runtime.Serialization.StreamingContext context) -> void +virtual System.Windows.Forms.MaskedTextBox.OnIsOverwriteModeChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.MaskedTextBox.OnMaskChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.MaskedTextBox.OnTextAlignChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.MenuStrip.OnMenuActivate(System.EventArgs! e) -> void +virtual System.Windows.Forms.MenuStrip.OnMenuDeactivate(System.EventArgs! e) -> void +virtual System.Windows.Forms.MonthCalendar.OnDateChanged(System.Windows.Forms.DateRangeEventArgs! drevent) -> void +virtual System.Windows.Forms.MonthCalendar.OnDateSelected(System.Windows.Forms.DateRangeEventArgs! drevent) -> void +virtual System.Windows.Forms.MonthCalendar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.MonthCalendar.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.MonthCalendar.RightToLeftLayout.set -> void +virtual System.Windows.Forms.NativeWindow.CreateHandle(System.Windows.Forms.CreateParams! cp) -> void +virtual System.Windows.Forms.NativeWindow.DestroyHandle() -> void +virtual System.Windows.Forms.NativeWindow.OnHandleChange() -> void +virtual System.Windows.Forms.NativeWindow.OnThreadException(System.Exception! e) -> void +virtual System.Windows.Forms.NativeWindow.ReleaseHandle() -> void +virtual System.Windows.Forms.NativeWindow.WmDpiChangedAfterParent(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.NativeWindow.WmDpiChangedBeforeParent(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.NativeWindow.WndProc(ref System.Windows.Forms.Message m) -> void +virtual System.Windows.Forms.NumericUpDown.OnValueChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.OwnerDrawPropertyBag.IsEmpty() -> bool +virtual System.Windows.Forms.PaintEventArgs.Dispose(bool disposing) -> void +virtual System.Windows.Forms.Panel.AutoSizeMode.get -> System.Windows.Forms.AutoSizeMode +virtual System.Windows.Forms.Panel.AutoSizeMode.set -> void +virtual System.Windows.Forms.PrintPreviewControl.OnStartPageChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlight.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonCheckedHighlightBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlight.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonPressedHighlightBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlight.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ButtonSelectedHighlightBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.CheckBackground.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.CheckPressedBackground.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.CheckSelectedBackground.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.GripDark.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.GripLight.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ImageMarginRevealedGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemPressedGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelected.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuItemSelectedGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuStripGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.MenuStripGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.OverflowButtonGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.RaftingContainerGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.SeparatorDark.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.SeparatorLight.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.StatusStripBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.StatusStripGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.StatusStripGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripBorder.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripContentPanelGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripDropDownBackground.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripGradientMiddle.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientBegin.get -> System.Drawing.Color +virtual System.Windows.Forms.ProfessionalColorTable.ToolStripPanelGradientEnd.get -> System.Drawing.Color +virtual System.Windows.Forms.ProgressBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ProgressBar.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.ProgressBar.RightToLeftLayout.set -> void +virtual System.Windows.Forms.PropertyGrid.CanShowCommands.get -> bool +virtual System.Windows.Forms.PropertyGrid.CommandsVisible.get -> bool +virtual System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable.get -> bool +virtual System.Windows.Forms.PropertyGrid.CommandsVisibleIfAvailable.set -> void +virtual System.Windows.Forms.PropertyGrid.HelpVisible.get -> bool +virtual System.Windows.Forms.PropertyGrid.HelpVisible.set -> void +virtual System.Windows.Forms.PropertyGrid.ToolbarVisible.get -> bool +virtual System.Windows.Forms.PropertyGrid.ToolbarVisible.set -> void +virtual System.Windows.Forms.RadioButton.OnCheckedChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.CreateRichEditOleCallback() -> object! +virtual System.Windows.Forms.RichTextBox.OnContentsResized(System.Windows.Forms.ContentsResizedEventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnHScroll(System.EventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnImeChange(System.EventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnLinkClicked(System.Windows.Forms.LinkClickedEventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnProtected(System.EventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnSelectionChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.RichTextBox.OnVScroll(System.EventArgs! e) -> void +virtual System.Windows.Forms.ScrollableControl.AdjustFormScrollbars(bool displayScrollbars) -> void +virtual System.Windows.Forms.ScrollableControl.AutoScroll.get -> bool +virtual System.Windows.Forms.ScrollableControl.AutoScroll.set -> void +virtual System.Windows.Forms.ScrollableControl.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void +virtual System.Windows.Forms.ScrollableControl.ScrollToControl(System.Windows.Forms.Control! activeControl) -> System.Drawing.Point +virtual System.Windows.Forms.ScrollBar.OnScroll(System.Windows.Forms.ScrollEventArgs! se) -> void +virtual System.Windows.Forms.ScrollBar.OnValueChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.Splitter.OnSplitterMoved(System.Windows.Forms.SplitterEventArgs! sevent) -> void +virtual System.Windows.Forms.Splitter.OnSplitterMoving(System.Windows.Forms.SplitterEventArgs! sevent) -> void +virtual System.Windows.Forms.StatusStrip.OnSpringTableLayoutCore() -> void +virtual System.Windows.Forms.TabControl.GetItems() -> object![]! +virtual System.Windows.Forms.TabControl.GetItems(System.Type! baseType) -> object![]! +virtual System.Windows.Forms.TabControl.OnDeselected(System.Windows.Forms.TabControlEventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnDeselecting(System.Windows.Forms.TabControlCancelEventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnDrawItem(System.Windows.Forms.DrawItemEventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnSelected(System.Windows.Forms.TabControlEventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnSelectedIndexChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.TabControl.OnSelecting(System.Windows.Forms.TabControlCancelEventArgs! e) -> void +virtual System.Windows.Forms.TabControl.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.TabControl.RightToLeftLayout.set -> void +virtual System.Windows.Forms.TabControl.TabPageCollection.Clear() -> void +virtual System.Windows.Forms.TabControl.TabPageCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.TabControl.TabPageCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.TabControl.TabPageCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.TabControl.TabPageCollection.this[int index].get -> System.Windows.Forms.TabPage! +virtual System.Windows.Forms.TabControl.TabPageCollection.this[int index].set -> void +virtual System.Windows.Forms.TabControl.TabPageCollection.this[string? key].get -> System.Windows.Forms.TabPage? +virtual System.Windows.Forms.TableLayoutControlCollection.Add(System.Windows.Forms.Control! control, int column, int row) -> void +virtual System.Windows.Forms.TableLayoutPanel.OnCellPaint(System.Windows.Forms.TableLayoutCellPaintEventArgs! e) -> void +virtual System.Windows.Forms.TextBox.OnTextAlignChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.TextBox.PlaceholderText.get -> string! +virtual System.Windows.Forms.TextBox.PlaceholderText.set -> void +virtual System.Windows.Forms.TextBoxBase.GetCharFromPosition(System.Drawing.Point pt) -> char +virtual System.Windows.Forms.TextBoxBase.GetCharIndexFromPosition(System.Drawing.Point pt) -> int +virtual System.Windows.Forms.TextBoxBase.GetLineFromCharIndex(int index) -> int +virtual System.Windows.Forms.TextBoxBase.GetPositionFromCharIndex(int index) -> System.Drawing.Point +virtual System.Windows.Forms.TextBoxBase.MaxLength.get -> int +virtual System.Windows.Forms.TextBoxBase.MaxLength.set -> void +virtual System.Windows.Forms.TextBoxBase.Multiline.get -> bool +virtual System.Windows.Forms.TextBoxBase.Multiline.set -> void +virtual System.Windows.Forms.TextBoxBase.SelectedText.get -> string! +virtual System.Windows.Forms.TextBoxBase.SelectedText.set -> void +virtual System.Windows.Forms.TextBoxBase.SelectionLength.get -> int +virtual System.Windows.Forms.TextBoxBase.SelectionLength.set -> void +virtual System.Windows.Forms.TextBoxBase.ShortcutsEnabled.get -> bool +virtual System.Windows.Forms.TextBoxBase.ShortcutsEnabled.set -> void +virtual System.Windows.Forms.TextBoxBase.TextLength.get -> int +virtual System.Windows.Forms.Timer.Enabled.get -> bool +virtual System.Windows.Forms.Timer.Enabled.set -> void +virtual System.Windows.Forms.Timer.OnTick(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.CreateDefaultItem(string? text, System.Drawing.Image? image, System.EventHandler? onClick) -> System.Windows.Forms.ToolStripItem! +virtual System.Windows.Forms.ToolStrip.CreateLayoutSettings(System.Windows.Forms.ToolStripLayoutStyle layoutStyle) -> System.Windows.Forms.LayoutSettings? +virtual System.Windows.Forms.ToolStrip.DefaultDock.get -> System.Windows.Forms.DockStyle +virtual System.Windows.Forms.ToolStrip.DefaultDropDownDirection.get -> System.Windows.Forms.ToolStripDropDownDirection +virtual System.Windows.Forms.ToolStrip.DefaultDropDownDirection.set -> void +virtual System.Windows.Forms.ToolStrip.DefaultGripMargin.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStrip.DefaultShowItemToolTips.get -> bool +virtual System.Windows.Forms.ToolStrip.DisplayedItems.get -> System.Windows.Forms.ToolStripItemCollection! +virtual System.Windows.Forms.ToolStrip.GetNextItem(System.Windows.Forms.ToolStripItem? start, System.Windows.Forms.ArrowDirection direction) -> System.Windows.Forms.ToolStripItem? +virtual System.Windows.Forms.ToolStrip.Items.get -> System.Windows.Forms.ToolStripItemCollection! +virtual System.Windows.Forms.ToolStrip.MaxItemSize.get -> System.Drawing.Size +virtual System.Windows.Forms.ToolStrip.OnBeginDrag(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnEndDrag(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnItemAdded(System.Windows.Forms.ToolStripItemEventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnItemRemoved(System.Windows.Forms.ToolStripItemEventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnLayoutCompleted(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnLayoutStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnPaintGrip(System.Windows.Forms.PaintEventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.OnRendererChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStrip.RestoreFocus() -> void +virtual System.Windows.Forms.ToolStrip.SetDisplayedItems() -> void +virtual System.Windows.Forms.ToolStrip.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +virtual System.Windows.Forms.ToolStrip.TextDirection.set -> void +virtual System.Windows.Forms.ToolStripButton.OnCheckedChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripButton.OnCheckStateChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnDropDown(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnDropDownClosed(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnDropDownStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnSelectedIndexChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnSelectionChangeCommitted(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripComboBox.OnTextUpdate(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripContentPanel.OnLoad(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripContentPanel.OnRendererChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.Focused.get -> bool +virtual System.Windows.Forms.ToolStripControlHost.OnEnter(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnGotFocus(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnHostedControlResize(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnKeyDown(System.Windows.Forms.KeyEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnKeyPress(System.Windows.Forms.KeyPressEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnKeyUp(System.Windows.Forms.KeyEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnLostFocus(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnSubscribeControlEvents(System.Windows.Forms.Control? control) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnUnsubscribeControlEvents(System.Windows.Forms.Control? control) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnValidated(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripControlHost.OnValidating(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDown.OnClosed(System.Windows.Forms.ToolStripDropDownClosedEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDown.OnClosing(System.Windows.Forms.ToolStripDropDownClosingEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDown.OnOpened(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDown.OnOpening(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDown.TopMost.get -> bool +virtual System.Windows.Forms.ToolStripDropDownItem.CreateDefaultDropDown() -> System.Windows.Forms.ToolStripDropDown! +virtual System.Windows.Forms.ToolStripDropDownItem.DropDownLocation.get -> System.Drawing.Point +virtual System.Windows.Forms.ToolStripDropDownItem.HasDropDownItems.get -> bool +virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownClosed(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownHide(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownItemClicked(System.Windows.Forms.ToolStripItemClickedEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownOpened(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripDropDownItem.OnDropDownShow(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.AllowDrop.get -> bool +virtual System.Windows.Forms.ToolStripItem.AllowDrop.set -> void +virtual System.Windows.Forms.ToolStripItem.BackColor.get -> System.Drawing.Color +virtual System.Windows.Forms.ToolStripItem.BackColor.set -> void +virtual System.Windows.Forms.ToolStripItem.BackgroundImage.get -> System.Drawing.Image? +virtual System.Windows.Forms.ToolStripItem.BackgroundImage.set -> void +virtual System.Windows.Forms.ToolStripItem.BackgroundImageLayout.get -> System.Windows.Forms.ImageLayout +virtual System.Windows.Forms.ToolStripItem.BackgroundImageLayout.set -> void +virtual System.Windows.Forms.ToolStripItem.Bounds.get -> System.Drawing.Rectangle +virtual System.Windows.Forms.ToolStripItem.CanSelect.get -> bool +virtual System.Windows.Forms.ToolStripItem.CreateAccessibilityInstance() -> System.Windows.Forms.AccessibleObject! +virtual System.Windows.Forms.ToolStripItem.DefaultAutoToolTip.get -> bool +virtual System.Windows.Forms.ToolStripItem.DefaultDisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle +virtual System.Windows.Forms.ToolStripItem.DefaultMargin.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripItem.DefaultPadding.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripItem.DefaultSize.get -> System.Drawing.Size +virtual System.Windows.Forms.ToolStripItem.DismissWhenClicked.get -> bool +virtual System.Windows.Forms.ToolStripItem.DisplayStyle.get -> System.Windows.Forms.ToolStripItemDisplayStyle +virtual System.Windows.Forms.ToolStripItem.DisplayStyle.set -> void +virtual System.Windows.Forms.ToolStripItem.Enabled.get -> bool +virtual System.Windows.Forms.ToolStripItem.Enabled.set -> void +virtual System.Windows.Forms.ToolStripItem.Font.get -> System.Drawing.Font! +virtual System.Windows.Forms.ToolStripItem.Font.set -> void +virtual System.Windows.Forms.ToolStripItem.ForeColor.get -> System.Drawing.Color +virtual System.Windows.Forms.ToolStripItem.ForeColor.set -> void +virtual System.Windows.Forms.ToolStripItem.GetPreferredSize(System.Drawing.Size constrainingSize) -> System.Drawing.Size +virtual System.Windows.Forms.ToolStripItem.Image.get -> System.Drawing.Image? +virtual System.Windows.Forms.ToolStripItem.Image.set -> void +virtual System.Windows.Forms.ToolStripItem.IsInputChar(char charCode) -> bool +virtual System.Windows.Forms.ToolStripItem.IsInputKey(System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.ToolStripItem.OnAvailableChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnBackColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnBoundsChanged() -> void +virtual System.Windows.Forms.ToolStripItem.OnClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnCommandCanExecuteChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnCommandChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnCommandParameterChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnDisplayStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnDoubleClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnDragDrop(System.Windows.Forms.DragEventArgs! dragEvent) -> void +virtual System.Windows.Forms.ToolStripItem.OnDragEnter(System.Windows.Forms.DragEventArgs! dragEvent) -> void +virtual System.Windows.Forms.ToolStripItem.OnDragLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnDragOver(System.Windows.Forms.DragEventArgs! dragEvent) -> void +virtual System.Windows.Forms.ToolStripItem.OnEnabledChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnFontChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnForeColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnGiveFeedback(System.Windows.Forms.GiveFeedbackEventArgs! giveFeedbackEvent) -> void +virtual System.Windows.Forms.ToolStripItem.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnLocationChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseDown(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseEnter(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseHover(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseLeave(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseMove(System.Windows.Forms.MouseEventArgs! mea) -> void +virtual System.Windows.Forms.ToolStripItem.OnMouseUp(System.Windows.Forms.MouseEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnOwnerChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnOwnerFontChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnPaint(System.Windows.Forms.PaintEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnParentBackColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnParentChanged(System.Windows.Forms.ToolStrip? oldParent, System.Windows.Forms.ToolStrip? newParent) -> void +virtual System.Windows.Forms.ToolStripItem.OnParentEnabledChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnParentForeColorChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnParentRightToLeftChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnQueryContinueDrag(System.Windows.Forms.QueryContinueDragEventArgs! queryContinueDragEvent) -> void +virtual System.Windows.Forms.ToolStripItem.OnRequestCommandExecute(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnRightToLeftChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnTextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.OnVisibleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripItem.Padding.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripItem.Padding.set -> void +virtual System.Windows.Forms.ToolStripItem.Pressed.get -> bool +virtual System.Windows.Forms.ToolStripItem.ProcessCmdKey(ref System.Windows.Forms.Message m, System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.ToolStripItem.ProcessDialogKey(System.Windows.Forms.Keys keyData) -> bool +virtual System.Windows.Forms.ToolStripItem.ProcessMnemonic(char charCode) -> bool +virtual System.Windows.Forms.ToolStripItem.ResetBackColor() -> void +virtual System.Windows.Forms.ToolStripItem.ResetDisplayStyle() -> void +virtual System.Windows.Forms.ToolStripItem.ResetFont() -> void +virtual System.Windows.Forms.ToolStripItem.ResetForeColor() -> void +virtual System.Windows.Forms.ToolStripItem.ResetImage() -> void +virtual System.Windows.Forms.ToolStripItem.ResetRightToLeft() -> void +virtual System.Windows.Forms.ToolStripItem.ResetTextDirection() -> void +virtual System.Windows.Forms.ToolStripItem.RightToLeft.get -> System.Windows.Forms.RightToLeft +virtual System.Windows.Forms.ToolStripItem.RightToLeft.set -> void +virtual System.Windows.Forms.ToolStripItem.Selected.get -> bool +virtual System.Windows.Forms.ToolStripItem.SetBounds(System.Drawing.Rectangle bounds) -> void +virtual System.Windows.Forms.ToolStripItem.SetVisibleCore(bool visible) -> void +virtual System.Windows.Forms.ToolStripItem.ShowKeyboardCues.get -> bool +virtual System.Windows.Forms.ToolStripItem.Size.get -> System.Drawing.Size +virtual System.Windows.Forms.ToolStripItem.Size.set -> void +virtual System.Windows.Forms.ToolStripItem.Text.get -> string? +virtual System.Windows.Forms.ToolStripItem.Text.set -> void +virtual System.Windows.Forms.ToolStripItem.TextAlign.get -> System.Drawing.ContentAlignment +virtual System.Windows.Forms.ToolStripItem.TextAlign.set -> void +virtual System.Windows.Forms.ToolStripItem.TextDirection.get -> System.Windows.Forms.ToolStripTextDirection +virtual System.Windows.Forms.ToolStripItem.TextDirection.set -> void +virtual System.Windows.Forms.ToolStripItemCollection.Clear() -> void +virtual System.Windows.Forms.ToolStripItemCollection.ContainsKey(string? key) -> bool +virtual System.Windows.Forms.ToolStripItemCollection.IndexOfKey(string? key) -> int +virtual System.Windows.Forms.ToolStripItemCollection.RemoveByKey(string? key) -> void +virtual System.Windows.Forms.ToolStripItemCollection.this[int index].get -> System.Windows.Forms.ToolStripItem! +virtual System.Windows.Forms.ToolStripItemCollection.this[string? key].get -> System.Windows.Forms.ToolStripItem? +virtual System.Windows.Forms.ToolStripMenuItem.OnCheckedChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripMenuItem.OnCheckStateChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripPanel.OnRendererChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.Clear() -> void +virtual System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.this[int index].get -> System.Windows.Forms.ToolStripPanelRow! +virtual System.Windows.Forms.ToolStripPanelRow.DefaultMargin.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripPanelRow.DefaultPadding.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripPanelRow.OnControlAdded(System.Windows.Forms.Control! control, int index) -> void +virtual System.Windows.Forms.ToolStripPanelRow.OnControlRemoved(System.Windows.Forms.Control! control, int index) -> void +virtual System.Windows.Forms.ToolStripPanelRow.OnLayout(System.Windows.Forms.LayoutEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripPanelRow.OnOrientationChanged() -> void +virtual System.Windows.Forms.ToolStripPanelRow.Padding.get -> System.Windows.Forms.Padding +virtual System.Windows.Forms.ToolStripPanelRow.Padding.set -> void +virtual System.Windows.Forms.ToolStripProgressBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.ToolStripProgressBar.RightToLeftLayout.set -> void +virtual System.Windows.Forms.ToolStripRenderer.Initialize(System.Windows.Forms.ToolStrip! toolStrip) -> void +virtual System.Windows.Forms.ToolStripRenderer.InitializeContentPanel(System.Windows.Forms.ToolStripContentPanel! contentPanel) -> void +virtual System.Windows.Forms.ToolStripRenderer.InitializeItem(System.Windows.Forms.ToolStripItem! item) -> void +virtual System.Windows.Forms.ToolStripRenderer.InitializePanel(System.Windows.Forms.ToolStripPanel! toolStripPanel) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderArrow(System.Windows.Forms.ToolStripArrowRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderDropDownButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderGrip(System.Windows.Forms.ToolStripGripRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderImageMargin(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemCheck(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemImage(System.Windows.Forms.ToolStripItemImageRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderItemText(System.Windows.Forms.ToolStripItemTextRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderMenuItemBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderOverflowButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderSeparator(System.Windows.Forms.ToolStripSeparatorRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderSplitButtonBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderStatusStripSizingGrip(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBackground(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripBorder(System.Windows.Forms.ToolStripRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripContentPanelBackground(System.Windows.Forms.ToolStripContentPanelRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripPanelBackground(System.Windows.Forms.ToolStripPanelRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripRenderer.OnRenderToolStripStatusLabelBackground(System.Windows.Forms.ToolStripItemRenderEventArgs! e) -> void +virtual System.Windows.Forms.ToolStripSplitButton.OnButtonClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripSplitButton.OnButtonDoubleClick(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripSplitButton.OnDefaultItemChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripSplitButton.ResetDropDownButtonWidth() -> void +virtual System.Windows.Forms.ToolStripTextBox.OnAcceptsTabChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripTextBox.OnBorderStyleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripTextBox.OnHideSelectionChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripTextBox.OnModifiedChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripTextBox.OnMultilineChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolStripTextBox.OnReadOnlyChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.ToolTip.CreateParams.get -> System.Windows.Forms.CreateParams! +virtual System.Windows.Forms.TrackBar.OnRightToLeftLayoutChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.TrackBar.OnScroll(System.EventArgs! e) -> void +virtual System.Windows.Forms.TrackBar.OnValueChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.TrackBar.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.TrackBar.RightToLeftLayout.set -> void +virtual System.Windows.Forms.TreeNodeCollection.Clear() -> void +virtual System.Windows.Forms.TreeNodeCollection.RemoveAt(int index) -> void +virtual System.Windows.Forms.TreeView.RightToLeftLayout.get -> bool +virtual System.Windows.Forms.TreeView.RightToLeftLayout.set -> void +virtual System.Windows.Forms.UpDownBase.OnChanged(object? source, System.EventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.OnTextBoxKeyDown(object? source, System.Windows.Forms.KeyEventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.OnTextBoxKeyPress(object? source, System.Windows.Forms.KeyPressEventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.OnTextBoxLostFocus(object? source, System.EventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.OnTextBoxResize(object? source, System.EventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.OnTextBoxTextChanged(object? source, System.EventArgs! e) -> void +virtual System.Windows.Forms.UpDownBase.ValidateEditText() -> void +virtual System.Windows.Forms.UserControl.OnLoad(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnCanGoBackChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnCanGoForwardChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnDocumentCompleted(System.Windows.Forms.WebBrowserDocumentCompletedEventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnDocumentTitleChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnEncryptionLevelChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnFileDownload(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnNavigated(System.Windows.Forms.WebBrowserNavigatedEventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnNavigating(System.Windows.Forms.WebBrowserNavigatingEventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnNewWindow(System.ComponentModel.CancelEventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnProgressChanged(System.Windows.Forms.WebBrowserProgressChangedEventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.OnStatusTextChanged(System.EventArgs! e) -> void +virtual System.Windows.Forms.WebBrowser.StatusText.get -> string! diff --git a/src/System.Windows.Forms/src/PublicAPI.Unshipped.txt b/src/System.Windows.Forms/src/PublicAPI.Unshipped.txt index 20003e53a79..20396cbc8a2 100644 --- a/src/System.Windows.Forms/src/PublicAPI.Unshipped.txt +++ b/src/System.Windows.Forms/src/PublicAPI.Unshipped.txt @@ -18,7 +18,6 @@ override System.Windows.Forms.PrintPreviewControl.OnPaintBackground(System.Windo *REMOVED*System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(System.Windows.Forms.ToolStripPanelRow![]! value) -> void *REMOVED*virtual System.Windows.Forms.Control.ControlCollection.AddRange(System.Windows.Forms.Control![]! controls) -> void *REMOVED*virtual System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(System.Windows.Forms.ColumnHeader![]! values) -> void -*REMOVED*~virtual System.Windows.Forms.TreeNodeCollection.AddRange(System.Windows.Forms.TreeNode[] nodes) -> void System.Windows.Forms.AutoCompleteStringCollection.AddRange(params string![]! value) -> void System.Windows.Forms.ComboBox.ObjectCollection.AddRange(params object![]! items) -> void System.Windows.Forms.ImageList.ImageCollection.AddRange(params System.Drawing.Image![]! images) -> void @@ -33,4 +32,3 @@ System.Windows.Forms.ToolStripItemCollection.AddRange(params System.Windows.Form System.Windows.Forms.ToolStripPanel.ToolStripPanelRowCollection.AddRange(params System.Windows.Forms.ToolStripPanelRow![]! value) -> void virtual System.Windows.Forms.Control.ControlCollection.AddRange(params System.Windows.Forms.Control![]! controls) -> void virtual System.Windows.Forms.ListView.ColumnHeaderCollection.AddRange(params System.Windows.Forms.ColumnHeader![]! values) -> void -~virtual System.Windows.Forms.TreeNodeCollection.AddRange(params System.Windows.Forms.TreeNode[] nodes) -> void diff --git a/src/System.Windows.Forms/tests/IntegrationTests/DesignSurface/DemoConsole/MainForm.cs b/src/System.Windows.Forms/tests/IntegrationTests/DesignSurface/DemoConsole/MainForm.cs index 7f5ebf44246..2f39371e387 100644 --- a/src/System.Windows.Forms/tests/IntegrationTests/DesignSurface/DemoConsole/MainForm.cs +++ b/src/System.Windows.Forms/tests/IntegrationTests/DesignSurface/DemoConsole/MainForm.cs @@ -231,6 +231,9 @@ private void CreateDesignSurface(int n) FlowLayoutPanel layoutPanel = surface.CreateControl(new Size(430, 200), new Point(250, 10)); layoutPanel.Controls.Add(subButton1OfLayoutPanel); layoutPanel.Controls.Add(subButton2OfLayoutPanel); + + FolderBrowserDialog folderBrowserDialog = surface.CreateComponent(); + SaveFileDialog saveFileDialog = surface.CreateComponent(); } break; diff --git a/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/Design/DesignerAttributeTests.cs b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/Design/DesignerAttributeTests.cs index 531ca31db5d..8e74a827868 100644 --- a/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/Design/DesignerAttributeTests.cs +++ b/src/System.Windows.Forms/tests/UnitTests/System/Windows/Forms/Design/DesignerAttributeTests.cs @@ -29,10 +29,8 @@ public class DesignerAttributeTests "System.Windows.Forms.Design.DataGridViewColumnDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.DataGridViewComboBoxColumnDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.DataGridViewDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "System.Windows.Forms.Design.FolderBrowserDialogDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.NotifyIconDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.PropertyGridDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", - "System.Windows.Forms.Design.SaveFileDialogDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.StatusBarDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.ToolStripContainerDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Windows.Forms.Design.ToolStripContentPanelDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",