如何在项目Visual Studio(winform)中重置缓存?

时间:2017-08-19 16:17:39

标签: c# winforms c#-4.0 visual-studio-2017

我的项目Visual Studio中发生了很奇怪的事情。

在主表格上我有三个radiobuttons。其中一个被选中。它是第一个具有属性checked:true的radiobutton。它的名称为radioButton8

当我开始项目时,我看到选择了名为radioButton1的第二个单选按钮。

我试图通过主窗体中的namw radioButton1在项目中找到这个元素。但没有什么,可以将其置于检查状态。

VS会发生什么?如何完全清除项目并重置缓存?

有时工具箱也会变空。

我在当前项目中进行了搜索,并且只在Main.Designer中找到了这个:

   // radioButton1
            // 
            this.radioButton1.AutoSize = true;
            this.radioButton1.Location = new System.Drawing.Point(23, 58);
            this.radioButton1.Name = "radioButton1";
            this.radioButton1.Size = new System.Drawing.Size(90, 17);
            this.radioButton1.TabIndex = 4;
            this.radioButton1.TabStop = true;
            this.radioButton1.Text = "Прошли тест";
            this.radioButton1.UseVisualStyleBackColor = true;
            this.radioButton1.Click += new System.EventHandler(this.radioButton1_Click);
            // 

1 个答案:

答案 0 :(得分:-2)

我也多次面对这个问题。当我清理项目/解决方案并再次构建解决方案时,在此之前我必须删除项目文件夹中的obj文件夹。