示例#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();
        }
示例#2
0
文件: frmMain.cs 项目: x265/HFRGen
 private void btnSetting_Click(object sender, EventArgs e)
 {
     Form frm = new frmSetting();
     frm.ShowDialog();
 }
示例#3
0
文件: frmMain.cs 项目: x265/HFRGen
        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();
        }
示例#4
0
        private void btnSetting_Click(object sender, EventArgs e)
        {
            Form frm = new frmSetting();

            frm.ShowDialog();
        }