如何到达xamarin菜单图标

hrirmatl  于 2023-02-27  发布在  其他
关注(0)|答案(1)|浏览(110)

我已经为Android创建了Xamarin表单菜单。我只看到文本,没有图标:

我想我只是不知道在哪里把图标正确地到达他们从我的菜单文件。我有这样的文件结构:

我尝试从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>

在哪里放置我的图标(哪个文件夹)以及如何访问它们?

s4chpxco

s4chpxco1#

应将图像添加到Resources/drawable目录中。
您可以参考如何设置本地映像的文章。

相关问题