ボタンをクリックすると、リストボックスから選択した複数のアイテムをテキストボックスに表示できますが、メッセージボックスに同じものを表示するにはどうすればよいですか? メッセージボックスに最初のアイテムを表示することは問題ではありませんが、一度に複数のアイテムを表示することは問題です。提案してください...
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 cities
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
textBox1.Clear();
foreach (object selectedItem in listBox1.SelectedItems)
{
textBox1.AppendText(selectedItem.ToString() + Environment.NewLine);
}
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}