protected void FpSpread1_CellClick(object sender, FarPoint.Web.Spread.SpreadCommandEventArgs e)
{
TextBox1.Text = "You clicked in row " + e.CommandArgument.X + ", column " + e.CommandArgument.Y;
}
错误 1 “object”不包含“X”的定义,并且找不到可接受类型为“object”的第一个参数的扩展方法“X”(是否缺少 using 指令或程序集引用?)
C:\Documents and Settings\lq\My Documents\Visual Studio 2008\Projects\fpApplication\fpApplication\Default.aspx.cs 118 7 fpApplication |
|