3 つのタブを持つフォームを作成しました。下のボタンは 1 つのタブの下にあり、クリックするとListBox
readBox にテキスト ファイルの項目が入力されます。別のタブに切り替えたときに ListBox` から項目を削除する方法がわかりません。どんな助けでも大歓迎です。ありがとう。
private void read_Click(object sender, EventArgs e)
{
FileStream file = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Read, FileShare.ReadWrite);
StreamReader read = new StreamReader(file);
string readIt;
string[] show;
string birthday;
readIt = read.ReadLine();
while (readIt != null)
{
show = readIt.Split(DELIM);
friend.FirstName = show[0];
friend.LastName = show[1];
friend.PhoneNumber = show[2];
birthday = show[3] + "/" + show[4];
readIt = String.Format("{0, -10}{1, -10}{2,-10}{3, -3}", friend.FirstName,
friend.LastName, friend.PhoneNumber, birthday);
readBox.Items.Add(readIt);
readIt = read.ReadLine();
}
read.Close();
file.Close();
}