web-dev-qa-db-ja.com

ジェネリックList <string>をComboBoxにバインド

ComboBoxがあり、それに汎用リストをバインドしたい。以下のコードが機能しない理由を誰かが見ることができますか?バインディングソースにはデータが含まれていますが、ComboBoxデータソースを埋めることはできません。

FillCbxProject(DownloadData Down)
{
  BindingSource bindingSource = new BindingSource();
  bindingSource.DataSource = Down.ProjectList;
  cbxProjectd.DataSource = bindingSource;
}

余談ですが、クラスのインスタンスを渡すのは悪いことですか?

ありがとう!

17
Nathan

Bindメソッドを呼び出す必要があります。

cbxProjectd.DataBind();

これがwinformsの場合は、自分の名前が呼び出されていることを確認する必要があります。以下が機能します。

BindingSource bs = new BindingSource();
bs.DataSource = new List<string> { "test1", "test2" };
comboBox1.DataSource = bs;

ただし、リストを使用してComboBoxのDataSourceを直接設定できます。

30

これは簡単な方法です(正しく動作します):

List<string> my_list = new List<string>();
my_list.Add("item 1");
my_list.Add("item 2");
my_list.Add("item 3");
my_list.Add("item 4");
my_list.Add("item 5");
comboBox1.DataSource = my_list;
4
Bkillnest

BindingSourceを使用しないかなり単純な方法を次に示します。

最初に、おそらく「consts/utils」クラスに、文字列の一般的なリストを追加します。

public static List<string> Months = new List<string>
{
   "Jan",
   "Feb",
   "Mar",
   "Apr",
   "May",
   "Jun",
   "Jul",
   "Aug",
   "Sep",
   "Oct",
   "Nov",
   "Dec"
};

これらの文字列をコンボボックスに追加する方法は次のとおりです。

comboBoxMonth.Items.AddRange(UsageRptConstsAndUtils.Months.ToArray<object>());
1
B. Clay Shannon

上記のYuriy Faktorovichのコードを基にして、指定された週数のLongDateString形式の日付のリストを取得して、コンボボックスに割り当てる方法を次に示します。これは「月曜日」を使用しますが、目的に合わせて「月曜日」を他のDOWに置き換えるだけです。

private void PopulateSchedulableWeeks()
{
    int WEEKS_COUNT = 13;
    List<String> schedulableWeeks = PlatypusUtils.GetWeekBeginnings(WEEKS_COUNT).ToList();
    BindingSource bs = new BindingSource();
    bs.DataSource = schedulableWeeks;
    comboBoxWeekToSchedule.DataSource = bs;
}

public static List<String> GetWeekBeginnings(int countOfWeeks)
{
    // from http://stackoverflow.com/questions/6346119/datetime-get-next-tuesday
    DateTime today = DateTime.Today;
    // The (... + 7) % 7 ensures we end up with a value in the range [0, 6]
    int daysUntilMonday = ((int)DayOfWeek.Monday - (int)today.DayOfWeek + 7) % 7;
    DateTime nextMonday = today.AddDays(daysUntilMonday);

    List<String> mondays = new List<string>();
    mondays.Add(nextMonday.ToLongDateString());

    for (int i = 0; i < countOfWeeks; i++)
    {
        nextMonday = nextMonday.AddDays(7);
        mondays.Add(nextMonday.ToLongDateString());
    }
    return mondays;
}

...そして、実際の日付をコンボボックスに追加する場合も、次のように辞書を使用できます。

    int WEEKS_TO_OFFER_COUNT = 13;
    BindingSource bs = new BindingSource();
    Dictionary<String, DateTime> schedulableWeeks = AYttFMConstsAndUtils.GetWeekBeginningsDict(WEEKS_TO_OFFER_COUNT);             bs.DataSource = schedulableWeeks;
    comboBoxWeekToSchedule.DataSource = bs;
    comboBoxWeekToSchedule.DisplayMember = "Key";
    comboBoxWeekToSchedule.ValueMember = "Value";

public static Dictionary<String, DateTime> GetWeekBeginningsDict(int countOfWeeks)
{
    DateTime today = DateTime.Today;
    // The (... + 7) % 7 ensures we end up with a value in the range [0, 6]
    int daysUntilMonday = ((int)DayOfWeek.Monday - (int)today.DayOfWeek + 7) % 7;
    DateTime nextMonday = today.AddDays(daysUntilMonday);

    Dictionary<String, DateTime> mondays = new Dictionary<String, DateTime>();
    mondays.Add(nextMonday.ToLongDateString(), nextMonday);

    for (int i = 0; i < countOfWeeks; i++)
    {
        nextMonday = nextMonday.AddDays(7);
        mondays.Add(nextMonday.ToLongDateString(), nextMonday);
    }
    return mondays;
}
0
B. Clay Shannon
BindingSource bs = new BindingSource();
bs.DataSource = getprojectname();
comboBox1 = new ComboBox();
comboBox1.DataSource = bs;
0
Bhupinder