摘要:
Private Sub Text1_Change() Label1.AutoSize = True Label1 = Text1 Text1.Width = Label1.WidthEnd Sub网上的,写的很巧妙,这人真的太有才了http://zhidao.baidu.com/question/374535114.html 阅读全文
摘要:
几个经常用到的字符串的截取string str="123abc456";int i=3;1 取字符串的前i个字符str=str.Substring(0,i); // orstr=str.Remove(i,str.Length-i);2 去掉字符串的前i个字符:str=str.Remove(0,i); // or str=str.Substring(i);3 从右边开始取i个字符:str=str.Substring(str.Length-i); // or str=str.Remove(0,str.Length-i);4 从右边开始去掉i个字符:str=str.Substri 阅读全文
摘要:
写了个通用的模板,以后直接复制了,希望大家指点一二using System.Drawing;//添加图片生成图片对象 public static void pictureBmpAdd( Form f1, string bmpPathName) { //创建一个图片对象 Bitmap bmp = new Bitmap(bmpPathName);//创建一个图片容器 PictureBox pb1 = new PictureBox(); pb1.Image = bmp; pb1.SetBounds(10, 10, 100, 100); //x,y,wigth,higth pb1.SizeMod... 阅读全文
摘要:
利用Control类的Controls可取得子控件集合,依据Controls.Count获得的子控件数目,用Control.Controls[n].属性名 访问相关属性 private void ResetTextBox(System.Windows.Forms.Control.ControlCollection cc, Boolean boolean) { // 利用Control类的Controls可取得子控件集合 foreach (Control ctr in cc) { if (ctr is TextBox) { string ctrName = ctr.Name; ctrName = 阅读全文