Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / WinCategoryAttribute.cs / 1305376 / WinCategoryAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System; using System.ComponentModel; using System.Diagnostics; ////// /// /// [AttributeUsage(AttributeTargets.All)] internal sealed class WinCategoryAttribute : CategoryAttribute { ////// CategoryAttribute that can access [....] localized strings. /// ////// /// public WinCategoryAttribute(string category) : base(category) { } ////// Initializes a new instance of the ///class. /// /// /// This method is called the first time the category property /// is accessed. It provides a way to lookup a localized string for /// the given category. Classes may override this to add their /// own localized names to categories. If a localized string is /// available for the given value, the method should return it. /// Otherwise, it should return null. /// protected override string GetLocalizedString(string value) { string localizedValue = base.GetLocalizedString(value); if (localizedValue == null) { localizedValue = (string)SR.GetObject("WinFormsCategory" + value); } // This attribute is internal, and we should never have a missing resource string. // Debug.Assert(localizedValue != null, "All Windows Forms category attributes should have localized strings. Category '" + value + "' not found."); return localizedValue; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Windows.Forms { using System; using System.ComponentModel; using System.Diagnostics; ////// /// /// [AttributeUsage(AttributeTargets.All)] internal sealed class WinCategoryAttribute : CategoryAttribute { ////// CategoryAttribute that can access [....] localized strings. /// ////// /// public WinCategoryAttribute(string category) : base(category) { } ////// Initializes a new instance of the ///class. /// /// /// This method is called the first time the category property /// is accessed. It provides a way to lookup a localized string for /// the given category. Classes may override this to add their /// own localized names to categories. If a localized string is /// available for the given value, the method should return it. /// Otherwise, it should return null. /// protected override string GetLocalizedString(string value) { string localizedValue = base.GetLocalizedString(value); if (localizedValue == null) { localizedValue = (string)SR.GetObject("WinFormsCategory" + value); } // This attribute is internal, and we should never have a missing resource string. // Debug.Assert(localizedValue != null, "All Windows Forms category attributes should have localized strings. Category '" + value + "' not found."); return localizedValue; } } } // 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
- XsltSettings.cs
- StringExpressionSet.cs
- Point3DAnimation.cs
- PrivilegedConfigurationManager.cs
- StreamInfo.cs
- XmlAttributes.cs
- InputMethod.cs
- DefaultExpressionVisitor.cs
- PrintEvent.cs
- EntityDataSourceMemberPath.cs
- ConditionCollection.cs
- SafeEventLogWriteHandle.cs
- FieldToken.cs
- SelectionChangedEventArgs.cs
- ConvertEvent.cs
- SymLanguageVendor.cs
- PassportPrincipal.cs
- CatalogPart.cs
- EventMappingSettingsCollection.cs
- MsmqIntegrationChannelListener.cs
- QilStrConcatenator.cs
- PictureBox.cs
- RadioButtonAutomationPeer.cs
- XPathBinder.cs
- ToolStripHighContrastRenderer.cs
- XmlMapping.cs
- InstallerTypeAttribute.cs
- SqlCacheDependencySection.cs
- EnvelopeVersion.cs
- PersonalizationStateInfoCollection.cs
- TreeChangeInfo.cs
- XPathDocument.cs
- PageAdapter.cs
- ChildTable.cs
- ReliabilityContractAttribute.cs
- RunInstallerAttribute.cs
- ParserContext.cs
- Encoder.cs
- OneOfScalarConst.cs
- Component.cs
- StringUtil.cs
- ImageFormatConverter.cs
- EmptyImpersonationContext.cs
- PermissionSetTriple.cs
- WebConfigurationManager.cs
- IdentityReference.cs
- ProxyFragment.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- PeerDuplexChannelListener.cs
- XPathArrayIterator.cs
- TextReader.cs
- RemotingSurrogateSelector.cs
- ModelItemDictionary.cs
- AcceleratedTokenAuthenticator.cs
- HwndSource.cs
- PublishLicense.cs
- RouteValueDictionary.cs
- KeyTimeConverter.cs
- ProfileGroupSettings.cs
- DesignerTextWriter.cs
- GroupLabel.cs
- InterleavedZipPartStream.cs
- Normalization.cs
- DeflateStream.cs
- ImageClickEventArgs.cs
- RawStylusInputCustomData.cs
- ProfileSettingsCollection.cs
- LocalizableAttribute.cs
- ButtonBase.cs
- StatusBarPanel.cs
- ControlType.cs
- DataGridViewCellEventArgs.cs
- SubMenuStyle.cs
- EntityDataSourceReferenceGroup.cs
- GeneratedCodeAttribute.cs
- FontConverter.cs
- TableProviderWrapper.cs
- XmlDocumentType.cs
- ResourceDisplayNameAttribute.cs
- MsdtcClusterUtils.cs
- ADRoleFactoryConfiguration.cs
- XmlChildEnumerator.cs
- PropertiesTab.cs
- ClientFactory.cs
- DbConnectionHelper.cs
- ChtmlTextWriter.cs
- Util.cs
- XmlSchemaSubstitutionGroup.cs
- AttributeUsageAttribute.cs
- MultipleViewProviderWrapper.cs
- ConfigXmlWhitespace.cs
- ExtractorMetadata.cs
- BuilderPropertyEntry.cs
- SystemIPInterfaceStatistics.cs
- UserControlAutomationPeer.cs
- BaseParaClient.cs
- X509ThumbprintKeyIdentifierClause.cs
- PointValueSerializer.cs
- TreeIterators.cs
- ConcatQueryOperator.cs