Home All Groups Group Topic Archive Search About

Is there a component that...

Author
9 Sep 2006 8:33 PM
Michael A. Covington
I need to make something consisting of movable boxes which snap into
position when arranged in a row, such that you can change the order by
moving them around -- rather like the video clips in Windows Movie Maker.

Is there anything like this predefined in C#?

Author
9 Sep 2006 9:25 PM
Nicholas Paldino [.NET/C# MVP]
Michael,

    Nope, you will have to implement this yourself, or get a third-party
component that will do it.

    Hope this helps.


--
          - Nicholas Paldino [.NET/C# MVP]
          - mvp@spam.guard.caspershouse.com

Show quoteHide quote
"Michael A. Covington" <l***@ai.uga.edu.for.address> wrote in message
news:uau9x8E1GHA.4452@TK2MSFTNGP02.phx.gbl...
>I need to make something consisting of movable boxes which snap into
>position when arranged in a row, such that you can change the order by
>moving them around -- rather like the video clips in Windows Movie Maker.
>
> Is there anything like this predefined in C#?
>
>
Are all your drivers up to date? click for free checkup

Author
9 Sep 2006 10:00 PM
Ciaran O''Donnell
You could implement the draging of panels contained in a flow layout panel.
You would just need to determine which panel they have been dragged over
(possible with each panels dragover event) and move them up or down the list
of elements.

Alternativley you could use the Ingragistics grid in CardView with row
re-ordering turned on. You can download a thirty day trial but i dont know if
the format of the data will be for you.

HTH

Ciaran O'Donnell



Show quoteHide quote
"Michael A. Covington" wrote:

> I need to make something consisting of movable boxes which snap into
> position when arranged in a row, such that you can change the order by
> moving them around -- rather like the video clips in Windows Movie Maker.
>
> Is there anything like this predefined in C#?
>
>
>
Author
9 Sep 2006 10:08 PM
Michael A. Covington
Thanks!

Show quoteHide quote
"Ciaran O''Donnell" <CiaranODonn***@discussions.microsoft.com> wrote in
message news:D8429DDE-848A-4F87-A99F-2A1790042BC9@microsoft.com...
> You could implement the draging of panels contained in a flow layout
> panel.
> You would just need to determine which panel they have been dragged over
> (possible with each panels dragover event) and move them up or down the
> list
> of elements.
>
> Alternativley you could use the Ingragistics grid in CardView with row
> re-ordering turned on. You can download a thirty day trial but i dont know
> if
> the format of the data will be for you.
>
> HTH
>
> Ciaran O'Donnell
>
>
>
> "Michael A. Covington" wrote:
>
>> I need to make something consisting of movable boxes which snap into
>> position when arranged in a row, such that you can change the order by
>> moving them around -- rather like the video clips in Windows Movie Maker.
>>
>> Is there anything like this predefined in C#?
>>
>>
>>

Bookmark and Share