Posted 16 years ago
by David Mullin
I have an Application Menu defined as follows:
The issue that I am having is that the height of the popup menu from the Help button is set by the height of the Application Menu as a whole. This gives me two issues:
1) Since there is nothing else in the Application Menu, it is very short, which means that there isn't roomto show the popup menu. The visual effect is very unpleasing
2) If I add other things to the Application Menu, then it is tall enough to show the complete popup, but then the popup ends up being much taller than it needs to be - which is again visually unpleasing.
Am I missing a setting somewhere?
David Mullin
IMA Technologies
[Modified at 02/13/2009 07:02 PM]
<ribbon:Ribbon.ApplicationMenu>
<ribbon:ApplicationMenu >
<ribbon:SplitButton ImageSourceLarge="{DynamicResource {x:Static ct:Common.HelpImageKey}}" Label="Help" KeyTipAccessText="U" Command="ApplicationCommands.Help">
<ribbon:Menu ItemVariantSize="Medium" >
<ribbon:Separator Label="Help" />
<ribbon:Button Label="About CaseTrakker Dynamo" Click="AboutButton_Click" />
</ribbon:Menu>
</ribbon:SplitButton>
<ribbon:ApplicationMenu.AdditionalContent>
<ribbon:RecentDocumentMenu Label="Recent Items">
<shared:RecentDocumentManager x:Name="RecentDocuments"/>
</ribbon:RecentDocumentMenu>
</ribbon:ApplicationMenu.AdditionalContent>
<ribbon:ApplicationMenu.FooterButtons>
<ribbon:Button ImageSourceSmall="{DynamicResource {x:Static ct:Common.CancelImageKey}}" Label="Exit CaseTrakker Dynamo" KeyTipAccessText="X" Command="ApplicationCommands.Close"/>
</ribbon:ApplicationMenu.FooterButtons>
</ribbon:ApplicationMenu>
</ribbon:Ribbon.ApplicationMenu>
1) Since there is nothing else in the Application Menu, it is very short, which means that there isn't roomto show the popup menu. The visual effect is very unpleasing
2) If I add other things to the Application Menu, then it is tall enough to show the complete popup, but then the popup ends up being much taller than it needs to be - which is again visually unpleasing.
Am I missing a setting somewhere?
David Mullin
IMA Technologies
[Modified at 02/13/2009 07:02 PM]