Share menu in vb.net,

truongphu51

New member
#vb.net, #Print, #Menu, #How to, #tutorial ## Cách in menu trong vb.net

Hướng dẫn này sẽ chỉ cho bạn cách in một menu trong vb.net.Chúng tôi sẽ sử dụng lớp PrintDocument để tạo công việc in và đối tượng đồ họa để vẽ menu vào máy in.

### 1. Tạo một dự án mới

Bắt đầu bằng cách tạo một dự án mới trong Visual Studio.Đối với hướng dẫn này, chúng tôi sẽ sử dụng ứng dụng Windows Forms.

### 2. Thêm một menu vào biểu mẫu của bạn

Tiếp theo, thêm một menu vào biểu mẫu của bạn.Để thực hiện việc này, nhấp chuột phải vào biểu mẫu và chọn ** Thêm -> Menu **.

### 3. Tạo một phương thức in

Bây giờ chúng ta cần tạo một phương thức để in menu.Để thực hiện việc này, hãy thêm mã sau vào mã của biểu mẫu của bạn đằng sau tệp:

`` `VBNet
Printmenu riêng ()

'Tạo một công việc in mới
Dim printjob như printdocument mới ()

'Đặt cài đặt máy in
printjob.printersetting.pritername = "Người viết tài liệu Microsoft XPS"
printjob.printersetting.papersize = System.Drawing.printing.papersize.a4
printjob.printersetting.margins = new System.Drawing.printing.margins (0, 0, 0, 0)

'Tạo một đối tượng đồ họa để vẽ menu thành
Dim đồ họa như đồ họa = printjob.graphics

'Vẽ menu vào đối tượng đồ họa
Graphics.DrawString ("Menu My", Phông chữ mới ("Arial", 12), Brush.Black, 10, 10)

'Bắt đầu công việc in
printjob.print ()

Kết thúc phụ
`` `

### 4. Gọi phương thức in

Để in menu, chỉ cần gọi phương thức `printmenu` từ trình xử lý sự kiện` click` của nút `print`.

`` `VBNet
Sub printbutton_click (người gửi dưới dạng đối tượng, e như EventArgs) xử lý printbutton.click

Printmenu ()

Kết thúc phụ
`` `

### 5. Chạy ứng dụng

Bây giờ bạn có thể chạy ứng dụng và nhấp vào nút `print` để in menu.

### Phần kết luận

Trong hướng dẫn này, bạn đã học cách in một menu trong vb.net.Bạn có thể sử dụng cùng một kỹ thuật này để in bất kỳ loại tài liệu nào khác trong vb.net.

## 5 hashtags

* #vb.net
* #In
* #thực đơn
* #làm cách nào để
* #tutorial
=======================================
#vb.net, #Print, #Menu, #How to, #tutorial ## How to Print a Menu in VB.NET

This tutorial will show you how to print a menu in VB.NET. We'll use the PrintDocument class to create a print job and the Graphics object to draw the menu to the printer.

### 1. Create a new project

Start by creating a new project in Visual Studio. For this tutorial, we'll use a Windows Forms application.

### 2. Add a menu to your form

Next, add a menu to your form. To do this, right-click on the form and select **Add -> Menu**.

### 3. Create a print method

Now we need to create a method to print the menu. To do this, add the following code to your form's code behind file:

```vbnet
Private Sub PrintMenu()

' Create a new print job
Dim printJob As New PrintDocument()

' Set the printer settings
printJob.PrinterSettings.PrinterName = "Microsoft XPS Document Writer"
printJob.PrinterSettings.PaperSize = System.Drawing.Printing.PaperSize.A4
printJob.PrinterSettings.Margins = New System.Drawing.Printing.Margins(0, 0, 0, 0)

' Create a graphics object to draw the menu to
Dim graphics As Graphics = printJob.Graphics

' Draw the menu to the graphics object
graphics.DrawString("My Menu", New Font("Arial", 12), Brushes.Black, 10, 10)

' Start the print job
printJob.Print()

End Sub
```

### 4. Call the print method

To print the menu, simply call the `PrintMenu` method from the `Click` event handler of the `Print` button.

```vbnet
Private Sub PrintButton_Click(sender As Object, e As EventArgs) Handles PrintButton.Click

PrintMenu()

End Sub
```

### 5. Run the application

Now you can run the application and click the `Print` button to print the menu.

### Conclusion

In this tutorial, you learned how to print a menu in VB.NET. You can use this same technique to print any other type of document in VB.NET.

## 5 Hashtags

* #vb.net
* #Print
* #Menu
* #How to
* #tutorial
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top