How to give title to WPF pages
It is possible to give the title to WPF window through XAML code itself at design time and it is showing the title to window at runtime.
the code in the XAML is like Window1.Title="FormulaBuilder"
For the WPF pages also it is given in the XAML code like Page1.Title="EmployeeMaster"
But it is not showing the title at Runtime
Then I tried to give the title thrugh C# coding
Page1 obj=new Page1(); obj.Title="EmployeeMaster";
But it is not showing the title at runtime.