如何使用Monotouch for Ipad创建圆形按钮?

时间:2011-05-30 05:00:32

标签: c# ios xamarin.ios

如何使用Monotouch for iOS创建圆形按钮?

2 个答案:

答案 0 :(得分:4)

创建自定义按钮:

UIButton myButton = UIButton.FromType(UIButtonType.Custom);

使用您想要的形状指定背景图像:

myButton.SetBackgroundImage(UIImage.FromFile("circle.png"), UIControlState.Normal);

答案 1 :(得分:1)