Browse by Tags
All Tags » DataGrid » Editing (RSS)
-
When I edit in the Datagrid a value, the value in the Textbox should also immediately change and not when I leave the row.
Here the code:
<Window x:Class=''WpfApplication_Xceed.Window1''
xmlns=''http://schemas.microsoft.com/winfx/2006/xaml/presentation''
xmlns:x=''http://schemas.microsoft.com/winfx/2006/xaml''
Title=''Window1'' ...
-
Hi all,
I'm trying to override CancelEdit on my implementation of the DataRow:
public event EventHandler Edit_Cancel;
public override void CancelEdit(){ base.CancelEdit();
OnCancelEdit(this, EventArgs.Empty);}
public void OnCancelEdit(object sender, EventArgs args){ ...
-
Hi all,
Is there a way to know when the user has canceled his / her changes (e.g. by hitting Esc.)? I've looked in the help files and the forum, but I don't see anything like it. Thanks,Frances
|
|
|
|