Download AzureContainerEcho.zip version 1.0.0.0, last updated 08/09/2013 (341.35 KB)

Download
  • md5: 08cb1fda4e8e679d8fec0608417e3910
using System;

namespace Cyotek.Windows.Forms
{
  // http://cyotek.com/blog/enabling-shell-styles-for-the-listview-and-treeview-controls-in-csharp

  internal class ListView : System.Windows.Forms.ListView
  {
    #region Overridden Members

    protected override void OnHandleCreated(EventArgs e)
    {
      base.OnHandleCreated(e);

      if (!this.DesignMode && Environment.OSVersion.Platform == PlatformID.Win32NT && Environment.OSVersion.Version.Major >= 6)
        NativeMethods.SetWindowTheme(this.Handle, "explorer", null);
    }

    #endregion
  }
}

Donate

Donate