//Recieve instance of AddFlower form, picture, and notes for the associated picture. public ModifyImage(AddFlower parent, Image picture, DateTime timeDate, String photographer, String location, String note) { this.addParent = parent; this.picture = picture; this.timeDate = timeDate; this.photographer = photographer; this.location = location; this.note = note; InitializeComponent(); }
private void addFlowerButton_Click(object sender, EventArgs e) { AddFlower addFlower = new AddFlower(); addFlower.Show(); }
public void addFlower() { AddFlower addFlower = new AddFlower(); addFlower.Show(); }