Skip to content

File NativeListItem.cs

File List > LemonUI > LemonUI > Menus > NativeListItem.cs

Go to the documentation of this file


using LemonUI.Elements;
using System.Drawing;

namespace LemonUI.Menus
{
    public abstract class NativeListItem : NativeSlidableItem
    {
        #region Fields

        protected internal ScaledText text = null;

        #endregion

        #region Constructors

        public NativeListItem(string title, string subtitle) : base(title, subtitle)
        {
            text = new ScaledText(PointF.Empty, string.Empty, 0.35f);
        }

        #endregion
    }
}