Esempio n. 1
0
        private void MnuSelectDupFinderExe_Click(object sender, EventArgs e)
        {
            var command = new SelectDupFinderExeCommand();

            UserInterfaceCommandExecutor.Execute(command);
        }
Esempio n. 2
0
        private void MnuOpenXmlFile_Click(object sender, EventArgs e)
        {
            var command = new OpenXmlFileCommand();

            UserInterfaceCommandExecutor.Execute(command);
        }
Esempio n. 3
0
        private void MnuOpenProject_Click(object sender, EventArgs e)
        {
            var command = new OpenVisualStudioFileCommand();

            UserInterfaceCommandExecutor.Execute(command);
        }
Esempio n. 4
0
        private void MnuAbout_Click(object sender, EventArgs e)
        {
            var command = new ShowAboutCommand();

            UserInterfaceCommandExecutor.Execute(command);
        }