Hola a todos!
Estoy intentando hacer un programa con C# con System.Drawing. Estoy recien empezando y el programa más sencillo no funciona. No dibuja la linea roja.
El código es el siguiente:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
namespace MiHolaMundoGrafico
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
this.Size = new Size(1024, 600);
this.CenterToScreen();
this.WindowState = FormWindowState.Maximized;
Graphics graphicsObj = this.CreateGraphics();
Pen myPen = new Pen(Color.Red, 5);
graphicsObj.DrawLine(myPen, 20, 20, 200, 210);
}
}
}
Saludos!