无法查看 WPF 中 CanClick 是否为 false

发布于 2024-10-22 22:58:34 字数 853 浏览 1 评论 0原文

我有以下 wpf:

<Style x:Key="HyperlinkStyle" TargetType="Hyperlink">
    <Setter Property="Foreground"      
            Value="{StaticResource {x:Static SystemColors.ControlTextBrushKey}}"/>
    <Setter Property="TextDecorations" Value="{x:Null}"/>
</Style>

<TextBlock>                 
    <Hyperlink Command="{Binding ClickCommand, Mode=OneTime}"      
               Style="{StaticResource HyperlinkStyle}">
        <StackPanel Orientation="Horizontal">                       
            <Image Margin="0,2,2,0" Source="{Binding Icon}" />         
            <TextBlock Text="{Binding Text}" />                   
        </StackPanel>                
    </Hyperlink>            
</TextBlock>

问题是您无法查看 ClickCommand 上的 CanClick 是否为 false。

I have following wpf:

<Style x:Key="HyperlinkStyle" TargetType="Hyperlink">
    <Setter Property="Foreground"      
            Value="{StaticResource {x:Static SystemColors.ControlTextBrushKey}}"/>
    <Setter Property="TextDecorations" Value="{x:Null}"/>
</Style>

<TextBlock>                 
    <Hyperlink Command="{Binding ClickCommand, Mode=OneTime}"      
               Style="{StaticResource HyperlinkStyle}">
        <StackPanel Orientation="Horizontal">                       
            <Image Margin="0,2,2,0" Source="{Binding Icon}" />         
            <TextBlock Text="{Binding Text}" />                   
        </StackPanel>                
    </Hyperlink>            
</TextBlock>

The problem is that you can't see if CanClick on the ClickCommand is false.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回眸一遍 2024-10-29 22:58:34

当超链接的命令为 false 时,它​​被禁用(IsEnabled 应为 false)。检查情况是否如此,以及子项目是否也被禁用。您是否尝试找出失败的地方?例如,删除您的自定义样式或子元素(用简单的文本替换它们),以便您可以看到问题出在哪里。

编辑:
所以风格就是问题。在这种情况下,请尝试继承默认样式:

<Style
    x:Key="HyperlinkStyle"
    TargetType="{x:Type Hyperlink}"
    BasedOn="{StaticResource {x:Type Hyperlink}}">

When the hyperlink's command is false, it is disabled (IsEnabled should be false). Check that this is the case and that the child items also are disabled. Did you try finding where it fails? For example, remove your custom style or the child elements (replace them with a simple text), so you can see where the problem is.

Edit:
So the style is the problem. In that case, try inheriting from the default style:

<Style
    x:Key="HyperlinkStyle"
    TargetType="{x:Type Hyperlink}"
    BasedOn="{StaticResource {x:Type Hyperlink}}">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文