过去2天Visual Studio很奇怪我已经重新安装它并且它没有解决我的问题。
我不能打电话给其他班级或表格:
它不允许我使用Properties.Settings: http://snag.gy/W3VJn.jpg
代码打开mods表单:
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;
答案 0 :(得分:2)
您必须添加对包含CryptorEngine
和Mods
类型的dll的引用。右键单击该项目,然后选择Add Reference...
。
然后,您必须确保文件顶部的using
语句指向定义CryptorEngine
和Mods
的命名空间。