#前提・実現したいこと
C#で数に決まりがない複数のFormSubを識別し、FormMainからFormSubへ値の受け渡しをしたい。
#発生している問題・エラーメッセージ
FormMainからFormSubを複数起動し、FormMainからFormSubへ値の受け渡しを行うと、一番最初に起動したFormSubにしか値の受け渡しが行えない。
![]
※補足 : FromSubが3つなのは例です。実際には、数に決まりはなく、複数存在します。
#該当のソースコード
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Windows.Forms; 9 10namespace WindowsFormsApp1 11{ 12 public partial class FormMain : Form 13 { 14 private string receiveData = ""; 15 FormSub fs; 16 17 public FormMain() 18 { 19 InitializeComponent(); 20 } 21 22 private void button1_Click(object sender, EventArgs e) 23 { 24 fs = new FormSub(); 25 fs.formMain = this; 26 fs.Show(); 27 } 28 29 public string ReceiveData 30 { 31 set 32 { 33 receiveData = value; 34 textBox1.Text = receiveData; 35 } 36 get 37 { 38 return receiveData; 39 } 40 } 41 42 private void button2_Click(object sender, EventArgs e) 43 { 44 fs.SendData = "From Main"; 45 } 46 } 47}
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Windows.Forms; 9 10namespace WindowsFormsApp1 11{ 12 public partial class FormSub : Form 13 { 14 private string sendData = ""; 15 public FormMain formMain; 16 17 public FormSub() 18 { 19 InitializeComponent(); 20 } 21 22 private void button1_Click(object sender, EventArgs e) 23 { 24 if (formMain != null) 25 { 26 formMain.ReceiveData = "From Sub"; 27 } 28 } 29 30 public string SendData 31 { 32 set 33 { 34 sendData = value; 35 textBox1.Text = sendData; 36 } 37 get 38 { 39 return sendData; 40 } 41 } 42 } 43}
#自分で調べたことや試したこと
FormSubを配列に格納することで実現出来るのでは?、と考えた為、FormSubを配列に格納する方法を探しましたが、該当するような情報がなく困っています。
#使っているツールのバージョンなど補足情報
.Net framework 3.7.2
イベントを作るといいと思います。
> FormSubを配列に格納する方法を探しましたが、該当するような情報がなく困っています。
探すのではなく、手持ちの情報(リファレンスとか)から、まず自分で考えるのです。
https://docs.microsoft.com/ja-jp/dotnet/api/system.collections.generic.list-1?view=netcore-3.1
ListにFormSubを格納することで、FormSubを識別出来るようになりました。
有難う御座いました。
回答1件
あなたの回答
tips
プレビュー