gitextract_cvrmxber/ ├── EasyJob/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Documentation/ │ │ └── HelpDocumentation.xml │ ├── EasyJob.csproj │ ├── EasyJob.csproj.user │ ├── EasyJobPS/ │ │ ├── EasyJobPS.psd1 │ │ └── EasyJobPS.psm1 │ ├── LICENSE.txt │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Serialization/ │ │ ├── AnswerDialog/ │ │ │ ├── Answer.cs │ │ │ └── AnswerData.cs │ │ ├── Config/ │ │ │ ├── Config.cs │ │ │ ├── ConfigArgument.cs │ │ │ ├── ConfigButton.cs │ │ │ ├── ConfigRestrictions.cs │ │ │ └── ConfigTab.cs │ │ ├── TabItems/ │ │ │ ├── ActionButton.cs │ │ │ └── TabData.cs │ │ └── TasksList/ │ │ └── TaskListTask.cs │ ├── Utils/ │ │ ├── CommonUtils.cs │ │ ├── ConfigUtils.cs │ │ └── ScrollViewerExtensions.cs │ ├── Windows/ │ │ ├── AboutDialog.xaml │ │ ├── AboutDialog.xaml.cs │ │ ├── AddActionButtonDialog.xaml │ │ ├── AddActionButtonDialog.xaml.cs │ │ ├── AnswerDialog.xaml │ │ ├── AnswerDialog.xaml.cs │ │ ├── ColorTagsDialog.xaml │ │ ├── ColorTagsDialog.xaml.cs │ │ ├── ConfigurationDialog.xaml │ │ ├── ConfigurationDialog.xaml.cs │ │ ├── EditActionButtonDialog.xaml │ │ ├── EditActionButtonDialog.xaml.cs │ │ ├── HelpDialog.xaml │ │ ├── HelpDialog.xaml.cs │ │ ├── NewTabDialog.xaml │ │ ├── NewTabDialog.xaml.cs │ │ ├── RenameTabDialog.xaml │ │ ├── RenameTabDialog.xaml.cs │ │ ├── ReorderActionButtonsDialog.xaml │ │ ├── ReorderActionButtonsDialog.xaml.cs │ │ ├── ReorderTabsDialog.xaml │ │ ├── ReorderTabsDialog.xaml.cs │ │ ├── TroubleshootingWindow.xaml │ │ └── TroubleshootingWindow.xaml.cs │ └── config.json ├── EasyJob.sln ├── EasyJobPSTools/ │ ├── EasyJobPSTools.csproj │ ├── EasyJobPSTools.psd1 │ ├── EasyJobPSTools.psm1 │ ├── EasyJobPSTools.sln │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Utils/ │ │ └── CommonUtils.cs │ ├── Windows/ │ │ ├── ShowEJInputBox.xaml │ │ └── ShowEJInputBox.xaml.cs │ └── app.config ├── LICENSE.txt ├── README.md └── WpfRichText/ ├── AttachedProperties/ │ └── RichTextboxAssistant.cs ├── Commands/ │ ├── CommandReference.cs │ └── DelegateCommand.cs ├── Controls/ │ ├── RichTextEditor.xaml │ └── RichTextEditor.xaml.cs ├── WpfRichText.csproj ├── WpfRichText.sln └── XamlToHtmlParser/ ├── HtmlCssParser.cs ├── HtmlFromXamlConverter.cs ├── HtmlLexicalAnalyzer.cs ├── HtmlParser.cs ├── HtmlSchema.cs ├── HtmlToXamlConverter.cs └── HtmlTokenType.cs