C#编程-80:DataGridView单元格自动填充_彭世瑜_新浪博客_c#



  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace DataGridViewAutoFill
  10. {
  11. public partial class Form1 : Form
  12. {
  13. public Form1()
  14. {
  15. InitializeComponent();
  16. }
  17. private void Form1_Load(object sender, EventArgs e)
  18. {
  19. // TODO:  这行代码将数据加载到表“companyDataSet.clerk”中。您可以根据需要移动或删除它。
  20. this.clerkTableAdapter.Fill(this.companyDataSet.clerk);
  21. }
  22. private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
  23. {
  24. string title = dataGridView1.Columns[dataGridView1.CurrentCell.ColumnIndex].HeaderText;
  25. if (title.Equals("department"))
  26. {
  27. TextBox autoText = e.Control as TextBox;
  28. if (autoText != null)
  29. {
  30. autoText.AutoCompleteMode = AutoCompleteMode.Suggest;
  31. autoText.AutoCompleteSource = AutoCompleteSource.CustomSource;
  32. AutoCompleteStringCollection autoCollection = new AutoCompleteStringCollection();
  33. autoCollection.Add("开发部");
  34. autoCollection.Add("财务部");
  35. autoCollection.Add("技术部");
  36. autoText.AutoCompleteCustomSource = autoCollection;
  37. }
  38. }
  39. }
  40. }
  41. }