CSL.ErrorWindow.IssueFileMoveWarning C# (CSharp) Method

IssueFileMoveWarning() public method

public IssueFileMoveWarning ( FileInfo file, bool handled ) : void
file FileInfo
handled bool
return void
        public void IssueFileMoveWarning(FileInfo file, bool handled)
        {
            InstructionalLabel.Text = "The file could not be moved";
                ErrorLabel.Text = "Please manually delete or move it";

            FilePathRichTextBox.Text = file.FullName;
            FileNameLabel.Text = file.Name;

            this.Text = "[CSL] -- Warning";
            this.Activate();
            this.ShowDialog();
        }