[原文內容如下]
Separator Line on Form [C#]
To simulate the line in Windows Forms use a Label control.
Set its Height to 2 pixels and BorderStyle to Fixed3D.
Thats all, see the example.
[C#]// separator bevel lineReference:Separator Line on Form [C#]
label1.AutoSize = false;
label1.Height = 2;
label1.BorderStyle = BorderStyle.Fixed3D;
沒有留言:
張貼留言
留個話吧:)