我正在编写一份 Telerik 报告。在我的报告中有三个文本框(textBox14、textBox15、textBox16)。
在 textBox14 和 15 中,根据总和组标准显示来自数据源的值的总和。我想在 16 中显示 textBox14 和 15 值的总和。如何在 textBox16 的 ItemDataBinding 或 ItemDataBound 事件中获取 textBox 14 和 15 的值。
private void textBox16_ItemDataBound(object sender, EventArgs e)
{
string amt= textBox14.Value; // It getting only the mapped field name. ie Fields.amt, but I want the display text of the textBox14. There is no .Text property for textBox14.
string tax= textBox15.Value; // It getting only the mapped field name. ie Fields.tax, but I want the display text of the textBox14. There is no .Text property for textBox15.
}
我想将 textBox16 值设置为
textBox16.Value = Convert.ToString(ConvetToInt32(amt) + ConvetToInt32(tax));
我怎样才能得到这些值?