Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / DataGridCellEditEndingEventArgs.cs / 1305600 / DataGridCellEditEndingEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Input; namespace System.Windows.Controls { ////// Provides information just before a cell exits edit mode. /// public class DataGridCellEditEndingEventArgs : EventArgs { ////// Instantiates a new instance of this class. /// /// The column of the cell that is about to exit edit mode. /// The row container of the cell container that is about to exit edit mode. /// The editing element within the cell. /// The editing unit that is about to leave edit mode. public DataGridCellEditEndingEventArgs(DataGridColumn column, DataGridRow row, FrameworkElement editingElement, DataGridEditAction editAction) { _dataGridColumn = column; _dataGridRow = row; _editingElement = editingElement; _editAction = editAction; } ////// When true, prevents the cell from exiting edit mode. /// public bool Cancel { get { return _cancel; } set { _cancel = value; } } ////// The column of the cell that is about to exit edit mode. /// public DataGridColumn Column { get { return _dataGridColumn; } } ////// The row container of the cell container that is about to exit edit mode. /// public DataGridRow Row { get { return _dataGridRow; } } ////// The editing element within the cell. /// public FrameworkElement EditingElement { get { return _editingElement; } } ////// The edit action when leave edit mode. /// public DataGridEditAction EditAction { get { return _editAction; } } private bool _cancel; private DataGridColumn _dataGridColumn; private DataGridRow _dataGridRow; private FrameworkElement _editingElement; private DataGridEditAction _editAction; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Input; namespace System.Windows.Controls { ////// Provides information just before a cell exits edit mode. /// public class DataGridCellEditEndingEventArgs : EventArgs { ////// Instantiates a new instance of this class. /// /// The column of the cell that is about to exit edit mode. /// The row container of the cell container that is about to exit edit mode. /// The editing element within the cell. /// The editing unit that is about to leave edit mode. public DataGridCellEditEndingEventArgs(DataGridColumn column, DataGridRow row, FrameworkElement editingElement, DataGridEditAction editAction) { _dataGridColumn = column; _dataGridRow = row; _editingElement = editingElement; _editAction = editAction; } ////// When true, prevents the cell from exiting edit mode. /// public bool Cancel { get { return _cancel; } set { _cancel = value; } } ////// The column of the cell that is about to exit edit mode. /// public DataGridColumn Column { get { return _dataGridColumn; } } ////// The row container of the cell container that is about to exit edit mode. /// public DataGridRow Row { get { return _dataGridRow; } } ////// The editing element within the cell. /// public FrameworkElement EditingElement { get { return _editingElement; } } ////// The edit action when leave edit mode. /// public DataGridEditAction EditAction { get { return _editAction; } } private bool _cancel; private DataGridColumn _dataGridColumn; private DataGridRow _dataGridRow; private FrameworkElement _editingElement; private DataGridEditAction _editAction; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SerializationSectionGroup.cs
- XpsViewerException.cs
- BaseAsyncResult.cs
- SynchronizedDispatch.cs
- DataContractSerializer.cs
- ModelTreeEnumerator.cs
- PageAsyncTask.cs
- TextTreeUndoUnit.cs
- StaticContext.cs
- HttpRequestCacheValidator.cs
- MenuCommand.cs
- DropDownList.cs
- HybridDictionary.cs
- TextEditorCharacters.cs
- OleDbEnumerator.cs
- codemethodreferenceexpression.cs
- CombinedGeometry.cs
- InstalledVoice.cs
- AllMembershipCondition.cs
- XmlQueryRuntime.cs
- NominalTypeEliminator.cs
- TextTabProperties.cs
- AssociationEndMember.cs
- AssemblyNameProxy.cs
- XmlAttributeCollection.cs
- XmlWrappingReader.cs
- DataGridViewButtonColumn.cs
- PaintValueEventArgs.cs
- XPathBinder.cs
- CodeIdentifier.cs
- UIElementHelper.cs
- XmlSchemaComplexContentExtension.cs
- ForAllOperator.cs
- ControlBuilderAttribute.cs
- NativeMethodsCLR.cs
- EncryptedReference.cs
- HostedController.cs
- SqlUtil.cs
- TypeSemantics.cs
- RightsManagementEncryptedStream.cs
- RecommendedAsConfigurableAttribute.cs
- EditorAttribute.cs
- DataSetMappper.cs
- MailDefinition.cs
- InvalidProgramException.cs
- Configuration.cs
- TraceFilter.cs
- DataPagerField.cs
- BooleanFacetDescriptionElement.cs
- RuntimeConfigLKG.cs
- AttributeQuery.cs
- EntityDataSourceChangingEventArgs.cs
- SymDocumentType.cs
- LogArchiveSnapshot.cs
- DataGridViewColumnCollection.cs
- VisualTreeUtils.cs
- ErrorStyle.cs
- Baml6ConstructorInfo.cs
- OracleMonthSpan.cs
- CallbackValidator.cs
- RectangleConverter.cs
- ConfigXmlWhitespace.cs
- OrderToken.cs
- MediaElement.cs
- DataViewSettingCollection.cs
- CorePropertiesFilter.cs
- SoapSchemaMember.cs
- BitVec.cs
- GlobalProxySelection.cs
- ProxyGenerationError.cs
- OdbcException.cs
- WebControlsSection.cs
- dbdatarecord.cs
- FlagsAttribute.cs
- complextypematerializer.cs
- ConsoleKeyInfo.cs
- CodeStatement.cs
- ResourceSetExpression.cs
- ObjectPropertyMapping.cs
- ComAdminInterfaces.cs
- BookmarkWorkItem.cs
- ProviderException.cs
- Int32RectValueSerializer.cs
- DataErrorValidationRule.cs
- EdmConstants.cs
- Rules.cs
- HScrollProperties.cs
- StandardCommands.cs
- XmlDictionaryReaderQuotasElement.cs
- ValidationErrorEventArgs.cs
- TriggerActionCollection.cs
- InputLangChangeRequestEvent.cs
- Choices.cs
- SchemaMerger.cs
- RijndaelManagedTransform.cs
- MediaSystem.cs
- TextAutomationPeer.cs
- RegexReplacement.cs
- DataSourceSerializationException.cs
- ConvertersCollection.cs