Skip to content

enigma-w-e-b/ImageButtonAhk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Usage Examples

  • Window Handle or (hWnd) and passed as an id to the ImageButton class.
Gui, Add, Button, x10 y10 w200 h40 gBtnFuncA hWnd_BTN_ID_1
  • Styles are defined as arrays containing information about the appearance of buttons in different states (normal, hover and pressed). Each style contains information such as background color, text color, border color and border thickness.
Style := [[0, 0x80F0F0F0, , , 8, 0xFFF0F0F0, 0x8046B8DA, 2] ; normal
	, [0, 0x80C6E9F4, , , 8, 0xFFF0F0F0, 0x8046B8DA, 2] ; hover
	, [0, 0x8086D0E7, , , 8, 0xFFF0F0F0, 0x8046B8DA, 2] ; pressed
	, [0, 0x80F0F0F0, , , 8, 0xFFF0F0F0, 0x8046B8DA, 2]]
  • The Create function is a method of the ImageButton class that is used to create a new image button. The function's first parameter is the button's hWnd, which is passed through the _BTN_ID_1 variable. The second parameter is the text that should be displayed on the button, which in this case is "BTN TEST 1 [ A ]". The third parameter is an array called Style*, which is a default four-element style that will be used to define the appearance of the button.
ImageButton.Create(_BTN_ID_1,"BTN TESTE 1 [ A ]", EStyle*) ; define o estilo inicial

Images

Example A Example B

Credits

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published