Setting the Title property should update the header text:
this.radPageViewPage1.Title = "test";
Hello,
Thank you for reporting this. You can use the following workaround until the fix is introduced.
LightVisualElement lve = new LightVisualElement();
public RadForm1()
{
InitializeComponent();
this.radPageViewPage1.Title = "test";
this.radNavigationView1.NavigationViewElement.HeaderElement.DrawText = false;
this.radNavigationView1.NavigationViewElement.HeaderElement.Children.Add(lve);
this.radNavigationView1.SelectedPageChanged += RadNavigationView1_SelectedPageChanged;
}
private void RadNavigationView1_SelectedPageChanged(object sender, EventArgs e)
{
lve.Text = this.radNavigationView1.SelectedPage.Title;
}
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.