Drawing Package

Another common task is Drawing, and what better way to do this than with a Drawing Package using PictureBox, Open/Save/Colour Dialogs, plus Draw Width selection!

Printer Friendly Download Tutorial (307KB) Download Source Code (13KB)

Step 1

Start Microsoft Visual Basic 2008 Express Edition, then select File then New Project... Choose Windows Forms Application from the New Project Window, enter a name for the Project and then click OK, see below:

New Project

Step 2

A Blank Form named Form1 should then appear, see below:

Form1

Step 3

With Form1 selected goto the Properties box and change the Name from Form1 to frmMain

Form1 Properties

Step 4

Then from the Common Controls tab on the Toolbox select the PictureBox component:

PictureBox Component

Step 5

Draw a PictureBox on the Form, see below:

frmMain with PictureBox

Step 6

Then goto the Properties box and change the Name to picDraw, BackColor to White and Dock to Fill, see Below:

PictureBox Properties

Step 7

Then from the Menus & Toolbars tab on the Toolbox select the MenuStrip Control, see Below:

MenuStrip Component

Step 8

Either double-click on the MenuStrip Control entry in the Menu & Toolbars tab on the Toolbox or keep the MenuStrip Component Clicked and then move it over the Form then let go. Change the Name of the MenuStrip in the properties to mnuDraw The Form will then look as below:

frmMain with MenuStrip

Step 9

Click or select where the MenuStrip says "Type Here", an editable Textbox will appear type in "File" without the quotes in this Box, then in the Box below that type in "New", below that "Open...", then "Save..." and finally "Exit". The MenuStrip should look as below:

mnuDraw with File Menu

Step 10

Click or select next to "File" where the MenuStrip says "Type Here", and type in "Edit" without the quotes in this Box, then in the Box below that type in "Cut", below that "Copy", then "Paste" and finally "Delete". The MenuStrip should look as below:

mnuList with Edit Menu

Step 11

Click or select next to "Edit" where the MenuStrip says "Type Here", and type in "Draw" without the quotes in this Box, then in the Box below that type in "Width" and below that "Colour". The MenuStrip should look as below:

mnuList with Draw Menu

Step 12

Right Click on the Form or the entry of the Form in Solution Explorer and choose the "View Code" option then below the "Public Class frmMain" type the following:

Private DrawBitmap As Bitmap
Private DrawGraphics As Graphics
Private DrawColour As Color = Color.Blue
Private DrawWidth As Integer = 5

See Below:

Drawing Package Declarations

Step 13

Return to the Design view by selecting the [Design] tab or Right Click on the "View Designer" option in Solution Explorer for frmMain.
Click on "File" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "New" (NewToolStripMenuItem) and type the following in the NewToolStripMenuItem_Click() Sub:

Dim Response As MsgBoxResult
Response = MsgBox("Are you sure you want to start a New Drawing?", _
                  MsgBoxStyle.Question + MsgBoxStyle.YesNo, _
                  "Drawing Package")
If Response = MsgBoxResult.Yes Then
  picDraw.Image = Nothing
  Me.Text = "Drawing Package - Untitled"
End If

See Below:

File Menu New Menu Item Click Event

Step 14

Click on the [Design] Tab to view the form again, then Click on "File" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Open..." (OpenToolStripMenuItem) and type the following in the OpenToolStripMenuItem_Click() Sub:

Dim Open As New OpenFileDialog()
Open.Filter = "Bitmap Image (*.bmp)|*.bmp|All files (*.*)|*.*"
Open.CheckFileExists = True
If Open.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
  Try
    Open.OpenFile()
    picDraw.Image = Image.FromFile(Open.FileName)
    Me.Text = "Drawing Package - " & Open.FileName
  Catch ex As Exception
    ' Do nothing on Exception
  End Try
End If

See Below:

File Menu Open Menu Item Click Event

Step 15

Click on the [Design] Tab to view the form again, then Click on "File" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Save..." (SaveToolStripMenuItem) and type the following in the SaveToolStripMenuItem_Click() Sub

