何となく Blog by Jitta
Microsoft .NET 考

目次

Blog 利用状況
  • 投稿数 - 761
  • 記事 - 18
  • コメント - 35955
  • トラックバック - 222
ニュース
  • IE7以前では、表示がおかしい。div の解釈に問題があるようだ。
    IE8の場合は、「互換」表示を OFF にしてください。
  • 検索エンジンで来られた方へ:
    お望みの情報は見つかりましたか? よろしければ、コメント欄にどのような情報を探していたのか、ご記入ください。
It's ME!
  • はなおか じった
  • 世界遺産の近くに住んでます。
  • Microsoft MVP for Visual Developer ASP/ASP.NET 10, 2004 - 9, 2011
広告

記事カテゴリ

書庫

日記カテゴリ

ギャラリ

その他

わんくま同盟

同郷

 

 DataGridView にカスタムクラスをバインドし、列ヘッダーをクリックしたときにソートする方法。
 データベースから取得した DataTable をバインドするときは、(設定すれば)自動でやってくれるが、オブジェクトデータソースを使うときは、いろいろと用意が必要。

カスタムクラスと、カスタムクラスのコレクションを用意する

 コレクションは、シリアル化する必要がないなら、ジェネリックを使える。


class Hoge {
 適切に実装
}
class HogeCollection : List<Hoge> {
 実装不要
}

カスタムクラスの比較クラスを用意する

 System.Collection.Generics.Comparer クラス を継承した、比較クラスを用意する。


class HogeComparer : System.Collections.Generic.Comparer {
 private string _比較対象プロパティ = 適切に初期化;
 private bool _Ascending = true;
 /// 
 /// 比較の対象とするプロパティの名称を取得、または設定します。
 /// 
 public string 比較対象 {
  get { return this.property; }
  set {
   // 対象のプロパティが登録されているか、確認する
   Type chargeType = typeof(Hoge);
   System.Reflection.PropertyInfo[] info = chargeType.GetProperties();
   for (int idx = 0; idx < info.Length; idx++) {
    string propertyName = info[idx].Name;
    if (propertyName.CompareTo(value) == 0) {
     this.property = value;
     return;
    }
   }
   throw new ArgumentException("間違ってるよ");
  }
 }

 public override int Compare(Hoge x, Hoge y) {
  System.Reflection.PropertyInfo xInfo = x.GetType().GetProperty(this.property);
  System.Reflection.PropertyInfo yInfo = y.GetType().GetProperty(this.property);
  if (xInfo == null || yInfo == null) {
   return (xInfo == null ? 1 : 0) - (yInfo == null ? 1 : 0);
  }
  object xObj = xInfo.GetValue(x, null);
  object yObj = yInfo.GetValue(y, null);
  IComparable comp = xObj as IComparable;
  if (comp != null) {
   return comp.CompareTo(yObj) * (this._Ascending == true ? 1 : -1);
  } else {
   // 比較できない
   return 0;
  }
 }
}

UIの設定

 BindingSource, DataGridView を用意し、適切に設定する。
 DataGridView.ColumnHeaderMouseClick イベント をハンドルする。


