I'm using radtabcontrol and added another screen(pending screen) as grid in the radcontrolItem like this,
Radcontrol.xaml
Radcontrol.xaml.cs
RadtabItem Content Header will be changed based on button click of pending screen, but i can't able to get changed header immediately after the button click, i need to reload the screen manually to get the changed header. So how to get the changed header without manually reload.
Radcontrol.xaml
<telerik:RadTabItem > <telerik:RadTabItem.Content> <Grid Name="displaypending" > <Grid.RowDefinitions> <RowDefinition Height="*" /> </Grid.RowDefinitions> </Grid> </telerik:RadTabItem.Content> </telerik:RadTabItem>
Radcontrol.xaml.cs
if (displaypending != null) { displaypending.Children.Clear(); Pending pending = new Pending(); displaypending.Children.Add(pending); IsScanningAllowed = ApplicationVariables.IsScannerInitiated; }RadtabItem Content Header will be changed based on button click of pending screen, but i can't able to get changed header immediately after the button click, i need to reload the screen manually to get the changed header. So how to get the changed header without manually reload.