Beispiel #1
0
        private void fileNewMenuItem_Click(object sender, EventArgs e)
        {
            NewTopicForm dlg = new NewTopicForm(_helpComponents);

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                UpdateItemLists();
                ShowOrCreateForm(dlg.PreprocessedTopic);
            }
        }
Beispiel #2
0
        private void fileNewMenuItem_Click(object sender,EventArgs e)
        {
            NewTopicForm dlg = new NewTopicForm(_helpComponents);

            if( dlg.ShowDialog() == DialogResult.OK )
            {
                UpdateItemLists();
                ShowOrCreateForm(dlg.PreprocessedTopic);
            }
        }