GVA SUPPORT

Відповідь на запитання № 1296049718
Text:
	ФІО = Ты хто?

 Запитання:Ваше запитаня 
        public Form1()
        {
            InitializeComponent();
        }

        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            button1.Text = "Click";
        }

        private void toolStripButton1_MouseEnter(object sender, EventArgs e)
        {
            button1.Text = "MouseEnter";
        }

        private void toolStripButton1_MouseHover(object sender, EventArgs e)
        {
            button1.Text = "MouseHover";
        }

        private void toolStripButton1_MouseLeave(object sender, EventArgs e)
        {
            button1.Text = "MouseLeave";
        }

        private void toolStripButton1_DoubleClick(object sender, EventArgs e)
        {
            button1.Text = "DoubleClick";
        }

почему у меня в этом тексте button1 ошибка ? что мне нужно зделать ?

====================================


 ANSWER ====================================

Во первых, ты не подписался, во вторых у тебя наверное нету баттноа, а есть textBox
проверяй


 END of ANSWER ====================================

	
Ваша відповідь