Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

//space

int x = 100, y = 100;


int dy = (int)fnt.GetHeight(e.Graphics) * 1;
e.Graphics.DrawString("", fnt, Brushes.Black, new PointF(x, y)); y += dy;

//middle

StringFormat sf = new StringFormat();


sf.LineAlignment = StringAlignment.Near;
sf.Alignment = StringAlignment.Center;

//draw_box

Rectangle rect = new Rectangle(10, 10,


ClientSize.Width - 10, ClientSize.Height - 10);
e.Graphics.DrawRectangle(Pens.Red, rect);

You might also like