标签:mobile 需要 如何 开发 index 数据 hone 分享 打开方式
我们要实现上图中的效果,需要如下的操作:
PopList控件显示包括两种模式:展开模式和筛选分类模式;两种模式只能选其中一种
打开集合编辑器,并点击“添加”,如图1
其中包括indexerKey(分类筛选类型)、Text(菜单组文本)和Value(内部值,不在界面上显示),如图2
在Items中添加数据,如图3
PopList控件的手机显示效果如图4
图1 | 图2 | 图3 | 图4 |
indexerKey(分类筛选类型)、Text(菜单组文本)和Value(内部值,不在界面上显示)的设置见图5
在Items中添加数据,如图6
PopList控件的手机显示效果如图7
图5 | 图6 | 图7 |
默认设置不允许多选
设置默认选项,需要在代码中实现
VB:
Private Sub Button1_Click(senderAs Object, e As EventArgs)Handles Button1.Click
Me.PopList1.Show()
If Label8.Text.Trim().Length <= 0 Then
Me.PopList1.SetSelections(Me.PopList1.Groups(0).Items(6))
End If
End Sub
C#:
private void Button1_Click(object sender, EventArgs e)
{
PopList1.Show();
If (Label8.Text.Trim().Length <= 0)
{
PopList1.SetSelections(PopList1.Groups[0].Items[0]);
}
}
在内容选择完成后的事件
事件代码:
VB:
Private Sub PopList1_Selected(senderAs Object, e As EventArgs)Handles PopList1.Selected
Me.Label8.Text = PopList1.Selection.Text
End Sub
C#:
private void PopList1_Selected(object sender, EventArgs e)
{
this.Label8.Text = PopList1.Selection.Text;
}
.Net语言 APP开发平台——Smobiler学习日志:Poplist控件的正确打开方式以及如何快速实现
标签:mobile 需要 如何 开发 index 数据 hone 分享 打开方式
原文地址:http://www.cnblogs.com/amanda112/p/6084940.html