最近 2 天 Visual Studio 做得很奇怪,我已经重新安装了它,但它并没有解决我的问题。
我不能调用其他类或表单:
它不允许我使用 Properties.Settings : http ://snag.gy/W3VJn.jpg
代码开放模组形式:
private void button2_Click_1(object sender, EventArgs e)
{
Mods modsForm = new Mods();
modsForm.ShowDialog();
}
使用 Properties.Settings 和调用类事物的代码
if (SAVE_UN_CHECK.Checked)
{
if (SAVE_UN_CHECK.Text != "")
{
string clearText = SAVE_UN_CHECK.Text.Trim();
string cipherText = CryptorEngine.Encrypt(clearText, true);
//Save textbox text to file
Properties.Settings.Default.USER_USERNAME = cipherText;
USERNAME_TEXT.Text = cipherText;
}
}
该怎么办?我从来没有遇到过这些奇怪的错误。我已经重新安装了 Visual Studio 2012 和它的所有其他东西,比如 SQL Server 的东西。但它并没有解决问题。
这些是使用语句:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;