Exemplo n.º 1
0
        //Recieve instance of AddFlower form, picture, and notes for the associated picture.
        public ModifyImage(EditFlower parent, Image picture, DateTime timeDate, String photographer, String location, String note)
        {
            this.editParent   = parent;
            this.picture      = picture;
            this.timeDate     = timeDate;
            this.photographer = photographer;
            this.location     = location;
            this.note         = note;

            InitializeComponent();
        }
Exemplo n.º 2
0
        //Calls the EditFlower GUI
        public void loadEditGUI(int position)
        {
            EditFlower editGUI = new EditFlower(position, this);

            editGUI.Show();
        }