Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / DataGridPreparingCellForEditEventArgs.cs / 1305600 / DataGridPreparingCellForEditEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Input; namespace System.Windows.Controls { ////// Provides information about a cell that has just entered edit mode. /// public class DataGridPreparingCellForEditEventArgs : EventArgs { ////// Constructs a new instance of these event arguments. /// /// The column of the cell that just entered edit mode. /// The row container that contains the cell container that just entered edit mode. /// The event arguments, if any, that led to the cell being placed in edit mode. /// The cell container that just entered edit mode. /// The editing element within the cell container. public DataGridPreparingCellForEditEventArgs(DataGridColumn column, DataGridRow row, RoutedEventArgs editingEventArgs, FrameworkElement editingElement) { _dataGridColumn = column; _dataGridRow = row; _editingEventArgs = editingEventArgs; _editingElement = editingElement; } ////// The column of the cell that just entered edit mode. /// public DataGridColumn Column { get { return _dataGridColumn; } } ////// The row container that contains the cell container that just entered edit mode. /// public DataGridRow Row { get { return _dataGridRow; } } ////// The event arguments, if any, that led to the cell being placed in edit mode. /// public RoutedEventArgs EditingEventArgs { get { return _editingEventArgs; } } ////// The editing element within the cell container. /// public FrameworkElement EditingElement { get { return _editingElement; } } private DataGridColumn _dataGridColumn; private DataGridRow _dataGridRow; private RoutedEventArgs _editingEventArgs; private FrameworkElement _editingElement; } } // 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
- PageRanges.cs
- RenderTargetBitmap.cs
- HttpResponseInternalWrapper.cs
- AccessViolationException.cs
- ActivityCodeGenerator.cs
- ListViewSortEventArgs.cs
- ContainerFilterService.cs
- XmlSchemaComplexContent.cs
- SecurityHeaderLayout.cs
- BufferModesCollection.cs
- ClrPerspective.cs
- ExceptionUtil.cs
- BufferedGraphicsManager.cs
- SynchronousChannel.cs
- ConfigurationElementCollection.cs
- AccessViolationException.cs
- X509Chain.cs
- ListParagraph.cs
- ApplicationFileCodeDomTreeGenerator.cs
- HttpHandlerAction.cs
- BasicCellRelation.cs
- NegotiateStream.cs
- ObjectTokenCategory.cs
- GuidConverter.cs
- XsdDuration.cs
- TextMessageEncodingBindingElement.cs
- ValuePattern.cs
- WebPartConnectionsCancelEventArgs.cs
- DataSvcMapFileSerializer.cs
- RbTree.cs
- CheckBoxPopupAdapter.cs
- VScrollBar.cs
- WmpBitmapDecoder.cs
- DataControlField.cs
- CalendarDateRange.cs
- SafeCancelMibChangeNotify.cs
- SetStateDesigner.cs
- ExpressionLink.cs
- AuthorizationRuleCollection.cs
- ProviderSettingsCollection.cs
- LinqDataSourceDisposeEventArgs.cs
- PlatformNotSupportedException.cs
- XmlSignificantWhitespace.cs
- BrushConverter.cs
- PathSegment.cs
- InputMethodStateTypeInfo.cs
- PrintDocument.cs
- SqlInfoMessageEvent.cs
- _CommandStream.cs
- OdbcCommandBuilder.cs
- WaitHandleCannotBeOpenedException.cs
- ASCIIEncoding.cs
- RtfToXamlReader.cs
- DLinqTableProvider.cs
- Set.cs
- OdbcConnectionOpen.cs
- FixUp.cs
- TemplateControlBuildProvider.cs
- SingleConverter.cs
- SynchronousSendBindingElement.cs
- SqlEnums.cs
- DataMisalignedException.cs
- XmlDataLoader.cs
- EdgeModeValidation.cs
- mediaclock.cs
- PersonalizationEntry.cs
- SecurityUniqueId.cs
- ApplicationInfo.cs
- SqlCommand.cs
- SafeNativeMethods.cs
- DataGridCellEditEndingEventArgs.cs
- DocumentViewerConstants.cs
- PageCatalogPart.cs
- Processor.cs
- ArgumentsParser.cs
- SqlTriggerAttribute.cs
- RootProfilePropertySettingsCollection.cs
- HtmlEmptyTagControlBuilder.cs
- BrushMappingModeValidation.cs
- Propagator.JoinPropagator.cs
- DecoderFallback.cs
- DesignerTextBoxAdapter.cs
- TableRowCollection.cs
- DictionaryEntry.cs
- MethodBuilderInstantiation.cs
- NamedPipeTransportSecurity.cs
- LoginName.cs
- XamlFxTrace.cs
- SqlNotificationRequest.cs
- ConversionHelper.cs
- ServiceEndpointAssociationProvider.cs
- ScrollBarRenderer.cs
- WindowInteropHelper.cs
- GridItemPatternIdentifiers.cs
- DistributedTransactionPermission.cs
- SafeNativeMethods.cs
- CookielessHelper.cs
- KeyFrames.cs
- CounterCreationData.cs
- MonthCalendar.cs