Is it possible to build a Class Library dll which also includes WPF forms? When I try to build one I get following errors:
Error 1 Librar
Change the build action of your UserControl
from ApplicationDefinition
to Page
.
This is also occur when we copy paste an Image to ClassLibrary Project.
Change the Build Action Property of that image to resources
Extending @2493490 answer.
Right click on the app.xaml file and exclude it from the project. Change the project output type to in project properties to Class Library. Click on the run icon, the solution will successfully build but will not run/execute any code. A error message will be displayed explaining as such.
Remove the App.xaml and App.xaml.cs in your WPF Project. Then you will be able to run the project with an output type of Class Library.
Choose WPF Custom Control Library
or WPF User Control Library
when creating/adding new project to your solution.
problems after copying XAML controls from WPF Application to class library
The first answer work for me. I changed App.xaml from ApplicationDefinition to Page and worked