Download ListBoxEmptyTextDemo.zip version 1.0.0.1, last updated 29/04/2018 (9.06 KB)

Download
  • md5: 949e7d4dad1bbc0fad42a320a4f65070
  • sha1: 9eead82b3ccca62958e2bd18940a4a8309fa1f91
  • sha256: 9a1671b7eb45246c74bc1234f74885d520fc37d148ff2238889a74ad91e4e000
// Displaying text in an empty ListBox
// https://www.cyotek.com/blog/displaying-text-in-an-empty-listbox
// Copyright © 2018 Cyotek Ltd. All Rights Reserved.

// This work is licensed under the Creative Commons Attribution 4.0 International License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.

// Found this example useful? 
// https://www.paypal.me/cyotek

using System;
using System.Windows.Forms;

namespace ListBoxEmptyTextDemo
{
  static class Program
  {
    #region Static Methods

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new MainForm());
    }

    #endregion
  }
}

Donate

Donate