Class Name = UserType
--------------------------------------
public UserType(int id, string type)
{
this.Type= type;
this.id = id;
}
public int ID{ get; set; }
public string Type{ get; set; }
--------------------------------------
Method ;
public static List<UserType> GetUserType()
{
List<UserType> userType = new List<UserType>();
userType.Add(new UserType(1, "Admin"));
userType.Add(new UserType(2, "Employee"));
userType.Add(new UserType(3, "Visitor"));
return userType;
}
-------------------------------------------------------------------------------------------
From GUI
List<UserType> userTypeList = UserType.GetUserType();
userTypeList.Insert(0,new UserType(-1, "Select"));
cmbUserType.ItemsSource = userTypeList;
cmbUserType.DisplayMemberPath = "Type";
cmbUserType.SelectedValuePath = "ID";
cmbUserType.SelectedIndex = 0;
Note :
Use the Insert method:
No comments:
Post a Comment