Пример #1
0
        public FormParent(string[] args)
        {
            InitializeComponent();
            if (args.Length==3)
            {

                String filename = args[1];
                MessageBox.Show(filename);
                string text = System.IO.File.ReadAllText(filename);
                FormChild child = new FormChild(filename, text, this); //filename is the path
                toggleToolsAvailability("on");
                child.MdiParent = this;
                child.Text = filename;
                child.Show(); //show the child

            }
            toggleToolsAvailability("off");
            if(defaultEmailMethod == null)
            {
                useDefaultToolStripMenuItem.Enabled = false;
            }
        }
Пример #2
0
 /// <summary>
 /// opens an exisiting text file in a mdi child form
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void openToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var result = openFileDialogParent.ShowDialog();
     if (result == System.Windows.Forms.DialogResult.OK)
     {
         String filename = openFileDialogParent.FileName;
         MessageBox.Show(filename);
         string text = System.IO.File.ReadAllText(filename);
         FormChild child = new FormChild(filename, text, this); //filename is the path
         toggleToolsAvailability("on");
         child.MdiParent = this;
         child.Text = filename;
         child.Show(); //show the child
     }
 }
Пример #3
0
        /// <summary>
        /// opens a new mdi child
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void newToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormChild child = new FormChild(this); //make a FormChild

            toggleToolsAvailability("on");
            child.MdiParent = this;
            child.Show(); //show the child
        }