tk 0.1.10

Rust bindings for Tk GUI library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Label Frames

A *labelframe* widget, also commonly known as a group box, provides another way
to group related components. It acts like a normal `ttk_frame`, in that it
contains other widgets that you `grid` inside it. However, it is visually set
off from the rest of the user interface. You can optionally provide a text label
to be displayed outside the labelframe.

|                  Labelframe widgets                   |
| :---------------------------------------------------: |
| ![Labelframe widgets.]./images/w_labelframe_all.png |

Labelframes are created using the `add_ttk_labelframe` method:

```rust,no_run
parent.add_ttk_labelframe( "lf" -text("Label") )?;
```