Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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; // 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. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //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; // 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. // Copyright (c) Microsoft Corporation. All rights reserved.Raises the ///event.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ButtonChrome.cs
- x509utils.cs
- ConfigXmlSignificantWhitespace.cs
- QilDataSource.cs
- SByte.cs
- ProfileService.cs
- PeerSecurityManager.cs
- updateconfighost.cs
- GlobalId.cs
- ListMarkerSourceInfo.cs
- BaseDataList.cs
- EmptyQuery.cs
- FigureParaClient.cs
- ArrayConverter.cs
- ChangeNode.cs
- DataGrid.cs
- FileSecurity.cs
- SiteMapDataSourceDesigner.cs
- sqlstateclientmanager.cs
- RewritingProcessor.cs
- MergeLocalizationDirectives.cs
- MessageEncodingBindingElement.cs
- PersonalizableAttribute.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- IndentTextWriter.cs
- LocatorGroup.cs
- CredentialCache.cs
- Executor.cs
- Boolean.cs
- FileChangesMonitor.cs
- PopOutPanel.cs
- DispatcherSynchronizationContext.cs
- AlphabetConverter.cs
- BypassElementCollection.cs
- SourceFileBuildProvider.cs
- IgnoreFlushAndCloseStream.cs
- UserControl.cs
- MatrixKeyFrameCollection.cs
- _ConnectStream.cs
- WebReferencesBuildProvider.cs
- MsmqSecureHashAlgorithm.cs
- TextRunProperties.cs
- ObjectDataSourceEventArgs.cs
- DependencySource.cs
- MsmqIntegrationOutputChannel.cs
- FullTextBreakpoint.cs
- CodeConstructor.cs
- SByteConverter.cs
- ReferenceConverter.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- RootProfilePropertySettingsCollection.cs
- TransformProviderWrapper.cs
- RepeaterDesigner.cs
- Marshal.cs
- StorageMappingItemCollection.cs
- Line.cs
- DetailsViewInsertedEventArgs.cs
- HyperLinkColumn.cs
- UInt64Storage.cs
- TextModifierScope.cs
- EventLogger.cs
- BinaryParser.cs
- PrimaryKeyTypeConverter.cs
- DependencyPropertyHelper.cs
- QueryStatement.cs
- Compiler.cs
- SharedConnectionWorkflowTransactionService.cs
- DataGridViewRowHeaderCell.cs
- SqlErrorCollection.cs
- ScalarType.cs
- SiteMapNodeItem.cs
- TextLine.cs
- HtmlInputText.cs
- AppDomainAttributes.cs
- Group.cs
- ListViewInsertionMark.cs
- ListViewTableCell.cs
- Visitors.cs
- EntityViewGenerator.cs
- Compensate.cs
- GridViewAutomationPeer.cs
- RequestCachingSection.cs
- UnsafeNativeMethodsMilCoreApi.cs
- BitStack.cs
- DefaultAsyncDataDispatcher.cs
- HttpApplicationFactory.cs
- SortedList.cs
- ShaperBuffers.cs
- ExceptQueryOperator.cs
- DbDataAdapter.cs
- DateTimeUtil.cs
- Filter.cs
- BufferedGraphicsContext.cs
- wmiutil.cs
- TdsParserHelperClasses.cs
- Rfc4050KeyFormatter.cs
- AllMembershipCondition.cs
- RoutedEventValueSerializer.cs
- GuidConverter.cs
- XamlUtilities.cs