我有一个wpf-application,我正在使用以下代码:
//Create a Delegate that matches the Signature of the TextBox SetValue method
private delegate void UpdateSylvacDelegate(System.Windows.DependencyProperty dp, Object value);
private void Process()
{
var settings = new Settings();
string value;
//Create a new instance of our TextBox Delegate that points to the TextBox SetValue method.
var updateTextBoxDelegate = new UpdateSylvacDelegate(textBox_Result.SetValue);
...
...
现在我想在新的windows-forms应用程序中使用相同的代码,也使用文本框(textBox_Result)。出于某种原因,当我尝试创建一个窗体时,我的 textBox_Result 可以使用 NO SetValue 方法新实例。
var updateTextBoxDelegate = new UpdateSylvacDelegate(textBox_Result.???); <-- SetValue not exists here!
是什么原因以及如何解决这个问题?