windowless labels on VB.NET forms

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

Can a label control be created that is windowless?

(tank you Chris for the tip)

Tank you
 
I'm not thinking, but try setting the background of a form to blue or
something, and setting the forms transparency key to blue, or whatever.
This will give the impression that the label is it's own form :)

HTH
Tibby
 
Hi Peter,

I answered this in your original thread but I'll move it here.

Yes. You would associate the LiteLabel with an underlying surface and it
would draw itself thereon. Several LiteLabels could thus share the same
surface. (Make it a Graphics and it needn't even be visible - do it memory on
a Bitmap!).

Many problems with this and that to be solved, of course, not least being
how to allow the user to manage these at Design-time.


Do you need to set these up visually on the Form or is it possible to do
it in code?
What properties would you need to be adjustable - Size, Text Colour and
what else? Would you need different Fonts or the same one for all? Etc.

Regards,
Fergus
 
* "Peter said:
Can a label control be created that is windowless?

(tank you Chris for the tip)

No. The Windows Forms label control is not a windowless control.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top