コード例 #1
0
ファイル: Program.cs プロジェクト: GISMaster/MsgEvent
 public Module3()
 {
     MsgEvent.Receive("s1", saveData, this);
     MsgEvent.Receive("s2", saveData, this, true);
     MsgEvent.Receive("s3", saveData, this, true);
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: GISMaster/MsgEvent
 public Module1()
 {
     MsgEvent.Receive("s2", saveData, this);
     MsgEvent.Receive("s3", showData, this);
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: GISMaster/MsgEvent
 public Module2()
 {
     MsgEvent.Receive("s1", saveData, this);
     MsgEvent.Receive("s2", saveData, this);
 }