Ich lade mein Bild mit plugins.media hoch, aber das Problem ist, dass es auf eine andere Foto-Bildseite umleitet und dort hochlädt.Xamarin.forms Ich möchte ein Bild auf dieselbe Seite hochladen
var profiletap = new TapGestureRecognizer();
profiletap.Tapped += async (s, e) =>
{
var file = await CrossMedia.Current.PickPhotoAsync();
if (file == null)
return;
await DisplayAlert("File Location", file.Path, "OK");
ImageSource im = ImageSource.FromStream(() =>
{
var stream = file.GetStream();
file.Dispose();
return stream;
});
await Navigation.PushModalAsync(new PhotoPage(im));
};
profile.GestureRecognizers.Add(profiletap);
Ameise hier ist Fotopagina Inhalt
public class PhotoPage : demopage
{
public PhotoPage(ImageSource img)
{
Content = new Image
{
VerticalOptions =LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Start,
Source =img
};
}
}
hey, danke, aber dadurch kann ich mein Bild nicht halten ..wenn ich zu einer anderen Seite navigiere, habe ich das hochgeladene Bild verloren ... ich möchte halten, bis ich mich abmelde –