private void radioButtonSelectedPost_CheckedChanged(object sender, EventArgs e) { this.m_selectedSentiRadio = SentiRadio.SELECTED_POST; initPanel(panelSelectedPost); textBoxPostSelect.Text = m_LogicFacade.initPostTextBox(); displayResultMethod = displayScore; }
private void radioButtonCustomSentence_CheckedChanged(object sender, EventArgs e) { this.m_selectedSentiRadio = SentiRadio.CUSTOM_SENTENCE; initPanel(panelCustomSentence); displayResultMethod = displayScore; }
private void radioButtonAllPosts_CheckedChanged(object sender, EventArgs e) { this.m_selectedSentiRadio = SentiRadio.ALL_POSTS; initPanel(panelAllPosts); displayResultMethod = populateLists; }