2014-10-29 54 views
-1

我有一个自定义控件,其中包含一个文本块,一个组合框和一个超链接按钮。无法禁用自定义控件中的特定文本块

<UserControl x:Class="IXExpress.Controls.WorkspaceIndexes" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:telerikSdk="http://schemas.telerik.com/2008/xaml/presentation" 
    mc:Ignorable="d" 
    Height="Auto" Width="Auto"> 

    <Grid x:Name="LayoutRoot"> 
     <StackPanel Orientation="Vertical" HorizontalAlignment="Center">       
      <TextBlock x:Name="IndexNameTextBlock" Text="{Binding ApplicationStrings.SelectIndexName, Source={StaticResource ResourceWrapper}, Mode=OneTime}" Margin="3,5" TextAlignment="Left" VerticalAlignment="Center" Visibility="Visible"/> 
      <StackPanel Orientation="Horizontal" HorizontalAlignment="Left"> 
       <telerikSdk:RadComboBox x:Name="IndexNameCB" 
             DisplayMemberPath="IndexName" 
             HorizontalAlignment="Center" 
             IsDropDownOpen="False" 
             Margin="3,0,3,5" 
             MinWidth="150" 
             Width="150" 
             VerticalAlignment="Center" 
             VerticalContentAlignment="Center" 
             Visibility="Visible" 
             SelectionChanged="IndexNameCB_SelectionChanged"/> 
       <HyperlinkButton x:Name="CreateNewIndexLink" 
           Content="Create New"         
           VerticalContentAlignment="Center" 
           Click="CreateNewIndexLink_Click"/> 
      </StackPanel> 
     </StackPanel> 
    </Grid> 
</UserControl> 

我使用它另一页上如下:

<StackPanel Orientation="Vertical"> 
    <customControls:WorkspaceIndexes x:Name="WorkspaceIndexes" IsMoreTextRequired="True" Margin="3"/> 
</StackPanel> 

的问题是,在某些条件下,当我想禁用此控制,但它仅禁止组合框和超链接按钮。

代码:

if (my condition) 
    WorkspaceIndexes.IsEnabled = true; 
    else 
    WorkspaceIndexes.IsEnabled = false; 

结果:

http://imgur.com/L6tbOwo

我还没有看到 “IndexNameTextBlock” 文本块的IsEnabled选项,这是为什么?

+0

找到了解决方案!由于某些原因,我无法在文本块中使用IsEnabled属性,因此我正在自行更改字体颜色。 – CSharper 2014-10-29 18:38:50

回答

1

您看不到TextBlockIsEnabled属性,因为它没有该属性。其他元素来自Control,它们可以启用和禁用。 TextBlock不受控制。禁用TextBlock将毫无意义。它只是显示文字。没有可能的用户交互。

如果您需要将其变为灰色,则必须更改其颜色Foreground或减少其Opacity,或在其上方放置半透明的矩形/边框。