2013年8月19日 星期一

放置控制項到群組方塊

;我用來放置控制項的兩個方法(忽略是否將控制項放在一個群組方塊裡面)
;1. 在你的控制項中的其中一個使用關鍵字 SECTION。後來的控制項,就使用xs+NN ys+NN來放置它。
;2. 使用相對位置 - x+NN y+NN 和 xp+NN yp+NN。
#SingleInstance Force

Gui Margin, 5,5
Gui Add, GroupBox, w300 h200, Tada

; Example 1: Without the use of section
Gui Add, Edit, xp+10 yp+20 w100, Edit
Gui Add, Edit, xp y+4 wp, Edit
Gui Add, Edit, xp y+4 wp, Edit
Gui Add, Edit, xp y+4 wp, Edit
Gui Add, Edit, xp y+4 wp, Edit

; Example 2: With SECTION
Gui Add, Edit, x+30 y25 w80 section, Nice Edit
Gui Add, Edit, xs y+4 wp, Nice Edit
Gui Add, Edit, xs y+4 wp, Nice Edit
Gui Add, Edit, xs y+4 wp, Nice Edit

Gui Show

ESC::ExitApp

參考
http://www.autohotkey.com/board/topic/39510-position-of-controls-in-a-groupbox/

沒有留言: