Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / TemplateColumn.cs / 1 / 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; using System.Security.Permissions; ////// // [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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 = " "; } } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MethodBuilder.cs
- XPathNodeHelper.cs
- ExtensibleClassFactory.cs
- Figure.cs
- PerfCounterSection.cs
- Oid.cs
- HijriCalendar.cs
- BooleanKeyFrameCollection.cs
- ArgIterator.cs
- mediaeventshelper.cs
- WebServiceErrorEvent.cs
- GridViewCellAutomationPeer.cs
- CapabilitiesAssignment.cs
- LogLogRecord.cs
- ServiceOperationInvoker.cs
- CompositeClientFormatter.cs
- TextEditorThreadLocalStore.cs
- DrawingContextWalker.cs
- MultiAsyncResult.cs
- XmlSchemaComplexType.cs
- InputLanguageProfileNotifySink.cs
- TreeNodeCollectionEditor.cs
- SqlParameterizer.cs
- SQLDecimal.cs
- PagesChangedEventArgs.cs
- TextTreeUndoUnit.cs
- ToolStripCollectionEditor.cs
- PropertyEntry.cs
- DataSourceCache.cs
- TrackBar.cs
- CodeSubDirectory.cs
- RequiredFieldValidator.cs
- NavigationProperty.cs
- ServiceModelEnumValidator.cs
- ReflectionPermission.cs
- DataGridViewCellStyleContentChangedEventArgs.cs
- DataGridPageChangedEventArgs.cs
- HwndSourceKeyboardInputSite.cs
- FormsAuthenticationTicket.cs
- ScriptingAuthenticationServiceSection.cs
- HtmlInputImage.cs
- SerializationObjectManager.cs
- ContractHandle.cs
- HtmlTableRow.cs
- Convert.cs
- SynchronizationLockException.cs
- ClientTarget.cs
- DataGridItem.cs
- ResourceDescriptionAttribute.cs
- PaperSize.cs
- DbDataAdapter.cs
- PopupRoot.cs
- RoleServiceManager.cs
- DataColumn.cs
- TableCellCollection.cs
- ListViewContainer.cs
- IntPtr.cs
- CommonProperties.cs
- VersionValidator.cs
- ExecutionContext.cs
- SafeNativeMethodsOther.cs
- ControlDesignerState.cs
- RayMeshGeometry3DHitTestResult.cs
- DataGridViewCellMouseEventArgs.cs
- ErrorTableItemStyle.cs
- ScriptReferenceEventArgs.cs
- SafeSecurityHelper.cs
- WebPartMenuStyle.cs
- RawTextInputReport.cs
- ThousandthOfEmRealPoints.cs
- RequestSecurityToken.cs
- MetadataReference.cs
- UnmanagedHandle.cs
- ErrorProvider.cs
- SecurityState.cs
- StreamWithDictionary.cs
- UIElement.cs
- FormViewDeleteEventArgs.cs
- EventLogTraceListener.cs
- MethodSet.cs
- CompileXomlTask.cs
- EventLogPermissionAttribute.cs
- TrustLevelCollection.cs
- DescendentsWalkerBase.cs
- ButtonFlatAdapter.cs
- BindingOperations.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- DataMember.cs
- VirtualPathProvider.cs
- GeneralTransformGroup.cs
- WindowsToolbar.cs
- RtfToken.cs
- Registry.cs
- EventLogPermission.cs
- RemotingAttributes.cs
- DNS.cs
- DataServiceClientException.cs
- LazyTextWriterCreator.cs
- DiscoveryOperationContextExtension.cs
- ListViewSelectEventArgs.cs