using DevExpress.XtraEditors;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Data;
|
using System.Drawing;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using System.Windows.Forms;
|
|
namespace TProduct.WinFrmUI.TPump
|
{
|
public partial class SmiReportQrForm : XtraForm
|
{
|
public SmiReportQrForm()
|
{
|
InitializeComponent();
|
}
|
|
private void SmiReportQrForm_Load(object sender, EventArgs e)
|
{
|
//barCodeControl1.cont
|
}
|
public void SetBindingData(string info)
|
{
|
textEditUrl.Text = info;
|
barCodeControl1.Text = info;
|
}
|
}
|
}
|