/// <summary>
 /// Creates a new list item with a title and subtitle.
 /// </summary>
 /// <param name="title">The title of the Item.</param>
 /// <param name="subtitle">The subtitle of the Item.</param>
 public NativeListItem(string title, string subtitle) : base(title, subtitle)
 {
     text = new ScaledText(PointF.Empty, "", 0.35f)
     {
         Color = NativeMenu.colorWhiteSmoke
     };
 }