Jpopup怎么获取JList任一项的index

[复制链接]
查看11 | 回复1 | 2010-6-3 09:30:32 | 显示全部楼层 |阅读模式
在JList加上一个JPopup 怎么获取我右击的某一项的Index 用那个getselectindex不管用啊 !! 急啊 ,我没分了 谁好心回答下啊!

回复

使用道具 举报

千问 | 2010-6-3 09:30:32 | 显示全部楼层
加一个MouseListener,用JList.locationToIndex(Point)final JList jlist = new JList();jlist.add(new MouseListener() {public void mouseClicked(MouseEvent e) {
if(e.getButton()==3) {
int index = jlist.locationToIndex(e.getPoint());
}}}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行