c# – 是否可以使用Microsoft Automation UI单击WPF / WinForm应用程序上的标签控件

前端之家收集整理的这篇文章主要介绍了c# – 是否可以使用Microsoft Automation UI单击WPF / WinForm应用程序上的标签控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我们的应用程序中,我们有一个可点击的标签,它将弹出另一个窗口.我一直在阅读Microsoft自动化UI文档,但找不到我能够单击标签控件的方法.

我知道我不能使用Invoke模式,因为它只处理Button控件.

以下是我们拥有的XAML代码

<Label Name="LblCompleteOrdersCount" Content="{Binding CompleteOrders,Mode=OneWay}" Margin="434,45,0" Height="62" Width="170" Padding="0" HorizontalAlignment="Left" VerticalAlignment="Top" VerticalContentAlignment="Top" FontSize="56" FontWeight="Bold">
    <Label.InputBindings>
        <MouseBinding Command="{Binding Path=CompleteOrdersCommand}" MouseAction="LeftClick" />
    </Label.InputBindings>
 </Label>

解决方法

我的提示是使用Button.它派生自ICommandSource接口,因此您可以毫不费力地使用Command将Button与处理程序相关联.问问自己:Label提供的Button功能不是什么功能?好看?覆盖默认按钮的模板,您将获得相同的外观.只要您不利用Label的任何其他功能,我就会发现没有必要弄乱它.
原文链接:https://www.f2er.com/csharp/244254.html

猜你在找的C#相关文章