GetAllLists() public method

public GetAllLists ( ) : object
return object
コード例 #1
0
ファイル: Lists.cs プロジェクト: rafek/SyncFx
 private void RefreshLists()
 {
     var storageHandler = new SqlCeStorageHandler();
     ListBoxLists.DataSource = storageHandler.GetAllLists();
     ListBoxLists.DisplayMember = "Name";
 }