private void MakeNewDoesSomething(object sender, System.EventArgs e) { Action newAction = new Action(WhatToDo.Text, this); newAction.Show(); _allActions.Add(newAction); }
private void MakeNewDoesSomething(object sender, System.EventArgs e) { Action newDoesSomething = new Action(WhatToDo.Text); newDoesSomething.Show(); _allDoesSomethings.Add(newDoesSomething); }