這篇博客將分享如何在WPF程序中使用Ribbon控件。Ribbon可以很大的提高軟件的便捷性。
上面截圖使Outlook 2010的界面,在Home標(biāo)簽頁中,將所屬的Menu都平鋪的布局,非常容易的可以找到想要的Menu。在Outlook 2003時代,將Home下面的Menu都垂直的排列下來,操作的便捷程度降低了很多。Ribbon的布局會隨著窗體的變化動態(tài)的調(diào)整。
上面的圖片中標(biāo)注了Ribbon的4個區(qū)塊。
下面我們就在WPF中使用Ribbon控件來實(shí)現(xiàn)一個簡單的界面。
1. 添加System.Windows.Controls.Ribbon的引用;
2. XAML Code:
<RibbonWindow x:Class="WpfRibbonWinApp.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:shell="clr-namespace:System.Windows.Shell;assembly=PresentationFramework" xmlns:local="clr-namespace:WpfRibbonWinApp" mc:Ignorable="d" Title="Ribbon Window App" WindowStartupLocation="CenterScreen" Height=&q