ImageBrush myBrush = new ImageBrush();不适用于VS C#

时间:2018-06-20 17:32:05

标签: c# ios visual-studio xamarin.forms

我一直在尝试在应用页面上设置背景。

为此,许多人都说我需要使用ImageBrush对象。但是,尝试初始化以下代码行时会出错:

ImageBrush myBrush = new ImageBrush();

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

Xamarin Forms不支持ImageBrush。您可以只设置页面的BackgroundImage属性。

<ContentPage BackgroundImage="myImage.png" ... >