This is a migrated thread and some comments may be shown as answers.

RadRibbonWindow: minimize/maximize/close hidden in RDP environment

1 Answer 117 Views
RibbonView and RibbonWindow
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 02 Apr 2014, 11:43 AM
My application's main window is a  RadRibbonWindow that hosts a RadRibbonView. When clicking on a button another RadRibbonWindow is being opened.
When I'm testing this program on my machine everything works fine. When I'm testing on a remote machine via RDP the control Buttons (minimize/maximize/close) disappear.

I've attached a a screenshot.

App.xaml:
<Application x:Class="TelerikRibbonView.App"
    StartupUri="MainWindow.xaml">
    <Application.Resources>
      <ResourceDictionary>
          <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Blue;component/Themes/System.Windows.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Blue;component/Themes/Telerik.Windows.Controls.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Blue;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Blue;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office_Blue;component/Themes/Telerik.Windows.Controls.RibbonView.xaml"/>
          </ResourceDictionary.MergedDictionaries>
      </ResourceDictionary>
    </Application.Resources>
</Application>


MainWindow.xaml
<telerik:RadRibbonWindow x:Class="TelerikRibbonView.MainWindow"
                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"
                Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition />
        </Grid.RowDefinitions>
 
        <telerik:RadRibbonView />
        <telerik:RadButton Grid.Row="1" Width="80" Height="30" Margin="5" Click="RadButton_Click">Click me</telerik:RadButton>
    </Grid>
</telerik:RadRibbonWindow>




MainWindow.cs:
using System.Windows;
using Telerik.Windows.Controls;
 
namespace TelerikRibbonView
{
   public partial class MainWindow : RadRibbonWindow
   {
      public MainWindow()
      {
         InitializeComponent();
      }
 
      private void RadButton_Click(object sender, RoutedEventArgs e)
      {
         MainWindow secondWnd = new MainWindow();
         secondWnd.Show();
      }
   }
}


Michael


1 Answer, 1 is accepted

Sort by
0
Martin Ivanov
Telerik team
answered on 07 Apr 2014, 08:47 AM
Hello Michael,

I can confirm that this is a bug in the RibbonWindow. I logged it in our feedback portal where you can vote and track its status. I also updated your Telerik points as a small gesture of appreciation for reporting this issue. Please excuse us for any inconvenience caused.

Regards,
Martin
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
RibbonView and RibbonWindow
Asked by
Michael
Top achievements
Rank 1
Answers by
Martin Ivanov
Telerik team
Share this question
or