Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1871
Properties on NumericEditor
posted

NumericEditor and CurrencyEditor  has a property called MaskInput. Using reflector I found the appropriate type converter. This code will produce a dropdown but it is empty. Any ideas how I can fix this?

[TypeConverter(typeof(MaskTypeConverter))]
[Editor(typeof(MaskUITypeEditor), typeof(UITypeEditor))]
public string MaskInput
{
    get { return this.ultraNumericEditor1.MaskInput; }
    set { this.ultraNumericEditor1.MaskInput = value; }
}