英文:
how to reach icon for xamarin menu
问题
我在Xamarin Forms中为Android创建了菜单。 我只看到文本,没有图标:
我认为我简单地不知道在我的菜单文件中正确放置图标以便从中访问它们。 我的文件结构如下:
我尝试从FlyoutMenuPage.xaml文件中像这样访问PatientInfo.png:
<ListView.ItemsSource>
<x:Array Type="{x:Type local:FlyoutItemPage}">
<local:FlyoutItemPage Title="Mano duomenys" IconSource="PatientInfo.png" TargetPage="{x:Type local:PatientInfo}"/>
</x:Array>
</ListView.ItemsSource>
在哪里放置我的图标(哪个文件夹)以及如何访问它们?
英文:
I have created menu in Xamarin forms for Android. I only see text, no icons:
I think I simply dont know where to put icons correctly to reach them from my menu file. I have files structure like this:
And I try to reach PatientInfo.png from FlyoutMenuPage.xaml file like this:
<ListView.ItemsSource>
<x:Array Type="{x:Type local:FlyoutItemPage}">
<local:FlyoutItemPage Title="Mano duomenys" IconSource="PatientInfo.png" TargetPage="{x:Type local:PatientInfo}"/>
</x:Array>
</ListView.ItemsSource>
Where to put my icons (which folder) and how to reach them?
答案1
得分: 1
图片应添加到“Resources/drawable”目录中。
您可以参考关于如何设置本地图像的文章。
英文:
The images should be added in the Resources/drawable
directory.
You can refer to the article about How to set the local image.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论