C# syncfusion从项目xamarin.forms文件上传弹出图像

C# syncfusion从项目xamarin.forms文件上传弹出图像,c#,image,xamarin.forms,popup,syncfusion,C#,Image,Xamarin.forms,Popup,Syncfusion,我正在使用synfusion控件处理Xamarin表单 我需要一个与弹出页面图像上传页面,但图像不是从项目图像文件夹上传 调试之后,主要的问题似乎是标签及其属性 因此,请建议我应该使用什么相同的 <sfPopup:SfPopupLayout x:Name="popupLayout"> <sfPopup:SfPopupLayout.PopupView> <sfPopup:PopupView HeaderTitle="Popup Imag

我正在使用
synfusion
控件处理
Xamarin表单

我需要一个与弹出页面图像上传页面,但图像不是从项目图像文件夹上传

调试之后,主要的问题似乎是标签及其属性

因此,请建议我应该使用什么相同的

<sfPopup:SfPopupLayout x:Name="popupLayout">
    <sfPopup:SfPopupLayout.PopupView>
            <sfPopup:PopupView HeaderTitle="Popup Imagess"
                           AnimationMode="None"
                           AutoSizeMode="None"
                           HeightRequest="{OnPlatform UWP={OnIdiom Phone=250, Tablet=290, Desktop=290}, Android=350, iOS=250}" >

                <sfPopup:PopupView.ContentTemplate>
                <DataTemplate>
                    <syncfusion:SfListView  x:Name="listView" Orientation="Horizontal" Padding="10,10,10,10"
                               SelectionMode="None" Grid.Row="1"
                               ItemsSource="{Binding Gallerynfo}"
                                ItemDoubleTapped="ListView_ItemDoubleTapped_1"
                               ItemSpacing="3">


                        <syncfusion:SfListView.ItemTemplate>
                            <DataTemplate>
                                <ViewCell>
                                    <ViewCell.View>
                                        <Frame BackgroundColor="#EEEEEE" Padding="2">

                                            <Grid x:Name="headerGrid" RowSpacing="1">
                                                <Label LineBreakMode="NoWrap"
         Text="photo" FontAttributes="Bold" TextColor="Black" HorizontalOptions="Center" VerticalOptions="Center"/>
                                                <Image Source="{Binding Image}" Aspect="Fill"/>
                                                <Label Grid.Row="1" Text="{Binding ImageTitle}"
                                   LineBreakMode="WordWrap"
                                   HorizontalTextAlignment="Start"
                                   VerticalTextAlignment="Center"
                                   TextColor="Black" Opacity="0.87"
                                   Margin="16,0,0,0">
                                                </Label>

                                                <Grid.RowDefinitions>
                                                    <RowDefinition Height="*" />

                                                </Grid.RowDefinitions>
                                                <Grid.ColumnDefinitions>
                                                    <ColumnDefinition Width="50" />
                                                    <ColumnDefinition Width="200" />
                                                    <ColumnDefinition Width="50" />
                                                </Grid.ColumnDefinitions>

                                            </Grid>
                                        </Frame>
                                    </ViewCell.View>
                                </ViewCell>
                            </DataTemplate>
                            </syncfusion:SfListView.ItemTemplate>
                    </syncfusion:SfListView>
                </DataTemplate>
            </sfPopup:PopupView.ContentTemplate>
        </sfPopup:PopupView>
    </sfPopup:SfPopupLayout.PopupView>
    <sfPopup:SfPopupLayout.Content>
        <StackLayout x:Name="layout">
            <Button x:Name="clickToShowPopup" Text="ClickToShowPopup" VerticalOptions="Start" 
           HorizontalOptions="FillAndExpand"  Clicked="ClickToShowPopup_Clicked" />
        </StackLayout>
    </sfPopup:SfPopupLayout.Content>
</sfPopup:SfPopupLayout>


请说明您迄今为止尝试了什么?请查看xmal代码。您所说的“但是图像不是从项目图像上传的”是什么意思?你正在上传到API吗?错误是什么?