A language based on Extensible Markup Language (XML) that enables developers to specify a hierarchy of objects with a set of properties and logic.
@Hui Liu-MSFT
Hi. Could you download the code I upload last night?
You should be able to download and inspect "MainWindow.XAML", "MainWindow.XAML.cs" , "PTAccess.cs".
I had to add the extension ".txt" to upload them.
So you should remove the ".txt" after downloading.
By placing a breakpoint I found out that the following statement is never executed:
set { diceThreshold=value; OnPropertyChanged("DiceThreshold");}
That explains why the property "DiceThreshold" is not updated with the value entered into TextBox "DiceTol.Text".
Why is such a setter statement never executed?
If you place a breakpoint in your code you will find out yourself that the setter statement is never executed.
Thank you