摘要: 1、按“WIN键+R键”组合快捷键,打开运行窗口,输入“regedit”回车,打开注册表管理器。 2、在注册表管理器中,依次点击展开“HKEY_USERS\.DEFAULT\Control Panel\Keyboard项。 3、在Keyboard项的右侧窗口中找到InitialKeyboardInd 阅读全文
posted @ 2022-10-17 22:09 远方是什么样子 阅读(995) 评论(0) 推荐(0)
摘要: std::map<int,std::string,std::less<int>> map; //升序(默认的) std::map<int,std::string,std::greater<int>> map; //降序 参考:https://blog.csdn.net/sandalphon4869/ 阅读全文
posted @ 2022-10-17 20:12 远方是什么样子 阅读(97) 评论(0) 推荐(0)
摘要: 1、设置全屏: setMaximmSize(160000,160000); showFullScreen(); 2、恢复: showNormal(); show(); setMinimumSize(200,100); setMaximumSize(200,100); move(100,200); 阅读全文
posted @ 2022-10-17 15:55 远方是什么样子 阅读(320) 评论(0) 推荐(0)