示例#1
0
 public FrmThematic()
 {
     InitializeComponent();
     _view = (IThematicView)this.thematicView1;
     _view.SetParent(this);
     this.Load += new EventHandler(FrmThematic_Load);
 }
示例#2
0
 public ThematicController(IThematic thematic, IThematicView view)
 {
     _thematic = thematic;
     _view = view;
 }