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
- BaseComponentEditor.cs
- QilDataSource.cs
- HtmlTable.cs
- SQLSingleStorage.cs
- Condition.cs
- RowCache.cs
- CompleteWizardStep.cs
- Semaphore.cs
- ConfigurationSectionGroupCollection.cs
- InvalidAsynchronousStateException.cs
- ProcessInputEventArgs.cs
- ScriptControl.cs
- ComboBox.cs
- GeneralTransform3DTo2D.cs
- StringFreezingAttribute.cs
- MergeLocalizationDirectives.cs
- formatter.cs
- InputLanguageCollection.cs
- NamespaceCollection.cs
- HttpCacheVary.cs
- DiscriminatorMap.cs
- Compiler.cs
- NativeObjectSecurity.cs
- DocumentPaginator.cs
- TemplateControl.cs
- DataSpaceManager.cs
- columnmapkeybuilder.cs
- PaperSource.cs
- NameNode.cs
- WSSecurityOneDotZeroSendSecurityHeader.cs
- AbsoluteQuery.cs
- Drawing.cs
- ExtendLockAsyncResult.cs
- ByteConverter.cs
- IndentTextWriter.cs
- TimerEventSubscriptionCollection.cs
- XmlLinkedNode.cs
- ISAPIRuntime.cs
- SqlDataSourceCustomCommandPanel.cs
- RegionIterator.cs
- TextDecorationCollectionConverter.cs
- AutoGeneratedFieldProperties.cs
- RelatedCurrencyManager.cs
- EtwTrace.cs
- OperandQuery.cs
- GroupQuery.cs
- ListenerBinder.cs
- Pen.cs
- ObjectDataSourceStatusEventArgs.cs
- SymmetricKeyWrap.cs
- recordstatescratchpad.cs
- XmlHierarchicalEnumerable.cs
- QilInvokeLateBound.cs
- DecimalFormatter.cs
- SubqueryRules.cs
- PieceNameHelper.cs
- XamlTypeMapperSchemaContext.cs
- ParenthesizePropertyNameAttribute.cs
- GlobalItem.cs
- ExpressionEditorAttribute.cs
- SendMessageContent.cs
- HexParser.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- ListItem.cs
- KeyConstraint.cs
- EntityStoreSchemaGenerator.cs
- IPPacketInformation.cs
- EdmFunctionAttribute.cs
- HyperLinkStyle.cs
- ZipPackage.cs
- AnnotationElement.cs
- XmlWriter.cs
- RoutedEventHandlerInfo.cs
- BindStream.cs
- PageCache.cs
- EDesignUtil.cs
- EntitySqlQueryBuilder.cs
- TimeSpanSecondsConverter.cs
- StrongName.cs
- ExtensionDataReader.cs
- WebPartConnectionCollection.cs
- TemplateControlBuildProvider.cs
- ServiceBehaviorElement.cs
- RequestQueryProcessor.cs
- GorillaCodec.cs
- SiteMapNodeItemEventArgs.cs
- TextEditorParagraphs.cs
- InvokeBase.cs
- DataGridViewRowEventArgs.cs
- PresentationSource.cs
- XmlSchemaSimpleTypeList.cs
- ProfileGroupSettingsCollection.cs
- EntityDataSourceSelectedEventArgs.cs
- XmlTextAttribute.cs
- ResourceFallbackManager.cs
- AssociationSetEnd.cs
- FloaterParagraph.cs
- SequenceDesigner.cs
- WindowsRegion.cs
- LinearKeyFrames.cs