亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? find.cs

?? 完整版記事本程序
?? CS
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace jsb
{
	/// <summary>
	/// Form3 的摘要說明。
	/// </summary>
	public class Form3 : System.Windows.Forms.Form
	{
		private Form1 f1;
		private int i = 0;
		private int j = 0;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox textBox1;
		private System.Windows.Forms.Button button1;
		private System.Windows.Forms.Button button2;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.CheckBox checkBox1;
		private System.Windows.Forms.RadioButton radio2;
		private System.Windows.Forms.RadioButton radio1;
		/// <summary>
		/// 必需的設(shè)計(jì)器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Form3(Form1 f1)
		{
			//
			// Windows 窗體設(shè)計(jì)器支持所必需的
			//
			this.f1 = f1;
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計(jì)器生成的代碼
		/// <summary>
		/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.label1 = new System.Windows.Forms.Label();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.button1 = new System.Windows.Forms.Button();
			this.button2 = new System.Windows.Forms.Button();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.radio2 = new System.Windows.Forms.RadioButton();
			this.radio1 = new System.Windows.Forms.RadioButton();
			this.checkBox1 = new System.Windows.Forms.CheckBox();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(16, 20);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(66, 17);
			this.label1.TabIndex = 0;
			this.label1.Text = "查找內(nèi)容:";
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(96, 16);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(192, 21);
			this.textBox1.TabIndex = 1;
			this.textBox1.Text = "";
			this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
			// 
			// button1
			// 
			this.button1.Enabled = false;
			this.button1.Location = new System.Drawing.Point(304, 16);
			this.button1.Name = "button1";
			this.button1.TabIndex = 2;
			this.button1.Text = "查找下一個(gè)";
			this.button1.Click += new System.EventHandler(this.button1_Click);
			// 
			// button2
			// 
			this.button2.Location = new System.Drawing.Point(304, 56);
			this.button2.Name = "button2";
			this.button2.TabIndex = 3;
			this.button2.Text = "取  消";
			this.button2.Click += new System.EventHandler(this.button2_Click);
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.radio2);
			this.groupBox1.Controls.Add(this.radio1);
			this.groupBox1.Location = new System.Drawing.Point(112, 56);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(168, 48);
			this.groupBox1.TabIndex = 4;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "方向";
			// 
			// radio2
			// 
			this.radio2.Checked = true;
			this.radio2.Location = new System.Drawing.Point(104, 16);
			this.radio2.Name = "radio2";
			this.radio2.Size = new System.Drawing.Size(48, 24);
			this.radio2.TabIndex = 1;
			this.radio2.TabStop = true;
			this.radio2.Text = "向下";
			this.radio2.CheckedChanged += new System.EventHandler(this.radio2_CheckedChanged);
			// 
			// radio1
			// 
			this.radio1.Location = new System.Drawing.Point(24, 17);
			this.radio1.Name = "radio1";
			this.radio1.Size = new System.Drawing.Size(53, 24);
			this.radio1.TabIndex = 0;
			this.radio1.Text = "向上";
			this.radio1.CheckedChanged += new System.EventHandler(this.radio1_CheckedChanged);
			// 
			// checkBox1
			// 
			this.checkBox1.Location = new System.Drawing.Point(16, 72);
			this.checkBox1.Name = "checkBox1";
			this.checkBox1.Size = new System.Drawing.Size(88, 24);
			this.checkBox1.TabIndex = 5;
			this.checkBox1.Text = "區(qū)分大小寫";
			// 
			// Form3
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
			this.ClientSize = new System.Drawing.Size(394, 114);
			this.Controls.Add(this.checkBox1);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.button2);
			this.Controls.Add(this.button1);
			this.Controls.Add(this.textBox1);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
			this.Name = "Form3";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "查找";
			this.TopMost = true;
			this.Load += new System.EventHandler(this.Form3_Load);
			this.groupBox1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		#endregion
		
		private void textBox1_TextChanged(object sender, System.EventArgs e)
		{
			this.button1.Enabled = true;
		}

		private void button2_Click(object sender, System.EventArgs e)
		{
			this.Close();
		}

		private void Form3_Load(object sender, System.EventArgs e)
		{
			j =f1.richText.TextLength;
		}

		private void button1_Click(object sender, System.EventArgs e)
		{
			if (checkBox1.Checked == true)
			{
				RichTextBoxFinds rbf = RichTextBoxFinds.MatchCase;
				f1.richText.Focus();
				i=f1.richText.Find(textBox1.Text,i,f1.richText.TextLength,rbf);
				if (i < 0)
				{
					this.TopMost = false;
					MessageBox.Show("文本以全部搜索完畢","提示!",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
					this.TopMost = true;
				}
				i = i+1;
				return;
			}
			if (radio1.Checked == true)
			{
				if (j<=0)
				{
					j = f1.richText.TextLength;
				}
				RichTextBoxFinds rbf = RichTextBoxFinds.Reverse;
				j=f1.richText.Find(textBox1.Text,i,j,rbf);
				f1.richText.Focus();
				if (j <= 0)
				{
					this.TopMost = false;
					MessageBox.Show("文本以全部搜索完畢","提示!",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
					this.TopMost = true;
					f1.richText.Focus();
				}
			}
			if (radio2.Checked == true)
			{
				f1.richText.Focus();
				i=f1.richText.Find(textBox1.Text,i,f1.richText.TextLength,RichTextBoxFinds.None);
				if (i < 0)
				{		
					this.TopMost = false;
					MessageBox.Show("文本以全部搜索完畢","提示!",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
					this.TopMost = true;
					f1.richText.Focus();
				}
				i = i+1;
			}
		}

		private void radio2_CheckedChanged(object sender, System.EventArgs e)
		{
			this.checkBox1.Enabled = true;
		}

		private void radio1_CheckedChanged(object sender, System.EventArgs e)
		{
			this.checkBox1.Checked = false;
			this.checkBox1.Enabled = false;
		}

	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色88888久久久久久影院按摩 | 成人v精品蜜桃久久一区| 成人av资源下载| 91精品国产综合久久久久久漫画| 自拍av一区二区三区| 久久99国产精品久久99| 欧美影视一区二区三区| 日本一区二区三区电影| 免费观看在线综合色| 欧美自拍偷拍午夜视频| 综合久久一区二区三区| 国产一区激情在线| 91精品午夜视频| 亚洲女同女同女同女同女同69| 国产黑丝在线一区二区三区| 欧美岛国在线观看| 五月婷婷激情综合| 在线中文字幕一区| 亚洲男人天堂av| 成人高清免费观看| 国产精品久久久久久久蜜臀| 国产高清久久久久| 国产午夜久久久久| 国产精品一区免费视频| 久久婷婷国产综合精品青草| 九九国产精品视频| 欧美一区二区不卡视频| 日韩成人dvd| 日韩免费看的电影| 蜜臀av性久久久久蜜臀aⅴ | 色一情一乱一乱一91av| 亚洲免费观看视频| 色婷婷一区二区三区四区| 中文字幕一区在线观看| 波波电影院一区二区三区| 午夜国产精品影院在线观看| 欧美综合天天夜夜久久| 午夜国产精品一区| 欧美一区二区久久| 精品一二三四区| 久久久精品国产免大香伊| 国产激情一区二区三区四区| 中文字幕成人av| 91在线视频在线| 亚洲影院理伦片| 91精品国产综合久久福利软件| 免费成人在线网站| 国产亚洲一二三区| 99久久久国产精品免费蜜臀| 亚洲一区二区三区四区的| 在线91免费看| 国产麻豆成人传媒免费观看| 国产精品久久毛片av大全日韩| 97精品超碰一区二区三区| 亚洲国产综合色| 精品国产伦一区二区三区观看方式 | 欧美在线观看视频在线| 午夜精品影院在线观看| 欧美xxxxxxxxx| 91亚洲午夜精品久久久久久| 午夜免费久久看| 欧美精品一区二区三区在线| 9久草视频在线视频精品| 亚洲第一av色| 久久久欧美精品sm网站| 欧亚洲嫩模精品一区三区| 精品一区二区三区日韩| 综合久久综合久久| 欧美成人综合网站| 91色在线porny| 老司机午夜精品| 夜夜嗨av一区二区三区网页| 26uuu另类欧美亚洲曰本| 欧美性xxxxx极品少妇| 国产精一品亚洲二区在线视频| 亚洲色大成网站www久久九九| 欧美一区二区视频免费观看| 成人白浆超碰人人人人| 免播放器亚洲一区| 亚洲综合久久久久| 亚洲国产精品成人久久综合一区 | 午夜精品久久一牛影视| 久久久精品免费网站| 欧美日韩中文字幕精品| 成人黄色在线看| 久久99九九99精品| 亚洲一级二级三级| 中文字幕亚洲一区二区va在线| 4438成人网| 欧美午夜电影在线播放| 成人免费视频caoporn| 美女看a上一区| 亚洲高清三级视频| 亚洲精品中文字幕乱码三区| 久久嫩草精品久久久久| 在线不卡的av| 欧美亚洲动漫制服丝袜| 99久久伊人网影院| 国产传媒欧美日韩成人| 精品一区精品二区高清| 亚洲大片免费看| 一区二区成人在线| 中文字幕中文字幕一区二区| 26uuu成人网一区二区三区| 日韩一区二区三区视频| 欧美高清www午色夜在线视频| 91色乱码一区二区三区| 成人激情黄色小说| 成人av在线网| 成人h精品动漫一区二区三区| 国内精品国产三级国产a久久 | 精品国产免费人成电影在线观看四季| 欧美蜜桃一区二区三区| 欧美天天综合网| 欧洲亚洲国产日韩| 亚洲国产成人在线| 26uuu国产一区二区三区| 精品国产1区二区| 久久久影视传媒| 亚洲欧美日韩精品久久久久| 337p亚洲精品色噜噜噜| 日韩三级在线免费观看| 日韩视频免费观看高清在线视频| 欧美午夜理伦三级在线观看| 欧美色电影在线| 欧美一二三区在线观看| 精品国产乱码久久久久久夜甘婷婷| 精品嫩草影院久久| 久久久噜噜噜久久中文字幕色伊伊| 久久综合九色欧美综合狠狠| 国产精品乱码人人做人人爱| 亚洲品质自拍视频网站| 一区二区三区欧美日韩| 日韩av一级电影| 国产成人精品亚洲日本在线桃色| 成人福利视频网站| 欧美亚洲高清一区二区三区不卡| 欧美一级理论片| 国产日韩欧美a| 有坂深雪av一区二区精品| 日韩成人免费看| 成人免费高清视频| 欧美少妇一区二区| 久久这里只有精品首页| 亚洲欧美日本韩国| 久久成人av少妇免费| 99精品视频中文字幕| 91麻豆精品国产91久久久久| 国产日韩欧美一区二区三区综合| 亚洲精品福利视频网站| 久久精品国产秦先生| 91视频观看视频| 精品成人一区二区三区四区| 亚洲欧美视频一区| 欧美一区二区三区视频在线| 久久久久国产精品麻豆ai换脸| 亚洲精品第一国产综合野| 精品一区二区三区在线观看国产| 91首页免费视频| 久久久久九九视频| 日韩精品福利网| 91在线精品一区二区三区| 日韩欧美久久久| 一区二区三区中文在线观看| 国产一区二区三区观看| 欧美日韩精品高清| 中文字幕一区二区三| 国产一区在线视频| 欧美一区二区精品久久911| 亚洲精品国产成人久久av盗摄| 亚洲h动漫在线| 国产不卡一区视频| 日韩欧美电影一二三| 一区2区3区在线看| 成人午夜精品在线| 精品美女一区二区三区| 天堂蜜桃91精品| 色综合久久久久综合体| 中文字幕精品一区二区三区精品 | 五月天中文字幕一区二区| 99久久精品免费看国产| 国产亚洲精品福利| 国产精品一区二区久激情瑜伽| 欧美精品一卡二卡| 亚洲国产视频直播| 色天使久久综合网天天| 中文字幕中文字幕在线一区 | 欧美伊人久久久久久久久影院| 国产精品久久久久久久浪潮网站| 国产麻豆精品在线| 久久精品视频网| 国产精品2024| 国产女人aaa级久久久级| 国产成人在线视频免费播放| 久久网站最新地址| 国产成人午夜片在线观看高清观看| 国产午夜亚洲精品理论片色戒| 国产精品夜夜嗨| 欧美国产日韩在线观看| 成人免费视频caoporn|