とりこらぼ。

Learn from yesterday,
live for today,
hope for tomorrow.

目次

Blog 利用状況

ニュース

プロフィール

  • 名前:とりこびと
    とるに足らない人間です。

  • Wankuma MVP
    for '平々凡々'

Web Site

  • Memo(Of T)

もうひとつの Blog

広告っぽい

書庫

日記カテゴリ

データバインディングのおべんきょ。その8。

前回までのあらすじ

ユー、BindingList でやっちゃいなよ。

さて、そんな感じで List クラスでのデータバインディングをほっぽりだしていましたが、

データバインディングのおべんきょ。その4。

に戻って、List クラスでバインドをやっちゃう方法を書きます。以前も書きましたが、List クラス単独では難しそうですので、ちょっくら調べてきました。

今回から数回のエントリで使用するクラスは、BindingSource クラスです。MSDNだと、こちら↓

MSDN:BindingSource クラス(http://msdn2.microsoft.com/ja-jp/library/system.windows.forms.bindingsource(VS.80).aspx)

MSDN:BindingSource コンポーネント(http://msdn2.microsoft.com/ja-jp/library/h974h4y2(VS.80).aspx)

とりあえず、大きいクラスです。あ、気持ち的にですけどね。なので、今回はList クラスでバインドをやっちゃう部分だけ書きますね。

今回は見てもらったほうが分かりやすいので先にコードをすべてお見せします。

Imports System
Imports System.Windows.Forms


Public Class Form1

    Private _entertainerList As List(Of WankumaEntertainer)
    Private _entertainersBindingSource As BindingSource

    Public Sub New()
        InitializeComponent()
        Me.components = New System.ComponentModel.Container         Me._entertainersBindingSource = New BindingSource(Me.components)
    End Sub

    Private Sub Form1_Load(ByVal sender As ObjectByVal e As EventArgs) Handles MyBase.Load
        Me._entertainerList = New List(Of WankumaEntertainer)
        Me._entertainerList.Add(New WankumaEntertainer("ぽぴ王子"))         Me._entertainerList.Add(New WankumaEntertainer("アクア"))         Me._entertainerList.Add(New WankumaEntertainer("R・田中一郎"))
        Me._entertainersBindingSource.DataSource = Me._entertainerList
        Me.ComboBox1.DataSource = Me._entertainersBindingSource         Me.ComboBox1.DisplayMember = "Name"
    End Sub

    Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button1.Click
        Me._entertainersBindingSource.Add(New WankumaEntertainer("とりこびと"))
    End Sub

    Private Sub Button2_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button2.Click
        For Each entertainer As WankumaEntertainer In Me._entertainerList
            If entertainer.Name = "とりこびと" Then
                entertainer.Name = "とりこびと(仮)"
            End If
        Next
        Me._entertainersBindingSource.ResetBindings(False)
    End Sub

End Class

さくっと内容を書きますと、

    Private Sub Form1_Load(ByVal sender As ObjectByVal e As EventArgs) Handles MyBase.Load

        Me._entertainerList = New List(Of WankumaEntertainer)
        Me._entertainerList.Add(New WankumaEntertainer("ぽぴ王子"))         Me._entertainerList.Add(New WankumaEntertainer("アクア"))         Me._entertainerList.Add(New WankumaEntertainer("R・田中一郎"))
        Me._entertainersBindingSource.DataSource = Me._entertainerList
        Me.ComboBox1.DataSource = Me._entertainersBindingSource         Me.ComboBox1.DisplayMember = "Name"
    End Sub

この部分、見た感じ _entertainerList と ComboBox1 の間に _entertainersBindingSource を挟み込んだ感じになっていますね。

    Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button1.Click

        Me._entertainersBindingSource.Add(New WankumaEntertainer("とりこびと"))
    End Sub

_entertainerList に直接ではなく、_entertainersBindingSource に追加しています。

    Private Sub Button2_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles Button2.Click

        For Each entertainer As WankumaEntertainer In Me._entertainerList
            If entertainer.Name = "とりこびと" Then
                entertainer.Name = "とりこびと(仮)"
            End If
        Next
        Me._entertainersBindingSource.ResetBindings(False)
    End Sub

_entertainersBindingSource.ResetBindings メソッドの呼び出しです。これってその6でやった BindingList.ResetBindings と同じ感じっぽいですよね。

ではでは、実行してみてください♪Button1 をクリックして 'とりこびと' を追加し、Button2 をクリックして変更してみてください。でもってその後 ComboBox1 のリストを確認してみてください。


List クラスでもでけたでぇ!


どうやら BindingSource クラスは データとコントロールの仲を取り持ってくれているっぽいですね。データに直接ではなく、BindingSource に追加(Add メソッド)すると、ListChanged イベントを発生させてくれたり、ResetBindings メソッドをもってくれていたりととっても大助かりです。

理由あって IBindingList を実装できないクラスをバインドしたいときなど、このクラスでさくっとできそうですね。

投稿日時 : 2007年5月31日 10:19

Feedback

# データバインディングのおべんきょ。その12。 2007/06/04 16:33 とりこびと ぶろぐ。

データバインディングのおべんきょ。その12。

# Good article. I definitely appreciate this site. Keep it up! 2021/08/30 14:47 Good article. I definitely appreciate this site.

Good article. I definitely appreciate this site. Keep it up!

# At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news. 2021/09/02 0:49 At this moment I am ready to do my breakfast, afte

At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news.

# At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news. 2021/09/02 0:50 At this moment I am ready to do my breakfast, afte

At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news.

# At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news. 2021/09/02 0:51 At this moment I am ready to do my breakfast, afte

At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news.

# At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news. 2021/09/02 0:52 At this moment I am ready to do my breakfast, afte

At this moment I am ready to do my breakfast, after having my breakfast coming yet again to read additional news.

# This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging. 2021/09/04 17:20 This paragraph is truly a pleasant one it helps ne

This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging.

# This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging. 2021/09/04 17:21 This paragraph is truly a pleasant one it helps ne

This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging.

# This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging. 2021/09/04 17:22 This paragraph is truly a pleasant one it helps ne

This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging.

# This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging. 2021/09/04 17:23 This paragraph is truly a pleasant one it helps ne

This paragraph is truly a pleasant one it helps new internet people, who are wishing for blogging.

# Hey I am so glad I found your website, I really found you by error, while I was looking on Bing for something else, Regardless I am here now and would just like to say kudos for a remarkable post and a all round thrilling blog (I also love the theme/des 2021/09/05 8:02 Hey I am so glad I found your website, I really fo

Hey I am so glad I found your website, I really found you by error, while
I was looking on Bing for something else, Regardless I am here now and would just like
to say kudos for a remarkable post and a all round
thrilling blog (I also love the theme/design), I don't have
time to browse it all at the moment but I have bookmarked it and
also added your RSS feeds, so when I have time I will
be back to read a lot more, Please do keep up the fantastic work.

# In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place. 2021/09/05 21:26 In fact when someone doesn't understand after that

In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place.

# In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place. 2021/09/05 21:27 In fact when someone doesn't understand after that

In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place.

# In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place. 2021/09/05 21:28 In fact when someone doesn't understand after that

In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place.

# In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place. 2021/09/05 21:29 In fact when someone doesn't understand after that

In fact when someone doesn't understand after that its up to other viewers that they will help, so here it takes place.

# This is a topic that's close to my heart... Best wishes! Exactly where are your contact details though? quest bars http://bit.ly/3C2tkMR quest bars 2021/09/10 18:01 This is a topic that's close to my heart... Best

This is a topic that's close to my heart... Best wishes!
Exactly where are your contact details though?

quest bars http://bit.ly/3C2tkMR quest bars

# This is a topic that's close to my heart... Best wishes! Exactly where are your contact details though? quest bars http://bit.ly/3C2tkMR quest bars 2021/09/10 18:02 This is a topic that's close to my heart... Best

This is a topic that's close to my heart... Best wishes!
Exactly where are your contact details though?

quest bars http://bit.ly/3C2tkMR quest bars

# This is a topic that's close to my heart... Best wishes! Exactly where are your contact details though? quest bars http://bit.ly/3C2tkMR quest bars 2021/09/10 18:03 This is a topic that's close to my heart... Best

This is a topic that's close to my heart... Best wishes!
Exactly where are your contact details though?

quest bars http://bit.ly/3C2tkMR quest bars

# This is a topic that's close to my heart... Best wishes! Exactly where are your contact details though? quest bars http://bit.ly/3C2tkMR quest bars 2021/09/10 18:04 This is a topic that's close to my heart... Best

This is a topic that's close to my heart... Best wishes!
Exactly where are your contact details though?

quest bars http://bit.ly/3C2tkMR quest bars

# We're a group of volunteers and opening a new scheme in our community. Your website provided us with valuable information to work on. You have done a formidable job and our entire community will be thankful to you. quest bars https://www.iherb.com/search 2021/09/12 13:05 We're a group of volunteers and opening a new sche

We're a group of volunteers and opening a new scheme in our
community. Your website provided us with valuable information to work
on. You have done a formidable job and our entire community will be thankful to you.
quest bars https://www.iherb.com/search?kw=quest%20bars quest
bars

# May I simply just say what a relief to uncover someone who genuinely knows what they're talking about on the internet. You certainly realize how to bring a problem to light and make it important. More and more people have to read this and understand this 2021/09/12 21:32 May I simply just say what a relief to uncover som

May I simply just say what a relief to uncover someone who genuinely knows what they're talking
about on the internet. You certainly realize how to
bring a problem to light and make it important. More and more people have to read this and understand
this side of your story. I can't believe you're not more popular
given that you certainly have the gift. ps4 https://j.mp/3nkdKIi ps4

# May I simply just say what a relief to uncover someone who genuinely knows what they're talking about on the internet. You certainly realize how to bring a problem to light and make it important. More and more people have to read this and understand this 2021/09/12 21:33 May I simply just say what a relief to uncover som

May I simply just say what a relief to uncover someone who genuinely knows what they're talking
about on the internet. You certainly realize how to
bring a problem to light and make it important. More and more people have to read this and understand
this side of your story. I can't believe you're not more popular
given that you certainly have the gift. ps4 https://j.mp/3nkdKIi ps4

# May I simply just say what a relief to uncover someone who genuinely knows what they're talking about on the internet. You certainly realize how to bring a problem to light and make it important. More and more people have to read this and understand this 2021/09/12 21:34 May I simply just say what a relief to uncover som

May I simply just say what a relief to uncover someone who genuinely knows what they're talking
about on the internet. You certainly realize how to
bring a problem to light and make it important. More and more people have to read this and understand
this side of your story. I can't believe you're not more popular
given that you certainly have the gift. ps4 https://j.mp/3nkdKIi ps4

# May I simply just say what a relief to uncover someone who genuinely knows what they're talking about on the internet. You certainly realize how to bring a problem to light and make it important. More and more people have to read this and understand this 2021/09/12 21:35 May I simply just say what a relief to uncover som

May I simply just say what a relief to uncover someone who genuinely knows what they're talking
about on the internet. You certainly realize how to
bring a problem to light and make it important. More and more people have to read this and understand
this side of your story. I can't believe you're not more popular
given that you certainly have the gift. ps4 https://j.mp/3nkdKIi ps4

# Thanks for finally writing about >データバインディングのおべんきょ。その8。 <Liked it! part time jobs hired in 30 minutes https://parttimejobshiredin30minutes.wildapricot.org/ 2021/10/22 18:53 Thanks for finally writing about >データバインディングのおべ

Thanks for finally writing about >データバインディングのおべんきょ。その8。 <Liked it! part time jobs hired in 30 minutes https://parttimejobshiredin30minutes.wildapricot.org/

# My partner and I stumbled over here by a different web address and thought I should check things out. I like what I see so now i'm following you. Look forward to going over your web page yet again. 2021/11/15 10:45 My partner and I stumbled over here by a different

My partner and I stumbled over here by a different
web address and thought I should check things out.
I like what I see so now i'm following you. Look forward to
going over your web page yet again.

# It's really a great and useful piece of info. I am glad that you shared this useful info with us. Please stay us informed like this. Thanks for sharing. 2022/01/01 18:19 It's really a great and useful piece of info. I am

It's really a great and useful piece of info. I am glad that you shared
this useful info with us. Please stay us informed like this.
Thanks for sharing.

# ivermectin lice http://stromectolabc.com/
stromectol 6 mg tablet 2022/02/08 2:38 Busjdhj

ivermectin lice http://stromectolabc.com/
stromectol 6 mg tablet

# ivermectin oral 0 8 http://stromectolabc.com/
how much does ivermectin cost 2022/02/08 9:24 Busjdhj

ivermectin oral 0 8 http://stromectolabc.com/
how much does ivermectin cost

# ivermectin 8 mg http://stromectolabc.com/
buy ivermectin pills 2022/02/08 16:27 Busjdhj

ivermectin 8 mg http://stromectolabc.com/
buy ivermectin pills

# I go to see day-to-day some sites and sites to read content, except this webpage provides quality based content. 2022/03/23 14:29 I go to see day-to-day some sites and sites to rea

I go to see day-to-day some sites and sites to read
content, except this webpage provides quality based content.

# I go to see day-to-day some sites and sites to read content, except this webpage provides quality based content. 2022/03/23 14:30 I go to see day-to-day some sites and sites to rea

I go to see day-to-day some sites and sites to read
content, except this webpage provides quality based content.

# I go to see day-to-day some sites and sites to read content, except this webpage provides quality based content. 2022/03/23 14:31 I go to see day-to-day some sites and sites to rea

I go to see day-to-day some sites and sites to read
content, except this webpage provides quality based content.

# I go to see day-to-day some sites and sites to read content, except this webpage provides quality based content. 2022/03/23 14:32 I go to see day-to-day some sites and sites to rea

I go to see day-to-day some sites and sites to read
content, except this webpage provides quality based content.

# Great article. I'm going through many of these issues as well.. 2022/06/05 17:33 Great article. I'm going through many of these iss

Great article. I'm going through many of these issues as well..

# At this moment I am going away to do my breakfast, afterward having my breakfast coming again to read additional news. 2022/06/11 7:26 At this moment I am going away to do my breakfast,

At this moment I am going away to do my breakfast, afterward having my breakfast coming again to read additional news.

# May I just say what a comfort to discover somebody that truly understands what they are talking about over the internet. You definitely know how to bring a problem to light and make it important. More and more people need to look at this and understand t 2022/06/12 2:31 May I just say what a comfort to discover somebody

May I just say what a comfort to discover somebody that truly understands what they are talking about over the internet.
You definitely know how to bring a problem to light and make it important.
More and more people need to look at this and understand this
side of the story. I was surprised that you are not more popular given that you surely have the gift.

# May I just say what a comfort to discover somebody that truly understands what they are talking about over the internet. You definitely know how to bring a problem to light and make it important. More and more people need to look at this and understand t 2022/06/12 2:33 May I just say what a comfort to discover somebody

May I just say what a comfort to discover somebody that truly understands what they are talking about over the internet.
You definitely know how to bring a problem to light and make it important.
More and more people need to look at this and understand this
side of the story. I was surprised that you are not more popular given that you surely have the gift.

# Thanks for any other great article. Where else could anyone get that kind of info in such an ideal approach of writing? I have a presentation subsequent week, and I am at the search for such information. 2022/06/12 3:07 Thanks for any other great article. Where else co

Thanks for any other great article. Where else could anyone get
that kind of info in such an ideal approach of writing?
I have a presentation subsequent week, and I am at the search for such information.

# Thanks for another excellent post. Where else may anybody get that type of information in such an ideal means of writing? I have a presentation subsequent week, and I'm on the search for such info. 2022/06/12 14:14 Thanks for another excellent post. Where else may

Thanks for another excellent post. Where else may
anybody get that type of information in such an ideal means of
writing? I have a presentation subsequent week, and I'm on the search for such info.

# Thanks for another excellent post. Where else may anybody get that type of information in such an ideal means of writing? I have a presentation subsequent week, and I'm on the search for such info. 2022/06/12 14:15 Thanks for another excellent post. Where else may

Thanks for another excellent post. Where else may
anybody get that type of information in such an ideal means of
writing? I have a presentation subsequent week, and I'm on the search for such info.

# Thanks for another excellent post. Where else may anybody get that type of information in such an ideal means of writing? I have a presentation subsequent week, and I'm on the search for such info. 2022/06/12 14:16 Thanks for another excellent post. Where else may

Thanks for another excellent post. Where else may
anybody get that type of information in such an ideal means of
writing? I have a presentation subsequent week, and I'm on the search for such info.

# Thanks for another excellent post. Where else may anybody get that type of information in such an ideal means of writing? I have a presentation subsequent week, and I'm on the search for such info. 2022/06/12 14:17 Thanks for another excellent post. Where else may

Thanks for another excellent post. Where else may
anybody get that type of information in such an ideal means of
writing? I have a presentation subsequent week, and I'm on the search for such info.

# constantly i used to read smaller articles that also clear their motive, and that is also happening with this article which I am reading here. 2022/07/15 20:38 constantly i used to read smaller articles that

constantly i used to read smaller articles that also clear their motive,
and that is also happening with this article which I am reading here.

# This is my first time pay a visit at here and i am really impressed to read everthing at single place. 2022/08/03 16:01 This is my first time pay a visit at here and i am

This is my first time pay a visit at here and
i am really impressed to read everthing at single place.

# prescription meds without the prescriptions: https://medrxfast.com/ 2022/08/07 8:50 MedsRxFast

prescription meds without the prescriptions: https://medrxfast.com/

# This is my first time pay a visit at here and i am in fact impressed to read all at single place. 2022/08/10 11:52 This is my first time pay a visit at here and i a

This is my first time pay a visit at here and i am in fact
impressed to read all at single place.

# This is my first time pay a visit at here and i am in fact impressed to read all at single place. 2022/08/10 11:53 This is my first time pay a visit at here and i a

This is my first time pay a visit at here and i am in fact
impressed to read all at single place.

# This is my first time pay a visit at here and i am in fact impressed to read all at single place. 2022/08/10 11:54 This is my first time pay a visit at here and i a

This is my first time pay a visit at here and i am in fact
impressed to read all at single place.

# Good answers in return of this issue with genuine arguments and explaining the whole thing concerning that. 2022/08/11 23:56 Good answers in return of this issue with genuine

Good answers in return of this issue with genuine arguments and explaining the whole
thing concerning that.

# If some one wants to be updated with newest technologies afterward he must be visit this web page and be up to date every day. 2022/08/18 14:03 If some one wants to be updated with newest techno

If some one wants to be updated with newest technologies afterward he must be
visit this web page and be up to date every day.

# bactrim antibiotic online prescriptions https://antibiotic.best/ 2022/10/08 8:53 Antibiotic

bactrim antibiotic online prescriptions https://antibiotic.best/

# ed pills that really work https://erectiledysfunctionpills.shop/ 2022/10/14 22:41 Erectile

ed pills that really work https://erectiledysfunctionpills.shop/

# prednisone 12 mg https://prednisone20mg.icu/ 2022/10/15 13:13 Prednisone

prednisone 12 mg https://prednisone20mg.icu/

# the dating game https://datingtopreview.com/
dating site online 2022/10/17 20:30 Dating

the dating game https://datingtopreview.com/
dating site online

# What's Going down i am new to this, I stumbled upon this I have discovered It positively useful and it has aided me out loads. I hope to give a contribution & assist other users like its helped me. Good job. 2022/11/27 1:51 What's Going down i am new to this, I stumbled up

What's Going down i am new to this, I stumbled upon this
I have discovered It positively useful and it has aided me out
loads. I hope to give a contribution & assist other users
like its helped me. Good job.

# What's Going down i am new to this, I stumbled upon this I have discovered It positively useful and it has aided me out loads. I hope to give a contribution & assist other users like its helped me. Good job. 2022/11/27 1:52 What's Going down i am new to this, I stumbled up

What's Going down i am new to this, I stumbled upon this
I have discovered It positively useful and it has aided me out
loads. I hope to give a contribution & assist other users
like its helped me. Good job.

# What's Going down i am new to this, I stumbled upon this I have discovered It positively useful and it has aided me out loads. I hope to give a contribution & assist other users like its helped me. Good job. 2022/11/27 1:53 What's Going down i am new to this, I stumbled up

What's Going down i am new to this, I stumbled upon this
I have discovered It positively useful and it has aided me out
loads. I hope to give a contribution & assist other users
like its helped me. Good job.

# What's Going down i am new to this, I stumbled upon this I have discovered It positively useful and it has aided me out loads. I hope to give a contribution & assist other users like its helped me. Good job. 2022/11/27 1:54 What's Going down i am new to this, I stumbled up

What's Going down i am new to this, I stumbled upon this
I have discovered It positively useful and it has aided me out
loads. I hope to give a contribution & assist other users
like its helped me. Good job.

# cost of prednisone tablets https://prednisonepills.site/
prednisone 2.5 mg daily 2022/11/28 23:43 Prednisone

cost of prednisone tablets https://prednisonepills.site/
prednisone 2.5 mg daily

# local single women near me https://datingonlinehot.com/
american dating 2022/12/09 19:12 Dating

local single women near me https://datingonlinehot.com/
american dating

# cheap erectile dysfunction pill https://edpills.science/
top ed pills 2023/01/07 13:44 EdPills

cheap erectile dysfunction pill https://edpills.science/
top ed pills

# buy cytotec over the counter - https://cytotecsale.pro/# 2023/04/28 23:23 Cytotec

buy cytotec over the counter - https://cytotecsale.pro/#

# over the counter essentials https://overthecounter.pro/# 2023/05/08 18:09 OtcJikoliuj

over the counter essentials https://overthecounter.pro/#

# best non prescription ed pills https://edpillsotc.store/# - online ed pills 2023/10/07 21:12 EdPills

best non prescription ed pills https://edpillsotc.store/# - online ed pills

# where can i buy generic valtrex https://valtrex.auction/ buy generic valtrex on line 2023/10/24 17:39 Valtrex

where can i buy generic valtrex https://valtrex.auction/ buy generic valtrex on line

# doxycycline 100mg capsules https://doxycycline.forum/ generic doxycycline 2023/11/25 9:02 Doxycycline

doxycycline 100mg capsules https://doxycycline.forum/ generic doxycycline

# comprare farmaci online all'estero https://farmaciait.pro/ farmacie on line spedizione gratuita 2023/12/04 7:02 Farmacia

comprare farmaci online all'estero https://farmaciait.pro/ farmacie on line spedizione gratuita

# sweet bonanza demo oyna https://sweetbonanza.bid/ - pragmatic play sweet bonanza
2024/03/27 22:09 Bonanzaj

sweet bonanza demo oyna https://sweetbonanza.bid/ - pragmatic play sweet bonanza

タイトル
名前
Url
コメント