Esempio n. 1
0
        private void btnSetBilling_Click(object sender, EventArgs e)
        {
            var f = new BillingEditor(txtBilling.Text);

            f.ShowDialog();
            if (f.DialogResult != DialogResult.OK)
            {
                return;
            }
            txtBilling.Text = f.GetBilling();
        }
Esempio n. 2
0
        private void btnTestBillings_Click(object sender, EventArgs e)
        {
            var f = new BillingEditor("BF", true);

            f.ShowDialog();
        }