找回密码
 加入
搜索
查看: 2678|回复: 7

[GUI管理] 请教GUICtrlCreateListView有密码样式吗?

  [复制链接]
发表于 2010-3-6 21:25:50 | 显示全部楼层 |阅读模式



1.请问GUICtrlCreateListView有显示密码样式吗?

我想12345678

显示为


*******************


谢谢大家!
发表于 2010-3-6 22:36:27 | 显示全部楼层
$MIMA = GUICtrlCreateInput("连接密码", 280, 15, 80, 20, BitOR($ES_PASSWORD, $ES_AUTOHSCROLL))
发表于 2010-3-6 22:37:09 | 显示全部楼层
我只能做到输入框是密码。
 楼主| 发表于 2010-3-6 23:03:23 | 显示全部楼层
输入框显示密码样式,我知道。。。

我想知道,列表框显示密码,如何做到。。
发表于 2010-5-7 18:02:22 | 显示全部楼层
你可以直接使用“****”号替代相应的文字,就行了!
发表于 2010-5-7 21:14:09 | 显示全部楼层
学习中  很感谢有这么多高手
发表于 2010-5-8 01:59:45 | 显示全部楼层
这个可以有
发表于 2010-5-8 09:58:31 | 显示全部楼层
不知道楼主是想要这样的吗?
#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiListView.au3>

Opt('MustDeclareVars', 1)

$Debug_LV = False ; Check ClassName being passed to ListView functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
        Local $hListView

        GUICreate("ListView Set Item Param", 400, 300)
        $hListView = GUICtrlCreateListView("", 2, 2, 394, 268)
        GUISetState()
        _GUICtrlListView_AddColumn($hListView, "Items", 100)
        ; Add items
        For $i = 0 To 99
                _GUICtrlListView_AddItem($hListView, "********")
        Next

        For $i = 0 To 99
                _GUICtrlListView_SetItemParam($hListView, $i, Random(0, 10000, 1))
        Next
        MsgBox(4160, "Information", "Item random Parameter: " & _GUICtrlListView_GetItemParam($hListView, Random(0, 99, 1)))

        ; Loop until user exits
        Do
        Until GUIGetMsg() = $GUI_EVENT_CLOSE
        GUIDelete()
EndFunc   ;==>_Main
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-5-21 05:12 , Processed in 0.075913 second(s), 24 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表