如何在其他视图/页面中访问此列表?

时间:2015-12-22 01:46:58

标签: c# xamarin xamarin.forms

我正在尝试访问我在页面中创建的列表,当我尝试在另一个页面上找到它时,我似乎无法找到它。 这就是代码的样子,正如你所看到的,我把它作为" Public"。

public partial class EventPage : ContentPage
{
    public List<theGuestListMembers> ourEventList = new List <theGuestListMembers>();
}

我想在另一个页面上的void(按钮)中使用它,但无法找到列表。

1 个答案:

答案 0 :(得分:0)

如果要从每个页面访问相同的列表,则需要将其指定为静态。所以你的声明如下:

 public static List<theGuestListMembers> ourEventList = new List <theGuestListMembers>();

因此,您可以使用以下方法访问其他页面中的相同列表:

EventPage.ourEventList