gpt4 book ai didi

c# - 从不同的线程调试

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:54 26 4
gpt4 key购买 nike

我有一个进度条,它绑定(bind)到“CurrProgress”和“Total”字段,如下所示:

    <ProgressBar Height="29" HorizontalAlignment="Left" Margin="12,32,0,0" Name="pbSendingData" VerticalAlignment="Top" Width="346"">
<ProgressBar.Value>
<Binding ElementName="this" Path="CurrProgress" />
</ProgressBar.Value>
<ProgressBar.Maximum>
<Binding ElementName="this" Path="Total" />
</ProgressBar.Maximum>
</ProgressBar>

我还有一个“工作线程”,它在尝试保持 UI 响应的同时承担繁重的工作:

    private void worker_DoWork(object sender, DoWorkEventArgs e)
{
const int sizeOfPacket = 30;
Total = allEntries.Count();

var arrayOfEntries = Split(allEntries, sizeOfPacket); //Split array into small arrays

//Send parts to server separately:
foreach (var entries in arrayOfEntries)
{
svc.ProcessPMData(Globals.username, Globals.password, entries.ToArray());
CurrProgress += sizeOfPacket;
Thread.Sleep(100);
}

Thread.Sleep(100);
}

我已确保“Total”和“CurrProgress”依赖属性是线程安全的(尽管我可能没有正确完成):

    //Dependency properties:
public int CurrProgress
{
get
{
return (int)this.Dispatcher.Invoke(
DispatcherPriority.Background,
(DispatcherOperationCallback)delegate
{
return GetValue(CurrProgressProperty);
}, CurrProgressProperty);

}

set
{
this.Dispatcher.BeginInvoke(DispatcherPriority.Background,
(SendOrPostCallback)delegate { SetValue(CurrProgressProperty, value); },
value);
}
}


public static readonly DependencyProperty CurrProgressProperty =
DependencyProperty.Register("CurrProgress", typeof(int), typeof(DataSender), new PropertyMetadata(0));


public int Total
{
get
{
return (int)this.Dispatcher.Invoke(
DispatcherPriority.Background,
(DispatcherOperationCallback)delegate
{
return GetValue(TotalProperty);
}, TotalProperty);

}

set
{
this.Dispatcher.BeginInvoke(DispatcherPriority.Background,
(SendOrPostCallback)delegate { SetValue(TotalProperty, value); },
value);
}
}

public static readonly DependencyProperty TotalProperty =
DependencyProperty.Register("Total", typeof(int), typeof(DataSender), new PropertyMetadata(0));

尝试调试时,我首先尝试从即时窗口检查进度条的值是多少:

pbSendingData.Value

我收到了这条错误信息...

enter image description here

这个错误是有道理的,所以我尝试了另一种方式:

this.Dispatcher.Invoke((Action)(() =>      {   MessageBox.Show(pbSendingData.Minimum);     }));

此时我发现立即窗口不支持lambda表达式。

监 window 口也没有帮助:

enter image description here

在调试时,我想从不同线程的即时/监 window 口中获取 UI 组件的值。这可能吗?作为旁注,如果我的代码中有任何可耻之处,我愿意接受建议。我对 WPF 有点陌生。

最佳答案

  1. 您在进度条属性的绑定(bind)中指的这个“this”元素是什么元素?

  2. 我看到的大多数代码都使用来自工作线程的调度程序和委托(delegate),而不是在属性 getter/setter 中,因为这可能会导致一些丑陋的竞争条件和死锁或类似的讨厌的东西。

  3. “DoWork”方法似乎属于 BackGroundWorker 类。为什么不使用“ReportProgress”功能?它包括线程同步...

关于c# - 从不同的线程调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15373811/

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