在我们的应用程序中,我们有一个可点击的标签,它将弹出另一个窗口.我一直在阅读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>