0

そこに WPF アプリケーションと Canvas があります。Canvas には Rectangle があります。プログラムが既に処理されている間に、高さや幅などのプロパティを変更するにはどうすればよいですか? 何かのようなもの:

int index = 0; 
var childByIndex = canvas.Children[index]; 
childByIndex.SetValue(Height, 15);
4

2 に答える 2

2

以下のように、設定するタイプの dp を指定する必要があります。

((Rectangle)canvas.Children[index]).SetValue(Rectangle.HeightProperty, 15.0);
于 2013-09-21T17:55:13.013 に答える