這篇文章將為大家詳細(xì)講解有關(guān)C#中怎么利用listbox實現(xiàn)一個雙擊事件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項目有:申請域名、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、鋼城網(wǎng)站維護、網(wǎng)站推廣。
private void Page_Load(object sender, System.EventArgs e) { // 在此處放置用戶代碼以初始化頁面 if(!IsPostBack) { } if(!Page.IsStartupScriptRegistered("listbox1")) { ListBox_DblClick("listbox1",Page,ListBox1,"ListBox1","ListBox2"); } if(!Page.IsStartupScriptRegistered("listbox2")) { ListBox_DblClick("listbox2",Page,ListBox2,"ListBox2","ListBox1"); } }
下面是另一段代碼,這是實現(xiàn)C# listbox雙擊的關(guān)鍵部分,好仔細(xì)研究哦!
public void ListBox_DblClick(string Key,Page page,System.Web.UI.WebControls.WebControl webcontrol,
string RemoveListBox,string AddListBox){
RemoveListBox = "document.Form1." + RemoveListBox;
AddListBox = "document.Form1." + AddListBox;
string mflistboxjs = ";
mflistboxjs += "{";
mflistboxjs += "var addOption=document.createElement('option'); \n";
mflistboxjs += "var index1; \n";
mflistboxjs += "if(RemoveListBox.length==0)return(false);\n";
mflistboxjs += "index1=RemoveListBox.selectedIndex; \n ";
mflistboxjs += "if(index1<0)return(false);\n";
mflistboxjs += "addOption.text=RemoveListBox.options(index1).text; \n";
mflistboxjs += "addOption.value=RemoveListBox.value; \n";
mflistboxjs += "AddListBox.add(addOption); \n";
mflistboxjs += "RemoveListBox.remove (index1) \n";
mflistboxjs +="}";
mflistboxjs += "
關(guān)于C#中怎么利用listbox實現(xiàn)一個雙擊事件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
本文標(biāo)題:C#中怎么利用listbox實現(xiàn)一個雙擊事件
網(wǎng)頁URL:http://aaarwkj.com/article38/pjcgsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、網(wǎng)站維護、Google、網(wǎng)站收錄、網(wǎng)站排名、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)