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
- XmlTextAttribute.cs
- ToolStripMenuItem.cs
- ValueUtilsSmi.cs
- DefaultSection.cs
- MenuItemAutomationPeer.cs
- FrameworkContentElement.cs
- BinaryObjectReader.cs
- CompilerResults.cs
- ClientConfigurationHost.cs
- GlyphManager.cs
- SQLBytes.cs
- StyleTypedPropertyAttribute.cs
- FocusWithinProperty.cs
- JapaneseCalendar.cs
- TextBox.cs
- WaitHandleCannotBeOpenedException.cs
- ApplicationGesture.cs
- DPCustomTypeDescriptor.cs
- SelectionListDesigner.cs
- ServerProtocol.cs
- ALinqExpressionVisitor.cs
- CubicEase.cs
- OutputCacheSection.cs
- Listbox.cs
- CellIdBoolean.cs
- DataContractSerializer.cs
- WpfPayload.cs
- ResourceDictionary.cs
- SelectionEditor.cs
- ToolStripContainerActionList.cs
- TableItemPattern.cs
- EnumConverter.cs
- ErasingStroke.cs
- ToolStripDropDownDesigner.cs
- SchemaCollectionPreprocessor.cs
- ADMembershipProvider.cs
- XamlReader.cs
- XmlAnyElementAttributes.cs
- FixedSOMLineRanges.cs
- DefaultSection.cs
- DataSourceControlBuilder.cs
- InternalsVisibleToAttribute.cs
- HwndTarget.cs
- X509Utils.cs
- Soap.cs
- WasHttpHandlersInstallComponent.cs
- TextBoxLine.cs
- SimpleWorkerRequest.cs
- SharedDp.cs
- Parameter.cs
- SizeConverter.cs
- ErrorTableItemStyle.cs
- TextElementEnumerator.cs
- OdbcTransaction.cs
- GeneratedCodeAttribute.cs
- SQLDouble.cs
- ResourceDisplayNameAttribute.cs
- OrderPreservingPipeliningMergeHelper.cs
- CompilerErrorCollection.cs
- NullableDecimalAverageAggregationOperator.cs
- WebPartAuthorizationEventArgs.cs
- CloseSequence.cs
- ToolboxItemWrapper.cs
- SqlIdentifier.cs
- FilterElement.cs
- TemplateComponentConnector.cs
- ServiceContractAttribute.cs
- DropDownList.cs
- ClientConfigurationHost.cs
- SmtpFailedRecipientsException.cs
- AppDomainCompilerProxy.cs
- GridView.cs
- Model3DGroup.cs
- WasHttpModulesInstallComponent.cs
- EventListenerClientSide.cs
- SqlDataSourceEnumerator.cs
- VerificationAttribute.cs
- ConsumerConnectionPointCollection.cs
- SafeRightsManagementPubHandle.cs
- PropertyBuilder.cs
- ItemList.cs
- COM2FontConverter.cs
- State.cs
- DataGridBoundColumn.cs
- recordstate.cs
- SqlDataSourceCommandEventArgs.cs
- DbProviderFactories.cs
- ConnectivityStatus.cs
- StrokeCollection.cs
- UniqueID.cs
- ComponentEditorForm.cs
- HebrewCalendar.cs
- ObjectStateManagerMetadata.cs
- PathFigureCollectionConverter.cs
- CodeAttributeArgument.cs
- IndentedWriter.cs
- Subtree.cs
- StreamHelper.cs
- StreamWithDictionary.cs
- MetaModel.cs