Hello,
When using the RadToolBar and the overflow panel is close to the right edge of the screen, the algorithm for repositioning the popup is flawed... Please see the attached picture. It's close to where it needs to be but not perfect. Even as you resize the window the popup attempts to correct itself but doesn't quite figure out exactly where it needs to be.
Here is a quick project to replicate this issue for you:
When using the RadToolBar and the overflow panel is close to the right edge of the screen, the algorithm for repositioning the popup is flawed... Please see the attached picture. It's close to where it needs to be but not perfect. Even as you resize the window the popup attempts to correct itself but doesn't quite figure out exactly where it needs to be.
Here is a quick project to replicate this issue for you:
<UserControl |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
x:Class="scratch.MainPage"> |
<Grid x:Name="LayoutRoot" Background="White"> |
<telerik:RadToolBarTray> |
<telerik:RadToolBar Height="30"> |
<Button Width="100" Content="Test1" /> |
<ComboBox Width="100" /> |
<Button Width="100" Content="Test1" /> |
<Button Width="100" Content="Test1" /> |
<ComboBox Width="100" /> |
<Button Width="100" Content="Test1" /> |
<ComboBox Width="100" /> |
<Button Width="100" Content="Test1" /> |
</telerik:RadToolBar> |
</telerik:RadToolBarTray> |
</Grid> |
</UserControl> |