gpt4 book ai didi

c# - 在 MouseDown 上显示 MessageBox 占用了 MouseUp 事件

转载 作者:太空狗 更新时间:2023-10-29 20:37:01 26 4
gpt4 key购买 nike

我正在开发一个 WPF 应用程序,我在其中处理了一个最终显示的鼠标按下事件MessageBox.. 但是在 MessageBox 出现在 mouseDown 上之后,它会吃掉控件的相应 MouseUp 事件。

只需在 WPF 窗口中处理 MouseDown 和 MouseUP 事件即可轻松重现场景作为:-

private void Window_MouseDown(object sender, MouseButtonEventArgs e)
{
MessageBox.show("Hello, Mouse down");
}

private void Window_MouseUP(object sender, MouseButtonEventArgs e)
{
MessageBox.show("Hello, Mouse Up");
}

MouseUp 消息永远不会显示,一旦消息框出现在 MouseDown 事件上。

最佳答案

如何初始化 System.Threading.Thread 的新实例来调用 MessageBox,这样主用户界面线程就不会被提示打断?

示例

private void Window_MouseDown(object sender, MouseEventArgs e)
{
Thread mythread = new Thread(() => MessageBox.Show("Hello, Mouse Down")); //Initialize a new Thread to show our MessageBox within
mythread.Start(); //Start the thread
}

private void Window_MouseUP(object sender, MouseEventArgs e)
{
Thread mythread = new Thread(() => MessageBox.Show("Hello, Mouse Up")); //Initialize a new Thread to show our MessageBox within
mythread.Start(); //Start the thread
}

截图

Calling a MessageBox in a different thread to avoid interrupting the main user interface thread

谢谢,
希望这对您有所帮助:)

关于c# - 在 MouseDown 上显示 MessageBox 占用了 MouseUp 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13670753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com