SOUI中提供了大部分常用的win32标准控件的实现,如pushbutton, checkbox, radiobox, edit, richedit, listbox, combobox, treectrl, listctrl (report), hotkeyctrl等。大部分控件在接收用户输入后,...
分类:
其他好文 时间:
2014-08-22 23:48:19
阅读次数:
380
private void button1_Click(object sender, EventArgs e) { listBox_thread_list.Items.Clear(); Process[] processes; ...
反反复复考虑后,准备把这一章的切入点瞄准ListBox。并用了一个看起来有点别扭的标题“认识ListBox",许多人看到这里就不爱看了,即使是大学里用winform的学生也会说ListBox我看他好几年了。但我想说,在实际项目开发中,界面元素除了Button,另一个使用率最高的就是ListBox,你...
分类:
其他好文 时间:
2014-08-07 12:14:09
阅读次数:
251
最近在使用Listbox开发程序的时候, 遇到MouseWheel event 异常。设置如下:1. DrawModel:ownerDrawVariable.2. InternalHeight:False.3. ScrollAswalysVisible:True.4. Overwrite DrawI...
1.与的区别: 答:是在程序执行时调用,是在DataBind()方法之后被调用 2.控件接收哪些类型数据? 答:接收Bind的控件,一般有DropDownList,DataList,DataGrid,ListBox这些集合性质的控件,而被捆 绑 的主要是ArrayList(数组),Hashta...
分类:
Web程序 时间:
2014-08-01 16:01:31
阅读次数:
289
本文转载自:http://blog.csdn.net/yushanddddfenghailin/article/details/17268473列表框列表框(ListBox)是Windows应用程序中重要的输入手段,其中包括多个选项用户可以从其中选择一个或者多个,程序根据用户的选择做出相应的处理,列...
分类:
其他好文 时间:
2014-08-01 13:08:21
阅读次数:
160
1、初探GroupItem对象 2、 ContainerStyle 与 GroupItem的绑定对象3、Grouping 级联
分类:
其他好文 时间:
2014-07-31 12:46:26
阅读次数:
227
1:from窗体环境:TextBox(关键词文本框)、ListBox(提示框)
2:实现思路:
2.1:以输入的关键词为条件查询 数据库(在查询中以点击率排序就加一个order by 点击率 desc)返回多行单列数据结果集合。再一一赋值到listBox中显示。
2.2:在TextBox中如果侦听键盘
if(Down(小键盘向下))
则先获取到L...
分类:
其他好文 时间:
2014-07-30 20:58:34
阅读次数:
231
//返回ListBox选中的多项目 procedure TForm1.Button2Click(Sender: TObject);vari:Integer;s:string;beginfor i:=0 to ListBox1.Items.Count-1 doif ListBox1.Selected[...
分类:
其他好文 时间:
2014-07-29 21:25:42
阅读次数:
235