상속: System.Windows.Forms.Form
예제 #1
0
        private void HandlePictureBoxRightClick(PictureBox pictureBox)
        {
            //int imageID;
            //String tag = pictureBox.Tag.ToString();
            //int.TryParse(tag.Substring(tag.Length - 12, 8), out imageID);
            groupBoxImages.Controls.Remove(pictureBox);
            frmLabelRotation frm = new frmLabelRotation();

            frm.SingleImageFileName = pictureBox.Tag.ToString();
            frm.Show();
        }
예제 #2
0
        private void cmdLabelRotation_Click(object sender, EventArgs e)
        {
            frmLabelRotation frm = new frmLabelRotation();

            frm.Show();
        }
예제 #3
0
 private void cmdLabelRotation_Click(object sender, EventArgs e)
 {
     frmLabelRotation frm = new frmLabelRotation();
     frm.Show();
 }
예제 #4
0
 private void HandlePictureBoxRightClick(PictureBox pictureBox)
 {
     //int imageID;
     //String tag = pictureBox.Tag.ToString();
     //int.TryParse(tag.Substring(tag.Length - 12, 8), out imageID);
     groupBoxImages.Controls.Remove(pictureBox);
     frmLabelRotation frm = new frmLabelRotation();
     frm.SingleImageFileName = pictureBox.Tag.ToString();
     frm.Show();
 }