Example #1
0
        private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PictureBoxProperties pbp = new PictureBoxProperties();
            CaseImage            cs  = caseImages[currentImage - 1];

            pbp.AddProp("Width", cs.image.Width.ToString());
            pbp.AddProp("Height", cs.image.Height.ToString());
            pbp.AddProp("Image URL", cs.imageURL);
            pbp.AddProp("Study URL", cs.studyURL);
            pbp.AddProp("Study Accession", cs.studyAccession);

            pbp.ShowDialog();
        }
Example #2
0
        private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            PictureBoxProperties pbp = new PictureBoxProperties();
            CaseImage cs = caseImages[currentImage - 1];
            pbp.AddProp("Width", cs.image.Width.ToString());
            pbp.AddProp("Height", cs.image.Height.ToString());
            pbp.AddProp("Image URL", cs.imageURL);
            pbp.AddProp("Study URL", cs.studyURL);
            pbp.AddProp("Study Accession", cs.studyAccession);

            pbp.ShowDialog();
        }