How can I make an invisible form only with text appearing, without the buttons only one text, never fade when another window is selected? a print: link
When I select another window it disappears, can it always appear?
Obviously for the attention.
How can I make an invisible form only with text appearing, without the buttons only one text, never fade when another window is selected? a print: link
When I select another window it disappears, can it always appear?
Obviously for the attention.
In the form constructor do:
public Form1()
{
//Deixa o form transparente
this.TransparencyKey = Color.Turquoise;
this.BackColor = Color.Turquoise;
this.FormBorderStyle = FormBorderStyle.None;
//Faz o form ficar na frente das outras aplicações
this.TopMost = true;
}
This gives a transparent appearance, however, the corners of the form will be a little strange.
You can not leave the form 100% transparent (without details).