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
- Mappings.cs
- XamlClipboardData.cs
- ElementHostAutomationPeer.cs
- RemoteWebConfigurationHostServer.cs
- FixedTextSelectionProcessor.cs
- CompoundFileReference.cs
- SafeFileMapViewHandle.cs
- BreakRecordTable.cs
- Compress.cs
- NavigationFailedEventArgs.cs
- cryptoapiTransform.cs
- ListenUriMode.cs
- Certificate.cs
- LogEntryDeserializer.cs
- DeliveryStrategy.cs
- HttpConfigurationSystem.cs
- TrackingAnnotationCollection.cs
- UInt32Storage.cs
- ValidatingCollection.cs
- XmlSchemaSimpleContent.cs
- HwndKeyboardInputProvider.cs
- XmlToDatasetMap.cs
- WorkingDirectoryEditor.cs
- ResourceWriter.cs
- FieldBuilder.cs
- AutoGeneratedFieldProperties.cs
- DateTimePicker.cs
- SHA512Managed.cs
- PageCatalogPart.cs
- COM2ExtendedUITypeEditor.cs
- XmlSchemaComplexType.cs
- TrackingStringDictionary.cs
- BitmapEffectrendercontext.cs
- WindowsTokenRoleProvider.cs
- ExternalCalls.cs
- OdbcParameter.cs
- LinkButton.cs
- XmlTextEncoder.cs
- TabControl.cs
- IntSecurity.cs
- SemaphoreFullException.cs
- WebPartConnectionsCloseVerb.cs
- PolicyManager.cs
- TextBoxView.cs
- SqlDataSourceStatusEventArgs.cs
- HttpResponseInternalWrapper.cs
- Point3DAnimationUsingKeyFrames.cs
- SpeechSynthesizer.cs
- SpoolingTaskBase.cs
- StringKeyFrameCollection.cs
- ImageCodecInfoPrivate.cs
- DiscoveryClientReferences.cs
- MailDefinition.cs
- WindowsComboBox.cs
- CallbackValidatorAttribute.cs
- ClientEventManager.cs
- Switch.cs
- NavigatorInput.cs
- ObjectParameterCollection.cs
- PropertyPath.cs
- ServiceActivationException.cs
- WindowsAuthenticationEventArgs.cs
- DocumentsTrace.cs
- SurrogateDataContract.cs
- LayoutInformation.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- SizeChangedInfo.cs
- SaveFileDialog.cs
- CompilerParameters.cs
- XmlSchemaType.cs
- ControlBuilder.cs
- DependencyPropertyHelper.cs
- OracleBoolean.cs
- XmlDigitalSignatureProcessor.cs
- EntityDataSourceDataSelection.cs
- BlurEffect.cs
- MimeWriter.cs
- PageAdapter.cs
- RijndaelManagedTransform.cs
- UriSection.cs
- Serializer.cs
- TableLayoutSettingsTypeConverter.cs
- DataGridViewCellStyleChangedEventArgs.cs
- RawTextInputReport.cs
- DrawingContextDrawingContextWalker.cs
- MasterPageParser.cs
- DataGridViewTextBoxCell.cs
- ReaderWriterLockWrapper.cs
- CompilationPass2Task.cs
- ImageIndexConverter.cs
- HtmlGenericControl.cs
- Inline.cs
- DataGridViewCheckBoxCell.cs
- FacetEnabledSchemaElement.cs
- DtrList.cs
- ExpressionBindingsDialog.cs
- CngUIPolicy.cs
- TransactionFlowElement.cs
- CoTaskMemHandle.cs
- AcceptorSessionSymmetricMessageSecurityProtocol.cs