private void buttonPick_Click(object sender, EventArgs e)
        {
            DialogResult res = this.openFileDialogWorkspace.ShowDialog(this);

            if (res == System.Windows.Forms.DialogResult.OK)
            {
                this.textBoxWorkspacePath.Text = this.openFileDialogWorkspace.FileName;

                CodeLiteProjectParser parser = new CodeLiteProjectParser();
                m_model = parser.ParseWorkspace(this.openFileDialogWorkspace.FileName);

                FillControlsWithModel(m_model);
            }
        }
Example #2
0
        private void buttonPick_Click(object sender, EventArgs e)
        {
            DialogResult res = this.openFileDialogWorkspace.ShowDialog(this);

            if (res == System.Windows.Forms.DialogResult.OK)
            {
                this.textBoxWorkspacePath.Text = this.openFileDialogWorkspace.FileName;

                CodeLiteProjectParser parser = new CodeLiteProjectParser();
                m_model = parser.ParseWorkspace(this.openFileDialogWorkspace.FileName);

                FillControlsWithModel(m_model);
            }
        }