Tizen Mobile中的图像不可见

时间:2017-06-17 20:41:42

标签: image mobile shared tizen

我在Visual Studio 2017中使用Xamarin表单中的<Image Source="flower.png" />代码在Tizen Mobile中显示图像,但它没有显示。我将图像文件放在Tizen项目的共享\ res文件夹中。

1 个答案:

答案 0 :(得分:1)

将图像复制到&#39; .TizenMobile&#39;项目&#39; res&#39; 目录(不在&#39;共享&gt; res&#39;仅&#39; res&#39;(root))。然后在解决方案资源管理器中:右键单击&#39; res&#39; res文件夹和添加&gt;现有项目&gt; png图片

在ProjectCode(Portable)C#文件中:

 MainPage = new ContentPage
        {
            Content = new StackLayout
            {
                VerticalOptions = LayoutOptions.Center,
                Children = {
                        new Image {
                            Aspect = Aspect.AspectFit,
                            Source = ImageSource.FromFile("flower.png")
                        }
                }
            }
        };

或者您甚至可以尝试XAML。

enter image description here