2
Monotouch for iOSを使用して円の形のボタンを作成する方法は?Monotouch for Ipadを使用して円の形のボタンを作成するには?
Monotouch for iOSを使用して円の形のボタンを作成する方法は?Monotouch for Ipadを使用して円の形のボタンを作成するには?
は、カスタムボタンを作成します。
UIButton myButton = UIButton.FromType(UIButtonType.Custom);
は、あなたが望む形で、背景画像を割り当てます
myButton.SetBackgroundImage(UIImage.FromFile("circle.png"), UIControlState.Normal);
は標準UIButtonを使用して1を描画するhttp://www.mono-software.com/blog/post/Mono/193/Creating-transparent-rounded-buttons-in-MonoTouch/を参照してください。