Đang chuẩn bị liên kết để tải về tài liệu:
Creating Custom Columns in a Windows Forms DataGrid

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

[ Team LiB ] Recipe 7.10 Creating Custom Columns in a Windows Forms DataGrid Problem You need to create a DataGrid having columns with custom formatting and attributes. Solution Use the DataGridTableStyle class. The sample code contains two event handlers | Team LiB Recipe 7.10 Creating Custom Columns in a Windows Forms DataGrid Problem You need to create a DataGrid having columns with custom formatting and attributes. Solution Use the DataGridTableStyle class. The sample code contains two event handlers Form.Load Sets up the sample by creating a DataAdapter and using it to fill a DataTable with data from the ProductID ProductName and Discontinued columns of the Products table in the Northwind database. The DataGridTableStyle class is used to define a data grid containing three custom columns two text boxes and one check box corresponding to the ProductID ProductName and Discontinued columns. Finally the default view of the Products DataTable is bound to the data grid on the form. Update Button.Click Uses the DataAdapter created in the Form.Load event handler to update changes made to the Products DataTable back to the database. The C code is shown in Example 7-18. Example 7-18. File CustomColumnsInDataGridForm.cs Namespaces variables and constants using System using System.Configuration using System.Windows.Forms using System.Data using System.Data.SqlClient private SqlDataAdapter da private DataTable dt . . . private void CustomColumnsInDataGridForm_Load object sender System.EventArgs e Create the DataAdapter. String selectCommand SELECT ProductID ProductName Discontinued FROM Products da new SqlDataAdapter selectCommand ConfigurationSettings.AppSettings S ql_ConnectString Use CommandBuilder to handle updates back to the data source. SqlCommandBuilder cb new SqlCommandBuilder da Retrieve the table schema. dt new DataTable Products da.FillSchema dt SchemaType.Source Default the check box column to false. dt.Columns Discontinued .DefaultValue false Fill the table. da.Fill dt Define the table for the grid. DataGridTableStyle ts new DataGridTableStyle ts.MappingName Products Define and add the columns to the grid. DataGridTextBoxColumn productIDCol new DataGridTextBoxColumn productIDCol.MappingName ProductID .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.