RectangleShape.CornerRadius 属性
获取或设置圆角矩形、圆角的方形形状的角的半径。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(True)> _
Public Property CornerRadius As Integer
[BrowsableAttribute(true)]
public int CornerRadius { get; set; }
[BrowsableAttribute(true)]
public:
property int CornerRadius {
int get ();
void set (int value);
}
[<BrowsableAttribute(true)>]
member CornerRadius : int with get, set
function get CornerRadius () : int
function set CornerRadius (value : int)
属性值
类型:System.Int32
表示半径的 Integer 。默认值为 0 条,或者没有半径。
备注
CornerRadius 最小值为 0。 这将导致矩形或方框,不带圆角。 最大值是高度或宽度 (哪些较小的两个除了) 的 RectangleShape 。 对于方形形状这将创建一个圆形。
示例
,当 RectangleShape 单击时,下面的示例更改 RectangleShape 的 CornerRadius 。 此示例要求您具有名为在窗体的 RectangleShape1 的 RectangleShape 。
Private Sub RectangleShape1_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles RectangleShape1.Click
Dim max As Integer
' Calculate the maximum radius.
max = Math.Min(RectangleShape1.Height, RectangleShape1.Width) / 2
' Check whether the maximum radius has been reached.
If RectangleShape1.CornerRadius = max Then
' Reset the radius to 0.
RectangleShape1.CornerRadius = 0
Else
' Increase the radius.
RectangleShape1.CornerRadius =
RectangleShape1.CornerRadius + 15
End If
End Sub
private void rectangleShape1_Click(System.Object sender, System.EventArgs e)
{
int max;
// Calculate the maximum radius.
max = Math.Min(rectangleShape1.Height, rectangleShape1.Width) / 2;
// Check whether the maximum radius has been reached.
if (rectangleShape1.CornerRadius == max)
// Reset the radius to 0.
{
rectangleShape1.CornerRadius = 0;
}
else
{
// Increase the radius.
rectangleShape1.CornerRadius = rectangleShape1.CornerRadius + 15;
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)