随笔分类 - Winform
摘要:public static System.Drawing.Image ResizeImage(System.Drawing.Image img, Size size){//获取图片宽度int sourceWidth = img.Width;//获取图片高度int sourceHeight = img
阅读全文
摘要:登录以及切换界面时,界面不停闪烁的问题 将下面代码添加到窗体代码中: protected override CreateParams CreateParams //防止界面闪烁 { get { CreateParams paras = base.CreateParams; paras.ExStyle
阅读全文
摘要:using System;using System.Diagnostics;using System.IO;using System.Windows.Forms;using Microsoft.Win32; namespace WindowsFormsApplication1{ public cla
阅读全文
摘要://获取当前进程的完整路径,包含文件名(进程名)。string str = this.GetType().Assembly.Location;result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名) //获取新的Process 组件并将其与当前活动的进程关联的
阅读全文