SourceForge.net Logo

Maybe Button

Click on any component (labels, buttons, text area) to see its layout code. A complete source code overview is available as well.


    // Make sure button is below title
    cts.attachToComponent(TOP, ELASTIC, 5, title, BOTTOM);

    // Center between two thirds of the panel's width and right edge
    cts.attachToRelativePosition(LEFT, FIXED, 2, 67);
    cts.attachToBorder(RIGHT, FIXED, 5);

    // Attach to button ok top
    cts.attachToComponent(BOTTOM, FIXED, 5, button_ok, TOP);

    panel.add(button_maybe, cts);