Esempio n. 1
0
        void Setting(string file)
        {
            if (Properties.Settings.Default.UseFolderPlugin)
            {
                return;
            }

            MessageBox.Show($"\"{file}\" not found or not configured.\nPlease configure before use.");
            Form frm = new frmSetting();

            frm.ShowDialog();
        }
Esempio n. 2
0
 private void btnSetting_Click(object sender, EventArgs e)
 {
     Form frm = new frmSetting();
     frm.ShowDialog();
 }
Esempio n. 3
0
        void Setting(string file)
        {
            if (Properties.Settings.Default.UseFolderPlugin)
                return;

            MessageBox.Show($"\"{file}\" not found or not configured.\nPlease configure before use.");
            Form frm = new frmSetting();
            frm.ShowDialog();
        }
Esempio n. 4
0
        private void btnSetting_Click(object sender, EventArgs e)
        {
            Form frm = new frmSetting();

            frm.ShowDialog();
        }