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.
我想绘制一个具有以下要求的不同类型的箭头箭头位置,这是一个具有以下属性的枚举:左、右、两者、无。箭头类型:箭头的类型应与此使用枚举箭头大小再次枚举小,中和大请给我一些想法如何做到这一点。
您想在鼠标悬停在特定控件上时更改鼠标光标吗?您可以阅读有关 System.Windows.Forms.Cursor 的信息:
Cursor.Current = Cursors.Arrow;
您还可以设置自己定义的光标,并且可以更改大小。如果您真的想在控件上绘制箭头,您可以在控件上注册绘制事件
private void control_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; }
然后你可以使用图形实例来绘制各种东西。