アイテムと価格を含むDictionary
があります。アイテムは一意ですが、アプリケーションの存続期間を通じてゆっくりと追加および更新されます(つまり、アイテムの文字列が事前にわかりません)。この構造をDataGridViewにバインドしたいので、次のようなフォームの更新を表示できます。
_Dictionary<string, double> _priceData = new Dictionary<string, double>();
BindingSource _bindingSource = new BindingSource();
dataGridView1.DataSource = _bindingSource;
_bindingSource.DataSource = _priceData;
_
ただし、Dictionary
はIList
(またはIListSource
、IBindingList
、またはIBindingListView
)を実装しないため、できません。
これを達成する方法はありますか?アイテムの一意のリストを保持する必要がありますが、既存のアイテムの価格も更新する必要があるため、Dictionary
は理想的なデータ構造ですが、フォームにデータを表示する方法が見つかりません。
更新:
以下のMarcの提案は非常にうまく機能しますが、実行中にDataGridViewを更新する方法はまだわかりません。
クラスレベルの変数があります:
_private DictionaryBindingList<string, decimal> bList;
_
次に、Main()
でインスタンス化します:
_bList = new DictionaryBindingList<string,decimal>(prices);
dgv.DataSource = bList;
_
その後、プログラムの実行中に、新しいエントリが辞書に追加された場合:
_prices.Add("foobar", 234.56M); bList.ResetBindings();
_
これでDataGridViewが更新されると思いました。何故なの?
Dictionary
にはいくつかの問題があります。 1つ目は(ご存じのとおり)必要なIList
/IListSource
を実装していません。 2つ目は、アイテムの順序が保証されておらず(実際、インデクサーがない)、キー(キーではなく)によるランダムアクセスが不可能であることです。
ただし...おそらくいくつかの煙と鏡で実行可能です。以下のようなもの:
_using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
static class Program
{
[STAThread]
static void Main()
{
Dictionary<string, decimal> prices =
new Dictionary<string, decimal>();
prices.Add("foo", 123.45M);
prices.Add("bar", 678.90M);
Application.EnableVisualStyles();
Form form = new Form();
DataGridView dgv = new DataGridView();
dgv.Dock = DockStyle.Fill;
form.Controls.Add(dgv);
var bl = prices.ToBindingList();
dgv.DataSource = bl;
Button btn = new Button();
btn.Dock = DockStyle.Bottom;
btn.Click += delegate
{
prices.Add(new Random().Next().ToString(), 0.1M);
bl.Reset();
};
form.Controls.Add(btn);
Application.Run(form);
}
public static DictionaryBindingList<TKey, TValue>
ToBindingList<TKey, TValue>(this IDictionary<TKey, TValue> data)
{
return new DictionaryBindingList<TKey, TValue>(data);
}
public sealed class Pair<TKey, TValue>
{
private readonly TKey key;
private readonly IDictionary<TKey, TValue> data;
public Pair(TKey key, IDictionary<TKey, TValue> data)
{
this.key = key;
this.data = data;
}
public TKey Key { get { return key; } }
public TValue Value
{
get
{
TValue value;
data.TryGetValue(key, out value);
return value;
}
set { data[key] = value; }
}
}
public class DictionaryBindingList<TKey, TValue>
: BindingList<Pair<TKey, TValue>>
{
private readonly IDictionary<TKey, TValue> data;
public DictionaryBindingList(IDictionary<TKey, TValue> data)
{
this.data = data;
Reset();
}
public void Reset()
{
bool oldRaise = RaiseListChangedEvents;
RaiseListChangedEvents = false;
try
{
Clear();
foreach (TKey key in data.Keys)
{
Add(new Pair<TKey, TValue>(key, data));
}
}
finally
{
RaiseListChangedEvents = oldRaise;
ResetBindings();
}
}
}
}
_
カスタム拡張メソッドの使用は完全にオプションであり、代わりにnew DictionaryBindingList<string,decimal>(prices)
を使用するだけでC#2.0などで削除できることに注意してください。
または、LINQでは、すてきで簡単です。
_var _priceDataArray = from row in _priceData select new { Item = row.Key, Price = row.Value };
_
これは、「Item」列と「Price」列にバインドできる必要があります。
グリッドビューでデータソースとして使用するには、ToArray()
を使用するだけです。
_dataGridView1.DataSource = _priceDataArray.ToArray();
_
おそらくこれが最も簡単な方法です:
Dictionary<char, double> myList = new Dictionary<char, double>();
dataGridView1.Columns.Add("Key", "KEY");
dataGridView1.Columns.Add("Values", "VALUES");
foreach (KeyValuePair<char,double> item in , myList)
{
dataGridView1.Rows.Add(item.Key, item.Value);
}
これを使用する場合、datagridviewはソート可能です。
これで数か月前に直面した問題が解決するでしょう。
アイテムの価格を更新し、更新を終了し、datagridに表示したいときに、dictionayを使用します。希望があなたを助ける
Grd.DataSource=null;
Grd.DataSource = Dictionary.Values.ToList();
にとって Dictionary<TKey, TValue>
バインディングにこれらのキーワードを使用できます:Key
およびValue
。
ComboBox
バインディングの例を次に示しますが、辞書をDataGridView
にバインドすることは可能です(列のDataPropertyName
をKey
またはValue
に設定します) 。
ComboBox1.DataSource =
new BindingSource(Pricelevel.GetPricelevels(), null); // GetPricelevels() returns Dictionary<string, string>
ComboBox1.ValueMember = "Key";
ComboBox1.DisplayMember = "Value";
次のようなクラスを作成します。
class MyRow
{
public string key;
public double value;
public string Key {get {return key;}}
public string Value {get {return value;}}
}
次に、それらのリストを作成します。
List<MyRow> rows = new List<MyRow>();
次に、それらをそのリストに挿入し、リストにデータバインドします。
余談ですが、LINQをお持ちの場合は、これを簡単にするToArray
メソッドがあると思います...
Marcの提案の拡張として、辞書の実行時操作も可能にする次のソリューションを提案したいと思います。
public class DictionaryBindingList<TKey, TValue> : BindingList<KeyValuePair<TKey, TValue>>
{
public readonly IDictionary<TKey, TValue> Dictionary;
public DictionaryBindingList()
{
Dictionary = new Dictionary<TKey, TValue>();
}
public void Add(TKey key, TValue value)
{
base.Add(new KeyValuePair<TKey, TValue>(key, value));
}
public void Remove(TKey key)
{
var item = this.First(x => x.Key.Equals(key));
base.Remove(item);
}
protected override void InsertItem(int index, KeyValuePair<TKey, TValue> item)
{
Dictionary.Add(item.Key, item.Value);
base.InsertItem(index, item);
}
protected override void RemoveItem(int index)
{
Dictionary.Remove(this[index].Key);
base.RemoveItem(index);
}
public int IndexOf(TKey key)
{
var item = this.FirstOrDefault(x => x.Key.Equals(key));
return item.Equals(null) ? -1 : base.IndexOf(item);
}
}
Bleiers DictionaryBindingListの拡張として、値を追加して既存の値を上書きできるように小さな変更を加えました。このメソッドをWAMP Websocketで使用しているため、コレクションを更新するだけで値を更新し続けることができます。次に、イベントを値に関連付ける必要があります。
public void Add(TKey key, TValue value)
{
if (Dictionary.ContainsKey(key))
{
int position = IndexOf(key);
Dictionary.Remove(key);
Remove(key);
InsertItem(position, new KeyValuePair<TKey, TValue>(key, value));
return;
}
base.Add(new KeyValuePair<TKey, TValue>(key, value));
}