|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于new隐藏成员的作用,往往是出于使用了一个第三方类库,而你又无法获得这个类库的源代码,当你继承这个类库的某个类时,你需要重新实现其中的一个方法,而又需要与父类中的函数使用同样的函数,这是就需要在自定义的子类中把那个同名函数(或成员)加上new标记,从而隐藏父类中同名的成员。良多时分我们必要完成鼠标挪动GridView的行上时该行的背景致产生变更,以让用户取得更好的利用体验。那末怎样完成了,以下是小编从网上搜刮的办法:
双击GridView的OnRowDataBound(行绑定事务)事务;
在背景的GridView1_RowDataBound()办法增加代码,最初代码以下所示:
protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse)
{
inti;
//实行轮回,包管每条数据都能够更新
for(i=0;i<GridView1.Rows.Count;i++)
{
//起首判别是不是是数据行
if(e.Row.RowType==DataControlRowType.DataRow)
{
//当鼠标停止时变动背景致
e.Row.Attributes.Add("onmou搜索引擎优化ver","c=this.style.backgroundColor;this.style.backgroundColor=#00A9FF");
//当鼠标移开时复原背景致
e.Row.Attributes.Add("onmou搜索引擎优化ut","this.style.backgroundColor=c");
}
}
}
前台代码:
<htmlxmlns="http://www.w3.org/1999/xhtml">
<headrunat="server">
<title>完成鼠标划过改动GridView的行背景致清清月儿http://blog.csdn.net/21aspnet</title>
</head>
<body>
<formid="form1"runat="server">
<div>
<asp:GridViewID="GridView1"runat="server"AutoGenerateColumns="False"DataKeyNames="身份证号码"
DataSourceID="SqlDataSource1"AllowSorting="True"BackColor="White"BorderColor="#CCCCCC"BorderStyle="None"BorderWidth="1px"CellPadding="3"Font-Size="12px"OnRowDataBound="GridView1_RowDataBound">
<Columns>
<asp:BoundFieldDataField="身份证号码"HeaderText="身份证号码"ReadOnly="True"SortExpression="身份证号码"/>
<asp:BoundFieldDataField="姓名"HeaderText="姓名"SortExpression="姓名"/>
<asp:BoundFieldDataField="家庭住址"HeaderText="家庭住址"SortExpression="家庭住址"/>
<asp:BoundFieldDataField="邮政编码"HeaderText="邮政编码"SortExpression="邮政编码"/>
</Columns>
<FooterStyleBackColor="White"ForeColor="#000066"/>
<RowStyleForeColor="#000066"/>
<SelectedRowStyleBackColor="#669999"Font-Bold="True"ForeColor="White"/>
<PagerStyleBackColor="White"ForeColor="#000066"HorizontalAlign="Left"/>
<HeaderStyleBackColor="#006699"Font-Bold="True"ForeColor="White"/>
</asp:GridView>
<asp:SqlDataSourceID="SqlDataSource1"runat="server"ConnectionString="<%$ConnectionStrings:冬风商业ConnectionString1%>"
SelectCommand="SELECTtop5[身份证号码],[姓名],[员工性别],[家庭住址],[邮政编码]FROM[飞狐事情室]"DataSourceMode="DataReader"></asp:SqlDataSource>
</div>
</form>
</body>
</html>
更多GridView利用技能,请下载本站的GridView利用技能计算机发展到这个时候,很多技术日益成熟,想学好一种技术都是不容易的,当你学会用的时候你对它的很多原理可能很不了解) |
|