Got an interesting issue that only affects the code on a Surface Pro 3. When running a telerik control for a RadRibbonView and then having it minimized the popup will open to the very left of the screen. This behavior does not happen on a desktop and works just clipping below the RadRibbonTab. On a Surface Pro 3 it works fine when the View is not minimized but when minimized it behaves badly. I was thinking of investigating more on what could be causing this and was following some of the tutorials on Telerik: https://docs.telerik.com/devtools/wpf/controls/radribbonview/features/ribbon-controls/ribbon-window-wpf. In my example XAML shown it is using their RadRibbonWindow but a Window top level will create this problem as well. I will most likely contact Telerik as well but was curious if anyone on Stack Overflow has seen this and known how to deal with it.
<telerik:RadRibbonWindow x:Class="TelerikTesting.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:TelerikTesting"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<telerik:RadRibbonView x:Name="RibbonView" IsMinimizable="True" IsMinimized="True" MinimizeButtonVisibility="Visible"
PopupOpened="RadRibbonView_PopupOpened">
<telerik:RadRibbonView.Items>
<telerik:RadRibbonTab Header="Home">
<telerik:RadRibbonGroup Header="HomeContent" >
</telerik:RadRibbonGroup>
</telerik:RadRibbonTab>
<telerik:RadRibbonTab Header="View" />
</telerik:RadRibbonView.Items>
</telerik:RadRibbonView>
</telerik:RadRibbonWindow>
Well this should not be happening.