Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / Layout / PropertyNames.cs / 1 / PropertyNames.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Layout { using System.Diagnostics.CodeAnalysis; // LayoutEventArgs takes a string for AffectedProperty. This class contains const // strings to use as property names. Doing this allows us to use reference comparisons // which is advantageous because 1) pref and 2) we will not accidently collide with // names that extenders provide. internal class PropertyNames { [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Alignment = "Alignment"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Anchor = "Anchor"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoScroll = "AutoScroll"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoSize = "AutoSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Appearance = "Appearance"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoEllipsis = "AutoEllipsis"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string BorderStyle = "BorderStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string CellBorderStyle = "CellBorderStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Bounds = "Bounds"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string CheckAlign = "CheckAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ChildIndex = "ChildIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnHeadersHeight = "ColumnHeadersHeight"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnHeadersVisible = "ColumnHeadersVisible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Columns = "Columns"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnSpan = "ColumnSpan"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnStyles = "ColumnStyles"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Controls = "Controls"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Dock = "Dock"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DisplayRectangle = "DisplayRectangle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DisplayStyle = "DisplayStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DrawMode = "DrawMode"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DropDownButtonWidth = "DropDownButtonWidth"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlatAppearanceBorderSize = "FlatAppearance.BorderSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlatStyle = "FlatStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlowBreak = "FlowBreak"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlowDirection = "FlowDirection"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Font = "Font"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string GripStyle = "GripStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string GrowStyle = "GrowStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Image= "Image"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageIndex= "ImageIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageScaling= "ImageScaling"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageScalingSize= "ImageScalingSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageKey= "ImageKey"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageAlign = "ImageAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Items = "Items"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LayoutSettings = "LayoutSettings"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LinkArea = "LinkArea"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Links = "Links"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LayoutStyle = "LayoutStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Location = "Location"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Margin = "Margin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string MaximumSize = "MaximumSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string MinimumSize = "MinimumSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Multiline = "Multiline"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Orientation = "Orientation"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string PreferredSize = "PreferredSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Padding = "Padding"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Parent = "Parent"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RightToLeft = "RightToLeft"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RightToLeftLayout = "RightToLeftLayout"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowHeadersVisible = "RowHeadersVisible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowHeadersWidth = "RowHeadersWidth"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Rows = "Rows"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowSpan = "RowSpan"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowStyles = "RowStyles"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Renderer = "Renderer"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ScrollBars = "ScrollBars"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Size = "Size"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowDropDownArrow = "ShowDropDownArrow"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowImageMargin = "ShowCheckMargin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowCheckMargin = "ShowCheckMargin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Spring = "Spring"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Style = "Style"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TableIndex = "TableIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Text = "Text"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TextAlign = "TextAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TextImageRelation = "TextImageRelation"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string UseCompatibleTextRendering = "UseCompatibleTextRendering"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Visible = "Visible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string WordWrap = "WordWrap"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string WrapContents = "WrapContents"; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Layout { using System.Diagnostics.CodeAnalysis; // LayoutEventArgs takes a string for AffectedProperty. This class contains const // strings to use as property names. Doing this allows us to use reference comparisons // which is advantageous because 1) pref and 2) we will not accidently collide with // names that extenders provide. internal class PropertyNames { [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Alignment = "Alignment"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Anchor = "Anchor"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoScroll = "AutoScroll"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoSize = "AutoSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Appearance = "Appearance"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string AutoEllipsis = "AutoEllipsis"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string BorderStyle = "BorderStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string CellBorderStyle = "CellBorderStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Bounds = "Bounds"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string CheckAlign = "CheckAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ChildIndex = "ChildIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnHeadersHeight = "ColumnHeadersHeight"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnHeadersVisible = "ColumnHeadersVisible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Columns = "Columns"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnSpan = "ColumnSpan"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ColumnStyles = "ColumnStyles"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Controls = "Controls"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Dock = "Dock"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DisplayRectangle = "DisplayRectangle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DisplayStyle = "DisplayStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DrawMode = "DrawMode"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string DropDownButtonWidth = "DropDownButtonWidth"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlatAppearanceBorderSize = "FlatAppearance.BorderSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlatStyle = "FlatStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlowBreak = "FlowBreak"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string FlowDirection = "FlowDirection"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Font = "Font"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string GripStyle = "GripStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string GrowStyle = "GrowStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Image= "Image"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageIndex= "ImageIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageScaling= "ImageScaling"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageScalingSize= "ImageScalingSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageKey= "ImageKey"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ImageAlign = "ImageAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Items = "Items"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LayoutSettings = "LayoutSettings"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LinkArea = "LinkArea"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Links = "Links"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string LayoutStyle = "LayoutStyle"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Location = "Location"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Margin = "Margin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string MaximumSize = "MaximumSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string MinimumSize = "MinimumSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Multiline = "Multiline"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Orientation = "Orientation"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string PreferredSize = "PreferredSize"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Padding = "Padding"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Parent = "Parent"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RightToLeft = "RightToLeft"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RightToLeftLayout = "RightToLeftLayout"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowHeadersVisible = "RowHeadersVisible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowHeadersWidth = "RowHeadersWidth"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Rows = "Rows"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowSpan = "RowSpan"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string RowStyles = "RowStyles"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Renderer = "Renderer"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ScrollBars = "ScrollBars"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Size = "Size"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowDropDownArrow = "ShowDropDownArrow"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowImageMargin = "ShowCheckMargin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string ShowCheckMargin = "ShowCheckMargin"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Spring = "Spring"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Style = "Style"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TableIndex = "TableIndex"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Text = "Text"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TextAlign = "TextAlign"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string TextImageRelation = "TextImageRelation"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string UseCompatibleTextRendering = "UseCompatibleTextRendering"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string Visible = "Visible"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string WordWrap = "WordWrap"; [SuppressMessage("Microsoft.Performance", "CA1802:UseLiteralsWhereAppropriate")] public static readonly string WrapContents = "WrapContents"; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewButtonCell.cs
- HyperlinkAutomationPeer.cs
- ClientRuntimeConfig.cs
- AppliedDeviceFiltersDialog.cs
- DiscoveryDocumentSearchPattern.cs
- PeerObject.cs
- CustomErrorsSection.cs
- ValueTable.cs
- NotifyInputEventArgs.cs
- ArrayExtension.cs
- StartUpEventArgs.cs
- CachedPathData.cs
- SettingsPropertyWrongTypeException.cs
- Model3DCollection.cs
- SQLConvert.cs
- WindowsListViewItemCheckBox.cs
- TreeViewItem.cs
- SyndicationElementExtension.cs
- Executor.cs
- DataListComponentEditor.cs
- SHA384.cs
- TableColumn.cs
- DecoderReplacementFallback.cs
- SecurityDescriptor.cs
- Hash.cs
- SubstitutionResponseElement.cs
- QueueException.cs
- EffectiveValueEntry.cs
- DeviceContext.cs
- IdleTimeoutMonitor.cs
- WindowsToolbar.cs
- TemplateBindingExpressionConverter.cs
- TextDecorationCollection.cs
- DataGridSortCommandEventArgs.cs
- panel.cs
- ServiceDescriptionSerializer.cs
- ItemCheckedEvent.cs
- CultureInfoConverter.cs
- FixedPageStructure.cs
- AuthenticationConfig.cs
- RequiredFieldValidator.cs
- WebEncodingValidator.cs
- HttpConfigurationContext.cs
- TableLayoutPanel.cs
- MSAAEventDispatcher.cs
- odbcmetadatacolumnnames.cs
- ToolboxComponentsCreatedEventArgs.cs
- CacheHelper.cs
- EntityDataSourceMemberPath.cs
- PeerObject.cs
- DetailsViewDeletedEventArgs.cs
- CompileLiteralTextParser.cs
- DataBoundControlParameterTarget.cs
- GenerateTemporaryTargetAssembly.cs
- precedingquery.cs
- Choices.cs
- XmlUtil.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- SerialPinChanges.cs
- SystemIPInterfaceProperties.cs
- CustomLineCap.cs
- DataRowComparer.cs
- LicenseException.cs
- BuilderElements.cs
- ListParagraph.cs
- MonitoringDescriptionAttribute.cs
- TypedColumnHandler.cs
- wgx_exports.cs
- EventManager.cs
- RadioButtonList.cs
- LocationReferenceEnvironment.cs
- MetadataImporter.cs
- CacheOutputQuery.cs
- DetectRunnableInstancesTask.cs
- DefaultExpression.cs
- DES.cs
- BrowserDefinitionCollection.cs
- ContainerControl.cs
- VersionPair.cs
- NonBatchDirectoryCompiler.cs
- TraceListener.cs
- GridViewItemAutomationPeer.cs
- RemotingException.cs
- ForceCopyBuildProvider.cs
- InputScopeConverter.cs
- DataKeyArray.cs
- SuppressMergeCheckAttribute.cs
- TransformDescriptor.cs
- MethodCallConverter.cs
- ToolStripItem.cs
- Size.cs
- EdgeProfileValidation.cs
- MaterialCollection.cs
- NativeMethods.cs
- ToolBarOverflowPanel.cs
- ParamArrayAttribute.cs
- BulletedListEventArgs.cs
- HostingPreferredMapPath.cs
- QueryReaderSettings.cs
- HttpHeaderCollection.cs