СообЧа > База Знаний > Программирование > .NET

Вопрос

Как в VB.NET сделать контрол, желательно, в стиле комбобокса, с автозаполнением?

Например, ввел туда Nokia 3310 один раз, что б оно в списке сохранилось. Ввел Siemens C35 — что б тоже сохранилось. При вводе похожих названий работала автоподстановка. Есть такое в VB .Net или сторонних контролах, или все вручную надо делать?

Ответ

Вручную, примерно так:

Public Class CoolCombo
  Inherits System.Windows.Forms.ComboBox

#Region " Windows Form Designer generated code "

Public Sub New()
  MyBase.New()

'This call is required by the Windows Form Designer.
  InitializeComponent()

'Add any initialization after the InitializeComponent() call

     End Sub

'UserControl1 overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  If disposing Then
   If Not (components Is Nothing) Then
components.Dispose()
  End If
     End If
MyBase.Dispose(disposing)
   End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer
 'It can be modified using the Windows Form Designer.
 'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  components = New System.ComponentModel.Container()
     End Sub

#End Region

Private Sub Сombo_KeyPress(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyPressEventArgs) Handles MyBase.KeyPress
 Static Text As String
  Dim l As Integer
 If e.KeyChar = Chr(13) Then
 MyBase.Items.Add(MyBase.Text)
  MyBase.Select(0, MyBase.Text.Length)
  Text = ""
   Else
   Text &= e.KeyChar
  l = Text.Length
  Dim i As Integer
 For i = 0 To MyBase.Items.Count — 1
If InStr(MyBase.Items(i), Text) = 1 Then
MyBase.Text = MyBase.Items(i)
  MyBase.Select(l, MyBase.Text.Length — l)
   Exit For
  End If
   Next
    End If
     End Sub
End Class

Алексей Вишневский



Copyright © 2000-2004 Сообщество Чайников
Контактная информация