In the grid there is an empty 'cell' in the header (on the left, see Grid1.png), here I'd like to create a context menu for some general gridfunctions (like Grid2.png).
Could you give me some pointers on how to accomplish this?
Thanks in advance!
public override void BeginEdit()
{
base.BeginEdit();
BrowseEditorElement editor = (BrowseEditorElement)this.EditorElement;
editor.TextBox.SelectAll(); // this is completely ignored
editor.TextBox.Focus(); // this is completely ignored - READING THE RETURN VALUE IT'S "FALSE"
editor.TextBox.TextChanging +=
new TextChangingEventHandler(TextBox_TextChanging);
editor.TextBox.TextChanged +=
new EventHandler(TextBox_TextChanged);
editor.TextBox.KeyDown +=
new KeyEventHandler(TextBox_KeyDown);
editor.Button.Click +=
new EventHandler(Button_Click);
}