1

最近 2 天 Visual Studio 做得很奇怪,我已经重新安装了它,但它并没有解决我的问题。

我不能调用其他类或表单:

课程: http ://snag.gy/7W4dl.jpg

表格: http ://snag.gy/lfm8Y.jpg

它不允许我使用 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;
4

1 回答 1

2

您必须添加对具有CryptorEngineMods类型的 dll 的引用。右键单击项目并选择Add Reference....

然后,您必须确保using文件顶部的语句指向定义CryptorEngineMods定义的名称空间。

于 2013-04-09T12:23:17.123 回答