This question is locked. New answers and comments are not allowed.
Hi,
I wish to have a shotcut key for closing a RadPane from my container (RadDocking). e.g. CTRL + Shift + W
How can I simulate the clicking of the close (x) button when user types the shortcut key i defined?
Something like below.
Thanks,
Clarian
I wish to have a shotcut key for closing a RadPane from my container (RadDocking). e.g. CTRL + Shift + W
How can I simulate the clicking of the close (x) button when user types the shortcut key i defined?
Something like below.
private void MainPage_KeyUp(object sender, KeyEventArgs e)
{
if (IsCtrlShift())
{
switch (e.Key)
{
case Key.W: this.PaneContainer.PreviewClose(this.PaneContainer.ActivePane); ...}
}}
Thanks,
Clarian