1

我正在为 WPF 使用最新版本的 MS Ribbon (3.5.40729.1)。下载自:http ://www.microsoft.com/downloads/en/details.aspx?FamilyID=2BFC3187-74AA-4154-A670-76EF8BC2A0B4&displaylang=en并想更改功能区的皮肤。
我怎样才能改变皮肤?微软是否计划在下一个版本中提供任何皮肤?谢谢您的帮助。

问候,维沙尔。

4

1 回答 1

1

来自南岭实验室的样本:

<r:RibbonWindow x:Class="Southridge.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:r="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary">

  <r:RibbonWindow.Resources>
    <ResourceDictionary>
      <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/RibbonControlsLibrary;component/Themes/Office2007Blue.xaml" />
      </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
  </r:RibbonWindow.Resources>
</r:RibbonWindow>
于 2010-09-27T20:26:25.607 回答