Dim Save As New SaveFileDialog()
Save.Filter = "Bitmap Image (*.bmp)|*.bmp|All files (*.*)|*.*"
Save.CheckPathExists = True
If Save.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
  Try
    picDraw.Image.Save(Save.FileName)
    Me.Text = "Drawing Package - " & Save.FileName
  Catch ex As Exception
    ' Do nothing on Exception
  End Try
End If

See Below:

File Menu Save Menu Item Click Event

Step 16

Click on the [Design] Tab to view the form again, then Click on "File" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Exit" (ExitToolStripMenuItem) and type the following in the ExitToolStripMenuItem_Click() Sub

Dim Response As MsgBoxResult
Response = MsgBox("Are you sure you want to Exit Drawing Package?", _
                  MsgBoxStyle.Question + MsgBoxStyle.YesNo, _
                  "Drawing Package")
If Response = MsgBoxResult.Yes Then
   End
End If

See Below:

File Menu Exit Menu Item Click Event

Step 17

Click on the [Design] Tab to view the form again, then Click on "Edit" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Cut" (CutToolStripMenuItem) and type the following in the CutToolStripMenuItem_Click() Sub

Clipboard.SetImage(picDraw.Image) ' Copy
' Delete
DrawBitmap = New Bitmap(picDraw.Width, picDraw.Height)
DrawGraphics = Graphics.FromImage(DrawBitmap)
picDraw.Image = DrawBitmap

See Below:

Edit Menu Cut Menu Item Click Event

Step 18

Click on the [Design] Tab to view the form again, then Click on "Edit" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Copy" (CopyToolStripMenuItem) and type the following in the CopyToolStripMenuItem_Click() Sub

Clipboard.SetImage(picDraw.Image) ' Copy

See Below:

Edit Menu Copy Menu Item Click Event

Step 19

Click on the [Design] Tab to view the form again, then Click on "Edit" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Paste" (PasteToolStripMenuItem) and type the following in the PasteToolStripMenuItem_Click() Sub

picDraw.Image = Clipboard.GetImage ' Paste

See Below:

Edit Menu Paste Menu Item Click Event

Step 20

Click on the [Design] Tab to view the form again, then Click on "Edit" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Delete" (DeleteToolStripMenuItem) and type the following in the DeleteToolStripMenuItem_Click() Sub

' Delete
DrawBitmap = New Bitmap(picDraw.Width, picDraw.Height)
DrawGraphics = Graphics.FromImage(DrawBitmap)
picDraw.Image = DrawBitmap

See Below:

Edit Menu Delete Menu Item Click Event

Step 21

Click on the [Design] Tab to view the form again, then Click on "Draw" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Width" (WidthToolStripMenuItem) and type the following in the WidthToolStripMenuItem_Click() Sub

Dim Value As String
Value = InputBox("Enter a Width (between 1-200)", _
                 "Drawing Package", DrawWidth)
If IsNumeric(Value) Then
  If CInt(Value) > 0 And CInt(Value) <= 200 Then
    DrawWidth = CInt(Value)
  End If
End If
Value = Nothing

See Below:

Draw Menu Width Menu Item Click Event

Step 22

Click on the [Design] Tab to view the form again, then Click on "Draw" on the MenuStrip to show the MenuStrip then Double Click on the Menu Item Labeled "Colour..." (ColourToolStripMenuItem) and type the following in the ColourToolStripMenuItem_Click() Sub

Dim Colour As New ColorDialog
Colour.Color = DrawColour
If Colour.ShowDialog(Me) = Windows.Forms.DialogResult.OK Then
  Try
    DrawColour = Colour.Color
  Catch ex As Exception
    ' Do nothing on Exception
  End Try
End If

See Below:

Draw Menu Colour Menu Item Click Event

Step 23

Click on the [Design] Tab to view the form again, then Double Click on the Form (frmMain) and type the following in the frmMain_Load() Sub

DrawBitmap = New Bitmap(picDraw.Width, picDraw.Height)
DrawGraphics = Graphics.FromImage(DrawBitmap)
DrawGraphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
picDraw.Image = DrawBitmap
Me.Text = "Drawing Package - Untitled"

