如何在Monotouch下的iPhone上设置按钮背景图像?

时间:2011-05-02 08:56:02

标签: c# iphone ios uibutton xamarin.ios

如何在Monotouch下的iPhone上设置按钮背景图像? 如果你给我提供相同的样品会更好。 感谢。

1 个答案:

答案 0 :(得分:7)

这将在按钮上设置背景图像:

button.SetBackgroundImage (UIImage.FromBundle ("imageFile"), UIControlState.Normal);

您可以使用UIControlState参数为不同的控制状态设置不同的图像。