How to call window developed in C# through FindWindow api.
- by Sagar Mane
Hello All,
I am new to C# and xaml code. I have one sample code which implemented in C#. when I have reviewed xaml file I got <Window x:Class="test.MainWindow">.
So does test.MainWindow indicate the class name for this window.
I am trying to invoke this window from other application which is developed in win 32.
I am trying to pass this class name to FindWindow("test.MainWindow",NULL) ,but it fails. does anything missing over there.
how I can change the class name of window developed in C#?
Thanks,
Sagar