internal LabelScore(short score, Models.Layout.View layout)
 {
     this.groupScore = score.ToString();
     this.layout     = layout;
     InitializeLayout();
     InitializeComponent();
 }
 internal LabelGroup(string groupName, Models.Layout.View layout)
 {
     this.groupName = groupName;
     this.layout    = layout;
     InitializeLayout();
     InitializeComponent();
 }
 internal LabelLetter(string letter, Models.Layout.View screenlayout)
 {
     this.letter       = letter;
     this.screenLayout = screenlayout;
     InitializeLayout();
     InitializeComponent();
 }
Пример #4
0
 internal GroupAnswer(long questionID, Models.Layout.View layout)
 {
     this.layout     = layout;
     this.questionID = questionID;
     InitializeComponent();
     InitializeLayout();
     Render();
 }
Пример #5
0
 internal QuestionChoices(Question question, Models.Layout.View layout)
 {
     this.layout   = layout;
     this.question = question;
     InitializeComponent();
     InitializeLayout();
     Render();
 }
Пример #6
0
 internal GroupScore(long gameID, Models.Layout.View layout)
 {
     this.layout = layout;
     this.gameID = gameID;
     InitializeComponent();
     InitializeLayout();
     Render();
 }
 internal LabelChoice(string choice, Models.Layout.View screenlayout, string choicelayout)
 {
     this.choice        = choice;
     this.screenLayout  = screenlayout;
     this.choicesLayout = choicelayout;
     InitializeLayout();
     InitializeComponent();
 }