gpt4 book ai didi

c# - 如何在 C# 中进行数据绑定(bind)?

转载 作者:IT王子 更新时间:2023-10-29 04:03:09 27 4
gpt4 key购买 nike

我有以下类(class)

public class Car{   public Name {get; set;}}

我想以编程方式将其绑定(bind)到文本框。

我该怎么做?

在黑暗中拍摄:

...Car car = new Car();TextEdit editBox = new TextEdit();editBox.DataBinding.Add("Name", car, "Car - Name");...

出现以下错误

"Cannot bind to the propery 'Name' on the target control.

我做错了什么,我应该怎么做?我发现来自 Web 开发的数据绑定(bind)概念有点难以理解。

最佳答案

你想要

editBox.DataBindings.Add("Text", car, "Name");

第一个参数是要绑定(bind)的控件的属性名,第二个是数据源,第三个参数是要绑定(bind)的数据源的属性。

关于c# - 如何在 C# 中进行数据绑定(bind)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/115328/

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