Tabs verschwinden bei Hintergrundbild

  • Sagt mal ist das nur bei mir so, dass Tabs nicht mehr sichtbar sind wenn man eine Hintergrundbild einfügt ?? Alles andere funktioniert. Hatte ich bis jetzt noch nie!

    Bild wird direkt nach GUI erstellt

    [autoit]


    $pic = GUICtrlCreatePic(@ScriptDir & "\1.jpg",0,0,1024,768)
    GUICtrlSetState(-1, $GUI_DISABLE)

    [/autoit]

    Ach ja, bekommt man Edits und listviews eigentlich auch irgendwie durchsichtig ?

    [autoit]


    GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)

    [/autoit]


    funktionert da ja nicht. wäre ja schön wenn das ginge

  • Wär ja nicht so, dass es schon in der Hilfe steht

    Zitat

    If a picture is set as a background picture, as the other controls will overlap, it's important to disable the pic control and create it after the others controls: GuiCtrlSetState(-1,$GUI_DISABLE). This is not enough for Tab or Listview control which behave differently. In this case you need to create the picture with the $WS_CLIPSIBLINGS style, GuiCtrlSetState(-1,$GUI_ONTOP) is necessary for the Tab, TreeView or Listview control.

  • Gut zu wissen. Steht bei mir nicht drin die Passage. Muss mal schauen welche Version ich habe, denn die Hilfe hatte ich mir schon durch gelesen.