转到正文

天亮了说晚安's Blog

欢迎您的光临! http://www.tllswa.com

存档

分类: 编程相关

本文转自:https://www.cnblogs.com/willingtolove/p/9782533.html 目录  #方法一:使用string.Contains方法#方法二:使用sring.IndexOf方法 #当设计到大小写的问题时,那什么时候使用Contains的上述方法,什么时候使用IndexOf的上述方法,哪个效率高?1、测试代码:基于.net4.52、测试结果:3、总结 正文回到顶部  #方法一:使用string.Contains方法   string.Contains是大小写敏感的,如果要用该方法来判断一个string是否包含某个关键字keyword,需要把这个string和这个keyword都转成小写或大写再调用Contains方法; 1 string key = "bbb"; 2 string temp = "aaaBBBcccDDD"; 3 bool isContains= temp.ToLower().Contains(key.ToLower());//true 回到顶部 #方法二:使用sring.IndexOf方法   使用string.Index方法,然后通过StringComparison.OrdinalIgnoreCase指定查找过程忽略大小写; 1 string key = "bbb"; 2 string temp = "aaaBBBcccDDD"; 3 bool isContains = temp.IndexOf(key,StringComparison.OrdinalIgnoreCase)>=0;//true 回到顶部  #当设计到大小写的问题时,那什么时候使用Contains的上述方......Read More

本文转自:https://blog.csdn.net/hdxyzlh_0225/article/details/45575653 如果你只是想让该文本框得到焦点那就是 TextBox1.Focus(); 如果你是想让该本框的光杯定位在第X位就是 TextBox1.Select(X,0); 如果你想让该文本框选中从第X位开始的Y个字符就是 TextBox1.Select(X,Y); Read More

本文转自:https://blog.csdn.net/qq_25175063/article/details/80847085 1、今天功能需要,打开新的窗口,这里简单记录下 2、实现机制,在主程序打开第一个窗口,在第一个窗口里面写入触发事件,打开另一个窗口,并隐藏当前窗口 3、实现代码段     创建两个窗口 分别为  setParams 和 main     在主程序中默认打开setParams窗口         Application.EnableVisualStyles();         Application.SetCompatibleTextRenderingDefault(false);         Application.Run(new setParams());     setParams窗口有一个按钮触发事件 private void submit_Click(object sender, EventArgs e) { this.Hide(); frmMain fm = new frmMain(); fm.Show(); } Read More

本文转自:https://blog.csdn.net/GrandShaw/article/details/53074122 新建一个windows窗体 Form2 ,Form2里也有一个按钮和一个TextBox控件,在TextBox里输入你想要的返回值。 Form1里: private void button1_Click(object sender, EventArgs e) { Form2 f2 = new Form2(); f2.ShowDialog(); if (f2.DialogResult == DialogResult.OK) { this.textBox1.Text = f2.str; } } Form2里: public string str; public string Str { get { return this.str; } } private void button1_Click(object sender, EventArgs e) { str = this.textBox1.Text; this.DialogResult = DialogResult.OK; } 这种是传值后Form2关闭的,还有一种是传值后Form2不关闭的。 Read More

备案信息