我会用这样的东西:
- mytext : text { fixed_width = true; alignment = centered; }
- mybutt : button { fixed_width = true; alignment = centered; width = 12; }
- strings: dialog
- {
- label = "Window Selection";
- : boxed_column
- {
- label = "Strings";
- : row
- {
- : column
- {
- : mytext { label = "Width"; }
- : popup_list { key = "l1"; width = 15; fixed_width = true; }
- }
- : column
- {
- : mytext { label = "X"; }
- }
- : column
- {
- : mytext { label = "Height"; }
- : popup_list { key = "l2"; width = 15; fixed_width = true; }
- }
- }
- spacer;
- }
- : row
- {
- fixed_width = true;
- alignment = centered;
- : mybutt { key = "accept"; label = "OK"; is_default = true; }
- : mybutt { key = "cancel"; label = "Cancel"; is_cancel = true; }
- }
- }
|