© 2026 Hedgehog Software, LLC
Error: Method or operation is not implemented
private async void ButtonEncrypt_Click(object sender, EventArgs e) { try { string path = TextboxFilePath.Text; System.Windows.Forms.ProgressBar Bar = progressBar; System.Windows.Forms.TextBox Status = this.progressStatus; await fileEncrypterHelper.EncryptPath(path, progressBar, Status); } catch (Exception ex) { TextboxError.Visible = true; TextboxError.Text = $"Error: {ex.Message}"; } } private async void ButtonDecrypt_Click(object sender, EventArgs e) { try { string path = TextboxFilePath.Text; System.Windows.Forms.ProgressBar Bar = progressBar; System.Windows.Forms.TextBox Status = this.progressStatus; await fileEncrypterHelper.DecryptPath(path, progressBar, Status); } catch (Exception ex) { TextboxError.Visible = true; TextboxError.Text = $"Error: {ex.Message}"; } }
FileEncrypterHelper.cs