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


Java SystemColor.INFO屬性代碼示例

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


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

示例1: getSystemColorARGB

public int getSystemColorARGB(int index) {
    switch(index) {
    // Grey-blue
    case SystemColor.ACTIVE_CAPTION:
        return 0xff336699;
    case SystemColor.ACTIVE_CAPTION_BORDER:
        return 0xffcccccc;
    case SystemColor.ACTIVE_CAPTION_TEXT:
        return 0xffffffff;
    // Light grey
    case SystemColor.CONTROL:
        return 0xffdddddd;
    // Dark grey
    case SystemColor.CONTROL_DK_SHADOW:
        return 0xff777777;
    // Almost white
    case SystemColor.CONTROL_HIGHLIGHT:
        return 0xffeeeeee;
    // White
    case SystemColor.CONTROL_LT_HIGHLIGHT:
        return 0xffffffff;
    // Grey
    case SystemColor.CONTROL_SHADOW:
        return 0xff999999;
    // Black
    case SystemColor.CONTROL_TEXT:
        return 0xff000000;
    // Dark blue
    case SystemColor.DESKTOP:
        return 0xff224466;
    // Another grey
    case SystemColor.INACTIVE_CAPTION:
        return 0xff888888;
    // Grey
    case SystemColor.INACTIVE_CAPTION_BORDER:
        return 0xffcccccc;
    // Light grey
    case SystemColor.INACTIVE_CAPTION_TEXT:
        return 0xffdddddd;
    // Almost white
    case SystemColor.INFO:
        return 0xffeeeeee;
    case SystemColor.INFO_TEXT:
        return 0xff222222;
    // Light grey
    case SystemColor.MENU:
        return 0xffdddddd;
    // Black
    case SystemColor.MENU_TEXT:
        return 0xff000000;
    // Grey
    case SystemColor.SCROLLBAR:
        return 0xffcccccc;
    // White
    case SystemColor.TEXT:
        return 0xffffffff;
    // Grey blue
    case SystemColor.TEXT_HIGHLIGHT:
        return 0xff336699;
    // White
    case SystemColor.TEXT_HIGHLIGHT_TEXT:
        return 0xffffffff;
    // Almost white
    case SystemColor.TEXT_INACTIVE_TEXT:
        return 0xffdddddd;
    // Black
    case SystemColor.TEXT_TEXT:
        return 0xff000000;
    // White
    case SystemColor.WINDOW:
        return 0xffffffff;
    // Black
    case SystemColor.WINDOW_BORDER:
        return 0xff000000;
    // Black
    case SystemColor.WINDOW_TEXT:
        return 0xff000000;
    }
    // Black
    return 0xFF000000;
}
 
開發者ID:shannah,項目名稱:cn1,代碼行數:81,代碼來源:LinuxSystemProperties.java


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