Opened 4 years ago
Last modified 3 years ago
#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 mLipok)
#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 Changed 4 years ago by mLipok
- Description modified (diff)
 - Version changed from 3.3.16.0 to 3.3.15.1
 
Note: See
        TracTickets for help on using
        tickets.
    