Add "BarcodeLib.Barcode.WinForms.dll" to your WinForms C# project Toolbox.
Right click "Toolbox", select "Choose Items...", and locate "BarcodeLib.Barcode.WinForms.dll". Then, you'll find four new-added components, including "QRCodeWinForm".
Under "barcode" folder of the trial package, copy files "qrcode.aspx", "qrcode.aspx.cs" to your WinForms project folder.
Drag "QRCodeWinForm" to aspx page and then run the project to see the generated QR Code image.
If you want to customize the QR Code image properties, you may directly adjust the settings in the "Properties" window or using following C# class code.
.NET WinForms Class - QR Code Barcode Generation Using C#
Add "BarcodeLib.Barcode.WinForms.dll" to your Windows Forms C# project "Reference".
In Solution Explorer window, right click on your project, select "Add Reference...", and locate "BarcodeLib.Barcode.WinForms.dll".
Then, copy & paste following Visual C# sample code to generate & print QR Code in your .NET Windows Forms projects.
QRCode qrcode = new QRCode();
qrcode.Data = "QRCODE";
qrcode.ModuleSize = 4;
qrcode.ECL = QRCodeErrorCorrectionLevel.L;
qrcode.ImageHeight = 118;
qrcode.ImageWidth = 118;
// Save & output QR Code barcode image to your system
qrcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
qrcode.drawBarcode("C:/sample-qrcode.gif");