示例#1
0
 public IDialogReference Show <T>(string title, DialogParameters parameters, DialogOptions options) where T : ComponentBase
 {
     return(Show(typeof(T), title, parameters, options));
 }
示例#2
0
 public IDialogReference Show(Type contentComponent, string title, DialogParameters parameters)
 {
     return(Show(contentComponent, title, parameters, new DialogOptions()));
 }
示例#3
0
 public IDialogReference Show <T>(string title, DialogParameters parameters) where T : ComponentBase
 {
     return(Show <T>(title, parameters, new DialogOptions()));
 }