Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / View.cs / 1305376 / View.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Web; using System.Web.UI; [ParseChildren(false)] [ Designer("System.Web.UI.Design.WebControls.ViewDesigner, " + AssemblyRef.SystemDesign) ] [ToolboxData("<{0}:View runat=\"server\">{0}:View>")] public class View : Control { private static readonly object _eventActivate = new object(); private static readonly object _eventDeactivate = new object(); private bool _active = false; ////// internal bool Active { get { return _active; } set { _active = value; // VSWhidbey 297515 - Need to make it visible explicity so views can be added during Render base.Visible = true; } } ///[To be supplied.] ////// [ Browsable(true) ] public override bool EnableTheming { get { return base.EnableTheming; } set { base.EnableTheming = value; } } ///Gets and sets a value indicating whether theme is enabled. ////// [ WebCategory("Action"), WebSysDescription(SR.View_Activate) ] public event EventHandler Activate { add { Events.AddHandler(_eventActivate, value); } remove { Events.RemoveHandler(_eventActivate, value); } } ///Occurs when the view is deactivated. ////// [ WebCategory("Action"), WebSysDescription(SR.View_Deactivate) ] public event EventHandler Deactivate { add { Events.AddHandler(_eventDeactivate, value); } remove { Events.RemoveHandler(_eventDeactivate, value); } } ///Occurs when the view is deactivated. ////// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), WebCategory("Behavior"), WebSysDescription(SR.Control_Visible) ] public override bool Visible { get { if (Parent == null) { return Active; } return Active && Parent.Visible; } set { if (DesignMode) { return; } throw new InvalidOperationException(SR.GetString(SR.View_CannotSetVisible)); } } ////// Gets or sets a value that indicates whether the view should be rendered on /// the page. /// ////// protected internal virtual void OnActivate(EventArgs e) { EventHandler handler = (EventHandler)Events[_eventActivate]; if (handler != null) { handler(this, e); } } ///Raises the ///event. /// protected internal virtual void OnDeactivate(EventArgs e) { EventHandler handler = (EventHandler)Events[_eventDeactivate]; if (handler != null) { handler(this, e); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Raises the ///event. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Web; using System.Web.UI; [ParseChildren(false)] [ Designer("System.Web.UI.Design.WebControls.ViewDesigner, " + AssemblyRef.SystemDesign) ] [ToolboxData("<{0}:View runat=\"server\">{0}:View>")] public class View : Control { private static readonly object _eventActivate = new object(); private static readonly object _eventDeactivate = new object(); private bool _active = false; ////// internal bool Active { get { return _active; } set { _active = value; // VSWhidbey 297515 - Need to make it visible explicity so views can be added during Render base.Visible = true; } } ///[To be supplied.] ////// [ Browsable(true) ] public override bool EnableTheming { get { return base.EnableTheming; } set { base.EnableTheming = value; } } ///Gets and sets a value indicating whether theme is enabled. ////// [ WebCategory("Action"), WebSysDescription(SR.View_Activate) ] public event EventHandler Activate { add { Events.AddHandler(_eventActivate, value); } remove { Events.RemoveHandler(_eventActivate, value); } } ///Occurs when the view is deactivated. ////// [ WebCategory("Action"), WebSysDescription(SR.View_Deactivate) ] public event EventHandler Deactivate { add { Events.AddHandler(_eventDeactivate, value); } remove { Events.RemoveHandler(_eventDeactivate, value); } } ///Occurs when the view is deactivated. ////// [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), WebCategory("Behavior"), WebSysDescription(SR.Control_Visible) ] public override bool Visible { get { if (Parent == null) { return Active; } return Active && Parent.Visible; } set { if (DesignMode) { return; } throw new InvalidOperationException(SR.GetString(SR.View_CannotSetVisible)); } } ////// Gets or sets a value that indicates whether the view should be rendered on /// the page. /// ////// protected internal virtual void OnActivate(EventArgs e) { EventHandler handler = (EventHandler)Events[_eventActivate]; if (handler != null) { handler(this, e); } } ///Raises the ///event. /// protected internal virtual void OnDeactivate(EventArgs e) { EventHandler handler = (EventHandler)Events[_eventDeactivate]; if (handler != null) { handler(this, e); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Raises the ///event.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ByteAnimationBase.cs
- TextRangeEditLists.cs
- MessageQueue.cs
- ActionNotSupportedException.cs
- Wizard.cs
- SchemaContext.cs
- NavigationPropertyEmitter.cs
- ServicePointManager.cs
- EndpointAddress10.cs
- Ticks.cs
- CustomErrorsSection.cs
- IdentitySection.cs
- ReadOnlyDataSourceView.cs
- LinkClickEvent.cs
- DataGridTable.cs
- LinkLabel.cs
- wgx_sdk_version.cs
- TextTreeInsertElementUndoUnit.cs
- DesignerToolboxInfo.cs
- TypedReference.cs
- FindProgressChangedEventArgs.cs
- URLIdentityPermission.cs
- Vector.cs
- DataGridViewComboBoxEditingControl.cs
- ContentType.cs
- PenCursorManager.cs
- DropSource.cs
- WebPartConnectionsDisconnectVerb.cs
- MemberCollection.cs
- NameTable.cs
- LineVisual.cs
- HttpCacheParams.cs
- InternalBase.cs
- SharedStatics.cs
- ZoomComboBox.cs
- CustomTypeDescriptor.cs
- TypeDescriptionProviderAttribute.cs
- InputReferenceExpression.cs
- EventTrigger.cs
- ControlBuilderAttribute.cs
- HitTestDrawingContextWalker.cs
- VirtualizingStackPanel.cs
- SpellerStatusTable.cs
- WebPermission.cs
- BitmapEffect.cs
- SynchronizationHandlesCodeDomSerializer.cs
- WebReferencesBuildProvider.cs
- Main.cs
- CalendarAutomationPeer.cs
- EntityViewGenerator.cs
- HostingEnvironmentException.cs
- EntityDesignerBuildProvider.cs
- LicFileLicenseProvider.cs
- AttachedPropertiesService.cs
- EnlistmentState.cs
- OdbcParameter.cs
- DataGridViewCellFormattingEventArgs.cs
- ListViewItem.cs
- _NetworkingPerfCounters.cs
- SerializationInfoEnumerator.cs
- MemberInitExpression.cs
- ResourceDisplayNameAttribute.cs
- DeclarativeCatalogPart.cs
- RightsManagementEncryptionTransform.cs
- TextProviderWrapper.cs
- EditorPart.cs
- EdgeModeValidation.cs
- SuppressIldasmAttribute.cs
- UiaCoreTypesApi.cs
- TraceInternal.cs
- DecimalAnimationUsingKeyFrames.cs
- LocatorGroup.cs
- TaskSchedulerException.cs
- CounterNameConverter.cs
- DependencyObject.cs
- IPHostEntry.cs
- Point3DKeyFrameCollection.cs
- NativeMethods.cs
- CodeGroup.cs
- DocumentGrid.cs
- TdsRecordBufferSetter.cs
- ValidationUtility.cs
- ExtractorMetadata.cs
- SqlConnectionPoolGroupProviderInfo.cs
- HttpPostedFileBase.cs
- InstallHelper.cs
- FeatureManager.cs
- NameHandler.cs
- PackageProperties.cs
- SplitContainer.cs
- Int32AnimationUsingKeyFrames.cs
- OperationResponse.cs
- XmlSignatureProperties.cs
- ToolStripHighContrastRenderer.cs
- Point3DCollectionConverter.cs
- KeyValueSerializer.cs
- CompositeFontInfo.cs
- DictionaryTraceRecord.cs
- HtmlTableCell.cs
- odbcmetadatacolumnnames.cs