BoldDeskHelp desk software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Thanks....
In the previously provided screen shoots INotifyPropertyChanged is commented out. I was trying to debug the looping of the set TestId property, but the set still loops even with INotifyPropertyChanged commented out.
namespace TestITMobileApp.Model
{
public partial class TestInfoCS : INotifyPropertyChanged
{
You have defined as following |
Define CLR property like this |
public int TestID
{
get
{
return testId;
}
set
{
this.TestID = value;
RaisePropertyChanged("TestID");
}
} |
public int TestID
{
get
{
return testId;
}
set
{
this.testID = value;
RaisePropertyChanged("TestID");
}
} |