コード例 #1
0
        //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();
        }
コード例 #2
0
        private void addFlowerButton_Click(object sender, EventArgs e)
        {
            AddFlower addFlower = new AddFlower();

            addFlower.Show();
        }
コード例 #3
0
        public void addFlower()
        {
            AddFlower addFlower = new AddFlower();

            addFlower.Show();
        }