See Below:

frmMain Load Event

Step 24

While Still in the Code View, if not double click on the Form, the Window Area of the Form will work, this will show the frmMain_Load Sub from the previous step, on this screen at the top are two Drop-down boxes one labeled (frmMain Events) and the other is Load. Click on the drop-down box with "Load" in it to show the list of events for frmMain click on Resize, and type the following in the frmMain_Resize() Sub

If picDraw.Width > picDraw.Image.Width Or _
picDraw.Height > picDraw.Image.Height Then
  DrawBitmap = New Bitmap(picDraw.Width, picDraw.Height)
  DrawGraphics = Graphics.FromImage(DrawBitmap)
  DrawGraphics.DrawImage(picDraw.Image, 0, 0)
  picDraw.Image = DrawBitmap
End If

See Below:

frmMain Resize Event

Step 25

With the Code View shown, click on the Drop-down labelled (frmMain Events), or the Left large Drop-down with (General) at the top, then look down this list and click on "picDraw", then from the Drop-Down list next to this select "MouseMove", and type the following in the picDraw_MouseMove() Sub

If e.Button = Windows.Forms.MouseButtons.Left Then
  DrawGraphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
  DrawGraphics.FillEllipse(New SolidBrush(DrawColour), _
                           e.X, e.Y, DrawWidth, DrawWidth)
  picDraw.Image = DrawBitmap
End If

See Below:

picDraw MouseMove Event

Step 26

Steps 26-30 are optional and just add Keyboard Shortcuts to the MenuItems, you don't have to do these if you don't want to!
Return to the Design view of the Form by selecting the [Design] tab for the Form, or double click on the Form's name in Solution Explorer.
Click on "File" on the Menu Strip to select the Menu Strip and show the File Menu then mouse over the "Type Here" box.
Click on the Drop Down arrow inside the "Type Here" box to show the following options: MenuItem, ComboBox, Separator and TextBox, see below:

File Menu with Type Here options displayed at bottom of menu

Step 27

Click on the "Separator" option to place a Menu Separator in this menu, then click on it an move it so it goes above the "Exit" option in the file menu, do this by clicking on the separator (the horizontal line which has appeared) then whilst keeping clicked move it up, it should appear as below:

File Menu with Divider above Exit MenuItem

Step 28

With the "File" Menu still being displayed click on "New" then in the Properties box look for the "Shortcut Key" option and click on the Drop Down arrow where "None" appears. Check the "Ctrl" Checkbox in "Modifiers" and then in the "Key" dropdown list select "N", see below:

File Menu New Menu Item Shortcut Key

Step 29

Set the rest of the "File" MenuItem "Shortcut Key" Properties except the "Exit" Menu Item, "Open" should be set to "Ctrl" and "O", "Save" to "Ctrl" and "S", the File Menu should appear as below:

File Menu with Shortcut Keys

Step 30

Click on or select the "Edit" Menu and set the "Shortcut Keys" Properties, "Cut" should be set to "Ctrl" and "X", "Copy" to "Ctrl" and "C", "Paste" to "Ctrl" and "V" finally "Delete" should be just "Del" in the Keys drop-down list, The Edit Menu should appear as below:

Edit Menu with Shortcut Keys

Step 31

Save the Project as you have now finished the application, then click on Start:

Start

When you do the following will appear:

Drawing Package Running

Step 32

You can draw on the PictureBox, by holding down the left-mouse button and moving the cursor to draw use the Draw menu to change the Width and Colour plus you can then Save your image to Open later if you want, see below:

Drawing

Step 33

Click File then Exit or click on the Close button Close on the top right of the window to end the application.

This Drawing package uses a PictureBox plus the capabilities of GDI+ to draw the dot that allows you to create the drawing, try changing the code to add more features such as alternative shapes and more!

Share

Copyright Comentsys © 1997 - 2009, All rights reserved. About | Contact | Link to Page
Valid XHTML 1.1! Valid CSS Level Double-A conformance icon, W3C-WAI Web Content Accessibility Guidelines 1.0 This website is ICRA rated