I create an array:
TextBox[] textarray = new TextBox[100];
Then, in a loop, set these parameters, all array elements located in uniform Grid1
textarray[i] = new TextBox();
textarray[i].Height = 30;
textarray[i].Width = 50;
uniformGrid1.Children.Add(textarray[i]);
How to create events Click or double-click to the entire array of elements?
Sorry, my English.
user241423
source
share