HorizontallyScrollingComboBox/Program.cs

Download

horizontallyscrollingcombobox.zip

(11.88 KB | 13 July 2010 )

Sample C# project showing how to add a horizontal scrollbar to a ComboBox in C# using the WS_HSCROLL style and CB_SETHORIZONTALEXTENT message.

Donate

Contents of horizontallyscrollingcombobox.zip/HorizontallyScrollingComboBox/Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

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

Files