1.图片缩放 using System; using System.Windows.Forms; using System.Drawing; class haha : Form { static void Main() { Application.Run(new haha()); } Bitmap bit; int x, y; haha() { ClientSize = new Size(400, 400); bit = new Bitmap(800, 800); Graphics.FromIm…
目录 Idea Live Template总结 一.演示 二.详细介绍 2.1 类型 2.2设置(win默认快捷键win+alt+s) 2.3 快捷键 2.4 实战 Idea Live Template总结 live template是idea中提高效率的利器之一,以前看过一些教程,平时经常在使用,减少了我很多繁复的工作,但是没有系统的去整理过,最近准备系统的整理下,主要是自己平时用到的和官方文档的说明,如果有不正确的地方. 定义: Live template可以让你快速.高效.正确的插入平时经…