Posted 15 years ago
by Bruno
-
Software Engineer,
I.F.P.
Hi,
I just updated Actipro to version 10.1.521.0. I want my application to display a large ApplicationButton in the top left corner, as in the previous versions.
So I found out about UseScenicLayout and other stuff, and wrote the following RibbonWindow and Ribbon (note that no icon is specified in the RibbonWindow):It seems to work : a large icon as expected, but unfortunately the default window icon is displayed in the task bar.
If I specify an icon in the RibbonWindow as follows, the task bar will show my application icon, but an extra small icon is displayed left to the large application icon.Can you please help me ?
Thanks in advance.
Bruno
I just updated Actipro to version 10.1.521.0. I want my application to display a large ApplicationButton in the top left corner, as in the previous versions.
So I found out about UseScenicLayout and other stuff, and wrote the following RibbonWindow and Ribbon (note that no icon is specified in the RibbonWindow):
<ribbon:RibbonWindow
x:Class="PlateformeWpf.AppMain.Views.ShellView"
x:Name="mainWindow"
ApplicationName="{MyApplication_Title}"
WindowState="Maximized" MinWidth="400" MinHeight="400" Height="600" Width="800">
<ribbon:Ribbon
UseScenicLayout="False"
IsApplicationButtonVisible="False"
ApplicationButtonImageSource="{MyApplication_LargeIcon}">
If I specify an icon in the RibbonWindow as follows, the task bar will show my application icon, but an extra small icon is displayed left to the large application icon.
<ribbon:RibbonWindow
x:Class="PlateformeWpf.AppMain.Views.ShellView"
x:Name="mainWindow"
ApplicationName="{MyApplication_Title}"
Icon="{MyApplication_SmallIcon}"
WindowState="Maximized" MinWidth="400" MinHeight="400" Height="600" Width="800">
Thanks in advance.
Bruno