Winform ListVeiw 控制項的使用

2021-09-30 05:57:06 字數 2668 閱讀 1128

this.listview1.view = view.details;

listview listview1

=new

listview();

//set the view to show details.

listview1.view

=view.details;

//allow the user to edit item text.

listview1.labeledit

=true;//

allow the user to rearrange columns.

listview1.allowcolumnreorder

=true;//

display check boxes. 是否顯示核取方塊

listview1.checkboxes

=true;//

select the item and subitems when selection is made. 是否選中整行

listview1.fullrowselect

=true;//

display grid lines. 是否顯示網格

listview1.gridlines

=true;//

sort the items in the list in ascending order. 公升序還是降序

listview1.sorting

=sortorder.ascending;

this.listview1.columns.add("編號", 60, horizontalalignment.right);

this.listview1.columns.add("姓名", 60, horizontalalignment.right);

this.listview1.columns.add("年齡", 60, horizontalalignment.right);

this.listview1.columns.add("**", 60, horizontalalignment.right);

this.listview1.visible = true;

for (int i = 20; i >= 1; i--)

來個複雜的,繫結乙個資料來源

this.listview1.view = view.details;

listview listview1

=new

listview();

//set the view to show details.

listview1.view

=view.details;

//allow the user to edit item text.

listview1.labeledit

=true;//

allow the user to rearrange columns.

listview1.allowcolumnreorder

=true;//

display check boxes. 是否顯示核取方塊

listview1.checkboxes

=true;//

select the item and subitems when selection is made. 是否選中整行

listview1.fullrowselect

=true;//

display grid lines. 是否顯示網格

listview1.gridlines

=true;//

sort the items in the list in ascending order. 公升序還是降序

listview1.sorting

=sortorder.ascending;

this.listview1.columns.add("編號", 60, horizontalalignment.right);

this.listview1.columns.add("姓名", 60, horizontalalignment.right);

this.listview1.columns.add("年齡", 60, horizontalalignment.right);

this.listview1.columns.add("**", 60, horizontalalignment.right);

this.listview1.visible = true;

foreach (t t in list)

來個複雜的,模擬任務管理器.

using system;

using system.collections.generic;

using system.componentmodel;

using system.data;

using system.drawing;

using system.text;

using system.windows.forms;

using system.diagnostics;

private void form1_load(object sender, eventargs e)

catch (exception ex)

inserlistview();

}void inserlistview() }

C 的DateTimePicker控制項的使用

1 datetimepicker預設的顯示年月日.如果要顯示時間,將format屬性設為time,並設定showupdown true 2 datetimepicker1.value屬性 year,month,day,hour,minute,second 分別獲取此日期中的年,月,日,時,分,秒 d...

Android之EditText控制項的使用

這裡我們先總結一下android控制項的使用規律 1 給控制項定義乙個id 2 指定控制項的高度和寬度 3 加入某些控制項特有的屬性即可 現在開始edittext控制項的使用 在布局檔案中加入 這裡的hint的作用是會在你的輸入框中顯示一些提示性的文字,一旦你輸入了內容提示性的文字就會消失,這樣無疑...

Telerik的RadGrid控制項簡單使用

telerik公司的.net控制項功能強大 介面美觀 使用方便。在乙個專案中使用了這個控制項,感覺不錯。下面是乙個使用radgrid的例子。從例子中可以看出,radgrid與.net標準控制項gridview很類似,但也有不少細節不同,而且引數選項比gridview更加複雜 因為功能更多了 form...