Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 27  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. C# what object can be used like Picturebox in VB6? where its possible to put objects to it?
  2. using System.Windows.Forms;
  3. using System.ComponentModel;
  4. using System.ComponentModel.Design;
  5.  
  6. namespace Whatever
  7. {
  8.   [Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design",
  9.        typeof(IDesigner))]
  10.   public class MyPicContainer : PictureBox
  11.   {
  12.   }
  13. }