示例#1
0
 static public void ShowDialog(MvxWpfView view, string title)
 {
     current        = new Dialoge(view);
     current.Title  = title;
     current.Width  = 250;
     current.Height = 300;
     current.ShowDialog();
 }
示例#2
0
 public Dialoge(MvxWpfView view)
 {
     InitializeComponent();
     this.Content = view;
 }