Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set ItemsSource of ListView?

Here I have defined my data myListOfEmployeeObjects:

public class App : Application
{
    public List<Employee> myListOfEmployeeObjects;

    public App ()
    {
        Employee emp1 = new Employee () {
            FirstName = "Max",
            LastName = "Mustermann",
            Twitter = "@fake1"
        };
        Employee emp2 = new Employee () {
            FirstName = "Evy",
            LastName = "Mustermann",
            Twitter = "@fake2"
        };
        myListOfEmployeeObjects = new List<Employee> {
            emp1, emp2
        };
        MainPage = new NavigationPage (new EmployeeListPage ());
    }
}

Than I have my XAML where I set the ItemsSource:

<ListView x:Name="listView"
                IsVisible="false"
                ItemsSource="{x:Static local:App.myListOfEmployeeObjects}"
                ItemSelected="EmployeeListOnItemSelected">

Should this work? Because I get

Xamarin.Forms.Xaml.XamlParseException: Type App not found in xmlns

public partial class EmployeeListPage : ContentPage {

    private ListView listView;

    private void InitializeComponent() {
        this.LoadFromXaml(typeof(EmployeeListPage)); // here the exception is thrown
        listView = this.FindByName <ListView>("listView");
    }
}

How can I set the ItemsSource of my XAML?

Edit:

Now I tried the suggestion from user2425632 and it works if I do the following changes:

  1. Adding xmlns:local="clr-namespace:HelloXamarinFormsWorld;assembly=HelloXamarinFormsWorld" to my XAML file

It now looks like the following

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:HelloXamarinFormsWorld;assembly=HelloXamarinFormsWorld"
             x:Class="HelloXamarinFormsWorld.EmployeeListPage"
             Title="Employee List">
    <ContentPage.Content>

Of course you have to change the names so that it suits to your project.

  1. Showing list view

I removed the IsVisible and the ItemSelected.

<ListView ItemsSource="{x:Static local:App.myListOfEmployeeObjects}">
  1. Make everything static

It has to be static, otherwise you get

No static member found for local:App.myListOfEmployeeObjects

public static List<Employee> myListOfEmployeeObjects { private set; get; }

public static void GetAllEmployees(){
    Employee emp1 = new Employee () {
        FirstName = "Max",
        LastName = "Mustermann",
        Twitter = "@fake1"
    };
    Employee emp2 = new Employee () {
        FirstName = "Eva",
        LastName = "Mustermann",
        Twitter = "@fake2"
    };
    myListOfEmployeeObjects = new List<Employee> {
        emp1, emp2
    };
}

public App ()
{
    GetAllEmployees ();
    MainPage = new NavigationPage (new EmployeeListPage ());
}
like image 457
testing Avatar asked Feb 26 '15 08:02

testing


1 Answers

So I haven't actually gotten around to doing this myself but from reading the documentation I have a suggestion which may be worth you trying.

ItemsSource="{x:Static local:App.myListOfEmployeeObjects}"

In your xaml you've said that the source is static but looking at your .cs file it isn't. Try the following:

public static List<Employee> myListOfEmployeeObjects { private set; get; }

and then try and set the object using a static function, eg.:

static App() {
    myListOfEmployeeObjects = something;
}

Then the list should be viewable on the page.

I used the following links which you may find useful:

Xamarin documentation on data-binding

Example cs code

Example xaml code

Hope that helps.

like image 159
I_Khanage Avatar answered Sep 30 '22 18:09

I_Khanage