/*
*/
//★★★★★★★★★案例分析:★★★★★★★★★★★★★★★★★★★★★★★★★★★
//環境
//
//
//
//★★★★★★★★★實現方法:★★★★★★★★★★★★★★★★★★★★★★★★★★★
//第一步
if (e
{
//選中所有的RichTextBox的內容
this
//改變RichTextBox的選中的字體顏色
this
//改變RichTextBox的選中的字體的背景顏色
this
//選中richTextBox從
this
//把滾動條回滾到焦點所在位置
this
//彈出查找畫面
frmLookFor frm = new frmLookFor();
frm
}
//第二步
//變量定義和對象實例化
public static string strKey =
private int index =
private int k =
strKey = this
if (strKey ==
{
return;
}
//フォーム初期化
frmRulerChk frm
//指定の文字列を検索
int m = System
if (((RichTextBox)frm
{
if (k <= m)
{
while ((index = ((RichTextBox)frm
{
//選択した文字列の色
((RichTextBox)frm
//選択した文字列のBackColor
((RichTextBox)frm
//フォーカス移動
((RichTextBox)frm
//文字列選択
((RichTextBox)frm
//スクロールバーはフォーカスのところへ移動
((RichTextBox)frm
index++;
k++;
if (k == m)
{
MessageBox
index =
k =
}
return;
}
}
}
//★★如果要實現查詢畫面只彈出一個並且最小化的把狀態改為正常狀態:★★★★★★★★
//步驟一中代碼改為
//實例化要打開的窗體
public static frmLookFor frmlook = null;
if (e
{
if (frmRulerChk
{
this
this
this
this
this
frmRulerChk
frmRulerChk
}
else
{
try
{
if (frmRulerChk
{
frmRulerChk
}
frmRulerChk
}
catch
{
this
this
this
this
this
frmLookFor frm = new frmLookFor();
frm
}
}
}
//★★如果想要改運行的窗體在任務欄中不顯示圖標:★★★★★★★★
//更改屬性
//注
frmRulerChk
From:http://tw.wingwit.com/Article/program/net/201311/11700.html