lin0308 发表于 2010-6-29 13:02:46

使用GUICtrlSetImage为何更新不了图片?(以解决)

本帖最后由 lin0308 于 2010-6-29 14:52 编辑

$tab = GUICtrlCreateTab(2, 145,950, 400)
$tab1 = GUICtrlCreateTabItem("11111")
$Pic2 = GUICtrlCreateLabel("没有", 568, 248, 356, 180)
GUICtrlSetFont(-1, 15, 800, 0, "楷体")
$pic=GUICtrlCreatePic("", 568, 248, 356, 180)
$Button = GUICtrlCreateButton("查看", 800, 440, 147, 97)
GUICtrlCreateTabItem("")
While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                                 Exit
                              case $Button
$pic1=iniread("auto.ini","2","pic","no")
If $pic1="no" Then
GUICtrlSetState($pic,$GUI_HIDE)
GUICtrlSetState($pic2,80)
Else
GUICtrlSetState($Pic2,$GUI_HIDE)
GUICtrlSetImage($pic,$pic1)
EndIf
      EndSwitch
WEnd

错误在我隐藏GUICtrlSetImage,没在恢复所以不能显示

liyi-softs 发表于 2011-6-30 01:16:35

很好。

感谢!

ak47gglllk 发表于 2014-8-2 16:53:41

感谢提供,非常感谢

samroger 发表于 2014-9-21 17:32:28

刚好遇到这问题,感谢了

49666684 发表于 2017-6-30 13:31:59

感谢提供,非常感谢
页: [1]
查看完整版本: 使用GUICtrlSetImage为何更新不了图片?(以解决)