private DataGridViewColumn lastSortedColumn = null;
private void dataGridView_ColumnHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e) {
 HogeCollection list = HogeBindingSource.DataSource as HogeCollection;
 if (list == null) { return; }
 DataGridViewColumn column = this.dataGridView.Columns[e.ColumnIndex];
 DataGridViewHeaderCell header = column.HeaderCell;
 bool asc = true;
 if (lastSortedColumn != null) {
  if (lastSortedColumn == column) {
   direction = (lastSortedColumn.HeaderCell.SortGlyphDirection == SortOrder.Ascending ? false : true);
  }
  lastSortedColumn.HeaderCell.SortGlyphDirection = SortOrder.None;
 }
 HogeComparer comparer = new HogeComparer();
 comparer.比較対象 = column.DataPropertyName;
 comparer.SortOrder = direction;
 this.dataGridView.EndEdit(); // 編集を強制終了
 list.Sort(comparer);
 lastSortedColumn = column;
 lastSortedColumn.HeaderCell.SortGlyphDirection = (direction ? SortOrder.Ascending : SortOrder.Descending);
 this.dataGridView.Refresh(); // 必要
}
投稿日時 : 2005年10月31日 21:02
コメント
  • # I always used to read paragraph in news papers but now as I am a user of internet therefore from now I am using net for articles, thanks to web.
    I always used to read paragraph in news papers but
    Posted @ 2018/02/24 6:48
    I always used to read paragraph in news papers but now as I am
    a user of internet therefore from now I am using net for articles, thanks to
    web.
  • # Excellent website. A lot of helpful info here. I am sending it to a few buddies ans additionally sharing in delicious. And obviously, thanks on your effort!
    Excellent website. A lot of helpful info here. I a
    Posted @ 2021/08/08 11:50
    Excellent website. A lot of helpful info here. I am sending it to a few buddies ans additionally sharing in delicious.
    And obviously, thanks on your effort!
  • # I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for posts, thanks to web.
    I every time used to study article in news papers
    Posted @ 2021/09/01 1:17
    I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for
    posts, thanks to web.
  • # I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for posts, thanks to web.
    I every time used to study article in news papers
    Posted @ 2021/09/01 1:18
    I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for
    posts, thanks to web.
  • # I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for posts, thanks to web.
    I every time used to study article in news papers
    Posted @ 2021/09/01 1:19
    I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for
    posts, thanks to web.
  • # I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for posts, thanks to web.
    I every time used to study article in news papers
    Posted @ 2021/09/01 1:20
    I every time used to study article in news papers but now as I am a user of internet therefore from now I am using net for
    posts, thanks to web.
  • # We are a group of volunteers and starting a new scheme in our community. Your web site provided us with valuable info to work on. You have done an impressive job and our entire community will be thankful to you.
    We are a group of volunteers and starting a new sc
    Posted @ 2021/09/02 10:10
    We are a group of volunteers and starting a new scheme in our community.
    Your web site provided us with valuable info to work
    on. You have done an impressive job and our entire community will be thankful to you.
  • # We are a group of volunteers and starting a new scheme in our community. Your web site provided us with valuable info to work on. You have done an impressive job and our entire community will be thankful to you.
    We are a group of volunteers and starting a new sc
    Posted @ 2021/09/02 10:12
    We are a group of volunteers and starting a new scheme in our community.
    Your web site provided us with valuable info to work
    on. You have done an impressive job and our entire community will be thankful to you.
  • # We are a group of volunteers and starting a new scheme in our community. Your web site provided us with valuable info to work on. You have done an impressive job and our entire community will be thankful to you.
    We are a group of volunteers and starting a new sc
    Posted @ 2021/09/02 10:13
    We are a group of volunteers and starting a new scheme in our community.
    Your web site provided us with valuable info to work
    on. You have done an impressive job and our entire community will be thankful to you.
  • # Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari. I'm not sure if this is a formatting issue or something to do with browser compatibility but I figured I'd post to let you know. The d
    Howdy just wanted to give you a quick heads up. Th
    Posted @ 2021/09/02 17:49
    Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari.
    I'm not sure if this is a formatting issue or something to
    do with browser compatibility but I figured I'd post to let you know.
    The design look great though! Hope you get the problem resolved
    soon. Many thanks
  • # Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari. I'm not sure if this is a formatting issue or something to do with browser compatibility but I figured I'd post to let you know. The d
    Howdy just wanted to give you a quick heads up. Th
    Posted @ 2021/09/02 17:50
    Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari.
    I'm not sure if this is a formatting issue or something to
    do with browser compatibility but I figured I'd post to let you know.
    The design look great though! Hope you get the problem resolved
    soon. Many thanks
  • # Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari. I'm not sure if this is a formatting issue or something to do with browser compatibility but I figured I'd post to let you know. The d
    Howdy just wanted to give you a quick heads up. Th
    Posted @ 2021/09/02 17:51
    Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari.
    I'm not sure if this is a formatting issue or something to
    do with browser compatibility but I figured I'd post to let you know.
    The design look great though! Hope you get the problem resolved
    soon. Many thanks
  • # Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari. I'm not sure if this is a formatting issue or something to do with browser compatibility but I figured I'd post to let you know. The d
    Howdy just wanted to give you a quick heads up. Th
    Posted @ 2021/09/02 17:52
    Howdy just wanted to give you a quick heads up. The text in your article seem to be running off the screen in Safari.
    I'm not sure if this is a formatting issue or something to
    do with browser compatibility but I figured I'd post to let you know.
    The design look great though! Hope you get the problem resolved
    soon. Many thanks
  • # I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors? Is gonna be again frequently in order to inspect new posts
    I just could not leave your web site before sugges
    Posted @ 2021/09/04 12:56
    I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors?
    Is gonna be again frequently in order to inspect new posts
  • # I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors? Is gonna be again frequently in order to inspect new posts
    I just could not leave your web site before sugges
    Posted @ 2021/09/04 12:57
    I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors?
    Is gonna be again frequently in order to inspect new posts
  • # I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors? Is gonna be again frequently in order to inspect new posts
    I just could not leave your web site before sugges
    Posted @ 2021/09/04 12:58
    I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors?
    Is gonna be again frequently in order to inspect new posts
  • # I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors? Is gonna be again frequently in order to inspect new posts
    I just could not leave your web site before sugges
    Posted @ 2021/09/04 12:59
    I just could not leave your web site before suggesting that I actually enjoyed the standard information a person provide to your visitors?
    Is gonna be again frequently in order to inspect new posts
  • # Greetings! This is my first comment here so I just wanted to give a quick shout out and tell you I really enjoy reading through your posts. Can you recommend any other blogs/websites/forums that cover the same topics? Appreciate it!
    Greetings! This is my first comment here so I jus
    Posted @ 2021/09/05 10:11
    Greetings! This is my first comment here so I
    just wanted to give a quick shout out and tell you I really enjoy reading
    through your posts. Can you recommend any other blogs/websites/forums that cover the same topics?
    Appreciate it!
  • # Pretty! This was a really wonderful post. Many thanks for providing this info.
    Pretty! This was a really wonderful post. Many tha
    Posted @ 2021/09/06 6:27
    Pretty! This was a really wonderful post. Many thanks for providing this info.
  • # Pretty! This was a really wonderful post. Many thanks for providing this info.
    Pretty! This was a really wonderful post. Many tha
    Posted @ 2021/09/06 6:28
    Pretty! This was a really wonderful post. Many thanks for providing this info.
  • # Pretty! This was a really wonderful post. Many thanks for providing this info.
    Pretty! This was a really wonderful post. Many tha
    Posted @ 2021/09/06 6:29
    Pretty! This was a really wonderful post. Many thanks for providing this info.
  • # Pretty! This was a really wonderful post. Many thanks for providing this info.
    Pretty! This was a really wonderful post. Many tha
    Posted @ 2021/09/06 6:30
    Pretty! This was a really wonderful post. Many thanks for providing this info.
  • # Hey! Someone in my Facebook group shared this website with us so I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers! Superb blog and great style and design. scoliosis surgery https
    Hey! Someone in my Facebook group shared this webs
    Posted @ 2021/09/12 22:40
    Hey! Someone in my Facebook group shared this website with us so
    I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers!
    Superb blog and great style and design. scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery
  • # Hey! Someone in my Facebook group shared this website with us so I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers! Superb blog and great style and design. scoliosis surgery https
    Hey! Someone in my Facebook group shared this webs
    Posted @ 2021/09/12 22:41
    Hey! Someone in my Facebook group shared this website with us so
    I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers!
    Superb blog and great style and design. scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery
  • # Hey! Someone in my Facebook group shared this website with us so I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers! Superb blog and great style and design. scoliosis surgery https
    Hey! Someone in my Facebook group shared this webs
    Posted @ 2021/09/12 22:42
    Hey! Someone in my Facebook group shared this website with us so
    I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers!
    Superb blog and great style and design. scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery
  • # Hey! Someone in my Facebook group shared this website with us so I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers! Superb blog and great style and design. scoliosis surgery https
    Hey! Someone in my Facebook group shared this webs
    Posted @ 2021/09/12 22:43
    Hey! Someone in my Facebook group shared this website with us so
    I came to look it over. I'm definitely enjoying the information. I'm bookmarking and will be tweeting this to my followers!
    Superb blog and great style and design. scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery
  • # Why people still make use of to read news papers when in this technological world the whole thing is presented on web? quest bars https://www.iherb.com/search?kw=quest%20bars quest bars
    Why people still make use of to read news papers w
    Posted @ 2021/09/14 7:32
    Why people still make use of to read news papers
    when in this technological world the whole thing is presented on web?
    quest bars https://www.iherb.com/search?kw=quest%20bars quest
    bars
  • # Why people still make use of to read news papers when in this technological world the whole thing is presented on web? quest bars https://www.iherb.com/search?kw=quest%20bars quest bars
    Why people still make use of to read news papers w
    Posted @ 2021/09/14 7:33
    Why people still make use of to read news papers
    when in this technological world the whole thing is presented on web?
    quest bars https://www.iherb.com/search?kw=quest%20bars quest
    bars
  • # Why people still make use of to read news papers when in this technological world the whole thing is presented on web? quest bars https://www.iherb.com/search?kw=quest%20bars quest bars
    Why people still make use of to read news papers w
    Posted @ 2021/09/14 7:34
    Why people still make use of to read news papers
    when in this technological world the whole thing is presented on web?
    quest bars https://www.iherb.com/search?kw=quest%20bars quest
    bars
  • # Why people still make use of to read news papers when in this technological world the whole thing is presented on web? quest bars https://www.iherb.com/search?kw=quest%20bars quest bars
    Why people still make use of to read news papers w
    Posted @ 2021/09/14 7:35
    Why people still make use of to read news papers
    when in this technological world the whole thing is presented on web?
    quest bars https://www.iherb.com/search?kw=quest%20bars quest
    bars
  • # If some one desires to be updated with latest technologies therefore he must be visit this web page and be up to date all the time.
    If some one desires to be updated with latest tech
    Posted @ 2021/10/21 6:33
    If some one desires to be updated with latest technologies therefore he must be visit this web
    page and be up to date all the time.
  • # Actually no matter if someone doesn't know then its up to other people that they will assist, so here it occurs. part time jobs hired in 30 minutes https://parttimejobshiredin30minutes.wildapricot.org/
    Actually no matter if someone doesn't know then it
    Posted @ 2021/10/22 20:27
    Actually no matter if someone doesn't know then its up to other people that they will assist, so here it occurs.

    part time jobs hired in 30 minutes https://parttimejobshiredin30minutes.wildapricot.org/
  • # cost of ivermectin cream http://stromectolabc.com/
    stromectol otc
    Busjdhj
    Posted @ 2022/02/08 3:48
    cost of ivermectin cream http://stromectolabc.com/
    stromectol otc
  • # ivermectin 10 ml http://stromectolabc.com/
    ivermectin purchase
    Busjdhj
    Posted @ 2022/02/08 10:34
    ivermectin 10 ml http://stromectolabc.com/
    ivermectin purchase
  • # doxycycline online https://doxycyline1st.com/
    doxycycline 150 mg
    Doxycycline
    Posted @ 2022/02/26 9:56
    doxycycline online https://doxycyline1st.com/
    doxycycline 150 mg
  • # aOUiWohNIIEPM
    johnanz
    Posted @ 2022/04/19 9:49
    http://imrdsoacha.gov.co/silvitra-120mg-qrms
  • # ï»¿erectile dysfunction medication https://erectiledysfunctionpills.shop/
    Erectile
    Posted @ 2022/10/14 16:45
    erectile dysfunction medication https://erectiledysfunctionpills.shop/
  • # where can i buy prednisone without a prescription https://prednisone20mg.icu/
    Prednisone
    Posted @ 2022/10/15 7:18
    where can i buy prednisone without a prescription https://prednisone20mg.icu/
  • # free singles dating https://topdatingsites.fun/
    websites online
    DatingTop
    Posted @ 2022/11/14 17:26
    free singles dating https://topdatingsites.fun/
    websites online
  • # average cost of prednisone https://prednisone20mg.site/
    iv prednisone
    Prednisone
    Posted @ 2022/11/15 11:12
    average cost of prednisone https://prednisone20mg.site/
    iv prednisone
  • # online order prednisone https://prednisonepills.site/
    generic over the counter prednisone
    Prednisone
    Posted @ 2022/11/28 16:58
    online order prednisone https://prednisonepills.site/
    generic over the counter prednisone
  • # best otc ed pills https://edpills.science/
    ed pills online
    EdPills
    Posted @ 2023/01/07 8:36
    best otc ed pills https://edpills.science/
    ed pills online
  • # Everything information about medication. Read information now.
    https://edonlinefast.com
    Comprehensive side effect and adverse reaction information. Generic Name.
    EdOnline
    Posted @ 2023/02/17 14:10
    Everything information about medication. Read information now.
    https://edonlinefast.com
    Comprehensive side effect and adverse reaction information. Generic Name.
  • # cytotec online - https://cytotecsale.pro/#
    Cytotec
    Posted @ 2023/04/28 13:15
    cytotec online - https://cytotecsale.pro/#
  • # doxycycline vibramycin https://doxycycline.forum/ buy doxycycline
    Doxycycline
    Posted @ 2023/11/25 3:58
    doxycycline vibramycin https://doxycycline.forum/ buy doxycycline
  • # best medication for ed https://edpills.tech/# buy erection pills
    EdPills
    Posted @ 2023/12/22 23:54
    best medication for ed https://edpills.tech/# buy erection pills
  • # prednisone for sale https://prednisone.bid/ prednisone 30 mg
    Prednisone
    Posted @ 2023/12/27 2:38
    prednisone for sale https://prednisone.bid/ prednisone 30 mg
タイトル
名前
Url
コメント