GetAllBookmarks() public méthode

public GetAllBookmarks ( ) : IList
Résultat IList
Exemple #1
0
 void LinkDataSource()
 {
     bindedList                   = new List <BookmarkManager.Entry> (bkManager.GetAllBookmarks());
     bkGridView.DataSource        = bindedList;
     bkGridView.CellValueChanged += (s, e) => bkManager.CommitBookmarkChange(bindedList[e.RowIndex]);
 }