-1

这是我的问题:我用 Fluent 功能区创建了一个程序,当我想禁用功能区时,我需要使用以下代码:

代码 WPF:

<Fluent:RibbonGroupBox x:Name="GpRibbonFormats" ...>
  <Fluent:Button x:Name="AjoutTole" Header="{x:Static p:Resources.Ajouter}">
    <Fluent:Button.ToolTip>
      <Fluent:ScreenTip x:Name="ScreenTipAjoutTole"...>    
      </Fluent:ScreenTip>
    </Fluent:Button.ToolTip>
  </Fluent:Button>
  <Fluent:Button x:Name="EditQtyFormat" ...>
    <Fluent:Button.ToolTip>
      <Fluent:ScreenTip x:Name="ScreenTipEditQtyFormat"...>
      </Fluent:ScreenTip>
    </Fluent:Button.ToolTip>
  </Fluent:Button>
  <Fluent:Button x:Name="DeleteFormat" SizeDefinition="Large">
    <Fluent:Button.ToolTip>
      <Fluent:ScreenTip x:Name="ScreenTipDeleteFormat" ...>
      </Fluent:ScreenTip>
    </Fluent:Button.ToolTip>
  </Fluent:Button>
</Fluent:RibbonGroupBox>

代码背后:

AjoutTole.IsEnabled = false;
ScreenTipAjoutTole.DisableReason = isBlocked;
EditQtyFormat.IsEnabled = false;
ScreenTipEditQtyFormat.DisableReason = isBlocked;
DeleteFormat.IsEnabled = false;
ScreenTipDeleteFormat.DisableReason = isBlocked;

它工作正常,但我想做一个这样的功能,所以我确信我总是在 DisableReason 发送正确的信息:

DisableButton(Fluent:Button NameOfButton,string ReasonOfDisable)
{
    NameOfButton.IsEnabled = false;
    NameOfButton.AllScreenTipChild.DisableReason=ReasonOfDisable
}

就像我想禁用所有一组按钮一样:

DisableGroup(Fluent:RibbonGroupBox myGroup,string ReasonOfDisable)
{
    foreach(Fluent:Button button in myGroup)
    {
        button.isEnable=false;
        button.AllScreenTipChild.DisableReason=ReasonOfDisable;
    }
}

这怎么可能?我希望能够从代码隐藏中做到这一点。

编辑 :

在尝试获取按钮的子项时,我返回一个 System.Windows.Controls.Border 类型的元素,其名称为“border”,但我的 XAML 文件中没有这样的元素。我也试图让我的 RibbonGroupBox 的孩子,但在这种情况下,我返回一个网格(grid2),而那个网格甚至不在功能区中......

使用的代码:

for (int i = 0; i < VisualTreeHelper.GetChildrenCount(DeleteOL); i++)
{
   var child = VisualTreeHelper.GetChild(DeleteOL, i);
   string monType = child.GetType().ToString();
   if(monType== "System.Windows.Controls.Border")
   {
      System.Windows.Controls.Border bb = (System.Windows.Controls.Border)child;
      string name = bb.Name;
   }
}

编辑 2:

我确认 getChild 在功能区上不起作用(为什么?),但我可以找到如何获取组中的按钮列表:

foreach(var item in GpRibbonFormats.Items)
{
    if(item.GetType().ToString()=="Fluent.Button")
    {
         Fluent.Button button = (Fluent.Button)item;
         button.IsEnabled = false;
    }
}

现在我仍在寻找如何找到按钮的屏幕提示

4

2 回答 2

2

您似乎混合了 XAML 和 C# 中的命名空间约定,在 C# 中您不使用:引用命名空间,而是使用.分隔符。例如,StackPanelSystem.Windows.Controls命名空间内,所以你在 C# 中这样引用它:

System.Windows.Controls.StackPanel stackPanel = new System.Windows.Controls.StackPanel();

我从未尝试过 Fluent,但这段代码应该可以工作。

    public void DisableGroup(Fluent.RibbonGroupBox ribbonGroup, string reasonOfDisable)
    {
        foreach (var item in ribbonGroup.Items)
        {
            if (item is Fluent.Button)
            {
                DisableButton((Fluent.Button)item, reasonOfDisable);
            }
        }
    }

    public void DisableButton(Fluent.Button button, string reasonOfDisable)
    {
        button.IsEnabled = false;

        if (button.ToolTip is Fluent.ScreenTip)
        {
            Fluent.ScreenTip screenTip = (Fluent.ScreenTip)button.ToolTip;
            screenTip.DisableReason = reasonOfDisable;
        }
    }

