| c# Programming Glossary: sudokuviewmodelHow can I get the Position of textbox that has been pressed? http://stackoverflow.com/questions/15344022/how-can-i-get-the-position-of-textbox-that-has-been-pressed  var random new Random var board new List SudokuViewModel  for int i 0 i 9 i   for int j 0 j 9 j   board.Add new SudokuViewModel..  for int i 0 i 9 i   for int j 0 j 9 j   board.Add new SudokuViewModel Row i Column j Value random.Next 1 20    DataContext board .. 1 20    DataContext board   ViewModel public class SudokuViewModel INotifyPropertyChanged  public int Row get set public int Column.. 
 |