-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlistBoxOP.cs
More file actions
53 lines (44 loc) · 1.2 KB
/
listBoxOP.cs
File metadata and controls
53 lines (44 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace listBoxOP
{
public partial class Form5 : Form
{
public Form5()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
foreach (int i in listBox1.SelectedIndices)
{
MessageBox.Show(listBox1.Items[i].ToString());
}
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void listBox1_DoubleClick(object sender, EventArgs e)
{
MessageBox.Show(listBox1.Text);
}
private void button2_Click(object sender, EventArgs e)
{
//listBox1.Items.Clear();
//listBox1.Items.Remove("sun");
listBox1.Items.RemoveAt(0);
}
private void Form5_Load(object sender, EventArgs e)
{
listBox1.Items.Add("sun");
listBox1.Items.Add("mon");
listBox1.Items.Add("tue");
}
}
}