I have 2 projects, both in C# wpf. I want to combine them into an unique one.
What I want exactly, is to call form-2 in project 2 from my project 1 form-x.
I have tried with this article from MSDN but it's not what I want.
http://msdn.microsoft.com/en-us/library/ms747086.aspx
http://msdn.microsoft.com/en-us/library/ms747086.aspx
<Page x:Class="WPFApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:custom="clr-namespace:SDKSample;assembly=SDKSampleLibrary">
...
Any ideas please.