On UWP, the IntegerEditor has a default max value of 100. This is not present on other platforms.
Current Workaround
The workaround is to explicitly set the max value via a NumericalRangeValidator
E.G.
[NumericalRangeValidator(int.MinValue, int.MaxValue)]
public int PropertyName { get; set; }