Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / View.cs / 1 / View.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; using System.Web; using System.Web.UI; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [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.Security.Permissions; using System.Web; using System.Web.UI; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [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
- Stacktrace.cs
- MatrixTransform3D.cs
- BamlCollectionHolder.cs
- WmlListAdapter.cs
- UserNamePasswordServiceCredential.cs
- WebPartConnectionCollection.cs
- AutoCompleteStringCollection.cs
- StrokeDescriptor.cs
- DesignerDataStoredProcedure.cs
- NotFiniteNumberException.cs
- SizeKeyFrameCollection.cs
- Registry.cs
- AdornerHitTestResult.cs
- ProfileServiceManager.cs
- NavigateEvent.cs
- BaseDataList.cs
- XmlSchemaElement.cs
- TdsParserStaticMethods.cs
- DiscoveryClientReferences.cs
- DtdParser.cs
- SimpleRecyclingCache.cs
- FieldCollectionEditor.cs
- CompositeDataBoundControl.cs
- CompositeFontInfo.cs
- TextCompositionManager.cs
- DoubleLink.cs
- ShutDownListener.cs
- HandlerMappingMemo.cs
- PerfCounters.cs
- TransportReplyChannelAcceptor.cs
- FileAuthorizationModule.cs
- TouchPoint.cs
- CompensatableTransactionScopeActivity.cs
- WebPartUserCapability.cs
- CatalogPartCollection.cs
- OleDbErrorCollection.cs
- AssemblyContextControlItem.cs
- X509UI.cs
- SqlProviderServices.cs
- ListViewUpdatedEventArgs.cs
- OutputWindow.cs
- RegistrationProxy.cs
- GroupItemAutomationPeer.cs
- ScrollItemPattern.cs
- WorkflowViewService.cs
- EncoderBestFitFallback.cs
- TextHintingModeValidation.cs
- CodeArrayCreateExpression.cs
- JsonQNameDataContract.cs
- HttpProfileBase.cs
- Type.cs
- UnicastIPAddressInformationCollection.cs
- TraceListener.cs
- MenuItemBinding.cs
- BitVec.cs
- listitem.cs
- NoPersistProperty.cs
- SerializationEventsCache.cs
- ExtentJoinTreeNode.cs
- RecommendedAsConfigurableAttribute.cs
- SimpleHandlerFactory.cs
- ErasingStroke.cs
- NamespaceEmitter.cs
- HostProtectionException.cs
- XmlSchemaSimpleContentRestriction.cs
- UriTemplateLiteralPathSegment.cs
- CompositeFontParser.cs
- MultiView.cs
- ObjectQuery.cs
- FileLoadException.cs
- HtmlGenericControl.cs
- SchemaCollectionCompiler.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ToolStripContentPanelRenderEventArgs.cs
- DesignSurface.cs
- OwnerDrawPropertyBag.cs
- MissingMemberException.cs
- DataGridViewRowConverter.cs
- ToolStripDropDownItem.cs
- OdbcRowUpdatingEvent.cs
- Oid.cs
- MenuItem.cs
- ExpressionBuilderCollection.cs
- CmsInterop.cs
- NumberAction.cs
- AttributeParameterInfo.cs
- ConfigurationSection.cs
- ReliabilityContractAttribute.cs
- DataGridSortCommandEventArgs.cs
- PatternMatcher.cs
- xml.cs
- CheckBox.cs
- PassportIdentity.cs
- Publisher.cs
- QueryableDataSourceEditData.cs
- InvalidPrinterException.cs
- WebPartEditorOkVerb.cs
- FileAuthorizationModule.cs
- KeyValueInternalCollection.cs
- DebuggerService.cs