Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / controlskin.cs / 1305376 / controlskin.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Reflection; using System.Security.Permissions; namespace System.Web.UI { [EditorBrowsable(EditorBrowsableState.Advanced)] public delegate System.Web.UI.Control ControlSkinDelegate(Control control); [EditorBrowsable(EditorBrowsableState.Advanced)] public class ControlSkin { private Type _controlType; private ControlSkinDelegate _controlSkinDelegate; public ControlSkin(Type controlType, ControlSkinDelegate themeDelegate) { _controlType = controlType; _controlSkinDelegate = themeDelegate; } public Type ControlType { get { return _controlType; } } public void ApplySkin(Control control) { _controlSkinDelegate(control); } } } // 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
- IChannel.cs
- DiscreteKeyFrames.cs
- LinqDataSourceContextEventArgs.cs
- FontFaceLayoutInfo.cs
- TypeSystem.cs
- ControlLocalizer.cs
- WindowsStatic.cs
- DataGridViewCellStyleChangedEventArgs.cs
- Perspective.cs
- mactripleDES.cs
- TCEAdapterGenerator.cs
- ResourceType.cs
- WindowsFormsSynchronizationContext.cs
- SecuritySessionFilter.cs
- UserPreferenceChangingEventArgs.cs
- Pens.cs
- ServiceOperationViewControl.cs
- typedescriptorpermissionattribute.cs
- WindowsListViewSubItem.cs
- CheckBoxField.cs
- DrawingBrush.cs
- WriteTimeStream.cs
- VariableModifiersHelper.cs
- BackgroundFormatInfo.cs
- Helper.cs
- DictationGrammar.cs
- DefaultHttpHandler.cs
- ExpanderAutomationPeer.cs
- XmlSchemaObject.cs
- BamlLocalizationDictionary.cs
- LayoutTable.cs
- Underline.cs
- TabControlAutomationPeer.cs
- EntityChangedParams.cs
- XmlLanguage.cs
- Range.cs
- ComponentConverter.cs
- objectresult_tresulttype.cs
- ConfigurationCollectionAttribute.cs
- ExpressionPrefixAttribute.cs
- ConstructorNeedsTagAttribute.cs
- TypeDescriptionProviderAttribute.cs
- UIAgentCrashedException.cs
- FormsAuthenticationUserCollection.cs
- LocalizedNameDescriptionPair.cs
- ResourcePermissionBaseEntry.cs
- EventDescriptorCollection.cs
- FacetValues.cs
- DataBindingCollection.cs
- EpmContentDeSerializer.cs
- TextFormatterHost.cs
- webproxy.cs
- ButtonDesigner.cs
- ActivityCodeDomSerializer.cs
- TextDecorationCollectionConverter.cs
- HwndAppCommandInputProvider.cs
- TextDecorationCollection.cs
- WindowsAltTab.cs
- HeaderedContentControl.cs
- MsmqNonTransactedPoisonHandler.cs
- ListViewItem.cs
- SqlDataSourceStatusEventArgs.cs
- CodeAssignStatement.cs
- WindowsFormsEditorServiceHelper.cs
- CatalogZoneBase.cs
- HttpListenerException.cs
- InternalDispatchObject.cs
- DynamicValidator.cs
- FixedSOMTableRow.cs
- AnimatedTypeHelpers.cs
- TypedReference.cs
- SecurityState.cs
- SamlSecurityTokenAuthenticator.cs
- QueryStringHandler.cs
- ProfileGroupSettingsCollection.cs
- ErrorView.xaml.cs
- CommandEventArgs.cs
- BooleanAnimationBase.cs
- ContextMenuStrip.cs
- ValidationSummary.cs
- ValidationHelper.cs
- XmlNavigatorStack.cs
- JournalEntry.cs
- PassportPrincipal.cs
- TextEditorParagraphs.cs
- KeyValueInternalCollection.cs
- IntAverageAggregationOperator.cs
- QilParameter.cs
- DataServiceRequestException.cs
- RadioButton.cs
- Border.cs
- ScriptRef.cs
- MultipartIdentifier.cs
- HMACSHA384.cs
- ActivationServices.cs
- DetailsView.cs
- XmlHelper.cs
- ServicePoint.cs
- ClipboardProcessor.cs
- ObjectDataSourceFilteringEventArgs.cs