.NET Forms Abstraction for WPF, Silverlight, Winforms, WebForms, etc.

Does anyone know of a project (s) that is looking for abstract form definitions at a level higher than WPF, Silverlight, Winforms, WebForms, etc.

I am working on a project in which we fix 16 simple WebForms. But we can convert (and probably convert to WPF or Silverlight in 3-4 months).

I would rather define these forms once and do away with it. I want to write a small DSL to help identify forms, subforms, validations, links, and pop-ups. I just want to solve this for 80% or 90% of the forms. Four are very complex, and I am ready to pass them.

I think I'm looking for something like what XUL was hoping for.

+3
source share
1 answer

Here the Model View Controller is suitable (not ASP.NET MVC).

Your model and controller are standard classes. You must define the view as an IView interface because you will have to subclass from other parts of the Framework.

+2
source

Source: https://habr.com/ru/post/1741812/


All Articles