Files
Troll-V2/Quasar.Server/Extensions/ListViewExtensions.cs
T
2026-08-27 11:22:16 -06:00

36 lines
1.3 KiB
C#

using Quasar.Common.Helpers;
using Quasar.Server.Helper;
using Quasar.Server.Utilities;
using System;
using System.Windows.Forms;
namespace Quasar.Server.Extensions
{
public static class ListViewExtensions
{
private const uint SET_COLUMN_WIDTH = 4126;
private static readonly IntPtr AUTOSIZE_USEHEADER = new IntPtr(-2);
/// <summary>
/// Automatically determines the correct column size on the the given listview.
/// </summary>
/// <param name="targetListView">The listview whose columns are to be autosized.</param>
public static void AutosizeColumns(this ListView targetListView)
{
if (PlatformHelper.RunningOnMono) return;
for (int lngColumn = 0; lngColumn <= (targetListView.Columns.Count - 1); lngColumn++)
{
NativeMethods.SendMessage(targetListView.Handle, SET_COLUMN_WIDTH, new IntPtr(lngColumn), AUTOSIZE_USEHEADER);
}
}
/// <summary>
/// Selects all items on the given listview.
/// </summary>
/// <param name="targetListView">The listview whose items are to be selected.</param>
public static void SelectAllItems(this ListView targetListView)
{
NativeMethodsHelper.SetItemState(targetListView.Handle, -1, 2, 2);
}
}
}