功能区组合框选择更改事件未触发

发布于 2024-12-12 03:06:18 字数 1291 浏览 0 评论 0原文

我在功能区栏中有一个组合框,如下所示:

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文