在WPF中触摸Bug?

时间:2014-10-29 16:29:08

标签: c# wpf touch

我做了以下申请(作为测试)

XAML:

<Window x:Class="GUITest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid Background="Transparent">
        <TextBlock Text="openDialog" Background="Red"  HorizontalAlignment="Center" VerticalAlignment="Top" MouseDown="TextBlock_MouseDown" />
    </Grid>
</Window>

C#:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void TextBlock_MouseDown(object sender, MouseButtonEventArgs e)
    {
        OpenFileDialog dlg = new OpenFileDialog();

        Nullable<bool> result = dlg.ShowDialog();

        if (result == true)
        {
            Console.Out.WriteLine(dlg.FileName);
        }
    }
}

我捕获了mouseDown事件,因为它捕获鼠标按钮事件和触发事件。代码具有鼠标单击的预期行为。触摸给我带来了一些麻烦。

如果我触摸TextBlock,它会打开一个询问的对话窗口。关闭后,即使触摸不在TextBlock上,窗口上的任何触摸都会打开对话框窗口。

这是一个错误吗?我可以解决这个问题吗?

编辑:我发布了一个解决方法,实际修复仍然有用

1 个答案:

答案 0 :(得分:0)

对于遇到同样问题的其他人。这不是解决问题的方法,但它是一种解决方法。 我使用了一个按钮并将其重新设置为看起来像TextBlock

XAML:

<Grid Background="Transparent">
   <Button HorizontalAlignment="Left" VerticalAlignment="Top" Click="Button_Click" Content="openDialog">
        <Button.Template>
            <ControlTemplate TargetType="Button">
                 <ContentPresenter />
            </ControlTemplate>
        </Button.Template>
   </Button>
</Grid>

Button_Click的代码与TextBlock_MouseDown

相同