// Create a list, overriding the getToolTipText() method
    String[] items = {"A", "B", "C", "D"};
    JList list = new JList(items) {
        // This method is called as the cursor moves within the list.
        public String getToolTipText(MouseEvent evt) {
            // Get item index
            int index = locationToIndex(evt.getPoint());
    
            // Get item
            Object item = getModel().getElementAt(index);
    
            // Return the tool tip text
            return "tool tip for "+item;
        }
    };

 

Related Examples

转载于:https://www.cnblogs.com/borter/p/9596149.html

Logo

汇聚全球AI编程工具,助力开发者即刻编程。

更多推荐