-
WPF Allows for transparent windows which can help shape our desktop program to anything we can drew. In a few simple steps we can make a triangular program window. Here is how: In the main application window, set two values: Background = "Transparent" AllowsTransparency = "True" Use XAML to draw whatever...
-
RibbonDropDownButton can show a list of items inside a Ribbon button. You can hard code the items by adding a collection of menu items like so: < r : RibbonDropDownButton Command ="me:AppCommands.OtherReports"> < MenuItem Header ="Cash Flow Report" /> < MenuItem Header...
-
The WPF Ribbon control can be downloaded from the Office UI Licensing site. One of its most interesting features is its application menu. You can create menus and sub menus to match the look of an office 2007 application. Simply add a new RibbonApplicationMenuItem to the ApplicationMenu. You can then...