DataGrid 完全攻略之一(在编辑状态下改变控件的显示大小)

简介:

页面代码:html
<%@ Page language="c#" Codebehind="AdjustWidth.aspx.cs" AutoEventWireup="false" Inherits="MsDataGrid.AdjustWidth" %> <%@ Page language="c#" Codebehind="AdjustWidth.aspx.cs" AutoEventWireup="false" Inherits="MsDataGrid.AdjustWidth" %>  
<% @ Page language="c#" Codebehind="AdjustWidth.aspx.cs" AutoEventWireup="false" Inherits="MsDataGrid.AdjustWidth"  %>
<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"  >
< HTML >
    
< HEAD >
        
< title > DataGrid使用举例 </ title >
        
< meta  name ="GENERATOR"  Content ="Microsoft Visual Studio 7.0" >
        
< meta  name ="CODE_LANGUAGE"  Content ="C#" >
        
< meta  name ="vs_defaultClientScript"  content ="JavaScript" >
        
< meta  name ="vs_targetSchema"  content ="http://schemas.microsoft.com/intellisense/ie5" >
    
</ HEAD >
    
< body  MS_POSITIONING ="GridLayout" >
        
< form  id ="Form1"  method ="post"  runat ="server" >
            
< FONT  face ="宋体" >
                
< asp:DataGrid  id ="dgShow"  style ="Z-INDEX: 101; LEFT: 31px; POSITION: absolute; TOP: 93px"  runat ="server"  Width ="842px"  Height ="172px"  BorderColor ="Tan"  BorderWidth ="1px"  BackColor ="LightGoldenrodYellow"  CellPadding ="2"  GridLines ="None"  ForeColor ="Black"  PageSize ="1"  AutoGenerateColumns ="False" >
                    
< SelectedItemStyle  ForeColor ="GhostWhite"  BackColor ="DarkSlateBlue" ></ SelectedItemStyle >
                    
< AlternatingItemStyle  BackColor ="PaleGoldenrod" ></ AlternatingItemStyle >
                    
< HeaderStyle  Font-Bold ="True"  BackColor ="Tan" ></ HeaderStyle >
                    
< FooterStyle  BackColor ="Tan" ></ FooterStyle >
                    
< Columns >
                        
< asp:BoundColumn  DataField ="StudentID"  ReadOnly ="True"  HeaderText ="学生ID" ></ asp:BoundColumn >
                        
< asp:BoundColumn  DataField ="StudentName"  HeaderText ="学生姓名" ></ asp:BoundColumn >
                        
< asp:BoundColumn  DataField ="StudentPass"  HeaderText ="密码" ></ asp:BoundColumn >
                        
< asp:BoundColumn  DataField ="Sex"  HeaderText ="性别" ></ asp:BoundColumn >
                        
< asp:BoundColumn  DataField ="Birthday"  HeaderText ="生日"  DataFormatString ="{0:yyyy-M-d}" ></ asp:BoundColumn >
                        
< asp:BoundColumn  DataField ="Email"  HeaderText ="邮件地址" ></ asp:BoundColumn >
                        
< asp:TemplateColumn  HeaderText ="性别模板列" >
                            
< ItemTemplate >
                                
< asp:RadioButton  id =RadioButton2  runat ="server"  Text ="男"  Checked ='<%#  DataBinder.Eval(Container, "DataItem.Sex") % > ' Enabled="False">
                                
</ asp:RadioButton >
                                
< asp:RadioButton  id =RadioButton1  runat ="server"  Text ="女"  Checked ='<%#  !(bool)DataBinder.Eval(Container, "DataItem.Sex") % > ' Enabled="False">
                                
</ asp:RadioButton >
                            
</ ItemTemplate >
                            
< EditItemTemplate >
                                
< asp:RadioButton  id =cbSex  runat ="server"  Text ="男"  Checked ='<%#  DataBinder.Eval(Container, "DataItem.Sex") % > ' GroupName="Sex">
                                
</ asp:RadioButton >
                                
