Add convenience ctor

This commit is contained in:
Frank A. Krueger 2018-03-09 16:43:50 -08:00
parent 3de84bb20f
commit 7bab361a63
No known key found for this signature in database
GPG Key ID: 0471C67474FFE664
1 changed files with 7 additions and 0 deletions

View File

@ -13,5 +13,12 @@ namespace Ooui
: base ("label")
{
}
public Label (string text)
: this ()
{
Text = text;
}
}
}