I need a custom DataGridView class in c++/cli in visual studio 2012 that can be used in Designer View.
I created a default clr user inheriting from System::Windows::Forms::UserControl, and changed UserControl to DataGridView, but it didn't work here in C++. It works in C#. [1]
Nor codes from scratch were recognized by the Designer. [2]
It seems like I have to put the DataGridView in the class, but I will have to access its members like grid->view->GetName.. instead of grid->GetName.. now. And it wouldn't be patternized, as what CLR was intended to be after all these weird syntaxes.