Transparentes wxWindow



  • Hallo, wie schaffe ich es, dass mein wxWindow transparent ist?

    ich habe es bereits erfolglos folgendermaßen versucht:

    // Header-Datei
    ...
    class MyWindow : public wxWindow
    {
    public:
      MyWindow(wxWindow*);
      ~MyWindow(){};
    }
    
    // Source - Datei
    #include "MyWindow.h"
    
    MyWindow::MyWindow(wxWindow *parent)
      : wxWindow(parent, -1, wxDefaultPosition, wxDefaultSize,
        wxTRANSPARENT_WINDOW)
    {
       //...
    }
    

    So ist mein Window nicht transparent. Könnt Ihr mir sagen, wie ich es richtig mache?

    Danke für eure Hilfe


Anmelden zum Antworten