Answers for "c# keycode list"

C#
1

c# keycode list

/* Specifies key codes and modifiers.
This enumeration has a FlagsAttribute attribute that allows a bitwise
combination of its member values. */
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.KeysConverter))]
[System.Flags]
public enum Keys

/* Inheritance Object > ValueType > Enum > Keys
Attributes TypeConverterAttribute, FlagsAttribute */
Posted by: Guest on September-20-2021

C# Answers by Framework

Browse Popular Code Answers by Language