views:

137

answers:

2

I have a solution in C# with 2 project of 2 different types: windows app and class library. They all share the same namespace but I can't access forms in windows app although I add reference to System.Windows.Form in CL project. Help me, please!

+2  A: 

If you require to access the forms within the WinApp, you need to add that WinApp as a reference to the class library.

astander
thanks you very much :D
A New Chicken
A: 

You can't access windows forms from the libary.

subprime