Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Adding 'modified' tooltip
Message
De
23/09/2005 12:50:13
 
 
À
23/09/2005 05:31:38
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01051669
Message ID:
01052451
Vues:
21
Hi,

>
If there is another window on top then your drawing is clipped to the window context not to anything else. You only draw to the context/surface associated with the window.
>

Sorry. You're right. Unless, of course, you clear the WS_CLIPCHILDEN flag:
   Protected Overrides ReadOnly Property CreateParams() As CreateParams
        Get
            Dim CParams As CreateParams = MyBase.CreateParams
            CParams.Style = CParams.Style And Not WS_CLIPCHILDREN
            Return CParams
        End Get
    End Property
but that's just nit-picking<s>
Regards,
Viv
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform