SIL.FieldWorks.TE.ImportWizard.m_btnBack_Click C# (CSharp) Method

m_btnBack_Click() protected method

Handles the Click event of the m_btnBack control.
protected m_btnBack_Click ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The instance containing the event /// data.
return void
		protected void m_btnBack_Click(object sender, EventArgs e)
		{
			panSteps[m_currentStep--].Visible = false;
			panSteps[m_currentStep].Visible = true;
			UpdateStepLabel();

			// Disable the back button if on the first step.
			m_btnBack.Enabled = (m_currentStep > 0);

			m_btnNext.Text = m_nextText;
		}