當前位置: 首頁>>代碼示例>>Java>>正文


Java JList.setForeground方法代碼示例

本文整理匯總了Java中javax.swing.JList.setForeground方法的典型用法代碼示例。如果您正苦於以下問題:Java JList.setForeground方法的具體用法?Java JList.setForeground怎麽用?Java JList.setForeground使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.swing.JList的用法示例。


在下文中一共展示了JList.setForeground方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getEntryArea

import javax.swing.JList; //導入方法依賴的package包/類
/** Lazily creates and returns the panel. */
private JList<SelectableListEntry> getEntryArea() {
    if (this.entryArea == null) {
        JList<SelectableListEntry> result = this.entryArea = new JList<>();
        result.setBackground(getColors().getBackground(Mode.NONE));
        result.setForeground(getColors().getForeground(Mode.NONE));
        result.setSelectionBackground(getColors().getBackground(Mode.FOCUSED));
        result.setSelectionForeground(getColors().getBackground(Mode.FOCUSED));
        result.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        result.setCellRenderer(new CellRenderer());
    }
    return this.entryArea;
}
 
開發者ID:meteoorkip,項目名稱:JavaGraph,代碼行數:14,代碼來源:ListPanel.java

示例2: HistoryViewer

import javax.swing.JList; //導入方法依賴的package包/類
/**
 * Create the frame.
 */
public HistoryViewer(String[] transactions) {
    this.transactions = transactions;

    int screenPositionX = (int) Toolkit.getDefaultToolkit().getScreenSize().getWidth() / 2 - 210;
    int screenPositionY = (int) Toolkit.getDefaultToolkit().getScreenSize().getHeight() / 2 - 290;
    setTitle("Bank Simulator");
    setResizable(false);
    setSize(419, 584);
    setLocation(screenPositionX, screenPositionY);
    setDefaultCloseOperation(HIDE_ON_CLOSE);

    JPanel panel = new JPanel();
    panel.setBackground(new Color(255, 255, 255));
    getContentPane().add(panel, BorderLayout.CENTER);
    panel.setLayout(null);

    JLabel lblBankSimulator = new JLabel("Bank Simulator");
    lblBankSimulator.setHorizontalAlignment(SwingConstants.CENTER);
    lblBankSimulator.setFont(new Font("Century Gothic", Font.BOLD, 36));
    lblBankSimulator.setForeground(new Color(0, 204, 153));
    lblBankSimulator.setBounds(79, 56, 265, 51);
    panel.add(lblBankSimulator);

    JLabel lblUsername = new JLabel("Reacent Transactions");
    lblUsername.setHorizontalAlignment(SwingConstants.CENTER);
    lblUsername.setForeground(new Color(0, 204, 153));
    lblUsername.setFont(new Font("Century Gothic", Font.BOLD, 21));
    lblUsername.setBounds(79, 133, 265, 45);
    panel.add(lblUsername);

    JList list = new JList();
    list.setFont(new Font("Tahoma", Font.BOLD, 13));
    list.setBorder(new MatteBorder(1, 1, 1, 1, (Color) new Color(0, 204, 102)));
    list.setModel(new AbstractListModel() {

        public int getSize() {
            return transactions.length;
        }

        public Object getElementAt(int index) {
            return transactions[index];
        }
    });
    list.setForeground(new Color(0, 204, 102));
    list.setBounds(79, 214, 265, 279);
    panel.add(list);


}
 
開發者ID:oussamabonnor1,項目名稱:Java_event_Bank,代碼行數:53,代碼來源:HistoryViewer.java


注:本文中的javax.swing.JList.setForeground方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。