我是 C# 和 WPF 的新手。
我想在 canvas 上简单地绘制一个矩形。
但我找不到决定矩形原点的变量。
void DrawRect(int x, int y)
{
Rectangle rec = new Rectangle
{
Fill = new SolidColorBrush(Colors.Red),
Width = width,
Height = y
...???
};
mainWindow.canvas.Children.Add(rec);
}
谢谢您的帮助。