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(); }
internal GroupAnswer(long questionID, Models.Layout.View layout) { this.layout = layout; this.questionID = questionID; InitializeComponent(); InitializeLayout(); Render(); }
internal QuestionChoices(Question question, Models.Layout.View layout) { this.layout = layout; this.question = question; InitializeComponent(); InitializeLayout(); Render(); }
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(); }