显示/隐藏状态栏控件
#Include <GuiStatusBar.au3>
_GUICtrlStatusBar_ShowHide($hWnd, $iState)
$hWnd | 控件句柄 |
$iState | 设置以下值: @SW_SHOW @SW_HIDE |
True: | 先前是可见的 |
False: | 先前是隐藏的 |
#include <GUIConstantsEx.au3>
#include <GuiStatusBar.au3>
$Debug_SB = False ; 检查传递给函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $hGUI, $hStatus
Local $aParts[3] = [75, 150, -1]
; 创建 GUI
$hGUI = GUICreate("StatusBar Show/Hide", 400, 300)
;===============================================================================
; defaults to 1 part, no text
$hStatus = _GUICtrlStatusBar_Create($hGUI)
;===============================================================================
_GUICtrlStatusBar_SetParts($hStatus, $aParts)
GUISetState()
MsgBox(4160, "信息", "Hide StatusBar")
_GUICtrlStatusBar_ShowHide($hStatus, @SW_HIDE)
MsgBox(4160, "信息", "Show StatusBar")
_GUICtrlStatusBar_ShowHide($hStatus, @SW_SHOW)
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main