コード例 #1
0
 public Notification(EasyLabel message, Grid current_page, int margin) : base(message, -1, null)
 {
     this.current_page = current_page;
     this.IsAnswer     = false;
     this.message      = message;
     this.some_margin  = margin;
 }
コード例 #2
0
 public Answer(EasyLabel message, Grid current_page, int margin, string teacherid, int qandaid, string education) : base(message, qandaid, education)
 {
     this.IsAnswer     = true;
     this.message      = message;
     this.current_page = current_page;
     this.some_margin  = margin;
     this.teacherid    = teacherid;
     message.current_message.Foreground = new SolidColorBrush(Windows.UI.Colors.Chartreuse);
 }