Winforms design with class in nested namespaces

  • Thread starter Thread starter Florian Demmer
  • Start date Start date
F

Florian Demmer

hi

i am working on a gui for a bigger project using managed c++ and
wanted to put it in the namespace hierachy under cubes::gui
so i did this in my form.h

namespace cubes{
namespace gui{
public class [...]
}}

but now the design view does not work... it only does with ony one
given namespace like ...

namespace gui{
public class [...]
}

how do i make my forms live in cubes::gui and still be able to use the
form designer?

regards
Florian Demmer
 
Back
Top