Create a Group without grouping Radio Buttons (SWT.NO_RADIO_GROUP) : Group « SWT « Java Tutorial






Create a Group without grouping Radio Buttons (SWT.NO_RADIO_GROUP)
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Shell;

public class GroupWithoutGroupingRadioButtons {
  public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());


    // Create the second Group
    Group group2 = new Group(shell, SWT.NO_RADIO_GROUP);
    group2.setText("Who's your favorite?");
    group2.setLayout(new RowLayout(SWT.VERTICAL));
    new Button(group2, SWT.RADIO).setText("A");
    new Button(group2, SWT.RADIO).setText("B");
    new Button(group2, SWT.RADIO).setText("C");

    
    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    display.dispose();
  }
}








17.22.Group
17.22.1.Introducing Group
17.22.2.Create Shadow in GroupCreate Shadow in Group
17.22.3.Add Radio Buttons to a GroupAdd Radio Buttons to a Group
17.22.4.Create a Group without grouping Radio Buttons (SWT.NO_RADIO_GROUP)Create a Group without grouping Radio Buttons (SWT.NO_RADIO_GROUP)
17.22.5.Add image to GroupAdd image to Group