C#教程

关注公众号 jb51net

关闭
首页 > 软件编程 > C#教程 > C#中TextBox输入提示功能

C#中TextBox实现输入提示功能的方法

作者:zhuzhao

这篇文章主要介绍了C#中TextBox实现输入提示功能的方法,涉及C#中TextBox的相关操作技巧,需要的朋友可以参考下

本文实例讲述了C#中TextBox实现输入提示功能的方法。分享给大家供大家参考。具体如下:

设置TextBox的AutoCompleteSource的属性为CustomSource,设置TextBox的AutoCompleteMode属性为SuggestAppend。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using WindowsApplication7.DataSet1TableAdapters;
namespace WindowsApplication7
{
 public partial class Form1 : Form
 {
  DataSet1 ds = new DataSet1();
  CustomersTableAdapter adpter = new CustomersTableAdapter();
  public Form1()
  {
   InitializeComponent();
  }
  private void BuildAutoCompleteList()
  {
   AutoCompleteStringCollection filterVals = new AutoCompleteStringCollection();
   foreach (DataRow dr in ds.Customers)
   {
    filterVals.Add(dr["CompanyName"].ToString());
   }
   txtCompanyName.AutoCompleteCustomSource = filterVals;
  }
  private void Form1_Load(object sender, EventArgs e)
  {
   adpter.Fill(ds.Customers);
   BuildAutoCompleteList();
   }
 }
}

希望本文所述对大家的C#程序设计有所帮助。

您可能感兴趣的文章:
阅读全文