The class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Automatic_Record { // <summary> /// Class used to represent each item in the listbox. /// </summary> internal class ListBoxItem : IToolTipDisplayer { /// <summary> /// Text that is displayed in the list box. /// </summary> public string DisplayText { get; private set; […]
The post How can i add specific items to my ListBoxItem class? appeared first on BlogoSfera.