How to make a form never disappear?

2

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.

    
asked by anonymous 08.03.2017 / 21:52

1 answer

2

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).

    
09.03.2017 / 12:51