SharpLibEar/PropertyComboBox.cs
author StephaneLenclud
Thu, 05 Jan 2017 14:54:43 +0100
changeset 275 a4a341accc89
permissions -rw-r--r--
Published v1.4.2
Fixing issues with Audio Visualizer bitmaps created when form is not visible.
Now reusing Audio Visualizer bitmap for better performance and memory usage.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Linq;
     4 using System.Runtime.Serialization;
     5 using System.Text;
     6 using System.Threading.Tasks;
     7 
     8 namespace SharpLib.Ear
     9 {
    10     /// <summary>
    11     /// ComboBox property
    12     /// </summary>
    13     [DataContract]
    14     [AttributeObject(Id = "Property.ComboBox", Name = "ComboBox", Description = "ComboBox property.")]
    15     public class PropertyComboBox : Object
    16     {
    17         public IList<string> Items { get; set; } = new List<string>();
    18 
    19         [DataMember]
    20         public string CurrentItem { get; set; }
    21     }
    22 }