欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

ListView的Column排序方法

系統 2204 0

ListView的Column排序是很常見的功能。具體實現的時候,主要是下面幾步:

1、創建兩個類

2、重載ColumnClick方法。

ListView的Column排序方法

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;

namespace test
... {
public partial class Form1:Form
... {
public Form1()
... {
InitializeComponent();
}


private void listView1_ColumnClick( object sender,ColumnClickEventArgse)
... {
// CreateaninstanceoftheColHeaderclass.
ColHeaderclickedCol = (ColHeader) this .listView1.Columns[e.Column];

// Settheascendingpropertytosortintheoppositeorder.
clickedCol.ascending = ! clickedCol.ascending;

// Getthenumberofitemsinthelist.
int numItems = this .listView1.Items.Count;

// Turnoffdisplaywhiledataisrepoplulated.
this .listView1.BeginUpdate();

// PopulateanArrayListwithaSortWrapperofeachlistitem.
ArrayListSortArray = new ArrayList();
for ( int i = 0 ;i < numItems;i ++ )
... {
SortArray.Add(
new SortWrapper( this .listView1.Items[i],e.Column));
}


// SorttheelementsintheArrayListusinganewinstanceoftheSortComparer
// class.Theparametersarethestartingindex,thelengthoftherangetosort,
// andtheIComparerimplementationtouseforcomparingelements.Notethat
// theIComparerimplementation(SortComparer)requiresthesort
// directionforitsconstructor;trueifascending,othwisefalse.
SortArray.Sort( 0 ,SortArray.Count, new SortWrapper.SortComparer(clickedCol.ascending));

// Clearthelist,andrepopulatewiththesorteditems.
this .listView1.Items.Clear();
for ( int i = 0 ;i < numItems;i ++ )
this .listView1.Items.Add(((SortWrapper)SortArray[i]).sortItem);

// Turndisplaybackon.
this .listView1.EndUpdate();

}


private void button1_Click( object sender,EventArgse)
... {
this .listView1.View = View.Details;

// AddcolumnsusingtheColHeaderclass.Thefourth
// parameterspecifiestrueforanascendingsortorder.
listView1.Columns.Add( new ColHeader( " Name " , 110 ,HorizontalAlignment.Left, true ));
listView1.Columns.Add(
new ColHeader( " Region " , 50 ,HorizontalAlignment.Left, true ));
listView1.Columns.Add(
new ColHeader( " Sales " , 70 ,HorizontalAlignment.Left, true ));

// Addthedata.
listView1.Items.Add( new ListViewItem( new string [] ... { " Archer,Karen " , " 4 " , " 0521.28 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Benson,Max " , " 8 " , " 0828.54 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Bezio,Marin " , " 3 " , " 0535.22 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Higa,Sidney " , " 2 " , " 0987.50 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Martin,Linda " , " 6 " , " 1122.12 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Nash,Mike " , " 7 " , " 1030.11 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Sanchez,Ken " , " 1 " , " 0958.78 " } ));
listView1.Items.Add(
new ListViewItem( new string [] ... { " Smith,Ben " , " 5 " , " 0763.25 " } ));

// ConnecttheListView.ColumnClickeventtotheColumnClickeventhandler.
this .listView1.ColumnClick += new ColumnClickEventHandler(listView1_ColumnClick);


}

}


public class ColHeader:ColumnHeader
... {
public bool ascending;
public ColHeader( string text, int width,HorizontalAlignmentalign, bool asc)
... {
this .Text = text;
this .Width = width;
this .TextAlign = align;
this .ascending = asc;
}

}


class SortWrapper
... {
internal ListViewItemsortItem;
internal int sortColumn;


// ASortWrapperrequirestheitemandtheindexoftheclickedcolumn.
public SortWrapper(ListViewItemItem, int iColumn)
... {
sortItem
= Item;
sortColumn
= iColumn;
}


// Textpropertyforgettingthetextofanitem.
public string Text
... {
get
... {
return sortItem.SubItems[sortColumn].Text;
}

}


// ImplementationoftheIComparer
// interfaceforsortingArrayListitems.
public class SortComparer:IComparer
... {
bool ascending;

// Constructorrequiresthesortorder;
// trueifascending,otherwisedescending.
public SortComparer( bool asc)
... {
this .ascending = asc;
}


// ImplemnentationoftheIComparer:Compare
// methodforcomparingtwoobjects.
public int Compare( object x, object y)
... {
SortWrapperxItem
= (SortWrapper)x;
SortWrapperyItem
= (SortWrapper)y;

string xText = xItem.sortItem.SubItems[xItem.sortColumn].Text;
string yText = yItem.sortItem.SubItems[yItem.sortColumn].Text;
return xText.CompareTo(yText) * ( this .ascending ? 1 : - 1 );
}

}


}

}

ListView的Column排序方法


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产chinese视频在线观看 | www.日本在线 | 一级片在线观看 | 免费日本毛片 | 欧美激情一区二区亚洲专区 | 5月激情网 | 亚洲天天综合网 | 欧美一区二区三区在线可观看 | 久久视频这里只要精品 | 成人精品| 成人影院av| 精品一区二区三区自拍图片区 | 久久久九九精品国产毛片A片 | 青青草视频网 | 亚洲毛片免费看 | 国产亚洲综合久久 | 99riav9.vip| 精久久| 欧美区在线 | 一区二区三区精品视频 | 中文字幕精品一区二区三区精品 | 精品福利av导航 | 成人免费视频观看视频 | 黑人巨大精品 | 日本不卡一区 | 99精品视频免费看 | 8mav福利视频在线播放 | 天天舔天天舔 | 最新一区二区三区 | 国产毛A片啊久久久久久A | 亚洲男人天堂网 | 99热最新网址 | 久久久国 | 天天爱天天爽 | 亚洲国产天堂久久综合9999 | 欧美激情在线精品一区二区 | 成人爽a毛片在线视频网站 婷婷色在线观看 | 成人国产精品免费视频 | 国产亚洲精品国产 | 午夜影院毛片 | aaa毛片免费观看 |