ضمن ASP.NET2.0، أضف تأثير تمييز لون الصف بالماوس فوق (onmouseover، onmouseout) إلى GridView!
الكاتب:Eve Cole
وقت التحديث:2009-06-30 17:02:38
GridView1_RowDataBound (مرسل الكائن، GridViewRowEventArgs e) باطلة محمية
{
//الحصول على أفضل النتائج
if (e.Row.RowType == DataControlRowType.DataRow)//الحصول على البيانات اللازمة لتكوين صف البيانات
{
int money = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "MONEY"));
إذا (المال == 77)
e.Row.BackColor = Color.Red;
//string customer = (string)DataBinder.Eval(e.Row.DataItem, "CUSTOMER");
سلسلة العملاء = DataBinder.Eval(e.Row.DataItem, "CUSTOMER").ToString();
إذا (العميل == "sdf")
e.Row.BackColor = Color.Red;
}
//الحصول على أفضل النتائج
if (e.Row.RowType == DataControlRowType.DataRow)//الحصول على البيانات اللازمة لتكوين صف البيانات
{
//الحصول على أفضل النتائج هو الحصول على أفضل النتائج
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='yellow',this.style.fontWeight='';");
//الحصول على أفضل النتائج هو الحصول على أفضل النتائج
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
}
//الحصول على أفضل النتائج
إذا (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onclick"،this.style.backgroundColor='#99cc00'; this.style.color='buttontext';this.style.cursor='default';");
}