/// <summary> /// Open Gambar /// </summary> private void menuItemOpen_Click(object sender, EventArgs e) { if (DialogResult.OK == oDlg.ShowDialog()) { EditGambar.CurrentBitmap = (Bitmap)Bitmap.FromFile(oDlg.FileName); EditGambar.BitmapPath = oDlg.FileName; this.AutoScroll = true; this.AutoScrollMinSize = new Size(Convert.ToInt32(EditGambar.CurrentBitmap.Width * zoomFactor), Convert.ToInt32(EditGambar.CurrentBitmap.Height * zoomFactor)); this.Invalidate(); menuItemImageInfo.Enabled = true; InfoGambar imgInfo = new InfoGambar(EditGambar); imgInfo.Show(); } }
/// <summary> /// Info Gambar /// </summary> private void menuItemImageInfo_Click(object sender, EventArgs e) { InfoGambar imgInfo = new InfoGambar(EditGambar); imgInfo.Show(); }