Bài giảng Lập trình C# 2010: Chương 2.4 - ĐH Công nghệ Đồng Nai
Số trang: 16
Loại file: pptx
Dung lượng: 295.47 KB
Lượt xem: 13
Lượt tải: 0
Xem trước 2 trang đầu tiên của tài liệu này:
Thông tin tài liệu:
Bài giảng Lập trình C# 2010: Chương 2.4 trình bày cách thức thực hiện, câu lệnh, nút lệnh và tính năng của các nút lệnh cùng một số nội dung khác về Windows Forms and Windows Forms Controls.
Nội dung trích xuất từ tài liệu:
Bài giảng Lập trình C# 2010: Chương 2.4 - ĐH Công nghệ Đồng NaiDONG NAI UNIVERSITY OF TECHNOLOGY DONG NAI UNIVERSITY OF TECHNOLOGY ListViewbtnHeader lvDataDn btnAdd txtID txtNamebtnRemove dateBirthDay private void DONG NAI UNIVERSITY OF TECHNOLOGYbtnLoadHeader_Click(object sender, EventArgs e) { ColumnHeader hdID = new ColumnHeader(); hdID.Text = ID; ColumnHeader hdName = new ColumnHeader(); hdName.Text = Name; ColumnHeader hdBirthday = new ColumnHeader(); DONG NAI UNIVERSITY OF TECHNOLOGYlvDataDn.GridLines = true;lvDataDn.FullRowSelect = true;lvDataDn.MultiSelect = true;lvDataDn.HideSelection = false;lvDataDn.View = View.Details;hdID.Width = 100;hdName.Width =140;hdBirthday.Width = 140;lvDataDn.Columns.Clear(); DONG NAI UNIVERSITY OF TECHNOLOGYlvDataDn.Columns.AddRange(new ColumnHeader[]{ hdID,hdName,hdBirthday});} At Design Time ???? DONG NAI UNIVERSITY OF TECHNOLOGY private void btnAdd_Click(object sender, EventArgs e){ListViewItem itemID = new ListViewItem();itemID.Text = txtID.Text;ListViewItem.ListViewSubItemitemName = newListViewItem.ListViewSubItem();itemName.Text=txtName.Text;itemID.SubItems.Add(itemName);ListViewItem.ListViewSubItem DONG NAI UNIVERSITY OF TECHNOLOGYitemBirthday = newListViewItem.ListViewSubItem(); itemBirthday.Text =dateBirthDay.Value.Day + / +dateBirthDay.Value.Month + / +dateBirthDay.Value.Year;itemID.SubItems.Add(itemBirthday);lvDataDn.Items.Add(itemID); DONG NAI UNIVERSITY OF TECHNOLOGY private void btnRemove_Click(object sender, EventArgs e){ListView.SelectedListViewItemCollectionlist = lvDataDn.SelectedItems;foreach (ListViewItem item inlist) lvDataDn.Items.Remove(item);} DONG NAI UNIVERSITY OF TECHNOLOGY We could use IndicesListView.SelectedIndexCollection indices =lvDataDn.SelectedIndices;foreach (int index in indices){ //Process Index here} DONG NAI UNIVERSITY OF TECHNOLOGYTreeView DONG NAI UNIVERSITY OF TECHNOLOGYImageList Popular Properties ImageIndex & Method SelectedImageIndexTreeNode SelectedNode Add ExpandNodes Remove Collapse DONG NAI UNIVERSITY OF TECHNOLOGYprivate void frmTreeView_Load(object sender, EventArgs e){cboImageIndex.Items.Clear(); for (int i = 0; i < imgList.Images.Count;i++ ) {cboImageIndex.Items.Add(i); } tvSample.ImageList =imgList;private void btnAddRoot_Click DONG NAI UNIVERSITY OF TECHNOLOGY(object sender, EventArgs e){tvSample.Nodes.Clear();TreeNode rootNode = newTreeNode(txtRoot.Text);rootNode.ImageIndex =Int32.Parse(cboImageIndex.Text);rootNode.SelectedImageIndex =rootNode.ImageIndex;tvSample.Nodes.Add(rootNode);txtRoot.Text = ;} DONG NAI UNIVERSITY OF TECHNOLOGYprivate voidcboImageIndex_SelectedIndexChanged(object sender, EventArgs e) {picShow.Image=imgList.Images[Int32.Parse(cboImageIndex.Text)];} DONG NAI UNIVERSITY OF TECHNOLOGYprivate voidbtnRemove_Click(object sender,EventArgs e) { TreeNode tNode =tvSample.SelectedNode;tvSample.Nodes.Remove(tNode);} DONG NAI UNIVERSITY OF TECHNOLOGYEND
Nội dung trích xuất từ tài liệu:
Bài giảng Lập trình C# 2010: Chương 2.4 - ĐH Công nghệ Đồng NaiDONG NAI UNIVERSITY OF TECHNOLOGY DONG NAI UNIVERSITY OF TECHNOLOGY ListViewbtnHeader lvDataDn btnAdd txtID txtNamebtnRemove dateBirthDay private void DONG NAI UNIVERSITY OF TECHNOLOGYbtnLoadHeader_Click(object sender, EventArgs e) { ColumnHeader hdID = new ColumnHeader(); hdID.Text = ID; ColumnHeader hdName = new ColumnHeader(); hdName.Text = Name; ColumnHeader hdBirthday = new ColumnHeader(); DONG NAI UNIVERSITY OF TECHNOLOGYlvDataDn.GridLines = true;lvDataDn.FullRowSelect = true;lvDataDn.MultiSelect = true;lvDataDn.HideSelection = false;lvDataDn.View = View.Details;hdID.Width = 100;hdName.Width =140;hdBirthday.Width = 140;lvDataDn.Columns.Clear(); DONG NAI UNIVERSITY OF TECHNOLOGYlvDataDn.Columns.AddRange(new ColumnHeader[]{ hdID,hdName,hdBirthday});} At Design Time ???? DONG NAI UNIVERSITY OF TECHNOLOGY private void btnAdd_Click(object sender, EventArgs e){ListViewItem itemID = new ListViewItem();itemID.Text = txtID.Text;ListViewItem.ListViewSubItemitemName = newListViewItem.ListViewSubItem();itemName.Text=txtName.Text;itemID.SubItems.Add(itemName);ListViewItem.ListViewSubItem DONG NAI UNIVERSITY OF TECHNOLOGYitemBirthday = newListViewItem.ListViewSubItem(); itemBirthday.Text =dateBirthDay.Value.Day + / +dateBirthDay.Value.Month + / +dateBirthDay.Value.Year;itemID.SubItems.Add(itemBirthday);lvDataDn.Items.Add(itemID); DONG NAI UNIVERSITY OF TECHNOLOGY private void btnRemove_Click(object sender, EventArgs e){ListView.SelectedListViewItemCollectionlist = lvDataDn.SelectedItems;foreach (ListViewItem item inlist) lvDataDn.Items.Remove(item);} DONG NAI UNIVERSITY OF TECHNOLOGY We could use IndicesListView.SelectedIndexCollection indices =lvDataDn.SelectedIndices;foreach (int index in indices){ //Process Index here} DONG NAI UNIVERSITY OF TECHNOLOGYTreeView DONG NAI UNIVERSITY OF TECHNOLOGYImageList Popular Properties ImageIndex & Method SelectedImageIndexTreeNode SelectedNode Add ExpandNodes Remove Collapse DONG NAI UNIVERSITY OF TECHNOLOGYprivate void frmTreeView_Load(object sender, EventArgs e){cboImageIndex.Items.Clear(); for (int i = 0; i < imgList.Images.Count;i++ ) {cboImageIndex.Items.Add(i); } tvSample.ImageList =imgList;private void btnAddRoot_Click DONG NAI UNIVERSITY OF TECHNOLOGY(object sender, EventArgs e){tvSample.Nodes.Clear();TreeNode rootNode = newTreeNode(txtRoot.Text);rootNode.ImageIndex =Int32.Parse(cboImageIndex.Text);rootNode.SelectedImageIndex =rootNode.ImageIndex;tvSample.Nodes.Add(rootNode);txtRoot.Text = ;} DONG NAI UNIVERSITY OF TECHNOLOGYprivate voidcboImageIndex_SelectedIndexChanged(object sender, EventArgs e) {picShow.Image=imgList.Images[Int32.Parse(cboImageIndex.Text)];} DONG NAI UNIVERSITY OF TECHNOLOGYprivate voidbtnRemove_Click(object sender,EventArgs e) { TreeNode tNode =tvSample.SelectedNode;tvSample.Nodes.Remove(tNode);} DONG NAI UNIVERSITY OF TECHNOLOGYEND
Tìm kiếm theo từ khóa liên quan:
Kỹ thuật lập trình Công nghệ lập trình Ngôn ngữ lập trình C Học lập trình C Visual Studio 2010 Kỹ thuật lập trìnhGợi ý tài liệu liên quan:
-
Kỹ thuật lập trình trên Visual Basic 2005
148 trang 260 0 0 -
NGÂN HÀNG CÂU HỎI TRẮC NGHIỆM THIẾT KẾ WEB
8 trang 202 0 0 -
101 trang 199 1 0
-
Giới thiệu môn học Ngôn ngữ lập trình C++
5 trang 192 0 0 -
Bài giảng Nhập môn về lập trình - Chương 1: Giới thiệu về máy tính và lập trình
30 trang 161 0 0 -
Luận văn: Nghiên cứu kỹ thuật giấu tin trong ảnh Gif
33 trang 152 0 0 -
Tìm hiểu về ngôn ngữ lập trình C: Phần 1 - Quách Tuấn Ngọc
211 trang 149 0 0 -
161 trang 129 1 0
-
Báo cáo thực tập Công nghệ thông tin: Lập trình game trên Unity
27 trang 117 0 0 -
Giáo trình Vi điều khiển PIC: Phần 1
119 trang 116 0 0