gpt4 book ai didi

c# - UITextView - 设置边框颜色

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:44 24 4
gpt4 key购买 nike

在 MonoTouch 中,我试图设置边框颜色,但 BorderColor 由于其保护级别而无法访问并且无法更改。

public class BorderedUITextView:UITextView
{
public BorderedUITextView (RectangleF Frame):base(Frame)
{
this.Layer.BorderColor (UIColor.Black); ????????????
this.Layer.BorderWidth = 1.3f;
this.Layer.CornerRadius = 15f;
this.ClipsToBounds = true;
}
}

最佳答案

你也可以从 UiColor 中获取 CGColor

this.Layer.BorderColor  = UIColor.Black.CGColor;

关于c# - UITextView - 设置边框颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7747163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com