功能区组合框选择更改事件未触发
我在功能区栏中有一个组合框,如下所示:
<r:RibbonComboBox Label="Saved Queries" Name="Saved_Queries">
<r:RibbonGallery ScrollViewer.VerticalScrollBarVisibility="Auto"
SelectionChanged="RibbonGallery_SelectionChanged">
<r:RibbonGallery.CategoryStyle>
<Style TargetType="{x:Type r:RibbonGalleryCategory}"
BasedOn="{StaticResource {x:Type r:RibbonGalleryCategory}}">
<Setter Property="MinColumnCount" Value="1" />
<Setter Property="MaxColumnCount" Value="1" />
<Style.Triggers>
<Trigger Property="Header" Value="Automatic Brush">
<Setter Property="HeaderVisibility" Value="Collapsed" />
<Setter Property="MinColumnCount" Value="1" />
<Setter Property="MaxColumnCount" Value="1" />
<Setter Property="IsSharedColumnSizeScope" Value="True" />
</Trigger>
</Style.Triggers>
</Style>
</r:RibbonGallery.CategoryStyle>
<r:RibbonGallery.GalleryItemTemplate>
<DataTemplate>
<Grid></Grid>
</DataTemplate>
</r:RibbonGallery.GalleryItemTemplate>
<r:RibbonGalleryCategory >
</r:RibbonGalleryCategory>
</r:RibbonGallery>
</r:RibbonComboBox>
在组合框中选择一个项目时,我试图打开一个新窗口。但这并没有发生。我该怎么办?
I have a combobox in a ribbon bar as follows:
<r:RibbonComboBox Label="Saved Queries" Name="Saved_Queries">
<r:RibbonGallery ScrollViewer.VerticalScrollBarVisibility="Auto"
SelectionChanged="RibbonGallery_SelectionChanged">
<r:RibbonGallery.CategoryStyle>
<Style TargetType="{x:Type r:RibbonGalleryCategory}"
BasedOn="{StaticResource {x:Type r:RibbonGalleryCategory}}">
<Setter Property="MinColumnCount" Value="1" />
<Setter Property="MaxColumnCount" Value="1" />
<Style.Triggers>
<Trigger Property="Header" Value="Automatic Brush">
<Setter Property="HeaderVisibility" Value="Collapsed" />
<Setter Property="MinColumnCount" Value="1" />
<Setter Property="MaxColumnCount" Value="1" />
<Setter Property="IsSharedColumnSizeScope" Value="True" />
</Trigger>
</Style.Triggers>
</Style>
</r:RibbonGallery.CategoryStyle>
<r:RibbonGallery.GalleryItemTemplate>
<DataTemplate>
<Grid></Grid>
</DataTemplate>
</r:RibbonGallery.GalleryItemTemplate>
<r:RibbonGalleryCategory >
</r:RibbonGalleryCategory>
</r:RibbonGallery>
</r:RibbonComboBox>
When an item is selected in the combobox, I'm trying to open a new window. But it doesn't happen. How can i go about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论