< asp:RadioButton  id =RadioButton4  runat ="server"  Text ="女"  Checked ='<%#  !(bool)DataBinder.Eval(Container, "DataItem.Sex") % > ' GroupName="Sex">
                                
</ asp:RadioButton >
                            
</ EditItemTemplate >
                        
</ asp:TemplateColumn >
                        
< asp:ButtonColumn  Text ="选择"  HeaderText ="选择"  CommandName ="Select" ></ asp:ButtonColumn >
                        
< asp:EditCommandColumn  ButtonType ="LinkButton"  UpdateText ="更新"  HeaderText ="操作"  CancelText ="取消"  EditText ="编辑" ></ asp:EditCommandColumn >
                        
< asp:ButtonColumn  Text ="删除"  HeaderText ="删除"  CommandName ="Delete" ></ asp:ButtonColumn >
                        
< asp:HyperLinkColumn  Text ="点击查看"  DataNavigateUrlField ="StudentID"  DataNavigateUrlFormatString ="Show.aspx?ID={0}"  DataTextField ="StudentName"  HeaderText ="详细信息" ></ asp:HyperLinkColumn >
                    
</ Columns >
                    
< PagerStyle  HorizontalAlign ="Center"  ForeColor ="DarkSlateBlue"  BackColor ="PaleGoldenrod" ></ PagerStyle >
                
</ asp:DataGrid ></ FONT >
        
</ form >
    
</ body >
</ HTML >
后台代码:cs
using  System;
using  System.Collections;
using  System.ComponentModel;
using  System.Data;
using  System.Drawing;
using  System.Web;
using  System.Web.SessionState;
using  System.Web.UI;
using  System.Web.UI.WebControls;
using  System.Web.UI.HtmlControls;
using  System.Data.SqlClient;
namespace  MsDataGrid
{
    
/// <summary>
    
/// WebForm1 的摘要说明。
    
/// </summary>

