DataGridView Class - Errors()

DataGridView Class - Errors()

本文关键字:Errors Class DataGridView      更新时间:2023-10-16

我为 processdialogkey() 创建了一个 Datagridview 类。但是我遇到了以下错误...任何身体都可以帮助我...

此代码:

//Header File MyDGV.h
    public ref class MyDGV : public DataGridView
    {
    protected:
        virtual bool ProcessDialogKey(System::Windows::Forms::Keys^ keyData) override;
    };
//MyDGV.CPP File
#include "StdAfx.h"
#include "MyDGV.h"
bool MyDGV::ProcessDialogKey(System::Windows::Forms::Keys^ keyData)
{
    Keys^ key = keyData & (System::Windows::Forms::Keys::KeyCode);
    if (key == System::Windows::Forms::Keys::Enter)
    {
        DataGridView::OnKeyDown(gcnew KeyEventArgs(System::Windows::Forms::Keys^ keyData));
        return true;
    }
    else
    {
        return DataGridView::ProcessDialogKey(System::Windows::Forms::Keys^ keyData);
    }
}

导致以下错误:

Errors:
01. warning C4490: 'override' : incorrect use of override specifier; 'MyDGV::ProcessDialogKey' does not match a base ref class method
02.error C3063: operator '&': all operands must have the same enumeration type
03.error C2275: 'System::Windows::Forms::Keys' : illegal use of this type as an expression
04.error C2275: 'System::Windows::Forms::Keys' : illegal use of this type as an expression

System::Windows::Forms::Keys是一个枚举,因此是一个值类型(不是引用类型)。 因此,为了匹配基类方法的签名,您需要删除帽子 (^)。 一般来说,你不应该使用带有值类型的帽子,除非你确实想要拳击行为。

http://msdn.microsoft.com/en-us/library/system.windows.forms.keys.aspx