Problem mit ToolTip



  • Hallo,

    Mit Hilfe von System::Windows::Forms::ToolTip versuche ich ein Label (System.Windows.Forms.Label) mit einem Tooltip zu versehen.

    //Create the ToolTip 
    m_toolTip1 = gcnew ToolTip;
    
    // Set up the delays for the ToolTip.
    m_toolTip1->AutoPopDelay = 5000;
    m_toolTip1->InitialDelay = 500;
    // Force the ToolTip text to be displayed whether or not the form is active.
    m_toolTip1->ShowAlways = true;
    
    // Set up the ToolTip text for the Label
    m_toolTip1->SetToolTip( this->m_COPLabel, "Collision Protection System Status" );
    

    Das klappt wunderbar, bis man mit der Maus auf die Labelfläche klickt. Der Tooltip wird dann nicht mehr angezeigt. Woran es liegen kann?

    Danke



  • ddddddddddd


Anmelden zum Antworten