需要在程序中动态的添加UI元素到容器中,比如一张图片
例如:
Image img = new Image();
img.Source = new BitmapImage(new Uri("maps/1.png", UriKind.Relative));
img.SetValue(Grid.RowProperty, 2);
img.SetValue(Grid.ColumnProperty, 2);
或者
Grid.SetRow(img, 3);
Grid.SetColumn(img, 3);
为什么就是不能显示出来呢?新手,望指教!谢谢!