Exemplo n.º 1
0
        private void barButtonCurrency_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            CurrencyForm xform1 = new CurrencyForm(_FlexSys)
            {
            };

            xform1.Show();
        }
Exemplo n.º 2
0
        private void barButtonCurrency_ItemClick(object sender, ItemClickEventArgs e)
        {
            CurrencyForm xform1 = new CurrencyForm(_FlexSys)
            {
                MdiParent = this
            };

            xform1.Show();
        }
Exemplo n.º 3
0
 private void monedasToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try
     {
         this.Cursor = Cursors.WaitCursor;
         CurrencyForm frmCurrency = new CurrencyForm();
         frmCurrency.Show();
     }
     finally
     {
         this.Cursor = Cursors.Default;
     }
 }