Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / SkinIDTypeConverter.cs / 1 / SkinIDTypeConverter.cs
namespace System.Web.UI.Design { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Globalization; public class SkinIDTypeConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { return value; } return base.ConvertFrom(context, culture, value); } public override bool CanConvertTo(ITypeDescriptorContext context, Type destType) { if (destType == typeof(string)) { return true; } return base.CanConvertTo(context, destType); } public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (value is string) { return value; } return base.ConvertTo(context, culture, value, destinationType); } public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { if (context == null) return new StandardValuesCollection(new ArrayList()); Control control = (Control)context.Instance; ArrayList skins = new ArrayList(); if (control.Site != null) { IThemeResolutionService themeService = (IThemeResolutionService)control.Site.GetService(typeof(IThemeResolutionService)); ThemeProvider stylesheetThemeProvider = themeService.GetStylesheetThemeProvider(); ThemeProvider themeProvider = themeService.GetThemeProvider(); if (stylesheetThemeProvider != null) { skins.AddRange(stylesheetThemeProvider.GetSkinsForControl(control.GetType())); skins.Remove(String.Empty); } if (themeProvider != null) { ICollection themeSkins = themeProvider.GetSkinsForControl(control.GetType()); foreach (string skinID in themeSkins) { if (!skins.Contains(skinID)) { skins.Add(skinID); } } skins.Remove(String.Empty); } skins.Sort(); } return new StandardValuesCollection(skins); } public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { ThemeProvider themeProvider = null; if (context != null) { Control control = (Control)context.Instance; if (control.Site != null) { IThemeResolutionService themeService = (IThemeResolutionService)control.Site.GetService(typeof(IThemeResolutionService)); if (themeService != null) { themeProvider = themeService.GetThemeProvider(); if (themeProvider == null) { themeProvider = themeService.GetStylesheetThemeProvider(); } } } } return (themeProvider != null); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Timer.cs
- ToolStripOverflowButton.cs
- TableChangeProcessor.cs
- DataGridColumnHeader.cs
- TextRunCache.cs
- EncoderParameters.cs
- CornerRadiusConverter.cs
- ProfileSettingsCollection.cs
- WebPartConnectionsCancelVerb.cs
- ColorKeyFrameCollection.cs
- AmbiguousMatchException.cs
- OutputScopeManager.cs
- ColumnMapVisitor.cs
- VScrollBar.cs
- QueryOutputWriter.cs
- ChannelTraceRecord.cs
- DataGridViewCellStateChangedEventArgs.cs
- AtomParser.cs
- XamlReaderHelper.cs
- HTMLTagNameToTypeMapper.cs
- StringAnimationUsingKeyFrames.cs
- ThreadExceptionDialog.cs
- XmlTextEncoder.cs
- GetPageNumberCompletedEventArgs.cs
- OperatorExpressions.cs
- CharAnimationBase.cs
- WebBrowser.cs
- ContentPosition.cs
- SerializationException.cs
- FormViewPagerRow.cs
- NeutralResourcesLanguageAttribute.cs
- listitem.cs
- DrawingVisualDrawingContext.cs
- QfeChecker.cs
- CanonicalizationDriver.cs
- EventsTab.cs
- URLBuilder.cs
- X509ClientCertificateCredentialsElement.cs
- Attributes.cs
- CanonicalXml.cs
- DependencyPropertyAttribute.cs
- VectorAnimationBase.cs
- ColumnHeaderConverter.cs
- CodeChecksumPragma.cs
- Parameter.cs
- ImageCodecInfo.cs
- JoinSymbol.cs
- DesignOnlyAttribute.cs
- HttpChannelBindingToken.cs
- X509Extension.cs
- CompiledQuery.cs
- WindowsFormsHostAutomationPeer.cs
- CanonicalXml.cs
- VectorConverter.cs
- MediaTimeline.cs
- Util.cs
- PersonalizationProviderCollection.cs
- SqlDataSourceStatusEventArgs.cs
- ContentPresenter.cs
- RoamingStoreFile.cs
- DataGridViewHitTestInfo.cs
- MessagePartDescription.cs
- WhiteSpaceTrimStringConverter.cs
- EventQueueState.cs
- WindowsRichEdit.cs
- TableDetailsRow.cs
- xsdvalidator.cs
- FunctionDescription.cs
- FlagPanel.cs
- AccessText.cs
- XPathNavigator.cs
- UpdatableWrapper.cs
- EntityDataSourceChangingEventArgs.cs
- CodeParameterDeclarationExpression.cs
- HtmlHead.cs
- UrlPath.cs
- CroppedBitmap.cs
- BinaryMethodMessage.cs
- AddressingVersion.cs
- Pens.cs
- DocumentReferenceCollection.cs
- MessageSecurityVersion.cs
- QuaternionRotation3D.cs
- Int32Converter.cs
- PointLight.cs
- HtmlEmptyTagControlBuilder.cs
- UserValidatedEventArgs.cs
- Point.cs
- CryptoKeySecurity.cs
- VisualStyleInformation.cs
- Panel.cs
- PropertyInformationCollection.cs
- DataServiceProcessingPipeline.cs
- XmlMemberMapping.cs
- TabControl.cs
- TableProvider.cs
- RuntimeConfigurationRecord.cs
- BulletedListEventArgs.cs
- TextOutput.cs
- AmbiguousMatchException.cs