是否可以在紧凑框架的DataGrid中为列添加按钮?到目前为止,我唯一能找到的是你可以添加文本框,就是这样。什么是可以允许其他控件的DataGrid的一个很好的替代品?
答案 0 :(得分:3)
您可以使用DataGrid的
public Rectangle GetCellBounds(int row, int col);
与
public event EventHandler CurrentCellChanged;
public DataGridCell CurrentCell { get; set; }
或
public event MouseEventHandler MouseMove;
public HitTestInfo HitTest(int x, int y);
在所选单元格上显示一个Button(或其他控件)。
此致 tamberg