I am using the following code in the currentpagechanged event to update a spin editor, but the spin editor value does not stay in sync with the Navigator text box when changing pages via the Navigator or clicking on the thumbnails.
private void radPdfViewer1_CurrentPageChanged(object sender, CurrentPageChangedEventArgs e)
{
try
{
seFrom.Value = int.Parse(this.radPdfViewerNavigator1.CurrentPageTextBox.Text) ;
}
catch
{
}
}