Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- DateTimeFormatInfoScanner.cs
- EntityStoreSchemaFilterEntry.cs
- RelatedPropertyManager.cs
- TrailingSpaceComparer.cs
- MergablePropertyAttribute.cs
- SelectionWordBreaker.cs
- NameTable.cs
- ConnectionPoint.cs
- WrappedReader.cs
- LineSegment.cs
- ExcludeFromCodeCoverageAttribute.cs
- SafeEventLogReadHandle.cs
- UnsafeNativeMethodsCLR.cs
- ContentFilePart.cs
- ThicknessAnimation.cs
- AvTrace.cs
- TextEvent.cs
- FontSourceCollection.cs
- DifferencingCollection.cs
- ArrayTypeMismatchException.cs
- OutputCacheProfileCollection.cs
- DescendantOverDescendantQuery.cs
- RemoveStoryboard.cs
- ItemMap.cs
- Semaphore.cs
- Accessible.cs
- RegexMatchCollection.cs
- WorkItem.cs
- Stacktrace.cs
- WmlTextBoxAdapter.cs
- GridViewHeaderRowPresenter.cs
- ClientConfigurationSystem.cs
- SortKey.cs
- RestHandler.cs
- GridLength.cs
- SmiEventSink_DeferedProcessing.cs
- UserPreferenceChangingEventArgs.cs
- PropertyPath.cs
- XXXOnTypeBuilderInstantiation.cs
- TextBox.cs
- WebPartConnectionsDisconnectVerb.cs
- OwnerDrawPropertyBag.cs
- DoubleAnimationBase.cs
- Quad.cs
- SimpleWorkerRequest.cs
- TypeGeneratedEventArgs.cs
- Task.cs
- BaseValidator.cs
- KeyConverter.cs
- ReadWriteSpinLock.cs
- VideoDrawing.cs
- UnSafeCharBuffer.cs
- GcHandle.cs
- SwitchLevelAttribute.cs
- SplitterPanelDesigner.cs
- ContentElement.cs
- ToolBarButton.cs
- CLSCompliantAttribute.cs
- DragEvent.cs
- KeyInfo.cs
- UrlAuthFailureHandler.cs
- XmlSchemaNotation.cs
- ChildTable.cs
- CuspData.cs
- DataBindingHandlerAttribute.cs
- DataGridViewCellStyleChangedEventArgs.cs
- DeleteWorkflowOwnerCommand.cs
- __FastResourceComparer.cs
- ProgressBarBrushConverter.cs
- FunctionDefinition.cs
- CustomAttributeBuilder.cs
- CroppedBitmap.cs
- Compiler.cs
- UserControlCodeDomTreeGenerator.cs
- EntryPointNotFoundException.cs
- PeerChannelListener.cs
- FileInfo.cs
- DataControlField.cs
- PlainXmlDeserializer.cs
- ClientClassGenerator.cs
- ObjectResult.cs
- HijriCalendar.cs
- StylusPointProperty.cs
- UnsettableComboBox.cs
- DayRenderEvent.cs
- AutomationPeer.cs
- ListViewCancelEventArgs.cs
- DateBoldEvent.cs
- FamilyMapCollection.cs
- CompressedStack.cs
- TrustManager.cs
- ComPlusServiceLoader.cs
- OdbcEnvironmentHandle.cs
- IisTraceWebEventProvider.cs
- SmtpClient.cs
- ScriptResourceMapping.cs
- XmlArrayAttribute.cs
- CodeConditionStatement.cs
- TiffBitmapEncoder.cs
- MsmqIntegrationBindingElement.cs