2
Form1 created panel with black background and label property:
- Autosize = False
- Dock = Fill
- Font size(Size) = 20
- And 2 buttons to forward or back letters
Form2 only has a black form and a property label:
- Autosize = False
- Dock = Fill
- Font size(Size) = 40
Follow code as I show 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);
The biggest problem is the monitor resolution, I tested several monitors here and they are all different. The letters are not the same as Form1, example:
In Form1:
Everybody wants to be cool, and everybody gets screwed on the job. Yeah hard to be cool all the time. We get to be cool the bigger part of the time, but then you do something stupid and that’s it: everything you did good is immediately forgotten and you become just the one who made the big bullshit. Then you need a couple more months being exclusively legal for everyone forget the bullshit. And when they forget, you do another, of course.
On Form2(monitor):
Everybody wants to be cool, and everybody gets screwed on the job. Yeah be difficult to be
cool all the time. We can be cool the biggest part of the time, but
then you do something stupid and that’s it: everything you’ve done good is immediately
forgotten and you become just the one who made the big bullshit. There you
needs a couple more months being exclusively legal for everyone
forget nonsense. And when they forget, you do 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):
And the monitor:
can even leave in the form, just change
panel2
forthis
– Rovann Linhalis
secondary screen does not matter. Missed something
– Rovann Linhalis