用C ++扩展类(System.Windows.Forms.TextBox)

时间:2017-05-07 21:22:59

标签: winforms c++-cli derived-class

在C#中,我经常喜欢创建一个名为“IntTextBox”的自定义类,它只允许在“Text”属性中存在有效的整数。

public class IntTextBox : TextBox
{
    string origin = "0";
    //A string to return to if the user-inputted text is not an integer.
    public IntTextBox()
    {
        Text = "0";
        TextChanged += new EventHandler(IntTextBox_TextChanged);
    }
    private void IntTextBox_TextChanged(object sender, EventArgs e)
    {
        int temp;
        if(int.TryParse(Text,out temp))
        //If the value of "Text" can be converted into an integer.
        {
            origin = Text;
            //"Save" the changes to the "origin" variable.
        }
        else
        {
            Text = origin;
            //Return to the previous text value to remove invalidity.
        }
    }
}

我试图在C ++中模仿它并且没有明显的错误,但是当我尝试将它添加到我的表单时,Visual Studio说“无法加载项目'IntTextBox'。它将从工具箱中删除。这是代码我到目前为止已尝试过。

public ref class IntTextBox : public System::Windows::Forms::TextBox
{
    public:
        IntTextBox()
        {
            Text = "0";
            TextChanged += gcnew System::EventHandler(this, &AIMLProjectCreator::IntTextBox::IntTextBox_TextChanged);
        }
    private:
        String^ origin = "0";
        System::Void IntTextBox_TextChanged(System::Object^ sender, System::EventArgs^ e)
        {
            int temp;
            if (int::TryParse(Text, temp))
            {
                origin = Text;
            }
            else
            {
                Text = origin;
            }
        }
};

1 个答案:

答案 0 :(得分:1)

很可能您的C ++ / CLI项目设置为生成混合模式程序集,该程序集部分是独立于CPU的CIL(MSIL),部分是本机代码。本机代码是特定于体系结构的,这意味着您必须为32位(x86)或64位(x64)重新编译它。

如果C ++ / CLI DLL与Visual Studio的架构不同,则设计人员无法加载它。

尝试编译x86以使用设计模式。