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:
xmlns:local="clr-namespace:HelloXamarinFormsWorld;assembly=HelloXamarinFormsWorld"
to my XAML fileIt 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.
I removed the IsVisible
and the ItemSelected
.
<ListView ItemsSource="{x:Static local:App.myListOfEmployeeObjects}">
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 ());
}
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With