设置当前区域信息
#include <GuiListBox.au3>
_GUICtrlListBox_SetLocale($hWnd, $iLocal)
$hWnd | 控件的控件ID/句柄 |
$iLocal | 指定列表框添加文本并排序时使用的区域设置标识符. |
#include <GuiListBox.au3>
#include <WinAPI.au3>
#include <GUIConstantsEx.au3>
#include <Constants.au3>
$Debug_LB = False ;检查传递给 ListBox 函数的类名, 设置为True并输出到一个控件的句柄,用于检查它是否工作
_Main()
Func _Main()
Local $iLocale, $hListBox
; 创建 GUI
GUICreate("List Box Set Locale", 400, 296)
$hListBox = GUICtrlCreateList("", 2, 2, 396, 296)
GUISetState()
$iLocale = _WinAPI_MAKELCID(_WinAPI_MAKELANGID($LANG_DUTCH, $SUBLANG_DUTCH), $SORT_DEFAULT)
MsgBox(4160, "信息", "Previous Locale: " & _GUICtrlListBox_SetLocale($hListBox, $iLocale))
$iLocale = _WinAPI_MAKELCID(_WinAPI_MAKELANGID($LANG_ENGLISH, $SUBLANG_ENGLISH_US), $SORT_DEFAULT)
MsgBox(4160, "信息", "Previous Locale: " & _GUICtrlListBox_SetLocale($hListBox, $iLocale))
; 循环直到用户退出
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>_Main