在GUI下划一个彩色的线
如图:划的是一条白色的线
我想要一条彩色的线
以下是代码
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <StaticConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 451, 192, 124)
GUICtrlCreateLabel('',0, 20, 633,100, $SS_ETCHEDHORZ)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd 如何调整线的宽度 API里有专门用于绘图的函数,不过本人不太了解 修改代码
GUICtrlCreateLabel('',0, 20, 633,-1, $SS_ETCHEDHORZ)
如图
graphic 控件
如何新建一个可以随意移动的横线或是竖线? 如何新建一个可以随意移动的横线或是竖线?
页:
[1]