Opened on Mar 8, 2022 at 12:46:19 PM
Last modified on May 16, 2022 at 2:30:38 PM
#3865 closed Bug
Image Control resizing behave as forced $GUI_DOCKWIDTH and $GUI_DOCKHEIGHT — at Version 1
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Milestone: | 3.3.16.1 | Component: | AutoIt |
| Version: | 3.3.15.1 | Severity: | None |
| Keywords: | GUICtrlSetResizng, GUICtrlCreatePic | Cc: |
Description (last modified by )
#include <GUIConstants.au3> #include <WindowsConstants.au3> Test() Func Test() GUICreate("My GUI picture", 350, 300, -1, -1, BitOR($WS_CAPTION, $WS_SIZEBOX + $WS_SYSMENU)) ; will create a dialog box that when displayed is centered GUICtrlCreatePic('C:\Program Files (x86)\AutoIt3\Examples\GUI\logo4.gif', 10, 10, 330, 280) GUICtrlSetResizing(-1, $GUI_DOCKALL) GUISetState(@SW_SHOW) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE, -3 ExitLoop EndSwitch WEnd EndFunc
Change History (1)
comment:1 by , on Mar 8, 2022 at 2:39:36 PM
| Description: | modified (diff) |
|---|---|
| Version: | 3.3.16.0 → 3.3.15.1 |
Note:
See TracTickets
for help on using tickets.
