Scheduler for WPF
ContactStorage のマッピングとデータソースの設定

ContactStorage のマッピングとデータソースを設定するには、次のコードを使用します。

C#
コードのコピー
// ContactStorage のマッピングとデータソースを設定します
ContactStorage cntStorage = Scheduler.DataStorage.ContactStorage;
((INotifyCollectionChanged)cntStorage.Contacts).CollectionChanged += new NotifyCollectionChangedEventHandler(Contacts_CollectionChanged);
cntStorage.Mappings.IdMapping.MappingName = "CustomerId";
cntStorage.Mappings.TextMapping.MappingName = "CompanyName";
cntStorage.DataSource = dataSet.Customers;