Exemplo 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();
        }
Exemplo n.º 2
0
        private void btnTestBillings_Click(object sender, EventArgs e)
        {
            var f = new BillingEditor("BF", true);

            f.ShowDialog();
        }