我使用 WPF 来编写我的界面。我使用 ListView 作为我的任务列表。任务列表包含两列,文件名,进度。每一行绑定到一个 TaskInfo:
public class TaskInfo : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public TaskInfo(string fp)
{
FileSystemInfo fsi= new DirectoryInfo(fp);
FileName = fsi.Name;
FilePath = fp;
PbValue = 0;
}
private int pbvalue;
public int PbValue
{
get { return pbvalue; }
set
{
pbvalue = value;
onPropertyChanged("PbValue");
}
}
private string filename;
public string FileName
{
get { return filename;}
set
{
filename = value;
onPropertyChanged("FileName");
}
}
private string filepath;
public string FilePath
{
get { return filepath;}
set
{
filepath = value;
onPropertyChanged("FilePath");
}
}
private void onPropertyChanged(string name)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged.Invoke(this, new PropertyChangedEventArgs(name));
}
}
}
在 Progress 列中,它包含一个 ProgressBar,将其 Value 绑定到 PbValue。但是由于某种原因,我应该使用C语言编写的Dll。我使用的功能是:
WaterErase(char * filepath, int * pbvalue)
我在 c# 中确定了它:
public extern static void WaterErase(string filepath, ref int pbvalue)
为了执行多任务,我写了一个线程:
class TaskThread
{
private TaskInfo taskinfo = null; //task information
private Thread thread;
public TaskThread(TaskInfo _taskinfo)
{
taskinfo = _taskinfo;
}
private void run()
{
WaterErase(taskinfo.FilePath, ref taskinfo.PbValue);
}
public void start()
{
if (thread == null)
{
thread = new Thread(run);
thread.Start();
}
}
}
但这条线:
WaterErase(taskinfo.FilePath, ref taskinfo.PbValue);
有问题:
属性、索引器或动态成员访问不能作为 out 或 ref 参数传递
我知道为什么会出现这个问题,但是如何解决这个问题以实现实时更改 PbValue 的功能。这样我就可以直观的在ProgressBar中执行任务进度了