lin6163 发表于 2010-10-6 09:55:24

如创建无任务栏显示的窗口,不是托盘图标,是任务栏显示(已解决)

本帖最后由 lin6163 于 2010-10-6 12:32 编辑

如创建无任务栏显示的窗口,不是托盘图标,是任务栏显示
谢谢!!!!!!

shenrenba 发表于 2010-10-6 10:00:54


#NoTrayIcon

水木子 发表于 2010-10-6 10:21:04

GUICreate("我不会在任务栏显示", 400, 300, -1, -1, -1, -1, WinGetHandle(AutoItWinGetTitle()))
GUISetState()

Do
Until GUIGetMsg() = -3

menfan1 发表于 2010-10-6 11:02:57

楼上正解。。

lin6163 发表于 2010-10-6 12:32:15


水木子 发表于 2010-10-6 10:21 http://www.autoitx.com/images/common/back.gif


    谢谢

wukaijj1314 发表于 2010-10-6 12:55:46


水木子 发表于 2010-10-6 10:21 http://www.autoitx.com/images/common/back.gif


    学习l了……

gapkiller 发表于 2010-11-9 17:46:25

学习了,但是知其然,而不知其所以然啊~

t87564833 发表于 2010-11-10 11:17:14

回复 3# 水木子

能注释一下为什么会不显示吗?{:face (396):}

zery 发表于 2010-11-15 00:00:31

#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
GUICreate("无任务栏图标",400,300,-1,-1,-1,$WS_EX_TOOLWINDOW)
GUISetState()
While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
      EndSwitch
WEnd

haodd 发表于 2010-11-16 16:35:08

经典 啊顶

easied 发表于 2011-2-13 15:51:23

学习了,附一个代码方便后面学习的人#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>

$hWndMain= GUICreate("主窗口-在任务栏显示",       400, 300,   0,0)
$hWndChild = GUICreate("子窗口-在任务栏不显示",   224, 300, 800,0, -1, -1, $hWndMain)
$hWndMain2 = GUICreate("主窗口-在任务栏不显示",   400, 300, 400,0, -1, -1, WinGetHandle(AutoItWinGetTitle()))
$hWndTool= GUICreate("浮动工具栏-在任务栏不显示", 100, 100,-1, -1, -1, $WS_EX_TOOLWINDOW)
GUISetState(@SW_SHOW, $hWndMain)
GUISetState(@SW_SHOW, $hWndChild)
GUISetState(@SW_SHOW, $hWndMain2)
GUISetState(@SW_SHOW, $hWndTool)

Do
Until GUIGetMsg() = -3
Exit

lizhou 发表于 2011-3-11 17:07:31

留个脚印备用

chenlu_ling 发表于 2011-3-12 10:38:55

不错收藏先

styledream 发表于 2011-3-24 12:41:42

11楼的代码很实用~~~

veve 发表于 2011-10-20 23:39:22

很不错   真的很不错 顶
页: [1] 2
查看完整版本: 如创建无任务栏显示的窗口,不是托盘图标,是任务栏显示(已解决)