C# WinForm中如何用代码控制Label控件的边框样式

还有就是如何用代码控制鼠标箭头的样式??急!!!
2024-12-26 13:16:30
推荐回答(1个)
回答1:

label1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;(设置边框样式)label1.Cursor = System.Windows.Forms.Cursors.IBeam;//(鼠标样式,还有很多鼠标样式,自己慢慢看)
你刚开始学c#?