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, 0 insertions, 39 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs b/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs deleted file mode 100644 index 2dcaa977a..000000000 --- a/Software/Visual_Studio/Tango.SharedUI/Controls/MultiSelectComboBoxItem.cs +++ /dev/null @@ -1,39 +0,0 @@ -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; - } - } -} |
