Im trying to print (show in screen ) a screenshot on my main monitor , I think I’ve got all the necessary variables to make that happen but I have no clue how to get past
The simplest way would be to use a Windows Forms PictureBox inside a Form.
For example:
Form form = new Form(); form.Text = "Image Viewer"; PictureBox pictureBox = new PictureBox(); pictureBox.Image = YourImage; pictureBox.Dock = DockStyle.Fill; form.Controls.Add(pictureBox); Application.Run(form);