私はリボンコントロールを試していて、おそらくバグを経験しています(または私はおそらく何か間違っています)。私は本当のRibbonTab
上RibbonTextBox
、そして背後にあるコードでISENABLED虚偽にまたはTrueを設定し、私はfalseに設定することができますが、ないを持っている場合。 RibbonTextBox
は引き続き無効になります。RibbonTextBox isEnableをFalseに設定できません
/* in my XAML */
<ribbon:RibbonTextBox x:Name="rtb" Label="Button1" />
/* in my code behind */
rtb.IsEnabled = false; // RibbonTextBox is disabled and grayed out
... some other code ...
rtb.IsEnabled = true; // RibbonTextBox remain disabled and grayed out