扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:第七乐章 来源:天极网 2007年10月14日
关键字:
方法 | 返回类型 | 说明 |
AddList | integer | 添加一个新的分组 |
DeleteList | boolean | 从控件中删除一个已有分组 |
AddListItem | integer | 在一个分组中新添加一个项目 |
DeleteItem | boolean | 在一个分组中删除一个项目 |
InsertListItem | short | 在某一分组中的某一位置插入一个新的项目 |
ClearLists | void | 清除控件中的所有分组和项目 |
属性 | 数据类型 | 说明 |
BackImage | Picture | 设置控件背景图片。利用这个属性,可以实现“皮肤”的功能。 |
BarHeight | integer | 设置分组按钮的高度。 |
BorderType | integer | 设置控件的边框样式 |
BorderColor | long | 设置控件的边框颜色,仅当BorderType设置为“0 - Regular”时有效。 |
ButtonBackColor | long | 设置分组按钮和上下滚动按钮的颜色。 |
ButtonForeColor | long | 设置分组按钮和上下滚动按钮的字体颜色。 |
ButtonSize | integer | 设置上下滚动按钮大小。 |
GradientFill | boolean | 设置控件背景是否显示渐变色。 |
GradColorFrom | long | 设置渐变色的起始颜色。 |
GradColorTo | long | 设置渐变色的结束颜色。 |
IconSize | integer | 设置图标显示模式是大图标或小图标。 |
Image1-6 | Picture | 设置预先在控件中加载的6幅图片。 |
ListBarStyle | integer | 设置控件纵向或是横向显示。 |
ListBackColor | long | 设置控件的背景颜色。 |
ListForeColor | long | 设置分组中项目文字的颜色。 |
ListScrollSpeed | integer | 设置项目滚动的速度。 |
ItemScrollSpeed | integer | 设置分组滑动的速度。 |
Dim strListName, strItemName As String Dim intListNum, intItemNum As Integer |
ctListBar1.AddList "陌生人" ctListBar1.AddList "黑名单" ctListBar1.AddListItem 1, "My heart", ctListBar1.Image1 ctListBar1.AddListItem 1, "第七乐章", ctListBar1.Image2 ctListBar1.AddListItem 1, "小A", ctListBar1.Image3 ctListBar1.AddListItem 1, "小B", ctListBar1.Image4 ctListBar1.AddListItem 1, "张三", ctListBar1.Image5 ctListBar1.AddListItem 1, "李四", ctListBar1.Image6 |
strListName = "" strListName = InputBox("请输入要添加的分组名称", "添加分组") If strListName <> "" Then ctListBar1.AddList strListName |
intListNum = 0 intListNum = Val(InputBox("请输入要删除的分组标识号", "删除分组")) If intListNum <> 0 Then ctListBar1.DeleteList intListNum |
strItemName = "" intListNum = 0 intListNum = Val(InputBox("请输入要添加的项目所在分组的标识号", "添加项目")) If intListNum <> 0 Then strItemName = InputBox("请输入要添加的项目的名称", "添加项目") If strItemName <> "" Then ctListBar1.AddListItem intListNum, strItemName, ctListBar1.Image1 |
intListNum = 0 intItemNum = 0 intListNum = Val(InputBox("请输入要删除的项目所在分组的标识号", "删除项目")) If intListNum <> 0 Then intItemNum = Val(InputBox("请输入要删除的项目的标识号", "删除项目")) If intItemNum <> 0 Then ctListBar1.DeleteItem intListNum, intItemNum |
intListNum = 0 intItemNum = 0 strItemName = "" intListNum = Val(InputBox("请输入要插入的项目所在分组的标识号", "插入项目")) If intListNum <> 0 Then intItemNum = Val(InputBox("请输入要插入的项目所在位置的标识号", "插入项目")) If intItemNum <> 0 Then strItemName = InputBox("请输入要插入的项目的名称", "插入项目") If strItemName <> "" Then ctListBar1.InsertListItem intListNum, intItemNum, strItemName, tListBar1.Image1 |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者