例39:使用List控件

  1. 建立一个EXE工程,在窗体上放一个文本框,一个列表框和三个按钮
  2. 输入如下的代码:
Sub Form1_Command1_BN_Clicked(hWndForm As hWnd, hWndControl As hWnd)

      List1.AddItem(Text1.Text)

End Sub

Sub Form1_Command2_BN_Clicked(hWndForm As hWnd, hWndControl As hWnd)

   If List1.ListCount = 0   Then

      MsgBox("没有条目")

   Else

      list1.RemoveItem(0)

   End If

End Sub

Sub Form1_List1_LBN_SelChange(hWndForm As hWnd, hWndControl As hWnd)

   MsgBox(List1.Text)

End Sub

实现的功能为:单击增加条目按钮,将文本框当前内容加为列表框的一条条目,单击删除按钮删除一条条目,双击条目则弹出一个消息框显示该条目的内容。如图35。例39:使用List控件_第1张图片

你可能感兴趣的:(Visual,Free,Basic例解教程,开发语言)