How to disable CTRL + F shortcut in XtraSpreadsheet
Tags:
Gutiérrez Cruz5 years ago
-
-
Good Morning,
Could you tell us how we can disable the hotkey "Control+Find" in SpreadSheet control, please?Thank you for your support.
Regards.
-
1 Solution
Andrey (DevExpress Support)5 years ago
Hello,
To accomplish this task, use the SpreadsheetControl.RemoveShortcutKey method as follows:
[C#]
public Form1() { InitializeComponent(); spreadsheetControl.RemoveShortcutKey(Keys.F, Keys.Control); }
Feel free to contact us if you need further assistance.
-
Gutiérrez Cruz5 years ago
Thank you so much! :)
-
Andrey (DevExpress Support)5 years ago
You're welcome. Feel free to contact us if you need further assistance.