期望的类,委托,枚举,接口或结构?怎么了?

时间:2014-03-16 18:46:11

标签: c# enums

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualBasic;
using System.Collections;
using System.Diagnostics;

namespace NumbertoWordHamza
{
    public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();
        }

    }
}
private void TextBox1_TextChanged(System.Object sender, System.EventArgs e)
{
    if (!Information.IsNumeric(TextBox1.Text)) {
        TextBox2.Text = "";
        return;
    }

    TextBox2.Text = GetTextForNumber(TextBox1.Text);

}

我已经查看了方法和领域,并了解了它们。我相信我错放了一些代码?我需要添加内容还是删除某些内容?我知道这是一个愚蠢的错误。

1 个答案:

答案 0 :(得分:4)

问题:您正在课堂外编写TextBox1_TextChanged个事件处理程序。

解决方案:您需要将TextBox1_TextChanged事件处理程序移到类Form1中。

试试这个:

namespace NumbertoWordHamza
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void TextBox1_TextChanged(System.Object sender, System.EventArgs e)
        {
            if (!Information.IsNumeric(TextBox1.Text))
            {
                TextBox2.Text = "";
                return;
            }
            TextBox2.Text = GetTextForNumber(TextBox1.Text);
        }   
    }
}