bhffhzh 发表于 2012-2-5 20:00:20

关于变量提示为红色的操作

$Label1 = GUICtrlCreateLabel("你当前使用的操作系统:" & @OSVersion&""&"系统版本:" & @OSServicePack, 14, 16, 400, 17)
运行结果是:


我想让变量:@OSVersion 和变量:@OSServicePack  提示的结果为红色 怎么操作?

半芯竹 发表于 2012-2-5 20:38:07

回复 1# bhffhzh


    貌似只能使整个控件改变颜色。GUICtrlSetColor

虎虎虎 发表于 2012-2-5 21:21:57

本帖最后由 虎虎虎 于 2012-2-5 21:24 编辑

最简单的方法:#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 415, 122, 192, 124)
$Label1 = GUICtrlCreateLabel("你当前使用的操作系统:", 8, 32, 127, 17)
$Label2 = GUICtrlCreateLabel(@OSVersion, 144, 32, 55, 17)
GUICtrlSetColor(-1, 0xFF0000)
$Label3 = GUICtrlCreateLabel("系统版本:", 220, 32, 127, 17)
$Label4 = GUICtrlCreateLabel(@OSServicePack, 300, 32, 100, 17)
GUICtrlSetColor(-1, 0xFF0000)


GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit

        EndSwitch
WEnd

bhffhzh 发表于 2012-2-5 21:53:52

非常感谢/

jsgh1983 发表于 2012-2-6 00:34:05

3楼方法很简单!赞一个!
页: [1]
查看完整版本: 关于变量提示为红色的操作