diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs b/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs new file mode 100644 index 000000000..2dcaa977a --- /dev/null +++ b/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.SharedUI.Controls +{ + interface IMultiSelectComboBoxItem + { + string Text { get; set; } + } + + public class MultiSelectComboBoxItem : IMultiSelectComboBoxItem + { + public string Text { get; set; } + public MultiSelectComboBoxItem(string text) + { + Text = text; + } + public override string ToString() + { + return Text; + } + } + + public class MultiSelectComboBoxSearchItem : IMultiSelectComboBoxItem + { + public string Text { get; set; } + public MultiSelectComboBoxSearchItem(string text = "") + { + Text = text; + } + public override string ToString() + { + return Text; + } + } +} |
