コード例 #1
0
ファイル: MainForm.cs プロジェクト: Kybs0/Diversos
        /// <summary>
        /// Start a new help project
        /// </summary>
        /// <param name="sender">The sender of the event</param>
        /// <param name="e">The event arguments</param>
        private void miNewProject_Click(object sender, EventArgs e)
        {
            if (this.AskToSaveProject())
            {
                project.ResetProject();
                lastBuiltHelpFile = lastOutputLog = txtOutput.Text = null;
            }

            pgProps.Refresh();
        }