当前位置:编程学习 > 网站相关 >>

SWT/Jface SelectionlIstener

SelectionListener listener = new SelectionListener(){
   public void widgetSelected(SelectionEvent e) {
    System.out.println("widgetSelected事件");
   }
   public void widgetDefaultSelected(SelectionEvent e) {
    System.out.println("widgetDefaultSelected事件");
   
   }
  };

对于selection的监听一直很好奇,为什么会有2个方法,什么控件执行什么方法?

widgetDefaultSelected

void widgetDefaultSelected(SelectionEvent e)
Sent when default selection occurs in the control.
For example, on some platforms default selection occurs in a List when the user double-clicks an item or types return in a Text. On some platforms, the event occurs when a mouse button or key is pressed. On others, it happens when the mouse or key is released. The exact key or mouse gesture that causes this event is platform specific.

Parameters:
e - an event containing information about the default selection
官方的api说的也很泛泛。我们直观的理解就是List 这个控件在双击的时候会触发widgetDefaultSelected的方法,但是同时也会触发widgetSelected这个方法,所以我觉得就没default存在的必要了。

真正的开发中真没遇到widgetDefaultSelected方法来处理业务逻辑时候,求解释??

 

以下是老外的说法:

Use widgetSelected. In fact, all the better is to simply extend SelectionAdapter and only override the widgetSelected method and completely ignore widgetDefaultSelected.

 

 
 
 

补充:综合编程 , 其他综合 ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,