Skip to content

Commit

Permalink
Select output format
Browse files Browse the repository at this point in the history
GUI now allows you to select the output format - Word, Markdown, All
  • Loading branch information
modery committed Nov 8, 2022
1 parent 4275c7b commit 5f0a3db
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
33 changes: 29 additions & 4 deletions PowerDocu.GUI/PowerDocuForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions PowerDocu.GUI/PowerDocuForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ private void selectZIPFileButton_Click(object sender, EventArgs e)
NotificationHelper.SendNotification(
"Trying to process Power Automate Flows"
);
FlowDocumentationGenerator.GenerateWordDocumentation(
FlowDocumentationGenerator.GenerateDocumentation(
fileName,
outputFormatComboBox.SelectedItem.ToString(),
(openWordTemplateDialog.FileName != "")
? openWordTemplateDialog.FileName
: null
Expand Down Expand Up @@ -145,7 +146,8 @@ private void sizeChanged(object sender, EventArgs e)
ClientSize.Height
- selectFileToParseButton.Height
- selectWordTemplateButton.Height
- 40
- outputFormatComboBox.Height
- 65
);
updateConnectorIconsButton.Location = new Point(ClientSize.Width - 80, 15);
newReleaseButton.Location = new Point(ClientSize.Width - 80, 15 + updateConnectorIconsButton.Height);
Expand Down

0 comments on commit 5f0a3db

Please sign in to comment.