3

I am looking for a .NET Winform component with the functionality similar to picture box in MS Power Point that you can easily insert an image from a file and using mouse you can easily rotate or resize the image and the container control.

Any help would be greatly appreciated.

Jehof
  • 34,674
  • 10
  • 123
  • 155
Siamak
  • 31
  • 2
  • What I need is a ready to use control (ie. a thrid party component) that I can move, resize, rotate it at run time in winform .NET. My ideal control is something similar to MS PowerPoint picture control. – Siamak Oct 28 '12 at 19:10
  • Then see the codeproject link. You can roll your own as well by forming a usercontrol. I will be glad to see one if you could post somewhere. – nawfal Oct 28 '12 at 19:11

1 Answers1

0

This question has been asked many times. See How do I rotate a picture in WinForms or Rotate image math (C#) or on codeproject. You should basically use a PictureBox as the container control as control is meant for these kind of operations.

Community
  • 1
  • 1
nawfal
  • 70,104
  • 56
  • 326
  • 368
  • I already used picturebox in my application for different purpose. What I need is a ready to use control (ie. a thrid party component) that I can move, resize, rotate it at run time in my .NET winform porject. My ideal control is something similar to MS PowerPoint picture control – Siamak Oct 28 '12 at 19:12
  • @Siamak I doubt if they exist. Please see to third party user controls on telerik or devexpress, but I suspect they come at a heavy price.. – nawfal Oct 28 '12 at 19:16
  • 1
    Thanks nawfal for your prompt response.I already checked their site and did not find what I need. What I need seems to be something that many people already needed but unexpectedly I did not find any ready to use winform control even non-free one. – Siamak Oct 28 '12 at 20:22