Имя "XXXX" не существует в текущем контексте

public void SetTextBoxValues(string[] values)
{
     if ( values.Length != TextBoxCount )
     {
         throw ( new ArgumentException( "There must be " + ( TextBoxCount + 1 ) + 
         " strings in the array" ));
     }

     else
     {
          accountTextBox.Text = values[ ( int ) TextBoxIndices.ACCOUNT ];
          firstNameTextBox.Text = values[ ( int ) TextBoxIndices.FIRST ];
          lastNameTextBox.Text = values[ ( int ) TextBoxIndices.LAST ];
          balanceTextBox.Text = values[ ( int ) TextBoxIndices.BALANCE ];
     } // end else
 } // end method SetTextBoxValues

 public string[] GetTextBoxValues()
 {
      string[] values = new string[TextBoxCount];
      values[(int)TextBoxIndices.ACCOUNT] = accountTextBox.Text;
      values[(int)TextBoxIndices.FIRST] = firstNameTextBox.Text;
      values[(int)TextBoxIndices.LAST] = lastNameTextBox.Text;
      values[(int)TextBoxIndices.BALANCE] = balanceTextBox.Text;
      return values;
 } // end method GetTextBoxValues

Мне нужно знать проблему с ошибкой в accountTextBox ниже:

the name 'accountTextBox' does not exist in the current context

1 ответ

Проблема: из ошибки, а также из вашего кода ясно, что нет TextBox контроль с именем accountTextBox в вашей форме.

Решение: вы можете создать TextBox контроль в форме с именем accountTextBox,

Другие вопросы по тегам