private void LinkLabel_LinkClicked(object Sender, LinkLabelLinkClickedEventArgs Args) { Form_Create CreateForm = new Form_Create(MainForm, ArrayHandler.Tasks.IndexOf(_Task), false); CreateForm.ShowDialog(MainForm); Close(); }
public Form_Notes(Form_Create PassedCreate) { try { InitializeComponent(); Origination = 2; CreateForm = PassedCreate; TextBox.Text = CreateForm.Notes; } catch (Exception Args) { Console.WriteLine(Args); Close(); } }