You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The methods View.Create, View.Build* and View.Update* are currently generated with the attribute [<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>].
This is good most of the time because this would otherwise pollutes Intellisense when writing views.
But when making custom controls, this makes them undiscoverable and we need to either guess the name of the functions or find them on Github. Either way this is bad.
I think one way to improve that would be to put them in their separate module?
That way when writing views, View.* wouldn't show build methods, and when making custom controls it would be shown to the developers.
The text was updated successfully, but these errors were encountered:
The methods
View.Create
,View.Build*
andView.Update*
are currently generated with the attribute[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]
.This is good most of the time because this would otherwise pollutes Intellisense when writing views.
But when making custom controls, this makes them undiscoverable and we need to either guess the name of the functions or find them on Github. Either way this is bad.
I think one way to improve that would be to put them in their separate module?
That way when writing views,
View.*
wouldn't show build methods, and when making custom controls it would be shown to the developers.The text was updated successfully, but these errors were encountered: