Advertisement
wingman007

C#_WinForms_OnPaint

Jan 24th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace MDI_zad2
  12. {
  13.     public partial class Form3 : Form
  14.     {
  15.         public Form3()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.  
  20.         private void Form3_Load(object sender, EventArgs e)
  21.         {
  22.  
  23.         }
  24.  
  25.         protected override void OnPaint(PaintEventArgs e)
  26.         {
  27.             // Graphics g = e.Graphics;
  28.             // Create string to draw.
  29.             String drawString = "Stoyan Cheresharov";
  30.  
  31.             // Create font and brush.
  32.             Font drawFont = new Font("Arial", 16);
  33.             SolidBrush drawBrush = new SolidBrush(Color.Black);
  34.  
  35.             // Create point for upper-left corner of drawing.
  36.             PointF drawPoint = new PointF(150.0F, 150.0F);
  37.  
  38.             // Draw string to screen.
  39.             e.Graphics.DrawString(drawString, drawFont, drawBrush, drawPoint);
  40.  
  41.             // at any moment you can get the graphics object
  42.             Graphics g = this.CreateGraphics();
  43.  
  44.             Pen blackPen = new Pen(Color.FromArgb(255, 0, 0, 0), 5);
  45.             g.DrawRectangle(blackPen, 10, 10, 100, 50);
  46.  
  47.  
  48.         }
  49.  
  50.         private void button1_Click(object sender, EventArgs e)
  51.         {
  52.             // it is going to be overwriten. It is not in OnPaint event
  53.             Graphics g = this.CreateGraphics();
  54.             // Create pen.
  55.             Pen blackPen = new Pen(Color.Black, 3);
  56.  
  57.             // Create rectangle for ellipse.
  58.             Rectangle rect = new Rectangle(0, 0, 200, 100);
  59.  
  60.             // Draw ellipse to screen.
  61.             // e.Graphics.DrawEllipse(blackPen, rect);
  62.             // but we are going to loose it when there is a window on top
  63.             g.DrawEllipse(blackPen, rect);
  64.         }
  65.     }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement