Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nperovic/darkthemelistview
An AutoHotkey script that applies a dark theme to the ListView control. This script is compatible with AutoHotkey v2.1-alpha.9 or later.
https://github.com/nperovic/darkthemelistview
ahk ahk-script ahk2 autohotkey autohotkey-v2 dark-mode dark-theme gui listview win32gui windows
Last synced: 2 months ago
JSON representation
An AutoHotkey script that applies a dark theme to the ListView control. This script is compatible with AutoHotkey v2.1-alpha.9 or later.
- Host: GitHub
- URL: https://github.com/nperovic/darkthemelistview
- Owner: nperovic
- License: mit
- Created: 2024-04-10T14:01:03.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-06-15T20:09:27.000Z (8 months ago)
- Last Synced: 2024-06-15T21:24:42.685Z (8 months ago)
- Topics: ahk, ahk-script, ahk2, autohotkey, autohotkey-v2, dark-mode, dark-theme, gui, listview, win32gui, windows
- Language: AutoHotkey
- Homepage:
- Size: 9.77 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# DarkThemeListView
An AutoHotkey script that applies a dark theme to the `ListView` control. This script is compatible with AutoHotkey v2.1-alpha.9 or later.## Features
- Applies a dark theme to the ListView control.
- Compatible with [AutoHotkey v2.1-alpha.9](https://github.com/AutoHotkey/AutoHotkeyDocs/tree/alpha) or later.
- Learn more about the ahk v2.1-alpha: [Click here](https://github.com/AutoHotkey/AutoHotkeyDocs/tree/alpha)![UIAViewer.ahk applied dark theme](https://github.com/nperovic/DarkThemeListView/assets/122501303/6f84f932-ca64-45d7-853c-939e33b8fea5)
## Usage
1. Download the [DarkListView.ahk](DarkListView.ahk) file.
2. Include the [DarkListView.ahk](DarkListView.ahk) file in your script.
3. Implement dark theme by using the `SetDarkMode` method.## Example
```HS
#requires AutoHotkey v2.1-alpha.9
#includemyGui := Gui(, "My ListView"), myGui.BackColor := 0x202020
lv := myGui.AddListView("Count100 LV0x8000 R10 W400 cWhite Background" myGui.BackColor, ["Select", "Number", "Description"])
lv.SetDarkMode()
```## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.