Use popup menu to add and delete ListBox item : ListBox « GUI « VB.Net Tutorial






Use popup menu to add and delete ListBox item
Imports System.Windows.Forms

public class MenuItemAddRemoveItemListBox
   public Shared Sub Main
        Application.Run(New Form1)
   End Sub
End class

Public Class Form1
    Inherits System.Windows.Forms.Form

    Public Sub New()
        MyBase.New()

        InitializeComponent()

    End Sub

    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

    Private components As System.ComponentModel.IContainer

    Friend WithEvents ContextMenu1 As System.Windows.Forms.ContextMenu
    Friend WithEvents MenuItem1 As System.Windows.Forms.MenuItem
    Friend WithEvents MenuItem2 As System.Windows.Forms.MenuItem
    Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.ContextMenu1 = New System.Windows.Forms.ContextMenu
        Me.MenuItem1 = New System.Windows.Forms.MenuItem
        Me.MenuItem2 = New System.Windows.Forms.MenuItem
        Me.ListBox1 = New System.Windows.Forms.ListBox
        Me.SuspendLayout()
        '
        'ContextMenu1
        '
        Me.ContextMenu1.MenuItems.AddRange(New System.Windows.Forms.MenuItem() {Me.MenuItem1, Me.MenuItem2})
        '
        'MenuItem1
        '
        Me.MenuItem1.Index = 0
        Me.MenuItem1.Text = "Add"
        '
        'MenuItem2
        '
        Me.MenuItem2.Index = 1
        Me.MenuItem2.Text = "Delete"
        '
        'ListBox1
        '
        Me.ListBox1.Items.AddRange(New Object() {"A", "B", "C", "D", "E"})
        Me.ListBox1.Location = New System.Drawing.Point(80, 64)
        Me.ListBox1.Name = "ListBox1"
        Me.ListBox1.Size = New System.Drawing.Size(104, 121)
        Me.ListBox1.TabIndex = 0
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
        Me.ClientSize = New System.Drawing.Size(292, 266)
        Me.ContextMenu = Me.ContextMenu1
        Me.Controls.Add(Me.ListBox1)
        Me.ResumeLayout(False)

    End Sub

    Private Sub MenuItem1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem1.Click
        ListBox1.Items.Add("www.java2s.com")
    End Sub

    Private Sub MenuItem2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem2.Click
        ListBox1.Items.Remove(ListBox1.SelectedItem)
    End Sub
End Class








14.13.ListBox
14.13.1.Add value to ListBoxAdd value to ListBox
14.13.2.Add, remove and clear list box itemsAdd, remove and clear list box items
14.13.3.Use popup menu to add and delete ListBox itemUse popup menu to add and delete ListBox item
14.13.4.ListBox selection eventListBox selection event
14.13.5.Multiple SelectionsMultiple Selections
14.13.6.Get selected Items in a ListBoxGet selected Items in a ListBox
14.13.7.Set selected item in a ListBoxSet selected item in a ListBox
14.13.8.Get selected indices in a ListBox
14.13.9.Get selected item in a ListBox selection eventGet selected item in a ListBox selection event
14.13.10.Owner draw ListBoxOwner draw ListBox
14.13.11.Owner draw ListBox fixedOwner draw ListBox fixed
14.13.12.ListBox double click eventListBox double click event
14.13.13.MultiColumn ListBoxMultiColumn ListBox
14.13.14.Get mouse over index by mouse locationGet mouse over index by mouse location