//METHOD FOR NEXT BUTTON CLICK. private void next_Click(object sender, RoutedEventArgs e) { SirList list = SirList.Instance(); int max = list.getSize() - 1; if (current != max) { showId.Text = list.showID(current + 1); showSen.Text = list.showSen(current + 1); showSub.Text = list.showSub(current + 1); showSirNo.Text = list.showSirCode(current + 1); showNoi.Text = list.showNoi(current + 1); showCon.Text = list.showCon(current + 1); current++; } else { current = 0; showId.Text = list.showID(current); showSen.Text = list.showSen(current); showSub.Text = list.showSub(current); showSirNo.Text = list.showSirCode(current); showNoi.Text = list.showNoi(current); showCon.Text = list.showCon(current); } }
public SirView() { //SHOWS THE FIRST SIR MESSAGE IN THE LIST. InitializeComponent(); SirList list = SirList.Instance(); showId.Text = list.showID(0); showSen.Text = list.showSen(0); showSub.Text = list.showSub(0); showSirNo.Text = list.showSirCode(0); showNoi.Text = list.showNoi(0); showCon.Text = list.showCon(0); }