예제 #1
0
 public DynamicPresenter(IDynamicView view)
 {
     this.view = (IDynamicView)view;
 }
예제 #2
0
 // note the use of interface instead of actual form
 public void UpdateWindow(IDynamicView view)
 {
     view.Text = "hello";
     view.AddItemToControlList(some item);
 }