Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 4.48 KB

README.md

File metadata and controls

36 lines (24 loc) · 4.48 KB

ModernUI_Button

The ModernUI_Button is a button control like the standard win32 button control, except it provides ease of use and more customizable features, like color of text, background, border, accent and colors for when the mouse moves over the control, or the control is in a selected state.

Additionally images: icon, bitmap or png types, can be assigned to the ModernUI_Button control via the properties or by using one of the provided ModernUI_Button functions.

For the x64 version of the ModernUI_Button control, visit here.

Setup ModernUI_Button

  • Download the latest version of the ModernUI_Button and extract the files. The latest release can be found via the releases section of this Github repository or from the downloads section below.
  • Copy the ModernUI_Button.inc file to your masm32\include folder (or wherever your includes are located)
  • Copy the ModernUI_Button.lib file to your masm32\lib folder (or wherever your libraries are located)
  • Add the main ModernUI library to your project (if you haven't done so already):
include ModernUI.inc
includelib ModernUI.lib
  • Add the ModernUI_Button control to your project:
include ModernUI_Button.inc
includelib ModernUI_Button.lib

ModernUI_Button API Help

Documentation is available for the ModernUI_Button functions, styles and properties used by the control on the wiki: ModernUI_Button Control

ModernUI_Button Downloads