rrmanzano / maui-bindableproperty-generator

Source generator that automatically transforms fields into BindableProperties that can be used in MAUI
MIT License
132 stars 10 forks source link

Need add AttributesProperty #6

Closed yiszza closed 1 year ago

yiszza commented 1 year ago

[AutoBindable(AttributesProperty= "[EditorBrowsable(EditorBrowsableState.Never)], [TypeConverter(typeof(valueConverter))]")] bool isValue

to

[EditorBrowsable(EditorBrowsableState.Never)] [TypeConverter(typeof(valueConverter))] public bool IsValue { get => (bool)GetValue(IsValueProperty); set => SetValue(IsValueProperty, value); }

rrmanzano commented 1 year ago

Hi @yiszza thank you for your feedback, that is a very good feature, I will include this functionality in the next release