Ejemplo n.º 1
0
        public Search_Result_Form(ArrayList Notes_found)
        {
            //Class constructor
            //Class parameters :
            //  -ArrayList Notes_found : contains all the resulting Notes from the search

            //GUI Component Initialization
            InitializeComponent();

            //gbNote
            //  -New created GUI component -User Control- contais :
            //      -groupbox
            //      -labels to view Note informations ( Title - Text - Tags )
            //  -Size :
            //      Width :  460
            //      Height : 110

            //set the location of the gbNote
            int Location_Y = 0;

            foreach (Note n in Notes_found)
            {
                gbNote result_note = new gbNote(n);
                result_note.Location = new Point(0, Location_Y);

                panel1.Controls.Add(result_note);

                Location_Y += 110;      //110 - > gbNote Height
            }
        }
Ejemplo n.º 2
0
        public void Show_Note(Note n)
        {
            //Show_Note method :
            //  -Input Parameters : Note to be viewed - Note class type
            //  -No output

            //gbNote
            //  -New created GUI component -User Control- contais :
            //      -groupbox
            //      -labels to view Note informations ( Title - Text - Tags )
            //  -Size :
            //      Width :  460
            //      Height : 110
            gbNote note = new gbNote(n);

            //set the location of the gbNote
            int Location_Y = Viewed_Notes_counter * 110;    //110 - > gbNote Height

            note.Location = new Point(0, Location_Y);

            panel1.Controls.Add(note);
        }