別のフォームで、あるフォームのリストボックスから選択した項目を、ボタンのクリックで開く別のフォームのリッチ テキスト ボックスに表示したい。フォーム 1 で次のスニペットを使用してメッセージ ボックスにコンテンツを表示しましたが、別のフォームが必要になりました。助けが必要...
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)
{
StringBuilder message = new StringBuilder();
foreach (object selectedItem in listBox1.SelectedItems)
{
message.Append(selectedItem.ToString() + Environment.NewLine);
}
MessageBox.Show("You selected: \n" +message.ToString());
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}