Progress bar working but label is not updating
问题 I have a library with an Interface. Public Interface Progress { int ProgressValue{get;set;}, string ProgressText{get;set;}, } Library has a method Create (dummy code): Public Class TestLibrary { Progress _progress; Public void Create() { foreach(var n in TestList) { // Do Something _progress.ProgressValue = GetIndex(n); _progress.ProgressText = "Updating..." + n; } } } I have a project that references this library and calls Create method. It even Implements Interface Progress. Public Class