hi
i'm looking for a way to create a base window in my WPF project and
every other window Inheritance this base window,for example create a
window with specific border,background and..., and other windows inheritance
these style.i just understood i should create a base class from this link :
can you help me how to create base window?
thanks

AbolfazlPosted May 6, 2015, 2:20 PM
thanks to replay
can you offer me a source for creating user control?
thanks
Tom MohanPosted May 6, 2015, 1:36 PM
eg:
usercontrol1 objuc = new usercontrol1();
CommonWindow objWin = new CommonWindow();
objWin.Content = objuc;
Then show this commonwindow