It is a Desktop Application QrDecoder used to decode any QRCode with a beautiful User Interface while scanning.
- Add reference to your Desktop Application Project.
- Choose QRDecoder.dll.
- Create a button for scanning QRCode.
- Add this namespace to the top using QRDecoder;
- Create a TextBox or Label or anything that will hold the decoded value of QRCode.
- Add this code:
var scanner = new QRScanner();
scanner.ShowQRScanner();
TextBox1.Text = scanner.DecodedQrCode;
Note: TextBox1 is where the value of Decoded QrCode will be putted.