public CheckoutForm(decimal subtotal, decimal tax, decimal total)
 {
     InitializeComponent();
     Subtotal.Text = subtotal.ToString();
     Tax.Text      = tax.ToString();
     Total.Text    = total.ToString();
     TrivialBehinds.CreateComponentBehind(this);
 }
 public CashRegisterMain()
 {
     InitializeComponent();
     TrivialBehinds.CreateComponentBehind(this);
 }
Example #3
0
 public UserControl1()
 {
     InitializeComponent();
     TrivialBehinds.CreateComponentBehind(this);
 }
Example #4
0
 public DirectForm()
 {
     InitializeComponent();
     TrivialBehinds.CreateComponentBehind(this);
 }
 public CheckoutForm()
 {
     InitializeComponent();
     TrivialBehinds.CreateComponentBehind(this);
 }