這篇博客將分享如何在WPF程序中使用Ribbon控件。Ribbon可以很大的提高軟件的便捷性。

大數(shù)據(jù)培訓(xùn),云培訓(xùn),數(shù)據(jù)挖掘培訓(xùn),云計(jì)算培訓(xùn),高端軟件開發(fā)培訓(xùn),項(xiàng)目經(jīng)理培訓(xùn)

上面截圖使Outlook 2010的界面,在Home標(biāo)簽頁中,將所屬的Menu都平鋪的布局,非常容易的可以找到想要的Menu。在Outlook 2003時(shí)代,將Home下面的Menu都垂直的排列下來,操作的便捷程度降低了很多。Ribbon的布局會(huì)隨著窗體的變化動(dòng)態(tài)的調(diào)整。

大數(shù)據(jù)培訓(xùn),云培訓(xùn),數(shù)據(jù)挖掘培訓(xùn),云計(jì)算培訓(xùn),高端軟件開發(fā)培訓(xùn),項(xiàng)目經(jīng)理培訓(xùn)

上面的圖片中標(biāo)注了Ribbon的4個(gè)區(qū)塊。

下面我們就在WPF中使用Ribbon控件來實(shí)現(xiàn)一個(gè)簡單的界面。

1. 添加System.Windows.Controls.Ribbon的引用;

2. XAML Code:

大數(shù)據(jù)培訓(xùn),云培訓(xùn),數(shù)據(jù)挖掘培訓(xùn),云計(jì)算培訓(xùn),高端軟件開發(fā)培訓(xùn),項(xiàng)目經(jīng)理培訓(xùn)

<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
        
		

網(wǎng)友評論