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