OOP2

3.xml

1
<ui>
2
    <title>Colors</title>
3
    <group name="layout" rows="1" columns="2">
4
        <widget x="1" y="1">
5
            <javax.swing.JButton name="left">
6
                <text>OK</text>
7
                <setBackground>0,255,0</setBackground>
8
                <setForeground>255,255,255</setForeground>
9
                <setHorizontalAlignment>left</setHorizontalAlignment>
10
            </javax.swing.JButton>
11
        </widget>
12
        <widget x="1" y="2">
13
            <javax.swing.JButton name="right">
14
                <text>Cancel</text>
15
                <setBackground>red</setBackground>
16
                <setForeground>white</setForeground>
17
                <setHorizontalAlignment>right</setHorizontalAlignment>
18
            </javax.swing.JButton>
19
        </widget>
20
    </group>
21
</ui>
22