函数参考


_GUICtrlMonthCal_GetUnicodeFormat

检索控件的 Unicode 字符格式标志

#Include <GuiMonthCal.au3>
_GUICtrlMonthCal_GetUnicodeFormat($hWnd)

参数

$hWnd 控件句柄

返回值

True: 控件使用 Unicode 字符
False: 控件使用 ANSI 字符

注意/说明

None.

相关

_GUICtrlMonthCal_SetUnicodeFormat

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiMonthCal.au3>
#include <WindowsConstants.au3>

$Debug_MC = False ; Check ClassName being passed to MonthCal functions, set to True and use a handle to another control to see it work

Global $iMemo

_Main()

Func _Main()
    Local $hMonthCal

    ; 创建 GUI
    GUICreate("Month Calendar Get Unicode Format", 400, 300)
    $hMonthCal = GUICtrlCreateMonthCal("", 4, 4, -1, -1, $WS_BORDER, 0x00000000)

    ; 创建 memo 控件
    $iMemo = GUICtrlCreateEdit("", 4, 168, 392, 128, 0)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
    GUISetState()

    ; Get/Set Unicode setting
    _GUICtrlMonthCal_SetUnicodeFormat($hMonthCal, False)
    MemoWrite("Unicode: " & _GUICtrlMonthCal_GetUnicodeFormat($hMonthCal))
    _GUICtrlMonthCal_SetUnicodeFormat($hMonthCal, True)
    MemoWrite("Unicode: " & _GUICtrlMonthCal_GetUnicodeFormat($hMonthCal))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main

; 写入消息到 memo
Func MemoWrite($sMessage)
    GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite