作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,我正在尝试通过代码动态创建一个按钮,但是当我运行调试器时,模拟器中没有显示该按钮。
这是我在 viewdidload 方法中编写的代码
var button = UIButton.FromType(UIButtonType.RoundedRect);
button.Frame = new System.Drawing.RectangleF(100f, 100f, 100f, 100f);
button.SetTitle("click me", UIControlState.Normal);
我也尝试了其他代码,例如:
UIButton button = new UIButton(UIButtonType.InfoDark); //BTN
button.Frame = new CoreGraphics.CGRect(59, 59, 59, 59);
我认为这个问题很愚蠢,但我找不到解决方案。谢谢
最佳答案
你必须添加
它到你的UIView
(UIViewController
)
UIButton button = new UIButton(UIButtonType.InfoDark); //BTN
button.Frame = new CoreGraphics.CGRect(59, 59, 59, 59);
Add(button);
This is an alias for UIView.AddSubview, but uses the Add pattern as it allows C# 3.0 constructs to add subviews after creating the object.
关于c# - 以编程方式创建按钮单点触控,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38413544/
我是一名优秀的程序员,十分优秀!