Add convenience ctor
This commit is contained in:
parent
3de84bb20f
commit
7bab361a63
|
@ -13,5 +13,12 @@ namespace Ooui
|
||||||
: base ("label")
|
: base ("label")
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Label (string text)
|
||||||
|
: this ()
|
||||||
|
{
|
||||||
|
Text = text;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue