An AutoHotkey script that applies a dark theme to the ListView
control. This script is compatible with AutoHotkey v2.1-alpha.9 or later.
- Applies a dark theme to the ListView control.
- Compatible with AutoHotkey v2.1-alpha.9 or later.
- Learn more about the ahk v2.1-alpha: Click here
- Download the DarkListView.ahk file.
- Include the DarkListView.ahk file in your script.
- Implement dark theme by using the
SetDarkMode
method.
#requires AutoHotkey v2.1-alpha.9
#include <DarkListView>
myGui := Gui(, "My ListView"), myGui.BackColor := 0x202020
lv := myGui.AddListView("Count100 LV0x8000 R10 W400 cWhite Background" myGui.BackColor, ["Select", "Number", "Description"])
lv.SetDarkMode()
This project is licensed under the MIT License - see the LICENSE.md file for details.