Hi all. I have a next problem. I need to represent a pressed keys combination in a text form. I got pressed keys from KeyEventArgs e...
And when I try to use following code
e.KeyData.ToString(); I got something like this: N, Control .... But I want to get Ctrl+N string.
I think that must be present specific format for String.Format because when i bind property with type Keys to the DataGridView I saw in the table cell string Ctrl+N. It's mean that DataGridView can do this, and i think this is not done manually...
Thanks a lot!!