我一直在尝试功能区控件并遇到了一个可能的错误(或者我可能做错了什么)。如果我有一个RibbonTextBox
,RibbonTab
并且在后面的代码中将isEnabled设置为False或True,我只能将其设置为 false 而不能设置为 true。其余RibbonTextBox
被禁用。
/* 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