keypress - Letting User Specify Own C# KeyCodes for Making Shortcuts -
i want let user press key combination , set combination perform action. example: control/p
i can capture keys in keydown event, it's bit more complicated because key combination should not allowed, such control/c , control/v, since these used perform windows operations, don't want alter.
does know of prepared list can use make sure user entering acceptable key combination? did before, , hoping not have re-invent wheel.
thanks.
create blacklist of ones don't want allow them override.
you can use e.g. keyboard shortcuts windows reference.
Comments
Post a Comment