コード例 #1
0
        public frmReceipt(frmPOS pos)
        {
            InitializeComponent();
            Region = System.Drawing.Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 20, 20));

            pointOfSale = pos;
        }
コード例 #2
0
ファイル: Main.cs プロジェクト: zneret03/supply_management
        private void bunifuFlatButton7_Click(object sender, EventArgs e)
        {
            frmPOS sale = new frmPOS(user.Text);

            sale.Logout.Hide();
            sale.Show();
            this.Hide();
        }
コード例 #3
0
 public frmChangePassword(frmPOS frm)
 {
     InitializeComponent();
     Region      = System.Drawing.Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 20, 20));
     pointOfSale = frm;
 }
コード例 #4
0
 public ProductLookUp(frmPOS form)
 {
     InitializeComponent();
     Region = System.Drawing.Region.FromHrgn(CreateRoundRectRgn(0, 0, Width, Height, 20, 20));
     f      = form;
 }
コード例 #5
0
 public frmQuantity(frmPOS pos)
 {
     InitializeComponent();
     pointOfSale = pos;
 }