コード例 #1
0
 /// <summary>
 /// It will open the options menu in dialog form.
 /// It will load the new capture options if the user has changed the settings.
 /// </summary>
 private void openOptionsForm()
 {
     frmOptions frmO = new frmOptions(UsersOptions);
     if (frmO.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         UsersOptions = frmO.UsersOptions;
         changeCaptureOptions();
     }
 }
コード例 #2
0
 /// <summary>
 /// It will open the options menu in dialog form.
 /// It will load the new capture options if the user has changed the settings.
 /// </summary>
 public void OpenOptionsForm()
 {
     frmOptions frmO = new frmOptions(optionsRepository.GetDefault());
 }