Xamarin.Forms Shell将数据传递到弹出项视图



我想知道如何将项目从主shell页面传递到弹出型页面。或者,我想知道我是否可以在弹出页面中简单地使用一个对象(它已经存在于主shell的范围中(。我猜在后面的代码中有一些方法可以做到这一点。

具体来说,我有一个登录页面(它不是shell的一部分(,一旦用户登录,它就会导航到主shell。它会向主shell传递Jason web令牌。所以我在主外壳中有我需要的东西,我只是不知道如何在弹出页面中使用它!

以下是一些要演示的代码:

我有一个登录页面,其中有一个函数,它接受用户名并将其传递给shell:

async void SignInProcedure(System.Object sender, System.EventArgs e)
{
string name = nameEntry.Text;
if (name == "sally" || name == "Sally")
Application.Current.MainPage = new FlyoutMainShell(name);
else
{
await DisplayAlert("Login", "Login Failed", "Ok");
}
}

当然,我在shell的构造函数中有一个字符串:

using System;
using System.Collections.Generic;
using System.Windows.Input;
using Xamarin.Forms;
namespace ShellTest
{
public partial class FlyoutMainShell : Shell
{
public FlyoutMainShell(string name)
{
InitializeComponent();
}
}
}

现在,我不知道如何在弹出型项目"page1"one_answers"page2"中使用字符串"name",即简单地在页面上显示该名称。

<?xml version="1.0" encoding="UTF-8"?>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ShellTest.FlyoutMainShell"
xmlns:pages="clr-namespace:ShellTest">
<Shell.FlyoutHeaderTemplate>
<DataTemplate>
<Grid BackgroundColor="Gray" HeightRequest="200">
<Label Text="Here's the header!"
TextColor="White"
FontAttributes="Bold"
HorizontalOptions="Center"
VerticalOptions="Center" />
</Grid>
</DataTemplate>
</Shell.FlyoutHeaderTemplate>
<FlyoutItem x:Name="page1" Title="Go to Page 1">
<ShellContent ContentTemplate="{DataTemplate pages:Page1}"/>
</FlyoutItem>
<FlyoutItem x:Name="page2" Title="Go to Page 2">
<ShellContent ContentTemplate="{DataTemplate pages:Page2}" />
</FlyoutItem>
</Shell>

非常感谢您的帮助!

您可以使用Xamarin。要点:在Main Shell存储数据并在"page1"one_answers"page2"中获取/使用数据的首选项:

在主外壳中,存储数据:

public FlyoutMainShell(string name)
{
InitializeComponent();
Preferences.Set("uesr_name", name);
}

在其他页面中,获取值:

public Page1()
{
InitializeComponent();
var myValue = Preferences.Get("uesr_name", "default_value");
}

当用户注销时,您可以删除以下值:

Preferences.Remove("uesr_name");

相关内容

  • 没有找到相关文章

最新更新