Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / CategoryAttribute.cs / 1 / CategoryAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public class CategoryAttribute : Attribute { private static CategoryAttribute appearance; private static CategoryAttribute asynchronous; private static CategoryAttribute behavior; private static CategoryAttribute data; private static CategoryAttribute design; private static CategoryAttribute action; private static CategoryAttribute format; private static CategoryAttribute layout; private static CategoryAttribute mouse; private static CategoryAttribute key; private static CategoryAttribute focus; private static CategoryAttribute windowStyle; private static CategoryAttribute dragDrop; private static CategoryAttribute defAttr; private bool localized; ///Specifies the category in which the property or event will be displayed in a /// visual designer. ////// private string categoryValue; ////// Provides the actual category name. /// ////// public static CategoryAttribute Action { get { if (action == null) { action = new CategoryAttribute("Action"); } return action; } } ///Gets the action category attribute. ////// public static CategoryAttribute Appearance { get { if (appearance == null) { appearance = new CategoryAttribute("Appearance"); } return appearance; } } ///Gets the appearance category attribute. ////// public static CategoryAttribute Asynchronous { get { if (asynchronous == null) { asynchronous = new CategoryAttribute("Asynchronous"); } return asynchronous; } } ///Gets the asynchronous category attribute. ////// public static CategoryAttribute Behavior { get { if (behavior == null) { behavior = new CategoryAttribute("Behavior"); } return behavior; } } ///Gets the behavior category attribute. ////// public static CategoryAttribute Data { get { if (data == null) { data = new CategoryAttribute("Data"); } return data; } } ///Gets the data category attribute. ////// public static CategoryAttribute Default { get { if (defAttr == null) { defAttr = new CategoryAttribute(); } return defAttr; } } ///Gets the default category attribute. ////// public static CategoryAttribute Design { get { if (design == null) { design = new CategoryAttribute("Design"); } return design; } } ///Gets the design category attribute. ////// public static CategoryAttribute DragDrop { get { if (dragDrop == null) { dragDrop = new CategoryAttribute("DragDrop"); } return dragDrop; } } ///Gets the drag and drop category attribute. ////// public static CategoryAttribute Focus { get { if (focus == null) { focus = new CategoryAttribute("Focus"); } return focus; } } ///Gets the focus category attribute. ////// public static CategoryAttribute Format { get { if (format == null) { format = new CategoryAttribute("Format"); } return format; } } ///Gets the format category attribute. ////// public static CategoryAttribute Key { get { if (key == null) { key = new CategoryAttribute("Key"); } return key; } } ///Gets the keyboard category attribute. ////// public static CategoryAttribute Layout { get { if (layout == null) { layout = new CategoryAttribute("Layout"); } return layout; } } ///Gets the layout category attribute. ////// public static CategoryAttribute Mouse { get { if (mouse == null) { mouse = new CategoryAttribute("Mouse"); } return mouse; } } ///Gets the mouse category attribute. ////// public static CategoryAttribute WindowStyle { get { if (windowStyle == null) { windowStyle = new CategoryAttribute("WindowStyle"); } return windowStyle; } } ///Gets the window style category /// attribute. ////// public CategoryAttribute() : this("Default") { } ///Initializes a new instance of the ////// class with the default category. /// public CategoryAttribute(string category) { this.categoryValue = category; this.localized = false; } ///Initializes a new instance of the ///class with /// the specified category name. /// public string Category { get { if (!localized) { localized = true; string localizedValue = GetLocalizedString(categoryValue); if (localizedValue != null) { categoryValue = localizedValue; } } return categoryValue; } } ///Gets the name of the category for the property or event /// that this attribute is bound to. ////// ////// ////// public override bool Equals(object obj){ if (obj == this) { return true; } if (obj is CategoryAttribute){ return Category.Equals(((CategoryAttribute)obj).Category); } return false; } /// /// public override int GetHashCode() { return Category.GetHashCode(); } ///[To be supplied.] ////// protected virtual string GetLocalizedString(string value) { return (string)SR.GetObject("PropertyCategory" + value); } ///Looks up the localized name of a given category. ////// ////// ////// public override bool IsDefaultAttribute() { return Category.Equals(Default.Category); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public class CategoryAttribute : Attribute { private static CategoryAttribute appearance; private static CategoryAttribute asynchronous; private static CategoryAttribute behavior; private static CategoryAttribute data; private static CategoryAttribute design; private static CategoryAttribute action; private static CategoryAttribute format; private static CategoryAttribute layout; private static CategoryAttribute mouse; private static CategoryAttribute key; private static CategoryAttribute focus; private static CategoryAttribute windowStyle; private static CategoryAttribute dragDrop; private static CategoryAttribute defAttr; private bool localized; ///Specifies the category in which the property or event will be displayed in a /// visual designer. ////// private string categoryValue; ////// Provides the actual category name. /// ////// public static CategoryAttribute Action { get { if (action == null) { action = new CategoryAttribute("Action"); } return action; } } ///Gets the action category attribute. ////// public static CategoryAttribute Appearance { get { if (appearance == null) { appearance = new CategoryAttribute("Appearance"); } return appearance; } } ///Gets the appearance category attribute. ////// public static CategoryAttribute Asynchronous { get { if (asynchronous == null) { asynchronous = new CategoryAttribute("Asynchronous"); } return asynchronous; } } ///Gets the asynchronous category attribute. ////// public static CategoryAttribute Behavior { get { if (behavior == null) { behavior = new CategoryAttribute("Behavior"); } return behavior; } } ///Gets the behavior category attribute. ////// public static CategoryAttribute Data { get { if (data == null) { data = new CategoryAttribute("Data"); } return data; } } ///Gets the data category attribute. ////// public static CategoryAttribute Default { get { if (defAttr == null) { defAttr = new CategoryAttribute(); } return defAttr; } } ///Gets the default category attribute. ////// public static CategoryAttribute Design { get { if (design == null) { design = new CategoryAttribute("Design"); } return design; } } ///Gets the design category attribute. ////// public static CategoryAttribute DragDrop { get { if (dragDrop == null) { dragDrop = new CategoryAttribute("DragDrop"); } return dragDrop; } } ///Gets the drag and drop category attribute. ////// public static CategoryAttribute Focus { get { if (focus == null) { focus = new CategoryAttribute("Focus"); } return focus; } } ///Gets the focus category attribute. ////// public static CategoryAttribute Format { get { if (format == null) { format = new CategoryAttribute("Format"); } return format; } } ///Gets the format category attribute. ////// public static CategoryAttribute Key { get { if (key == null) { key = new CategoryAttribute("Key"); } return key; } } ///Gets the keyboard category attribute. ////// public static CategoryAttribute Layout { get { if (layout == null) { layout = new CategoryAttribute("Layout"); } return layout; } } ///Gets the layout category attribute. ////// public static CategoryAttribute Mouse { get { if (mouse == null) { mouse = new CategoryAttribute("Mouse"); } return mouse; } } ///Gets the mouse category attribute. ////// public static CategoryAttribute WindowStyle { get { if (windowStyle == null) { windowStyle = new CategoryAttribute("WindowStyle"); } return windowStyle; } } ///Gets the window style category /// attribute. ////// public CategoryAttribute() : this("Default") { } ///Initializes a new instance of the ////// class with the default category. /// public CategoryAttribute(string category) { this.categoryValue = category; this.localized = false; } ///Initializes a new instance of the ///class with /// the specified category name. /// public string Category { get { if (!localized) { localized = true; string localizedValue = GetLocalizedString(categoryValue); if (localizedValue != null) { categoryValue = localizedValue; } } return categoryValue; } } ///Gets the name of the category for the property or event /// that this attribute is bound to. ////// ////// ////// public override bool Equals(object obj){ if (obj == this) { return true; } if (obj is CategoryAttribute){ return Category.Equals(((CategoryAttribute)obj).Category); } return false; } /// /// public override int GetHashCode() { return Category.GetHashCode(); } ///[To be supplied.] ////// protected virtual string GetLocalizedString(string value) { return (string)SR.GetObject("PropertyCategory" + value); } ///Looks up the localized name of a given category. ////// ////// ////// public override bool IsDefaultAttribute() { return Category.Equals(Default.Category); } } } // 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
- ComplexObject.cs
- ErrorWebPart.cs
- ParamArrayAttribute.cs
- DbgUtil.cs
- RegexNode.cs
- RegionInfo.cs
- Animatable.cs
- Tool.cs
- BitmapEffect.cs
- Hex.cs
- Base64Stream.cs
- ChannelDispatcherCollection.cs
- GrammarBuilderPhrase.cs
- RootBuilder.cs
- ViewManager.cs
- InheritanceUI.cs
- DesignerLoader.cs
- EntityParameter.cs
- XdrBuilder.cs
- SqlAliasesReferenced.cs
- BinaryObjectReader.cs
- ServerType.cs
- WebDescriptionAttribute.cs
- DataComponentNameHandler.cs
- TcpChannelListener.cs
- Compilation.cs
- IssuedTokensHeader.cs
- HScrollBar.cs
- ValueProviderWrapper.cs
- _AuthenticationState.cs
- NotifyParentPropertyAttribute.cs
- FocusWithinProperty.cs
- EventLogException.cs
- CompiledQueryCacheEntry.cs
- WindowsMenu.cs
- RichTextBoxConstants.cs
- TextDecorations.cs
- MetadataException.cs
- TranslateTransform3D.cs
- DetailsViewActionList.cs
- DataGridViewCellStyleEditor.cs
- PolicyChain.cs
- EventLog.cs
- XmlSchemaSet.cs
- ToolboxBitmapAttribute.cs
- EventMappingSettings.cs
- TemplateControl.cs
- VersionConverter.cs
- ToolboxItemAttribute.cs
- LocalizedNameDescriptionPair.cs
- URLMembershipCondition.cs
- CodeThrowExceptionStatement.cs
- WebZone.cs
- ParallelDesigner.cs
- WebPartDisplayModeEventArgs.cs
- DBConnection.cs
- FormClosingEvent.cs
- SimpleType.cs
- Int16Storage.cs
- PageParserFilter.cs
- BinaryHeap.cs
- WindowsRichEditRange.cs
- Axis.cs
- StorageMappingItemLoader.cs
- TextCompositionEventArgs.cs
- ValueSerializer.cs
- HostExecutionContextManager.cs
- SqlDataSourceSelectingEventArgs.cs
- ScalarConstant.cs
- RichTextBox.cs
- UriScheme.cs
- ConfigXmlElement.cs
- FileSystemEventArgs.cs
- InvalidCastException.cs
- Pair.cs
- SplashScreenNativeMethods.cs
- LocalizationComments.cs
- SortDescriptionCollection.cs
- XmlSignatureManifest.cs
- LicenseManager.cs
- GridViewPageEventArgs.cs
- ImageFormatConverter.cs
- CalloutQueueItem.cs
- GridToolTip.cs
- AuthorizationSection.cs
- TextEditorCharacters.cs
- HttpBufferlessInputStream.cs
- TransactionManagerProxy.cs
- WebBrowserContainer.cs
- FilteredDataSetHelper.cs
- EraserBehavior.cs
- DBPropSet.cs
- TargetConverter.cs
- FilterQueryOptionExpression.cs
- ActivityLocationReferenceEnvironment.cs
- QilValidationVisitor.cs
- TdsParserHelperClasses.cs
- FormatException.cs
- InternalConfigConfigurationFactory.cs
- GroupStyle.cs