Ejemplo 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();
        }
Ejemplo n.º 2
0
 private void btnSetting_Click(object sender, EventArgs e)
 {
     Form frm = new frmSetting();
     frm.ShowDialog();
 }
Ejemplo 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();
        }
Ejemplo n.º 4
0
        private void btnSetting_Click(object sender, EventArgs e)
        {
            Form frm = new frmSetting();

            frm.ShowDialog();
        }