RichTextBox 添加控件,被禁用如何处理 button

 WPF中RichTextBox的确非常的强大, 但让人很郁闷的是:添加到其中的控件总是被禁用的(IsEnabled始终为false)

  参考以下代码:

<Window
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="LearnWPF - Changing Elements with Styles"
  Width="350" Height="200"> 
  <RichTextBox >
    <!-- regular FlowDocument -->
    <FlowDocument FontFamily="Segoe" FontSize="12" >
     <Paragraph>This is some text inside a flowdocument</Paragraph>
     <BlockUIContainer>
      <Button Content="Click Me?" IsEnabled="True">
      </Button>
     </BlockUIContainer>
    
    </FlowDocument>
   </RichTextBox>
</Window>

  虽然我们已经将Button的IsEnable属性设置为True,但实际运行时其仍然是被禁用的.

  解决方案如下:

  重写FlowDocument的IsEnabledCore属性,将其返回值设置为True

class MyFlowDocument : FlowDocument
  {
    protected override bool IsEnabledCore
    {
      get
      {
        return true;
      }
    }
  }

  然后使用重写了的MyFlowDocument替换FlowDocument就可以了:)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值