    public class AdjustWidth : System.Web.UI.Page
    
{
        
protected System.Web.UI.WebControls.DataGrid dgShow;
    
        
private void Page_Load(object sender, System.EventArgs e)
        
{
            
// 在此处放置用户代码以初始化页面
            if(!IsPostBack)
                BindData();
            
        }

        
private void BindData()
        
{
            
string strCon = System.Configuration.ConfigurationSettings.AppSettings["DSN"];
            SqlConnection con 
= new SqlConnection(strCon);
            SqlDataAdapter da 
= new SqlDataAdapter("Select * from tbStudentinfo",con);
            DataSet ds 
= new DataSet();
            da.Fill(ds,
"studentinfo");
            dgShow.DataSource 
= ds.Tables["studentinfo"].DefaultView;
            dgShow.DataBind();
            dgShow.Columns[
0].Visible = false;
            
        }

        
Web Form Designer generated code

        
private void dgShow_EditCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
        
{
            dgShow.EditItemIndex 
= e.Item.ItemIndex;
            BindData();

        }

    
        
private void dgShow_CancelCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
        
{
            dgShow.EditItemIndex 
= -1;
            BindData();
        }

        
private void dgShow_PageIndexChanged(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
        
{
            dgShow.CurrentPageIndex 
= e.NewPageIndex;
            BindData();
        }

        
private void dgShow_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
        
{
            
if(dgShow.Items.Count==1)
            
{
                
if(dgShow.CurrentPageIndex!=0)
                    dgShow.CurrentPageIndex 
= dgShow.CurrentPageIndex-1;
            }

            
string strSql = "delete from tbStudentinfo where studentid="+e.Item.Cells[0].Text+"";
            ExecuteSql(strSql);
            BindData();

        }

        
////////////////////////////////////////////////////////////
        //说明:执行制定SQL语句/////////////////////////////////////
        ///////////////////////////////////////////////////////////
        private void ExecuteSql(string strSql)
        
{
            
try
            
{
                
string strconn = System.Configuration.ConfigurationSettings.AppSettings["DSN"];//从Web.config中读取
                SqlConnection conn =new SqlConnection(strconn);
                SqlCommand com 
= new SqlCommand(strSql,conn);
                conn.Open();
                com.ExecuteNonQuery();
                conn.Close();
            }
 
            
catch(Exception e)
            
{
                Response.Write(
"<script language = 'javascript'>alert('"+e.Message+"');</script>") ;
                            
            }

        }

        
        
private void dgShow_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
        
{
            
string strStudentID = e.Item.Cells[0].Text;//处于非编辑状态
            string strName = ((TextBox)(e.Item.Cells[1].Controls[0])).Text;//处于编辑状态
            string strPass =((TextBox)(e.Item.Cells[2].Controls[0])).Text;
            
string strSex = ((CheckBox)(e.Item.Cells[3].FindControl("cbSex"))).Checked?"1":"0";
            
string strBirthday =((TextBox)(e.Item.Cells[4].Controls[0])).Text;
            
string strEmail =((TextBox)(e.Item.Cells[5].Controls[0])).Text;
            
string strSql = "update tbStudentinfo set StudentName='"+strName+"',StudentPass='"+strPass+"'";
            strSql 
+=",Sex="+strSex+",Birthday='"+strBirthday+"',Email='"+strEmail+"' where studentid="+strStudentID+"";
            ExecuteSql(strSql);
            dgShow.EditItemIndex 
= -1;
            BindData();

        }


        
private void dgShow_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
        
{
            
if (e.Item.ItemType == ListItemType.EditItem) 
            
{
                
for (int i=0;i<e.Item.Cells.Count;i++)
                
{
                    
if(e.Item.Cells[i].Controls.Count>0)
                    
{
                        
try
                        
{
                            TextBox t 
=(TextBox)e.Item.Cells[i].Controls[0];
                            t.Width
=130;
                        }

                        
catch(Exception ee)
                        
{
                        }

                    }

                }

            }

        }


    }

}



本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2005/10/12/253175.html,如需转载请自行联系原作者
相关文章
|
3月前
|
开发框架 前端开发 JavaScript
在DevExpress的GridView的列中,使用RepositoryItemSearchLookUpEdit控件实现产品列表信息的展示和选择
在DevExpress的GridView的列中,使用RepositoryItemSearchLookUpEdit控件实现产品列表信息的展示和选择
WPF中如何获取选中行/单元格所在行的数据
WPF中如何获取选中行/单元格所在行的数据
|
前端开发
前端工作小结75-修改表头按钮样式
前端工作小结75-修改表头按钮样式
100 0
前端工作小结75-修改表头按钮样式
|
人工智能 C#
c#中在datagridview的表格动态增加一个按钮方法
c#中在datagridview的表格动态增加一个按钮方法,如果想要这一套教程的可以移步去这里 《期末作业C#实现学生宿舍管理系统》,对了最近我们有一个人工智能交流群,如果大家对代码有问题,想交流的可以进群,私聊我就可以了! 效果图片 : 在Load事件中写入代码 那ui有了功能怎么办呢?别急我们在 dataGridView1_CellContentClick事件中添加方法 这样的话 我们就可以点击对应行的修改来获取到id的值这里有一个bug就是第三行没数据需要隐藏,现在还没有解决,欢迎大家指出!.....
665 0
c#中在datagridview的表格动态增加一个按钮方法
|
存储
PyQt5 技巧篇-复选框绑定行内容,全选、清空、展示选中的内容功能实现演示,设置复选框选中,检查复选框选中状态
PyQt5 技巧篇-复选框绑定行内容,全选、清空、展示选中的内容功能实现演示,设置复选框选中,检查复选框选中状态
473 0
PyQt5 技巧篇-复选框绑定行内容,全选、清空、展示选中的内容功能实现演示,设置复选框选中,检查复选框选中状态
|
C# 前端开发
wpf中的datagrid绑定操作按钮是否显示或者隐藏
如图,需要在wpf中的datagrid的操作那列有个确认按钮,然后在某些条件下确认按钮可见,某些情况下不可见的,放在mvc里直接在cshtml页面中if..else就行了。 但是在wpf里不行。。网上搜索了好久才找到解决方法,原来只是binding那个visiable属性就行了,
6896 0