Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 .net 应用程序中
我需要一个 4 行 @ 25 个字符的控件 - 看起来像 LCD 显示器。实际上,输入稍后会显示在汽车的液晶显示屏上..
我想只使用一个datagridview,每列只能保存一个字符,输入字符后将焦点转移到下一个单元格等。
任何(更好的)想法?
谢谢奥斯卡
您可以为屏幕使用多维数组:
char[,] display = new char[4, 25];