DataGridColumn.PrepareCellForEdit(FrameworkElement, RoutedEventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,根据编辑需要设置单元格内容。
protected:
virtual System::Object ^ PrepareCellForEdit(System::Windows::FrameworkElement ^ editingElement, System::Windows::RoutedEventArgs ^ editingEventArgs);
protected virtual object PrepareCellForEdit (System.Windows.FrameworkElement editingElement, System.Windows.RoutedEventArgs editingEventArgs);
abstract member PrepareCellForEdit : System.Windows.FrameworkElement * System.Windows.RoutedEventArgs -> obj
override this.PrepareCellForEdit : System.Windows.FrameworkElement * System.Windows.RoutedEventArgs -> obj
Protected Overridable Function PrepareCellForEdit (editingElement As FrameworkElement, editingEventArgs As RoutedEventArgs) As Object
参数
- editingElement
- FrameworkElement
列为处于编辑模式的单元格显示的元素。
- editingEventArgs
- RoutedEventArgs
有关导致单元格进入编辑模式的用户笔势的信息。
返回
当由派生类返回时,为未编辑的单元格值。 在所有情况下此实现均返回 null
。
注解
派生列类型替代此方法,以响应由 editingEventArgs
指示的用户手势,并在编辑前返回当前值。