Adds the button. The button text. Created button control.
(string text)
| 64 | /// <param name="text">The button text.</param> |
| 65 | /// <returns>Created button control.</returns> |
| 66 | public MainMenuButton AddButton(string text) |
| 67 | { |
| 68 | return AddChild(new MainMenuButton(text)); |
| 69 | } |
| 70 | |
| 71 | /// <summary> |
| 72 | /// Gets or adds a button. |
no outgoing calls
no test coverage detected