vote up 2 vote down star
1

EDIT:

So, I ended up making my own basic solution to this problem, and it can be found in my own answer to the question below. Or, here's a link.

Original Post

I'm doing some UI programming for a small .NET application. The application has some collections of items that need to be displayed in a grid sort of format (X columns by Y rows) and the grid elements need to be able to get dragged around to different grid locations, and possibly out of the grid all together.

The most comparable sort of UI design elements I can think of are the jQueryUI Draggables.

Do I have to roll my own or are there components people have already written to act like this? Even better, are there any free components? Or is there an easy way to do this that I just don't know about (don't do a lot of .NET UI programming..)

Also these "grid items" need to be able to include windows form components. The DataRepeater control is close to what I need, except it only supports horizontal or vertical alignments, not grids of items.

Here's a visual example of what I'm looking for:

Awesome Grid Layout UI

I tried to stick with a halloween theme here.

flag

2 Answers

vote up 0 vote down

The System.Windows.Forms.TableLayoutPanel control supports dragging and dropping, you just have to handle the right events. You could make your own "GridItem" user control, with the icon, caption, background color, etc displayed on a Panel, and then plop a bunch of them in the tablelayoutpanel, and wire up some event handlers. Here's something similar:

http://social.msdn.microsoft.com/Forums/en-US/Vsexpressvcs/thread/1cade626-b76d-40c5-9e5a-101cf2a5e412

link|flag
I started writing some custom components, but I might give that a shot as my base. I have FlowablePanel, which automatically orders its child controls based on their width and height, which I had planned to inherit to DragabbleFlowablePanel, that will allow the controls to be moved around from inside. – snicker Oct 17 at 16:28
Hey, FlowLayoutPanel already exists but doesn't suit my purposes. I reinvented a wheel! – snicker Oct 20 at 17:36
vote up 0 vote down check

Well I rolled my own solution and hosted it on GoogleCode:

draggableitemorderedpanel- A .NET Winforms Component... Kinda like jQuery UI Draggables (not really, maybe someday)

here's a screenshot:

Actual Gameplay!!!

and another just resized:

More actual gameplay!!

Hope this helps someone else out. Also it's super basic and pretty sucks right now but gets the job done.

Anyone that wants project access can have it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.