我在 DataGrid 中有很多按钮
我想根据我的 if 条件将 Button 的颜色设置为绿色,并将 Button.Text 设置为白色(不是全部,仅适用于 1 个按钮)我已经使用 ITextSharp 来创建 PDF 生成,我评论了我得到的 iTextSharp 头文件结果,但这次发生以下错误时,我的代码中必须需要 iTextSharp。
“无法将 iTextSharp.text.Color 类型隐式转换为 System.Drawing.Color”
这是我的 iTextSharp 头文件
using iTextSharp.text;
using iTextSharp.text.pdf;
using iTextSharp.text.html;
这是代码
if (dsRecAdj.Tables[2].Rows.Count > 0)
{
Button btn = (Button)e.Row.FindControl("btnSalvage");
btn.ForeColor = Color.Red;
}
一些身体请帮助我