本题主要考察各种控件的应用 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO; namespace WindowsFormsApplication1…
代码如下: using System.Runtime.InteropServices; using System.Drawing.Imaging; [System.Runtime.InteropServices.DllImportAttribute("gdi32.dll")] private static extern bool BitBlt( IntPtr hdcDest, // 目标 DC的句柄 int nXDest, int nYDest, int nWidth, int nHe…
vi + 文件名:进入 vi 模式 编辑模式:shift+: 退出编辑模式:Esc 退出编辑模式后可进行光标的上下左右移动(偶尔会出现ABCD,还不知道怎么解决,目前只能出来一个删除一个) 光标处:按 i 键进入编辑模式,Enter:换行,删除光标位置的字符:Delete 非编辑模式下:按 x 可以删除光标位置的字符,换行:Esc+O (评论区各位添加功能,我之后也会进行整理,谢谢)…