コード例 #1
0
ファイル: FrmThematic.cs プロジェクト: truonghinh/TnX
 public FrmThematic()
 {
     InitializeComponent();
     _view = (IThematicView)this.thematicView1;
     _view.SetParent(this);
     this.Load += new EventHandler(FrmThematic_Load);
 }
コード例 #2
0
ファイル: ThematicController.cs プロジェクト: truonghinh/TnX
 public ThematicController(IThematic thematic, IThematicView view)
 {
     _thematic = thematic;
     _view = view;
 }