Esempio n. 1
0
 private void btSelectImage_Click(object sender, EventArgs e)
 {
     FrmResources dlg = new FrmResources();
     dlg.StartPosition = FormStartPosition.CenterScreen;
     if (dlg.ShowDialog() == DialogResult.OK) {
         //MessageBox.Show(dlg.SelectedImageKey);
         Tico.Text = dlg.SelectedImageKey;
         dataClass.ProgIco = dlg.SelectedImageKey;
     }
 }
Esempio n. 2
0
        private void simpleButton3_Click(object sender, EventArgs e)
        {
            FrmResources dlg = new FrmResources();

            dlg.StartPosition = FormStartPosition.CenterScreen;
            if (dlg.ShowDialog() == DialogResult.OK)
            {
                //MessageBox.Show(dlg.SelectedImageKey);
                Tico.Text         = dlg.SelectedImageKey;
                dataClass.ProgIco = dlg.SelectedImageKey;
            }
        }