1 | #include <GuiConstantsEx.au3> |
---|
2 | #include <StaticConstants.au3> |
---|
3 | #include <misc.au3> |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | GUICreate("",@DesktopWidth,@DesktopHeight-64) |
---|
8 | GUISetState(@SW_SHOW) |
---|
9 | |
---|
10 | |
---|
11 | $1 = GUICtrlCreateGraphic(60,60,@desktopwidth,1) |
---|
12 | GUICtrlSetGraphic($1,$GUI_GR_LINE, @DesktopWidth, 0) |
---|
13 | GUICtrlSetColor($1, 0x000000) |
---|
14 | |
---|
15 | $2 = GUICtrlCreateGraphic(60,62,@desktopwidth,1) |
---|
16 | GUICtrlSetGraphic($2,$GUI_GR_LINE, @DesktopWidth, 0) |
---|
17 | GUICtrlSetColor($2, 0xF000F) |
---|
18 | |
---|
19 | $3 = GUICtrlCreateGraphic(60,60,1,@DesktopHeight) |
---|
20 | GUICtrlSetGraphic($3,$GUI_GR_LINE, 1, @DesktopHeight) |
---|
21 | GUICtrlSetColor($3, 0xF000F) |
---|
22 | |
---|
23 | $4 = GUICtrlCreateGraphic(62,60,1,@DesktopHeight) |
---|
24 | GUICtrlSetGraphic($4,$GUI_GR_LINE, 1, @DesktopHeight) |
---|
25 | GUICtrlSetColor($4, 0x000000) |
---|
26 | |
---|
27 | While (not (_IsPressed("1b"))) |
---|
28 | |
---|
29 | |
---|
30 | $msg = GUIGetMsg() |
---|
31 | |
---|
32 | WEnd |
---|