2015-07-25 22:10:59 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using xServer.Core.Helper;
|
|
|
|
|
using xServer.Core.Utilities;
|
2014-07-08 12:58:53 +00:00
|
|
|
|
|
2015-01-13 18:29:11 +00:00
|
|
|
|
namespace xServer.Controls
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-07-25 22:10:59 +00:00
|
|
|
|
internal class AeroListView : ListView
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-07-25 22:10:59 +00:00
|
|
|
|
private const int LVS_EX_DOUBLEBUFFER = 0x10000;
|
|
|
|
|
private const int LVM_SETEXTENDEDLISTVIEWSTYLE = 4150;
|
|
|
|
|
|
|
|
|
|
private const uint WM_CHANGEUISTATE = 0x127;
|
|
|
|
|
|
|
|
|
|
private const int UIS_SET = 1;
|
|
|
|
|
private const int UISF_HIDEFOCUS = 0x1;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="AeroListView"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public AeroListView()
|
|
|
|
|
: base()
|
2014-07-08 12:58:53 +00:00
|
|
|
|
{
|
2015-05-30 06:47:19 +00:00
|
|
|
|
SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true);
|
2015-07-25 22:10:59 +00:00
|
|
|
|
this.View = View.Details;
|
|
|
|
|
this.FullRowSelect = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raises the <see cref="E:HandleCreated" /> event.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
|
|
|
|
|
protected override void OnHandleCreated(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnHandleCreated(e);
|
|
|
|
|
|
|
|
|
|
if (!PlatformHelper.RunningOnMono && PlatformHelper.VistaOrHigher)
|
|
|
|
|
{
|
|
|
|
|
NativeMethods.SetWindowTheme(this.Handle, "explorer", null);
|
|
|
|
|
NativeMethods.SendMessage(this.Handle, LVM_SETEXTENDEDLISTVIEWSTYLE, new IntPtr(LVS_EX_DOUBLEBUFFER),
|
|
|
|
|
new IntPtr(LVS_EX_DOUBLEBUFFER));
|
|
|
|
|
NativeMethods.SendMessage(this.Handle, WM_CHANGEUISTATE, NativeMethodsHelper.MakeLong(UIS_SET, UISF_HIDEFOCUS), 0);
|
|
|
|
|
}
|
2014-07-08 12:58:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-21 18:27:52 +00:00
|
|
|
|
}
|