© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•11mo ago•
10 replies
Zanji

XAML Binding

Trying to bind an input from an input in our viewlayer, but it comes back as null and i'm a bit uncertain as to what's going wrong. Linking everything i think is important (first time asking here, and very new to coding)


Employee class:

namespace MATURIXSHIFTPROJECT.Models
{
public class Employee
{
public int EmployeeID { get; set; }
public string Initials { get; set; }
public string Name { get; set; }
public string PhoneNumber { get; set; }
public string Email { get; set; }


public Employee(int employeeID, string initals, string name, string phoneNumber, string email)
{
EmployeeID = employeeID;
Initials = initals;
Name = name;
PhoneNumber = phoneNumber;
Email = email;
}

public Employee()
{
}
}


}
message.txt9.97KB
message.txt4.81KB
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

❔ Binding Xaml
C#CC# / help
3y ago
❔ xamarin xaml binding
C#CC# / help
4y ago
XAML Binding error, cannot find source
C#CC# / help
4y ago