PrintPreviewDialog 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PrintPreviewDialog 클래스의 새 인스턴스를 초기화합니다.
public:
PrintPreviewDialog();
public PrintPreviewDialog ();
Public Sub New ()
예제
다음 코드 예제에서는 설정에 PrintPreviewDialog 설명 합니다 Document 및 UseAntiAlias 속성입니다. 이 예제에서는 폼에 개체가 포함된 명명된 TreeViewTreeView1
가 포함되어 있다고 가정합니다 TreeNode .
Tag 각 TreeNode 개체의 속성을 예제를 실행하는 컴퓨터에서 액세스할 수 있는 정규화된 문서 이름으로 설정해야 합니다. 각 TreeNode.Text 속성을 속성으로 지정된 파일을 식별하는 문자열로 TreeNode.Tag 설정합니다. 예를 들어 를 "c:\myDocuments\recipe.doc" 및 TreeNode1.Text
"recipe.doc"로 설정할 TreeNode1.Tag
수 있습니다. 또한 이 예제에서는 양식에 라는 단추와 라는 PrintPreviewDialog1
Button1
단추가 포함되어 PrintPreviewDialog 있다고 가정합니다. 이 예제를 InitializePrintPreviewDialog
실행하려면 폼의 생성자 또는 Load 이벤트 처리기에서 메서드를 호출합니다.
// Declare the dialog.
internal:
PrintPreviewDialog^ PrintPreviewDialog1;
private:
// Declare a PrintDocument object named document.
System::Drawing::Printing::PrintDocument^ document;
// Initialize the dialog.
void InitializePrintPreviewDialog()
{
// Create a new PrintPreviewDialog using constructor.
this->PrintPreviewDialog1 = gcnew PrintPreviewDialog;
//Set the size, location, and name.
this->PrintPreviewDialog1->ClientSize = System::Drawing::Size( 400, 300 );
this->PrintPreviewDialog1->Location = System::Drawing::Point( 29, 29 );
this->PrintPreviewDialog1->Name = "PrintPreviewDialog1";
// Associate the event-handling method with the
// document's PrintPage event.
this->document->PrintPage += gcnew System::Drawing::Printing::PrintPageEventHandler( this, &Form1::document_PrintPage );
// Set the minimum size the dialog can be resized to.
this->PrintPreviewDialog1->MinimumSize = System::Drawing::Size( 375, 250 );
// Set the UseAntiAlias property to true, which will allow the
// operating system to smooth fonts.
this->PrintPreviewDialog1->UseAntiAlias = true;
}
void Button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( TreeView1->SelectedNode != nullptr )
{
document->DocumentName = TreeView1->SelectedNode->Tag->ToString();
}
// Set the PrintPreviewDialog.Document property to
// the PrintDocument object selected by the user.
PrintPreviewDialog1->Document = document;
// Call the ShowDialog method. This will trigger the document's
// PrintPage event.
PrintPreviewDialog1->ShowDialog();
}
void document_PrintPage( Object^ /*sender*/, System::Drawing::Printing::PrintPageEventArgs^ e )
{
// Insert code to render the page here.
// This code will be called when the PrintPreviewDialog.Show
// method is called.
// The following code will render a simple
// message on the document in the dialog.
String^ text = "In document_PrintPage method.";
System::Drawing::Font^ printFont = gcnew System::Drawing::Font( "Arial",35,System::Drawing::FontStyle::Regular );
e->Graphics->DrawString( text, printFont, System::Drawing::Brushes::Black, 0, 0 );
}
// Declare the dialog.
internal PrintPreviewDialog PrintPreviewDialog1;
// Declare a PrintDocument object named document.
private System.Drawing.Printing.PrintDocument document =
new System.Drawing.Printing.PrintDocument();
// Initialize the dialog.
private void InitializePrintPreviewDialog()
{
// Create a new PrintPreviewDialog using constructor.
this.PrintPreviewDialog1 = new PrintPreviewDialog();
//Set the size, location, and name.
this.PrintPreviewDialog1.ClientSize =
new System.Drawing.Size(400, 300);
this.PrintPreviewDialog1.Location =
new System.Drawing.Point(29, 29);
this.PrintPreviewDialog1.Name = "PrintPreviewDialog1";
// Associate the event-handling method with the
// document's PrintPage event.
this.document.PrintPage +=
new System.Drawing.Printing.PrintPageEventHandler
(document_PrintPage);
// Set the minimum size the dialog can be resized to.
this.PrintPreviewDialog1.MinimumSize =
new System.Drawing.Size(375, 250);
// Set the UseAntiAlias property to true, which will allow the
// operating system to smooth fonts.
this.PrintPreviewDialog1.UseAntiAlias = true;
}
private void Button1_Click(object sender, System.EventArgs e)
{
if (TreeView1.SelectedNode != null)
// Set the PrintDocument object's name to the selectedNode
// object's tag, which in this case contains the
// fully-qualified name of the document. This value will
// show when the dialog reports progress.
{
document.DocumentName = TreeView1.SelectedNode.Tag.ToString();
}
// Set the PrintPreviewDialog.Document property to
// the PrintDocument object selected by the user.
PrintPreviewDialog1.Document = document;
// Call the ShowDialog method. This will trigger the document's
// PrintPage event.
PrintPreviewDialog1.ShowDialog();
}
private void document_PrintPage(object sender,
System.Drawing.Printing.PrintPageEventArgs e)
{
// Insert code to render the page here.
// This code will be called when the PrintPreviewDialog.Show
// method is called.
// The following code will render a simple
// message on the document in the dialog.
string text = "In document_PrintPage method.";
System.Drawing.Font printFont =
new System.Drawing.Font("Arial", 35,
System.Drawing.FontStyle.Regular);
e.Graphics.DrawString(text, printFont,
System.Drawing.Brushes.Black, 0, 0);
}
' Declare the dialog.
Friend WithEvents PrintPreviewDialog1 As PrintPreviewDialog
' Declare a PrintDocument object named document.
Private WithEvents document As New System.Drawing.Printing.PrintDocument
' Initialize the dialog.
Private Sub InitializePrintPreviewDialog()
' Create a new PrintPreviewDialog using constructor.
Me.PrintPreviewDialog1 = New PrintPreviewDialog
'Set the size, location, and name.
Me.PrintPreviewDialog1.ClientSize = New System.Drawing.Size(400, 300)
Me.PrintPreviewDialog1.Location = New System.Drawing.Point(29, 29)
Me.PrintPreviewDialog1.Name = "PrintPreviewDialog1"
' Set the minimum size the dialog can be resized to.
Me.PrintPreviewDialog1.MinimumSize = New System.Drawing.Size(375, 250)
' Set the UseAntiAlias property to true, which will allow the
' operating system to smooth fonts.
Me.PrintPreviewDialog1.UseAntiAlias = True
End Sub
Private Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button1.Click
If (TreeView1.SelectedNode IsNot Nothing) Then
' Set the PrintDocument object's name to the selectedNode
' object's tag, which in this case contains the
' fully-qualified name of the document. This value will
' show when the dialog reports progress.
document.DocumentName = TreeView1.SelectedNode.Tag
End If
' Set the PrintPreviewDialog.Document property to
' the PrintDocument object selected by the user.
PrintPreviewDialog1.Document = document
' Call the ShowDialog method. This will trigger the document's
' PrintPage event.
PrintPreviewDialog1.ShowDialog()
End Sub
Private Sub document_PrintPage(ByVal sender As Object, _
ByVal e As System.Drawing.Printing.PrintPageEventArgs) _
Handles document.PrintPage
' Insert code to render the page here.
' This code will be called when the PrintPreviewDialog.Show
' method is called.
' The following code will render a simple
' message on the document in the dialog.
Dim text As String = "In document_PrintPage method."
Dim printFont As New System.Drawing.Font _
("Arial", 35, System.Drawing.FontStyle.Regular)
e.Graphics.DrawString(text, printFont, _
System.Drawing.Brushes.Black, 0, 0)
End Sub
설명
의 PrintPreviewDialoginstance 만들면 속성이 Document 로 초기화됩니다null
. 런타임에 이 속성의 값을 변경할 수 있습니다.
적용 대상
추가 정보
.NET