Setzt die Schrift des Monatskalenders
#include <GuiDateTimePicker.au3>
_GUICtrlDTP_SetMCFont ( $hWnd, $hFont [, $bRedraw = True] )
| $hWnd | Handle des Controls |
| $hFont | Handle zu der zu setzenden Schrift |
| $bRedraw | [optional] Legt fest, ob das Control sofort neu aufgebaut werden soll |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include "Extras\HelpFileInternals.au3"
#include <GUIConstantsEx.au3>
#include <GuiDateTimePicker.au3>
#include <StructureConstants.au3>
#include <WinAPIGdi.au3>
Example()
Func Example()
; Erstellt eine GUI
Local $hGui = GUICreate("DateTimePick: Setzt und ermittelt die Schriftart des Monatskalenders (v" & @AutoItVersion & ")", 600, 300)
Local $hDTP = _GUICtrlDTP_Create($hGui, 2, 6, 190)
_MemoCreate(2, 32, 396, 266, 0)
GUISetState(@SW_SHOW)
; Setzt das Anzeigeformat
_GUICtrlDTP_SetFormat($hDTP, "ddd MMM dd, yyyy hh:mm ttt")
; Erstellt eine neue Schrift für das Monats-Control
Local $tLOGFONT = DllStructCreate($tagLOGFONT)
DllStructSetData($tLOGFONT, "Height", 13)
DllStructSetData($tLOGFONT, "Weight", 400)
DllStructSetData($tLOGFONT, "FaceName", "Verdana")
Local $hFont = _WinAPI_CreateFontIndirect($tLOGFONT)
_GUICtrlDTP_SetMCFont($hDTP, $hFont)
; Ermittelt das Schrifthandle des Monats-Control
_MemoWrite("Schrifthandle: " & "0x" & Hex(_GUICtrlDTP_GetMCFont($hDTP), 6))
_MemoWrite("IsPtr = " & IsPtr(_GUICtrlDTP_GetMCFont($hDTP)) & " IsHWnd = " & IsHWnd(_GUICtrlDTP_GetMCFont($hDTP)))
; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example