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:
MainWindow.xaml
MainWindow.cs:
Michael
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: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