Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种在 XtraReport 控件中添加标签和绑定文本的方法。我可以在左上角放置标签并将数据源中的文本绑定到右中对齐。这样的控制存在吗?其他一些解决方法?
既然你有
从数据源绑定文本
我建议您首先将数据源绑定到乐队。将数据源绑定到报表带后,只需将 XRLabel(XtraLabel 不正确)拖放到报表文档中即可。在该标签控件上,使用它的智能标记将其绑定到数据源中的表 > 字段。
附加阅读
您可以使用 string.Format 作为 label.text。因此,您可以在标签中设置变量 Text。
label.text = string.Format("Hello, {0}", myVariable);
因此,将变量提供给报表的构造函数并使用它来创建动态标签。
我希望我能理解你的问题。
问候