我正在尝试复制写字板功能区控件的样式和功能。
在 中RibbonApplicationMenu
,有一个 MRU 列表显示最近文档的文件名。当我单击文件名时,它将具有样式更改并打开文档。
包含文件名“test1”的控件是什么?它是一个功能区按钮吗?一个列表框?一个功能区文本框?有谁知道?
我正在尝试复制写字板功能区控件的样式和功能。
在 中RibbonApplicationMenu
,有一个 MRU 列表显示最近文档的文件名。当我单击文件名时,它将具有样式更改并打开文档。
包含文件名“test1”的控件是什么?它是一个功能区按钮吗?一个列表框?一个功能区文本框?有谁知道?
这取决于你想在那个区域内持有的任何东西
试试我在这里发布的这段代码。希望它会清除事情
<Ribbon:Ribbon Grid.Row="0">
<Ribbon:Ribbon.ApplicationMenu>
<Ribbon:RibbonApplicationMenu>
<Ribbon:RibbonApplicationMenu.AuxiliaryPaneContent>
<Grid MinHeight="500">
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Border Grid.Row="0" BorderBrush="DarkBlue" BorderThickness="0,0,0,1">
<StackPanel
Orientation="Vertical">
<Label Foreground="DarkBlue" HorizontalAlignment="Left" VerticalAlignment="Center" HorizontalContentAlignment="Left"
VerticalContentAlignment="Center" Content="Hello World" />
</StackPanel>
</Border>
<ListBox Grid.Row="1">
<ListBoxItem>List Box Item 1</ListBoxItem>
<ListBoxItem>List Box Item 2</ListBoxItem>
<ListBoxItem>List Box Item 3</ListBoxItem>
<ListBoxItem>List Box Item 4</ListBoxItem>
</ListBox>
</Grid>
</Ribbon:RibbonApplicationMenu.AuxiliaryPaneContent>
<Ribbon:RibbonApplicationMenuItem Header="Hello _Ribbon" ImageSource="Images\LargeIcon.png"/>
<Ribbon:RibbonApplicationMenuItem Header="Hello _Ribbon" ImageSource="Images\LargeIcon.png"/>
<Ribbon:RibbonApplicationMenuItem Header="Hello _Ribbon" ImageSource="Images\LargeIcon.png"/>
</Ribbon:RibbonApplicationMenu>
</Ribbon:Ribbon.ApplicationMenu>
</Ribbon:Ribbon>