私のプロジェクトのVisual Studioでは非常に奇妙なことが起こります。プロジェクトVisual Studio(winform)でキャッシュをリセットする方法は?
メインフォームには3つのラジオボタンがあります。そのうちの1つが選択されます。これはプロパティの最初のラジオボタンです:checked:true
。それは名前がradioButton8
です。
プロジェクトを開始すると、名前がradioButton1
の2番目のラジオボタンが選択されていることがわかります。
私はプロジェクトでこの要素を見つけようとしましたが、メインフォームにはradioButton1
という名前があります。しかし、チェックされた状態でこれを設定できるものは何もありません。
VSには何が起こりますか?プロジェクトを完全にクリアしてキャッシュをリセットするには?
ツールボックスが空になることもあります。私は現在のプロジェクトでsearhingなかったと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);
//