Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そこに WPF アプリケーションと Canvas があります。Canvas には Rectangle があります。プログラムが既に処理されている間に、高さや幅などのプロパティを変更するにはどうすればよいですか? 何かのようなもの:
int index = 0; var childByIndex = canvas.Children[index]; childByIndex.SetValue(Height, 15);
以下のように、設定するタイプの dp を指定する必要があります。
((Rectangle)canvas.Children[index]).SetValue(Rectangle.HeightProperty, 15.0);