diff --git a/Terminal.Gui/Views/ComboBox.cs b/Terminal.Gui/Views/ComboBox.cs
index 8f2022186..758fb2397 100644
--- a/Terminal.Gui/Views/ComboBox.cs
+++ b/Terminal.Gui/Views/ComboBox.cs
@@ -91,6 +91,19 @@ namespace Terminal.Gui {
Text = text;
}
+ ///
+ /// Public constructor
+ ///
+ ///
+ public ComboBox (ustring text) : base ()
+ {
+ search = new TextField ("");
+ listview = new ListView () { LayoutStyle = LayoutStyle.Computed, CanFocus = true };
+
+ Initialize ();
+ Text = text;
+ }
+
///
/// Public constructor
///