摘要:平时用的的确确是少,回来想起来已经忘记了不下3次了,搞得每次都要去网上现找,索性写到博客中作为记录。基本理论: 控件的背景色往往是从父控件继承来的。比如在PictureBox 上面放置一个背景透明的Label,做法可如下: label1.Parent = pictureBox1; //设定Label 的父控件为PictureBox label1.BackColor = Color.Transpar...
阅读全文
随笔分类 - WinForm
摘要:调用timer不能用System.Windows.Forms.Timer而应该用System.Timers.Timer System.Timers.Timer t = new System.Timers.Timer(interVal);//实例化Timer类,设置间隔时间为10000毫秒;t.Elapsed += new System.Timers.ElapsedEventHandler(Tick...
阅读全文
摘要:/// <summary> /// WebClient上传文件至服务器 /// </summary> /// <param name="localFilePath">文件名,全路径格式</param> /// <param name="serverFolder">服务器文件夹路径</param> /// <returns...
阅读全文