c# listbox添加双击事件的实例学习

发布时间:2020-01-21编辑:脚本学堂
本文介绍下c# listbox中添加双击事件的方法,通过具体的例子,帮助大家理解,有需要的朋友,可以参考下。

问题:
在一个ListBox中双击,把选中的项添加到另一个ListBox中,但ListBox控件本身并没有该事件,如何实现呢?
想到了客户端脚本javascrit,以下是具体的解决方法,供大家参考。

需要注意的三个问题。

问题1,双击所要执行的javascript代码是什么?
注意:javascript代码的语法要正确,即每一行都要以“;”结尾;
 

复制代码 代码示例:
function change()
{
 var addOption=document.createElement("option");
 var index1;
 if(document.Form1.ListBox1.length==0)return(false);
  index1=document.Form1.ListBox1.selectedIndex;
 if(index1<0)return(false);
  addOption.text=document.Form1.ListBox1.options(index1).text;
  addOption.value=document.Form1.ListBox1.value;
 document.Form1.ListBox2.add(addOption);
 document.Form1.ListBox1.remove (index1);
}

问题2,如何将 javascript 代码转换为C#代码?
 

复制代码 代码示例:

public static void ListBox_DblClick(Page page,System.Web.UI.WebControls.WebControl webcontrol,string     SourceControlName,string TargetControlName)
 {
       SourceControlName = "document.Form1." +  SourceControlName;
       TargetControlName = "document.Form1." +  TargetControlName;

 string js = "<script language=javascript> function change(SourceControlName,TargetControlName)";
       js += "{";
       js +=     "var addOption=document.createElement( option ); n";
       js += "  var index1; n";
       js += "if(SourceControlName.length==0)return(false);n";
       js += "  index1=SourceControlName.selectedIndex; n ";
       js += "  if(index1<0)return(false);n";
       js += " addOption.text=SourceControlName.options(index1).text; n";
       js += "addOption.value=SourceControlName.value; n";
       js += "TargetControlName.add(addOption); n";
       js += "SourceControlName.remove (index1) n";js +="}";
       js += "</script>";
//注册该 javascript ;
page.RegisterStartupScript("",js);
//为控件添加双击事件;
webcontrol.Attributes.Add("onDblClick","change(" + SourceControlName + "," + TargetControlName +     ");");
}
 

在该方法中,SourceControlName是要绑定双击事件的控件,TargetControlName是接收双击事件选定项的控件。   
如何让对象作为参数传给javascript的change函数,我这里采用的是用SourceControlName,TargetControlName来传递两个ListBox的Name,然后与“document.Form1.“组合成一个串来传递给javascript的change函数,如下所示:
 

复制代码 代码示例:
SourceControlName = "document.Form1." +  SourceControlName;
TargetControlName = "document.Form1." +  TargetControlName;

问题3,如何为控件添加双击事件?
使用如下的代码:
 

复制代码 代码示例:
ControlName.Attributes.Add(“属性名称”,“函数名称或代码”);

就是这些了,listbox添加双击事件轻松实现了,有兴趣的朋友,亲自动手测试下吧。