Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Globalization
Imports System.Text
Imports System.Collections
Imports System.Drawing.Printing
Public Class MainClass
Shared Sub Main()
Dim myform As Form = New CustomPrintPreviewDialog()
Application.Run(myform)
End Sub
End Class
Public Class CustomPrintPreviewDialog
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents printPreviewControl1 As System.Windows.Forms.PrintPreviewControl
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.printPreviewControl1 = New System.Windows.Forms.PrintPreviewControl()
Me.SuspendLayout()
'
'printPreviewControl1
'
Me.printPreviewControl1.AutoZoom = False
Me.printPreviewControl1.Dock = System.Windows.Forms.DockStyle.Fill
Me.printPreviewControl1.Name = "printPreviewControl1"
Me.printPreviewControl1.Size = New System.Drawing.Size(376, 398)
Me.printPreviewControl1.TabIndex = 1
Me.printPreviewControl1.UseAntiAlias = True
Me.printPreviewControl1.Zoom = 0.30000001192092896
'
'CustomPrintPreviewDialog
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(376, 398)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.printPreviewControl1})
Me.Name = "CustomPrintPreviewDialog"
Me.Text = "CustomPrintPreviewDialog"
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub printPreviewControl1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles printPreviewControl1.Click
If (Control.ModifierKeys And Keys.Shift) = 0 Then
printPreviewControl1.Zoom = printPreviewControl1.Zoom * 2.0
Else
printPreviewControl1.Zoom = printPreviewControl1.Zoom / 2.0
End If
End Sub
Public Property Document() As PrintDocument
Get
Return printPreviewControl1.Document
End Get
Set(ByVal Value As PrintDocument)
printPreviewControl1.Document = Value
End Set
End Property
End Class
|