Hello!
I tried to set the MaxValue and MinValue Property of the ValueRange and NumericTextBox. But in both controls it doesn't work!
I set the ValueDataType to System.Int32, and write 4 in the Property of MaxValue or MinValue. But the only thing happens is:
A Window pops up "Properties Window" with the message "Property value is not valid" and Details "The value is not of type Int32. Parameter name: MinValue."
Whats wrong?
<
xcdg:ValueRangeTextBox Height="23" Name="valueRangeTextBox1" Width="120" ValueDataType="System.Int32" />
I also tried to set the value by code but when i was debugging it, it steps over but the MinValue was null after this line:
valueRangeTextBox1.MinValue = minValue;
Please help !!