Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / TemplatedWizardStep.cs / 1305376 / TemplatedWizardStep.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Web; using System.Web.UI; [ Bindable(false), ControlBuilderAttribute(typeof(WizardStepControlBuilder)), ParseChildren(true), PersistChildren(false), ToolboxItem(false), Themeable(true) ] public class TemplatedWizardStep : WizardStepBase { private ITemplate _contentTemplate; private Control _contentContainer; private ITemplate _navigationTemplate; private Control _navigationContainer; [ Browsable(false), DefaultValue(null), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(Wizard)), WebSysDescription(SR.TemplatedWizardStep_ContentTemplate) ] public virtual ITemplate ContentTemplate { get { return _contentTemplate; } set { _contentTemplate = value; if (Owner != null && ControlState > ControlState.Constructed) { Owner.RequiresControlsRecreation(); } } } [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public Control ContentTemplateContainer { get { return _contentContainer; } internal set { _contentContainer = value; } } [ Browsable(false), DefaultValue(null), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(Wizard)), WebSysDescription(SR.TemplatedWizardStep_CustomNavigationTemplate) ] public virtual ITemplate CustomNavigationTemplate { get { return _navigationTemplate; } set { _navigationTemplate = value; if (Owner != null && ControlState > ControlState.Constructed) { Owner.RequiresControlsRecreation(); } } } [ Browsable(false), Bindable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public Control CustomNavigationTemplateContainer { get { return _navigationContainer; } internal set { _navigationContainer = value; } } [ Browsable(true) ] public override string SkinID { get { return base.SkinID; } set { base.SkinID = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Web; using System.Web.UI; [ Bindable(false), ControlBuilderAttribute(typeof(WizardStepControlBuilder)), ParseChildren(true), PersistChildren(false), ToolboxItem(false), Themeable(true) ] public class TemplatedWizardStep : WizardStepBase { private ITemplate _contentTemplate; private Control _contentContainer; private ITemplate _navigationTemplate; private Control _navigationContainer; [ Browsable(false), DefaultValue(null), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(Wizard)), WebSysDescription(SR.TemplatedWizardStep_ContentTemplate) ] public virtual ITemplate ContentTemplate { get { return _contentTemplate; } set { _contentTemplate = value; if (Owner != null && ControlState > ControlState.Constructed) { Owner.RequiresControlsRecreation(); } } } [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public Control ContentTemplateContainer { get { return _contentContainer; } internal set { _contentContainer = value; } } [ Browsable(false), DefaultValue(null), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(Wizard)), WebSysDescription(SR.TemplatedWizardStep_CustomNavigationTemplate) ] public virtual ITemplate CustomNavigationTemplate { get { return _navigationTemplate; } set { _navigationTemplate = value; if (Owner != null && ControlState > ControlState.Constructed) { Owner.RequiresControlsRecreation(); } } } [ Browsable(false), Bindable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public Control CustomNavigationTemplateContainer { get { return _navigationContainer; } internal set { _navigationContainer = value; } } [ Browsable(true) ] public override string SkinID { get { return base.SkinID; } set { base.SkinID = value; } } } } // 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
- MultiBinding.cs
- StreamGeometryContext.cs
- NativeMethods.cs
- AnnotationComponentManager.cs
- NamespaceEmitter.cs
- TransportChannelListener.cs
- MailMessage.cs
- SymbolDocumentInfo.cs
- CodeIndexerExpression.cs
- SQLDateTimeStorage.cs
- LayoutEngine.cs
- SqlReferenceCollection.cs
- ConnectionProviderAttribute.cs
- PropertyNames.cs
- XamlRtfConverter.cs
- QueryOperationResponseOfT.cs
- DataKeyArray.cs
- LexicalChunk.cs
- ExceptionValidationRule.cs
- PackageRelationship.cs
- SqlBooleanizer.cs
- ActivitiesCollection.cs
- XsltLoader.cs
- ConfigurationProperty.cs
- SettingsPropertyValueCollection.cs
- cookieexception.cs
- DoubleLinkList.cs
- XmlExpressionDumper.cs
- HtmlTableCell.cs
- SendContent.cs
- CompiledQueryCacheEntry.cs
- ConfigurationValidatorAttribute.cs
- _NTAuthentication.cs
- BamlRecordReader.cs
- TdsParserStateObject.cs
- HtmlTableRowCollection.cs
- TokenBasedSetEnumerator.cs
- Storyboard.cs
- XmlArrayAttribute.cs
- DateTimeValueSerializer.cs
- _CookieModule.cs
- RegexRunner.cs
- basecomparevalidator.cs
- CollectionsUtil.cs
- PeerToPeerException.cs
- ResXBuildProvider.cs
- CompositeDataBoundControl.cs
- MouseButton.cs
- LockCookie.cs
- CompareValidator.cs
- ObjectConverter.cs
- ComplexObject.cs
- WorkflowApplicationException.cs
- Axis.cs
- RbTree.cs
- IdentifierCollection.cs
- ThicknessAnimation.cs
- SortDescriptionCollection.cs
- ProcessMessagesAsyncResult.cs
- VirtualPathProvider.cs
- BezierSegment.cs
- WebPartEventArgs.cs
- SafeMemoryMappedViewHandle.cs
- CacheRequest.cs
- ExpressionCopier.cs
- BrushValueSerializer.cs
- TextWriter.cs
- TextEditorParagraphs.cs
- Error.cs
- GeometryGroup.cs
- BinaryObjectReader.cs
- HtmlDocument.cs
- ActivationProxy.cs
- COM2ExtendedUITypeEditor.cs
- DecimalKeyFrameCollection.cs
- ThreadExceptionEvent.cs
- ColumnWidthChangedEvent.cs
- RotateTransform3D.cs
- Opcode.cs
- EventProxy.cs
- CopyNodeSetAction.cs
- Attributes.cs
- SortQuery.cs
- DocumentViewerConstants.cs
- TemplateControlCodeDomTreeGenerator.cs
- EntityDesignerBuildProvider.cs
- FormsAuthenticationTicket.cs
- TraceSource.cs
- TdsParserSessionPool.cs
- HtmlImage.cs
- ReflectionHelper.cs
- MdbDataFileEditor.cs
- PluralizationService.cs
- BufferModeSettings.cs
- BitmapEffectGeneralTransform.cs
- SiteMapNodeItem.cs
- XmlCDATASection.cs
- RandomNumberGenerator.cs
- URL.cs
- UIElement.cs