3

是否可以在 Swing GUI 上设置仅用于特定组件或组件集的 Synth 外观和感觉的文件,而无需为任何其他组件更改它?

4

1 回答 1

-1

对的,这是可能的。将类型设置为“区域”将其更改为“名称”,将值设置为由 setName(“componentName”) 给出的特定名称;应用程序中的方法。

添加这个

<style id="titleBarButtonsPanel">
    <state>
        <opaque value="false" /><!-- background of the title bar -->

        <insets top="0" left="0" bottom="0" right="0" /><!-- size of the 
            title bar -->

        <color value="red" type="BACKGROUND" />
        <color value="white" type="FOREGROUND" />

    </state>
</style> <bind style="titleBarButtonsPanel" type="name" key="NameOfSpecificComponent" />

在程序中添加 setName("NameOfSpecificComponent");

于 2013-09-10T12:05:04.703 回答