Form1 created panel with black background and label with property:
- AutoSize = False
- Dock = Fill
- Font size (Size) = 20
- E 2 buttons for forward or backward lettering
Form2 only has black form and a label with property:
- AutoSize = False
- Dock = Fill
- Font size (Size) = 40
Follow the code as I show it on the second screen (monitor):
telaSecundaria = new SegundaTela();
Screen[] telas = Screen.AllScreens;
Rectangle bounds = telas[1].Bounds; // pode ser outro índice.
telaSecundaria.SetBounds(bounds.X, bounds.Y, bounds.Width, bounds.Height);
telaSecundaria.StartPosition = FormStartPosition.Manual;
telaSecundaria.Show();
telaSecundaria?.ChangeLabel(label.Text);
Biggest problem is the monitor resolution, I did test multiple monitors here and they are all different. The letters are not the same as Form1, for example:
No Form1:
Everyone wants to be cool, and everyone gets their hands on the job. IS Hard to be cool the whole time. We can be cool the bigger part of the time, but then do something stupid and done: everything you did of good is immediately forgotten and you become only the one who did the big bullshit. Then you need another two months being exclusively legal for everyone to forget the bullshit. And when they forget, you make another, of course.
On Form2 (monitor):
Everyone wants to be cool, and everyone gets their hands on the job. IS difficult to be
legal the whole time. We can be cool the bigger part of the time, but
there is a bullshit and that's it: everything you've done of good is immediately
forgotten and you become only the one who did the big bullshit. There you
needs another two months being exclusively legal for everyone
forget the bullshit And when they forget, you make another, of course.
How can I correct the positions of each word? Here on the monitor and the client screen is ok. The problem is different monitor (different resolution). I want Form2 to be the same as Form1.
Follow the photo (client):
Andfromthemonitor:
link