Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewModeEventArgs.cs / 1 / FormViewModeEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class FormViewModeEventArgs : CancelEventArgs { private FormViewMode _mode; private bool _cancelingEdit; ///Provides data for the ///event. /// public FormViewModeEventArgs(FormViewMode mode, bool cancelingEdit) : base(false) { this._mode = mode; this._cancelingEdit = cancelingEdit; } ///Initializes a new instance of ///class. /// public bool CancelingEdit { get { return _cancelingEdit; } } ///Gets a bool in the ///indicating whether the mode change is the result of a cancel command. /// This property is read-only. /// public FormViewMode NewMode { get { return _mode; } set { _mode = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a FormViewMode in the ///. This property is read-only.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MdiWindowListItemConverter.cs
- TextCompositionManager.cs
- AppDomainUnloadedException.cs
- Compress.cs
- SplitterPanel.cs
- ConnectionPoint.cs
- CreateUserWizardStep.cs
- DomNameTable.cs
- WebFaultClientMessageInspector.cs
- PaperSize.cs
- AssignDesigner.xaml.cs
- RawStylusInputCustomData.cs
- XmlTextEncoder.cs
- x509store.cs
- ConfigurationElementProperty.cs
- TimeStampChecker.cs
- LabelExpression.cs
- UpdateProgress.cs
- SqlClientWrapperSmiStream.cs
- BulletChrome.cs
- AdapterUtil.cs
- SqlCommandBuilder.cs
- Pen.cs
- SaveFileDialog.cs
- X509PeerCertificateElement.cs
- DecoderFallback.cs
- ColorConverter.cs
- OleAutBinder.cs
- LogRecordSequence.cs
- MappingModelBuildProvider.cs
- GridViewItemAutomationPeer.cs
- CommandDevice.cs
- XmlSchemaAnnotated.cs
- OracleTransaction.cs
- DataTableReaderListener.cs
- RegexRunnerFactory.cs
- XmlNodeChangedEventArgs.cs
- ValidatorUtils.cs
- ObjectContextServiceProvider.cs
- PermissionRequestEvidence.cs
- SecurityPermission.cs
- InvalidComObjectException.cs
- KeySpline.cs
- SqlInternalConnectionTds.cs
- SoapHeader.cs
- XsdDuration.cs
- cryptoapiTransform.cs
- Socket.cs
- Column.cs
- AxisAngleRotation3D.cs
- GetPageCompletedEventArgs.cs
- LogLogRecordHeader.cs
- AsyncPostBackTrigger.cs
- URL.cs
- DataList.cs
- FormViewPageEventArgs.cs
- Animatable.cs
- DataGridItemEventArgs.cs
- BrowserTree.cs
- BooleanSwitch.cs
- EmptyElement.cs
- dbdatarecord.cs
- UpdateCompiler.cs
- AncestorChangedEventArgs.cs
- Decoder.cs
- ControlCollection.cs
- BamlLocalizer.cs
- TouchDevice.cs
- FixUp.cs
- TranslateTransform3D.cs
- OledbConnectionStringbuilder.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- SignatureResourcePool.cs
- __Error.cs
- NamespaceCollection.cs
- ZipPackage.cs
- CloudCollection.cs
- CodeAttributeDeclarationCollection.cs
- UIElement.cs
- ValueUtilsSmi.cs
- ClickablePoint.cs
- DrawingVisual.cs
- DoWorkEventArgs.cs
- HttpDictionary.cs
- BlobPersonalizationState.cs
- SystemIPInterfaceStatistics.cs
- PositiveTimeSpanValidator.cs
- SafeMILHandleMemoryPressure.cs
- SqlHelper.cs
- SqlCrossApplyToCrossJoin.cs
- ToolStripItemDesigner.cs
- DocumentCollection.cs
- DescriptionAttribute.cs
- DataSourceCache.cs
- AssemblyNameProxy.cs
- MembershipSection.cs
- XamlTypeMapper.cs
- AppDomainAttributes.cs
- User.cs
- ArrayConverter.cs