我想将 a 绑定textbox
到静态类的属性。我希望这是双向绑定。我的静态类是这样的(修剪):
public static class ocrVar
{
static ocrVar()
{
MeterNumber = new Element();
}
}
Element 类看起来像这样(修剪):
public class Element
{
public List<string> Value { get; set; }
public Element()
: this(new List<string>())
{
}
public Element(List<string> value)
{
Value = value;
}
}
如果我想获取 aTextBox
并将其绑定到 ocrVar.MeterNumber.Value[0],有没有办法做到这一点?