Code:
/ 4.0 / 4.0 / untmp / 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;
///
///
///
///
/// CategoryAttribute that can access [....] localized strings.
///
///
[AttributeUsage(AttributeTargets.All)]
internal sealed class WinCategoryAttribute : CategoryAttribute {
///
///
///
/// Initializes a new instance of the class.
///
///
public WinCategoryAttribute(string category) : base(category) {
}
///
///
/// 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
- SqlFacetAttribute.cs
- PasswordDeriveBytes.cs
- MsmqIntegrationProcessProtocolHandler.cs
- DataServiceProcessingPipelineEventArgs.cs
- SchemaMapping.cs
- TransformDescriptor.cs
- ActiveXContainer.cs
- SafeHandles.cs
- Button.cs
- TraceContextEventArgs.cs
- ReadOnlyTernaryTree.cs
- ControlCachePolicy.cs
- WebServiceHostFactory.cs
- HttpRuntimeSection.cs
- XmlNamespaceMappingCollection.cs
- FileResponseElement.cs
- ExpressionStringBuilder.cs
- ManagementQuery.cs
- util.cs
- SymbolMethod.cs
- ContentType.cs
- clipboard.cs
- WindowsImpersonationContext.cs
- ContractNamespaceAttribute.cs
- Activator.cs
- EdmEntityTypeAttribute.cs
- DayRenderEvent.cs
- RuleConditionDialog.cs
- SpellerHighlightLayer.cs
- TextBox.cs
- ValueTypeFixupInfo.cs
- Point3DAnimation.cs
- DesignerActionItem.cs
- ActivityScheduledQuery.cs
- UnsafeNetInfoNativeMethods.cs
- LoginView.cs
- KoreanLunisolarCalendar.cs
- TextOptions.cs
- DropDownButton.cs
- SessionStateUtil.cs
- CommonProperties.cs
- HtmlControlAdapter.cs
- HtmlWindow.cs
- CompatibleComparer.cs
- TextTreeNode.cs
- CheckedListBox.cs
- ContourSegment.cs
- HtmlInputText.cs
- WebPartDescriptionCollection.cs
- NotImplementedException.cs
- XmlParserContext.cs
- SafeLibraryHandle.cs
- XmlAutoDetectWriter.cs
- OleDbCommand.cs
- CustomCredentialPolicy.cs
- HttpCachePolicyElement.cs
- VirtualizingStackPanel.cs
- TypeToArgumentTypeConverter.cs
- PropertyTab.cs
- PointAnimationClockResource.cs
- MenuBase.cs
- HtmlSelect.cs
- NTAccount.cs
- GridViewCommandEventArgs.cs
- Object.cs
- WindowInteractionStateTracker.cs
- ActivityWithResultWrapper.cs
- HttpWebResponse.cs
- NotConverter.cs
- BufferModeSettings.cs
- TdsRecordBufferSetter.cs
- EntityCollection.cs
- SynchronizationContext.cs
- PowerStatus.cs
- sqlnorm.cs
- EncryptionUtility.cs
- BrowserCapabilitiesCodeGenerator.cs
- MessageDecoder.cs
- documentation.cs
- UriExt.cs
- DataProtection.cs
- RightsManagementInformation.cs
- DBConnectionString.cs
- QilInvokeLateBound.cs
- PassportAuthenticationModule.cs
- MultiByteCodec.cs
- SystemResources.cs
- EdmSchemaAttribute.cs
- XmlComment.cs
- UriTemplateMatchException.cs
- VectorCollectionValueSerializer.cs
- NetNamedPipeBindingCollectionElement.cs
- DrawingGroup.cs
- GroupJoinQueryOperator.cs
- DeflateEmulationStream.cs
- TextInfo.cs
- DictionaryKeyPropertyAttribute.cs
- ColorIndependentAnimationStorage.cs
- CqlParserHelpers.cs
- DataBoundControlHelper.cs