Exemple #1
0
 public virtual void OnShowDetails()
 {
     Presenters.Show <Action1.Presenter>(new List <KeyValuePair <string, string> >
     {
         new KeyValuePair <string, string>("a", "aiga"),
         new KeyValuePair <string, string>("b", "biga"),
         new KeyValuePair <string, string>("c", "ciga"),
         new KeyValuePair <string, string>("d", "diga"),
     });
 }
Exemple #2
0
 public void OnActionsChoosen(ToDoAction action)
 {
     Presenters.Show("Edit", action.Id);
 }
Exemple #3
0
 public void OnCreateNew()
 {
     Presenters.Show("CreateNew");
 }
Exemple #4
0
        public void TestMethod1()
        {
            var presenter = Presenters.Show <MyPresenter>();

            presenter.View.FireRefreshData();
        }
Exemple #5
0
 protected override void OnStartup(StartupEventArgs e)
 {
     Presenters.Show("Main");
 }