Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / TemplateColumn.cs / 1305376 / TemplateColumn.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; ////// // public class TemplateColumn : DataGridColumn { private ITemplate headerTemplate; private ITemplate footerTemplate; private ITemplate itemTemplate; private ITemplate editItemTemplate; ///Defines the template for controls layout within a /// ////// column. /// Initializes a new instance of the public TemplateColumn() { } ///class. /// /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_EditItemTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate EditItemTemplate { get { return editItemTemplate; } set { editItemTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how items in edit mode are rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_FooterTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate FooterTemplate { get { return footerTemplate; } set { footerTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how the control footer is rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_HeaderTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate HeaderTemplate { get { return headerTemplate; } set { headerTemplate = value; OnColumnChanged(); } } ///Specifies the ////// that defines how the control header is rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_ItemTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate ItemTemplate { get { return itemTemplate; } set { itemTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how items are rendered. /// /// public override void InitializeCell(TableCell cell, int columnIndex, ListItemType itemType) { base.InitializeCell(cell, columnIndex, itemType); ITemplate contentTemplate = null; switch (itemType) { case ListItemType.Header: contentTemplate = headerTemplate; break; case ListItemType.Footer: contentTemplate = footerTemplate; break; case ListItemType.Item: case ListItemType.AlternatingItem: case ListItemType.SelectedItem: contentTemplate = itemTemplate; break; case ListItemType.EditItem: if (editItemTemplate != null) contentTemplate = editItemTemplate; else goto case ListItemType.Item; break; } if (contentTemplate != null) { // The base class might have added a control or some text for some cases // such as header text which need to be removed before // the corresponding template is used. // Note that setting text also has the effect of clearing out any controls. cell.Text = String.Empty; contentTemplate.InstantiateIn(cell); } else { if (itemType == ListItemType.Item || itemType == ListItemType.AlternatingItem || itemType == ListItemType.SelectedItem || itemType == ListItemType.EditItem) { cell.Text = " "; } } } } } // 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; ////// // public class TemplateColumn : DataGridColumn { private ITemplate headerTemplate; private ITemplate footerTemplate; private ITemplate itemTemplate; private ITemplate editItemTemplate; ///Defines the template for controls layout within a /// ////// column. /// Initializes a new instance of the public TemplateColumn() { } ///class. /// /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_EditItemTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate EditItemTemplate { get { return editItemTemplate; } set { editItemTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how items in edit mode are rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_FooterTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate FooterTemplate { get { return footerTemplate; } set { footerTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how the control footer is rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_HeaderTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate HeaderTemplate { get { return headerTemplate; } set { headerTemplate = value; OnColumnChanged(); } } ///Specifies the ////// that defines how the control header is rendered. /// [ Browsable(false), DefaultValue(null), WebSysDescription(SR.TemplateColumn_ItemTemplate), PersistenceMode(PersistenceMode.InnerProperty), TemplateContainer(typeof(DataGridItem)) ] public virtual ITemplate ItemTemplate { get { return itemTemplate; } set { itemTemplate = value; OnColumnChanged(); } } ///Specifies the ///that defines how items are rendered. /// /// public override void InitializeCell(TableCell cell, int columnIndex, ListItemType itemType) { base.InitializeCell(cell, columnIndex, itemType); ITemplate contentTemplate = null; switch (itemType) { case ListItemType.Header: contentTemplate = headerTemplate; break; case ListItemType.Footer: contentTemplate = footerTemplate; break; case ListItemType.Item: case ListItemType.AlternatingItem: case ListItemType.SelectedItem: contentTemplate = itemTemplate; break; case ListItemType.EditItem: if (editItemTemplate != null) contentTemplate = editItemTemplate; else goto case ListItemType.Item; break; } if (contentTemplate != null) { // The base class might have added a control or some text for some cases // such as header text which need to be removed before // the corresponding template is used. // Note that setting text also has the effect of clearing out any controls. cell.Text = String.Empty; contentTemplate.InstantiateIn(cell); } else { if (itemType == ListItemType.Item || itemType == ListItemType.AlternatingItem || itemType == ListItemType.SelectedItem || itemType == ListItemType.EditItem) { cell.Text = " "; } } } } } // 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
- BulletChrome.cs
- AppDomainCompilerProxy.cs
- SafeNativeMethods.cs
- ProxyHelper.cs
- InstanceNormalEvent.cs
- MembershipPasswordException.cs
- ConfigurationElement.cs
- ResourceReferenceKeyNotFoundException.cs
- ControlUtil.cs
- RegistryKey.cs
- PathSegmentCollection.cs
- SourceSwitch.cs
- ClientData.cs
- DefaultTextStore.cs
- ObjectQueryProvider.cs
- Int32Animation.cs
- NullableConverter.cs
- HttpModulesSection.cs
- CompensableActivity.cs
- TiffBitmapDecoder.cs
- SynchronizationLockException.cs
- _LoggingObject.cs
- FastEncoderWindow.cs
- RequestedSignatureDialog.cs
- LazyLoadBehavior.cs
- PreviewPageInfo.cs
- datacache.cs
- SharedPersonalizationStateInfo.cs
- DataGridTableCollection.cs
- LogRestartAreaEnumerator.cs
- HelpEvent.cs
- StoryFragments.cs
- ObjectTag.cs
- PersonalizationProviderHelper.cs
- HtmlInputFile.cs
- SecurityException.cs
- TabRenderer.cs
- HtmlToClrEventProxy.cs
- StatusBarPanelClickEvent.cs
- SqlUDTStorage.cs
- DBSqlParserColumnCollection.cs
- RecognizerStateChangedEventArgs.cs
- JoinCqlBlock.cs
- SpellerInterop.cs
- FormsAuthentication.cs
- DelayedRegex.cs
- UrlMappingsModule.cs
- ToolStripStatusLabel.cs
- RequestSecurityTokenResponse.cs
- ObjectHelper.cs
- KeyProperty.cs
- SiteMap.cs
- Vector3DCollection.cs
- SafeRightsManagementPubHandle.cs
- AdapterUtil.cs
- diagnosticsswitches.cs
- ApplicationHost.cs
- XmlProcessingInstruction.cs
- ScopedKnownTypes.cs
- DetailsViewDeleteEventArgs.cs
- TableTextElementCollectionInternal.cs
- CompositeControl.cs
- EventSinkActivity.cs
- Baml6Assembly.cs
- AccessDataSourceDesigner.cs
- GridItemProviderWrapper.cs
- Soap12ProtocolImporter.cs
- ButtonRenderer.cs
- FormViewDeleteEventArgs.cs
- CalendarDesigner.cs
- SafeRightsManagementSessionHandle.cs
- XmlDocument.cs
- HttpRequestContext.cs
- OpacityConverter.cs
- ScriptingScriptResourceHandlerSection.cs
- TextComposition.cs
- EventEntry.cs
- FrameworkName.cs
- EntityDataSourceDesigner.cs
- RowParagraph.cs
- EventManager.cs
- MobileTemplatedControlDesigner.cs
- BaseCollection.cs
- counter.cs
- BuiltInExpr.cs
- XPathSelfQuery.cs
- DataObjectEventArgs.cs
- XmlAttribute.cs
- SapiAttributeParser.cs
- DesignerTransaction.cs
- OperationGenerator.cs
- ExpressionReplacer.cs
- ResourceReferenceExpression.cs
- Button.cs
- FileReservationCollection.cs
- FastEncoderWindow.cs
- ReferenceSchema.cs
- UnicastIPAddressInformationCollection.cs
- XmlSignatureProperties.cs
- ViewStateModeByIdAttribute.cs