示例#1
0
 public BoardProviderMoc()
 {
     CardStore.Add(new Card {
         ColumnIndex = 0, Id = "A", Text = "Die A Karte"
     });
     CardStore.Add(new Card {
         ColumnIndex = 1, Id = "C", Text = "Die C Karte"
     });
 }
示例#2
0
 public void Create_card(string text, int columnIndex)
 {
     CardStore.Add(new Card {
         ColumnIndex = columnIndex, Id = text.GetHashCode().ToString(), Text = text
     });
 }