I want to show text on screen while playing a fullscreen game... This is my current code, the text is displayed on the form:
public Form1()
{
//info about the form location and make it invisible
InitializeComponent();
FormBorderStyle = FormBorderStyle.None;
BackColor = Color.Lime;
TransparencyKey = Color.Lime;
StartPosition = FormStartPosition.Manual;
TopMost = true;
}
The text isn't shown when running fullscreen applications.
What can I do so it will show me the text?