gpt4 book ai didi

c# - 矩形角度属性

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:40 26 4
gpt4 key购买 nike

是否可以在C#中设置矩形angle属性?

我尝试了这个:

Rectangle r = new Rectangle();
r.Width = 5;
r.Height = 130;
r.Fill = Brushes.Black;
r.RotateTransform.AngleProperty = 30; // Here is the problem
canvas1.Children.Add(r);

最佳答案

一种方法是将RotateTransformation应用于对象的RenderTransform属性:

r.RenderTransform = new RotateTransform(30);

关于c# - 矩形角度属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10812383/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com