Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / Column.cs / 1305376 / Column.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; ////// Creates a column and is the base class for all [ TypeConverterAttribute(typeof(ExpandableObjectConverter)) ] public abstract class DataGridColumn : IStateManager { private DataGrid owner; private TableItemStyle itemStyle; private TableItemStyle headerStyle; private TableItemStyle footerStyle; private StateBag statebag; private bool marked; ///column types. /// /// protected DataGridColumn() { statebag = new StateBag(); } ///Initializes a new instance of the System.Web.UI.WebControls.Column class. ////// protected bool DesignMode { get { if (owner != null) { return owner.DesignMode; } return false; } } ///[To be supplied.] ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_FooterStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle FooterStyle { get { if (footerStyle == null) { footerStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)footerStyle).TrackViewState(); } return footerStyle; } } ///Gets the style properties for the footer item. ////// internal TableItemStyle FooterStyleInternal { get { return footerStyle; } } ////// [ WebCategory("Appearance"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_FooterText) ] public virtual string FooterText { get { object o = ViewState["FooterText"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["FooterText"] = value; OnColumnChanged(); } } ///Gets or sets the text displayed in the footer of the /// System.Web.UI.WebControls.Column. ////// [ WebCategory("Appearance"), DefaultValue(""), UrlProperty(), WebSysDescription(SR.DataGridColumn_HeaderImageUrl) ] public virtual string HeaderImageUrl { get { object o = ViewState["HeaderImageUrl"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["HeaderImageUrl"] = value; OnColumnChanged(); } } ///Gets or sets the URL reference to an image to display /// instead of text on the header of this System.Web.UI.WebControls.Column /// . ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_HeaderStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle HeaderStyle { get { if (headerStyle == null) { headerStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)headerStyle).TrackViewState(); } return headerStyle; } } ///Gets the style properties for the header of the System.Web.UI.WebControls.Column. This property is read-only. ////// internal TableItemStyle HeaderStyleInternal { get { return headerStyle; } } ////// [ WebCategory("Appearance"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_HeaderText) ] public virtual string HeaderText { get { object o = ViewState["HeaderText"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["HeaderText"] = value; OnColumnChanged(); } } ///Gets or sets the text displayed in the header of the /// System.Web.UI.WebControls.Column. ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_ItemStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle ItemStyle { get { if (itemStyle == null) { itemStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)itemStyle).TrackViewState(); } return itemStyle; } } ///Gets the style properties of an item within the System.Web.UI.WebControls.Column. This property is read-only. ////// internal TableItemStyle ItemStyleInternal { get { return itemStyle; } } ////// protected DataGrid Owner { get { return owner; } } ///Gets the System.Web.UI.WebControls.DataGrid that the System.Web.UI.WebControls.Column is a part of. This property is read-only. ////// [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_SortExpression) ] public virtual string SortExpression { get { object o = ViewState["SortExpression"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["SortExpression"] = value; OnColumnChanged(); } } ///Gets or sets the expression used when this column is used to sort the data source> by. ////// protected StateBag ViewState { get { return statebag; } } ///Gets the statebag for the System.Web.UI.WebControls.Column. This property is read-only. ////// [ WebCategory("Behavior"), DefaultValue(true), WebSysDescription(SR.DataGridColumn_Visible) ] public bool Visible { get { object o = ViewState["Visible"]; if (o != null) return(bool)o; return true; } set { ViewState["Visible"] = value; OnColumnChanged(); } } ///Gets or sets a value to indicate whether the System.Web.UI.WebControls.Column is visible. ////// public virtual void Initialize() { } ////// public virtual void InitializeCell(TableCell cell, int columnIndex, ListItemType itemType) { switch (itemType) { case ListItemType.Header: { WebControl headerControl = null; bool sortableHeader = true; string sortExpression = null; if ((owner != null) && (owner.AllowSorting == false)) { sortableHeader = false; } if (sortableHeader) { sortExpression = SortExpression; if (sortExpression.Length == 0) sortableHeader = false; } string headerImageUrl = HeaderImageUrl; if (headerImageUrl.Length != 0) { if (sortableHeader) { ImageButton sortButton = new ImageButton(); sortButton.ImageUrl = HeaderImageUrl; sortButton.CommandName = DataGrid.SortCommandName; sortButton.CommandArgument = sortExpression; sortButton.CausesValidation = false; headerControl = sortButton; } else { Image headerImage = new Image(); headerImage.ImageUrl = headerImageUrl; headerControl = headerImage; } } else { string headerText = HeaderText; if (sortableHeader) { LinkButton sortButton = new DataGridLinkButton(); sortButton.Text = headerText; sortButton.CommandName = DataGrid.SortCommandName; sortButton.CommandArgument = sortExpression; sortButton.CausesValidation = false; headerControl = sortButton; } else { if (headerText.Length == 0) { // the browser does not render table borders for cells with nothing // in their content, so we add a non-breaking space. headerText = " "; } cell.Text = headerText; } } if (headerControl != null) { cell.Controls.Add(headerControl); } } break; case ListItemType.Footer: { string footerText = FooterText; if (footerText.Length == 0) { // the browser does not render table borders for cells with nothing // in their content, so we add a non-breaking space. footerText = " "; } cell.Text = footerText; } break; } } ///Initializes a cell in the System.Web.UI.WebControls.Column. ////// protected bool IsTrackingViewState { get { return marked; } } ///Determines if the System.Web.UI.WebControls.Column is marked to save its state. ////// protected virtual void LoadViewState(object savedState) { if (savedState != null) { object[] myState = (object[])savedState; if (myState[0] != null) ((IStateManager)ViewState).LoadViewState(myState[0]); if (myState[1] != null) ((IStateManager)ItemStyle).LoadViewState(myState[1]); if (myState[2] != null) ((IStateManager)HeaderStyle).LoadViewState(myState[2]); if (myState[3] != null) ((IStateManager)FooterStyle).LoadViewState(myState[3]); } } ///Loads the state of the System.Web.UI.WebControls.Column. ////// protected virtual void TrackViewState() { marked = true; ((IStateManager)ViewState).TrackViewState(); if (itemStyle != null) ((IStateManager)itemStyle).TrackViewState(); if (headerStyle != null) ((IStateManager)headerStyle).TrackViewState(); if (footerStyle != null) ((IStateManager)footerStyle).TrackViewState(); } ///Marks the starting point to begin tracking and saving changes to the /// control as part of the control viewstate. ////// protected virtual void OnColumnChanged() { if (owner != null) { owner.OnColumnsChanged(); } } ///Raises the ColumnChanged event for a System.Web.UI.WebControls.Column. ////// protected virtual object SaveViewState() { object propState = ((IStateManager)ViewState).SaveViewState(); object itemStyleState = (itemStyle != null) ? ((IStateManager)itemStyle).SaveViewState() : null; object headerStyleState = (headerStyle != null) ? ((IStateManager)headerStyle).SaveViewState() : null; object footerStyleState = (footerStyle != null) ? ((IStateManager)footerStyle).SaveViewState() : null; if ((propState != null) || (itemStyleState != null) || (headerStyleState != null) || (footerStyleState != null)) { return new object[4] { propState, itemStyleState, headerStyleState, footerStyleState }; } return null; } ///Saves the current state of the System.Web.UI.WebControls.Column. ////// internal void SetOwner(DataGrid owner) { this.owner = owner; } ////// public override string ToString() { return String.Empty; } ///Converts the System.Web.UI.WebControls.Column to string. ////// /// Return true if tracking state changes. /// bool IStateManager.IsTrackingViewState { get { return IsTrackingViewState; } } ////// /// Load previously saved state. /// void IStateManager.LoadViewState(object state) { LoadViewState(state); } ////// /// Start tracking state changes. /// void IStateManager.TrackViewState() { TrackViewState(); } ////// /// Return object containing state changes. /// object IStateManager.SaveViewState() { return SaveViewState(); } } } // 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; ////// Creates a column and is the base class for all [ TypeConverterAttribute(typeof(ExpandableObjectConverter)) ] public abstract class DataGridColumn : IStateManager { private DataGrid owner; private TableItemStyle itemStyle; private TableItemStyle headerStyle; private TableItemStyle footerStyle; private StateBag statebag; private bool marked; ///column types. /// /// protected DataGridColumn() { statebag = new StateBag(); } ///Initializes a new instance of the System.Web.UI.WebControls.Column class. ////// protected bool DesignMode { get { if (owner != null) { return owner.DesignMode; } return false; } } ///[To be supplied.] ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_FooterStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle FooterStyle { get { if (footerStyle == null) { footerStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)footerStyle).TrackViewState(); } return footerStyle; } } ///Gets the style properties for the footer item. ////// internal TableItemStyle FooterStyleInternal { get { return footerStyle; } } ////// [ WebCategory("Appearance"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_FooterText) ] public virtual string FooterText { get { object o = ViewState["FooterText"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["FooterText"] = value; OnColumnChanged(); } } ///Gets or sets the text displayed in the footer of the /// System.Web.UI.WebControls.Column. ////// [ WebCategory("Appearance"), DefaultValue(""), UrlProperty(), WebSysDescription(SR.DataGridColumn_HeaderImageUrl) ] public virtual string HeaderImageUrl { get { object o = ViewState["HeaderImageUrl"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["HeaderImageUrl"] = value; OnColumnChanged(); } } ///Gets or sets the URL reference to an image to display /// instead of text on the header of this System.Web.UI.WebControls.Column /// . ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_HeaderStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle HeaderStyle { get { if (headerStyle == null) { headerStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)headerStyle).TrackViewState(); } return headerStyle; } } ///Gets the style properties for the header of the System.Web.UI.WebControls.Column. This property is read-only. ////// internal TableItemStyle HeaderStyleInternal { get { return headerStyle; } } ////// [ WebCategory("Appearance"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_HeaderText) ] public virtual string HeaderText { get { object o = ViewState["HeaderText"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["HeaderText"] = value; OnColumnChanged(); } } ///Gets or sets the text displayed in the header of the /// System.Web.UI.WebControls.Column. ////// [ WebCategory("Styles"), DefaultValue(null), WebSysDescription(SR.DataGridColumn_ItemStyle), DesignerSerializationVisibility(DesignerSerializationVisibility.Content), PersistenceMode(PersistenceMode.InnerProperty) ] public virtual TableItemStyle ItemStyle { get { if (itemStyle == null) { itemStyle = new TableItemStyle(); if (IsTrackingViewState) ((IStateManager)itemStyle).TrackViewState(); } return itemStyle; } } ///Gets the style properties of an item within the System.Web.UI.WebControls.Column. This property is read-only. ////// internal TableItemStyle ItemStyleInternal { get { return itemStyle; } } ////// protected DataGrid Owner { get { return owner; } } ///Gets the System.Web.UI.WebControls.DataGrid that the System.Web.UI.WebControls.Column is a part of. This property is read-only. ////// [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.DataGridColumn_SortExpression) ] public virtual string SortExpression { get { object o = ViewState["SortExpression"]; if (o != null) return(string)o; return String.Empty; } set { ViewState["SortExpression"] = value; OnColumnChanged(); } } ///Gets or sets the expression used when this column is used to sort the data source> by. ////// protected StateBag ViewState { get { return statebag; } } ///Gets the statebag for the System.Web.UI.WebControls.Column. This property is read-only. ////// [ WebCategory("Behavior"), DefaultValue(true), WebSysDescription(SR.DataGridColumn_Visible) ] public bool Visible { get { object o = ViewState["Visible"]; if (o != null) return(bool)o; return true; } set { ViewState["Visible"] = value; OnColumnChanged(); } } ///Gets or sets a value to indicate whether the System.Web.UI.WebControls.Column is visible. ////// public virtual void Initialize() { } ////// public virtual void InitializeCell(TableCell cell, int columnIndex, ListItemType itemType) { switch (itemType) { case ListItemType.Header: { WebControl headerControl = null; bool sortableHeader = true; string sortExpression = null; if ((owner != null) && (owner.AllowSorting == false)) { sortableHeader = false; } if (sortableHeader) { sortExpression = SortExpression; if (sortExpression.Length == 0) sortableHeader = false; } string headerImageUrl = HeaderImageUrl; if (headerImageUrl.Length != 0) { if (sortableHeader) { ImageButton sortButton = new ImageButton(); sortButton.ImageUrl = HeaderImageUrl; sortButton.CommandName = DataGrid.SortCommandName; sortButton.CommandArgument = sortExpression; sortButton.CausesValidation = false; headerControl = sortButton; } else { Image headerImage = new Image(); headerImage.ImageUrl = headerImageUrl; headerControl = headerImage; } } else { string headerText = HeaderText; if (sortableHeader) { LinkButton sortButton = new DataGridLinkButton(); sortButton.Text = headerText; sortButton.CommandName = DataGrid.SortCommandName; sortButton.CommandArgument = sortExpression; sortButton.CausesValidation = false; headerControl = sortButton; } else { if (headerText.Length == 0) { // the browser does not render table borders for cells with nothing // in their content, so we add a non-breaking space. headerText = " "; } cell.Text = headerText; } } if (headerControl != null) { cell.Controls.Add(headerControl); } } break; case ListItemType.Footer: { string footerText = FooterText; if (footerText.Length == 0) { // the browser does not render table borders for cells with nothing // in their content, so we add a non-breaking space. footerText = " "; } cell.Text = footerText; } break; } } ///Initializes a cell in the System.Web.UI.WebControls.Column. ////// protected bool IsTrackingViewState { get { return marked; } } ///Determines if the System.Web.UI.WebControls.Column is marked to save its state. ////// protected virtual void LoadViewState(object savedState) { if (savedState != null) { object[] myState = (object[])savedState; if (myState[0] != null) ((IStateManager)ViewState).LoadViewState(myState[0]); if (myState[1] != null) ((IStateManager)ItemStyle).LoadViewState(myState[1]); if (myState[2] != null) ((IStateManager)HeaderStyle).LoadViewState(myState[2]); if (myState[3] != null) ((IStateManager)FooterStyle).LoadViewState(myState[3]); } } ///Loads the state of the System.Web.UI.WebControls.Column. ////// protected virtual void TrackViewState() { marked = true; ((IStateManager)ViewState).TrackViewState(); if (itemStyle != null) ((IStateManager)itemStyle).TrackViewState(); if (headerStyle != null) ((IStateManager)headerStyle).TrackViewState(); if (footerStyle != null) ((IStateManager)footerStyle).TrackViewState(); } ///Marks the starting point to begin tracking and saving changes to the /// control as part of the control viewstate. ////// protected virtual void OnColumnChanged() { if (owner != null) { owner.OnColumnsChanged(); } } ///Raises the ColumnChanged event for a System.Web.UI.WebControls.Column. ////// protected virtual object SaveViewState() { object propState = ((IStateManager)ViewState).SaveViewState(); object itemStyleState = (itemStyle != null) ? ((IStateManager)itemStyle).SaveViewState() : null; object headerStyleState = (headerStyle != null) ? ((IStateManager)headerStyle).SaveViewState() : null; object footerStyleState = (footerStyle != null) ? ((IStateManager)footerStyle).SaveViewState() : null; if ((propState != null) || (itemStyleState != null) || (headerStyleState != null) || (footerStyleState != null)) { return new object[4] { propState, itemStyleState, headerStyleState, footerStyleState }; } return null; } ///Saves the current state of the System.Web.UI.WebControls.Column. ////// internal void SetOwner(DataGrid owner) { this.owner = owner; } ////// public override string ToString() { return String.Empty; } ///Converts the System.Web.UI.WebControls.Column to string. ////// /// Return true if tracking state changes. /// bool IStateManager.IsTrackingViewState { get { return IsTrackingViewState; } } ////// /// Load previously saved state. /// void IStateManager.LoadViewState(object state) { LoadViewState(state); } ////// /// Start tracking state changes. /// void IStateManager.TrackViewState() { TrackViewState(); } ////// /// Return object containing state changes. /// object IStateManager.SaveViewState() { return SaveViewState(); } } } // 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
- XmlSchemaObject.cs
- DataTransferEventArgs.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- ProgressBarAutomationPeer.cs
- SelectionEditingBehavior.cs
- SystemDropShadowChrome.cs
- FixedHighlight.cs
- SqlConnection.cs
- FillErrorEventArgs.cs
- OutOfMemoryException.cs
- XmlSchemaAll.cs
- ColumnMapTranslator.cs
- SqlLiftIndependentRowExpressions.cs
- XmlSchemaFacet.cs
- XmlCharType.cs
- ReversePositionQuery.cs
- TextElementCollection.cs
- DataContractSerializerOperationBehavior.cs
- HelloOperationCD1AsyncResult.cs
- MeshGeometry3D.cs
- ReturnValue.cs
- MediaContext.cs
- DataMemberAttribute.cs
- ControlType.cs
- FieldToken.cs
- PieceNameHelper.cs
- InputDevice.cs
- IsolatedStorageException.cs
- ResourceLoader.cs
- ValueTypePropertyReference.cs
- PresentationTraceSources.cs
- FileSecurity.cs
- Profiler.cs
- AssemblyUtil.cs
- ProfessionalColors.cs
- QuaternionValueSerializer.cs
- FtpRequestCacheValidator.cs
- RegisteredArrayDeclaration.cs
- SerialPinChanges.cs
- UpdatePanelTriggerCollection.cs
- TreeIterator.cs
- SqlRowUpdatedEvent.cs
- ListenerConstants.cs
- DockAndAnchorLayout.cs
- BrowserTree.cs
- SystemColors.cs
- ActivatableWorkflowsQueryResult.cs
- MsmqProcessProtocolHandler.cs
- CheckBoxList.cs
- UdpMessageProperty.cs
- DataServiceRequestOfT.cs
- AppendHelper.cs
- ZipIOLocalFileDataDescriptor.cs
- InputChannel.cs
- PlainXmlWriter.cs
- AuthorizationRuleCollection.cs
- RijndaelManagedTransform.cs
- WebPartZone.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- ReadOnlyHierarchicalDataSourceView.cs
- TimeBoundedCache.cs
- WindowsContainer.cs
- CodeMethodInvokeExpression.cs
- AutomationAttributeInfo.cs
- _FtpDataStream.cs
- SqlFunctionAttribute.cs
- WindowsTab.cs
- NetCodeGroup.cs
- EncryptedData.cs
- XpsS0ValidatingLoader.cs
- CapabilitiesAssignment.cs
- FormsAuthenticationTicket.cs
- ClientSettingsSection.cs
- ResourceDefaultValueAttribute.cs
- ProcessThread.cs
- ListViewItem.cs
- ByteRangeDownloader.cs
- CodeMethodInvokeExpression.cs
- _IPv6Address.cs
- CustomValidator.cs
- MaskedTextProvider.cs
- EventLogTraceListener.cs
- Animatable.cs
- HtmlPageAdapter.cs
- PolicyManager.cs
- _FixedSizeReader.cs
- WebScriptMetadataMessageEncoderFactory.cs
- IISMapPath.cs
- HashHelper.cs
- ToolStripItemEventArgs.cs
- InvalidProgramException.cs
- SocketElement.cs
- LongTypeConverter.cs
- BStrWrapper.cs
- HttpApplicationFactory.cs
- TabletCollection.cs
- BoundPropertyEntry.cs
- ApplicationBuildProvider.cs
- messageonlyhwndwrapper.cs