要禁用整个组,您可以这样称呼它

    DisableGroup(GpRibbonFormats, "Ce groupe n'est pas disponible");

要仅禁用一个按钮,您可以这样称呼它

    DisableButton(AjoutTole, "Ajouter est désactivé pour le moment");

顺便说一句,Fluent.RibbonGroupBox继承自ItemsControl,这个控件有自己的IsEnabled属性,你可以通过将属性设置为 false 来禁用整个组(虽然我没有测试过),但是你必须通过每个按钮来设置反正他们的屏幕提示。

    GpRibbonFormats.IsEnabled = false;

对于这种东西,Binding在 WPF 中非常强大,你可能想在 MVVM 上阅读一下。一开始实现起来并不容易,但一旦你掌握了窍门,它就会改变游戏规则,真正简化你的代码和逻辑。

于 2018-02-14T05:47:14.247 回答
1

我花了一些时间,但我终于明白了用户试图向我解释什么(对于从 MVVM 开始的人来说并不明显,这就是我在这里写它的原因)。

我相信我可以在代码中轻松地将我的属性 IsEnabled 设置为 true 或 false(如 Roger Leblanc 的回答),然后继续绑定我的 ViewModel。并非如此,因为当我将 IsEnable (to true) 属性设置为时,它将IsEnabled="{Binding EnableEditNesting}"替换为IsEnabled=true,因此之后不再进行绑定(如果我错了,请告诉我)。

最后我做了以下事情:

  • 对于不需要为每个按钮提供不同行为的 GroupBox,我只需在其 IsEnable 参数上进行绑定。

     <Fluent:RibbonGroupBox x:Name="GpRibbonFormats" IsEnabled="{Binding EnableGpRibbonFormats}" Header="{x:Static p:Resources.Stock}">
           <Fluent:RibbonGroupBox.ToolTip>
                 <Fluent:ScreenTip x:Name="ScreenTipGpRibbonFormats" Image="img\image_engrenage.png" Width="250" Text="{x:Static p:Resources.NestingSendToProduction}" DisableReason="{Binding EnableGpRibbonFormatsReason}">
    
                 </Fluent:ScreenTip>
           </Fluent:RibbonGroupBox.ToolTip>
           <Fluent:Button x:Name="AjoutTole" SizeDefinition="Large" LargeIcon="img\image_add.png" Header="{x:Static p:Resources.Ajouter}" Click="Add_ToleOL_Click">
    
           </Fluent:Button>
                    ...
     </Fluent:RibbonGroupBox>
    
  • 对于我需要在每个按钮上具有特定行为的 GrouBox,我为每个按钮(组上没有任何内容)放置了一个绑定,当我需要禁用所有组时,我会一个一个地禁用按钮。

    <Fluent:RibbonGroupBox x:Name="GpRibbonOL" Header="{x:Static p:Resources.NestingLaunchingOrder}">
         <Fluent:Button x:Name="DeleteOL" IsEnabled="{Binding EnableDeleteOL}" SizeDefinition="Large" LargeIcon="img\image_delete.png" Header="{x:Static p:Resources.Supprimer}" Click="Supprimer_OF">
              <Fluent:Button.ToolTip>
                  <Fluent:ScreenTip x:Name="ScreenTipDeleteOL" Image="img\image_delete.png" Title="Delete OL" Width="250" Text="Delete element" DisableReason="{Binding EnableEditNestingReason}">
                  </Fluent:ScreenTip>
              </Fluent:Button.ToolTip>
         </Fluent:Button>
         ...
    </Fluent:RibbonGroupBox>
    

ViewModel 看起来像这样,所以当我想启用/禁用时,我只需更改工具提示:

    private bool enableGpRibbonNesting;
    public bool EnableGpRibbonNesting
    {
        get { return enableGpRibbonNesting; }
        set
        {
            enableGpRibbonNesting = value;
            this.NotifyPropertyChanged("EnableGpRibbonNesting");
        }
    }
    private string enableGpRibbonNestingReason;
    public string EnableGpRibbonNestingReason
    {
        get { return enableGpRibbonNestingReason; }
        set
        {
            enableGpRibbonNestingReason = value;
            if (value == "")
            {
                EnableGpRibbonNesting = true;
            }
            else
            {
                EnableGpRibbonNesting = false;
            }
            this.NotifyPropertyChanged("EnableGpRibbonNestingReason");

        }
    }
于 2018-07-14T05:38:53.703 回答