示例#1
0
 public DialogError(ElementTheme theme, string errorMessage)
 {
     Log.Information("DialogError生成");
     this.InitializeComponent( );
     this.ThemeController   = new ThemeController(theme, this);
     this.ErrorMessage.Text = errorMessage;
 }
示例#2
0
 public DialogFinish(ElementTheme theme)
 {
     Log.Information("DialogFinish生成");
     this.InitializeComponent( );
     this.ThemeController = new ThemeController(theme, this);
 }
 public MainPage( )
 {
     Log.Information("MainPage生成");
     this.InitializeComponent( );
     this.ThemeController = new ThemeController(this);
 }