I have written a generic View that works as desired within its Project.
Trying to use it from another Project is stumping me.
Working within its application:
View = () => new Views.PleaseWait("Testing Please Wait...",GetProgress);
Have tried to make an Interface for it like normal Classes, but it doesnt have any known methods (ChapGPT thought it has some, but that didnt help).
Create<> doesnt like it at all.
Is there a process or syntax to use this View from another Project, or am I have to give back my DRY certificate and copy it into 40 other projects ?
I know there is something in ENV that does similar, but would rather have all our Application features and GUI standards available.