AllowDrop on WinForms.GroupBox

  • Thread starter Thread starter Water Cooler v2
  • Start date Start date
W

Water Cooler v2

May be I've just been awake a bit too long but I can't seem to find
the AllowDrop property on a System.Windows.Forms.GroupBox object in
the design mode.

I've set it in the code window but I am just a bit confused why it
isn't there in the design mode.
 
Well, you aren't imaging it... it looks like it overrides the property
specifically to do just this:

[EditorBrowsable(EditorBrowsableState.Advanced), Browsable(false)]
public override bool AllowDrop {
get {return base.AllowDrop;}
set {base.AllowDrop = value;}
}

Perhaps it just isn't considered a common drop-target... although to
my mind it is at least framed, making it a more "obvious" target than,
say, a Panel (which behaves normally).

I'd be interested to hear if you get any issues with dropping onto
GroupBox?

Marc
 
imaging => imagining ;-p

btw, I've checked on the symbol server, and there is no stated reason
for this. So please do share any experiences (good or bad).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top