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