c#中预期的类、委托、枚举、接口或struckt错误

本文关键字:接口 枚举 struckt 错误 委托 | 更新日期: 2023-09-27 18:07:14

我有这个错误,我不知道如何修复它,我找不到我的代码有什么问题,所以我向正在阅读这个并知道解决方案的ppl寻求帮助。错误出现在按钮空白处(开始按钮空白除外)。我试着在URLtexbox和Combobox之间切换,但我搞砸了,我试了很多来修复它,但我找不到如何修复它。

下面是我的代码:
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 System.Web;
namespace ****
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            webBrowser1.ScriptErrorsSuppressed = true;
        }
        private void startbutton_Click(object sender, EventArgs e)
        {
            switch (Text)
            {
                case "full":
                    {
                        webBrowser1.Navigate(URLtextbox.Text);
                    }
                    break;
                case "empety":
                    {
                        webBrowser1.Navigate(comboBox1.Text);
                    }
                    break;
            }
        }
    }
        private void stopbutton_Click(object sender, EventArgs e)
        {
            webBrowser1.Stop();
        }
        private void forwardbutton_Click(object sender, EventArgs e)
        {
            webBrowser1.GoForward();
        }
        private void backbutton_Click(object sender, EventArgs e)
        {
            webBrowser1.GoBack();
        }
}

谢谢你的帮助^.^

c#中预期的类、委托、枚举、接口或struckt错误

三个方法(stopbutton_Click, forwardbutton_Clickbackbutton_Click)必须在一个类中定义。

或者换句话说:将类的右括号移到最后一个方法下面。