答案 0 :(得分:1)
每个UIView
都有CALayer
您可以使用Layer
属性检索。
此CALayer
包含制作包含特定CornerRadius
,BorderWidth
和BorderColor
的按钮所需的所有内容:
var button = new UIButton();
button.SetTitle("Hello", UIControlState.Normal);
button.Layer.CornerRadius = 5f;
button.Layer.BorderWidth = 2f;
button.Layer.BorderColor = UIColor.Green.CGColor;