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; }
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); }