-2

I want something like this:

Example Timeline

But I don't really know how to realise this.

I want to show movies in this timeline. The timeline should show my movielist with the date I added them.

My ideas:

  1. A Listbox with a binding to my list<T> movielist, styling. The Listbox like the picture shows. But how? Some style ideas? I am new to styling.

  2. Grid with 3 columns, Stackpanel in rows 0 and 2 (row 1 as placeholder), every stackpanel loads a half movielist and shows his movies like movie, placeholder, movie. But makes this sense?

Every movie has properties to use

  • Picture
  • Name
  • Rating
  • UserAddDate

It is hard to describe what I want, so feel free to ask.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Sinmson97
  • 1
  • 2
  • I assume the groups will be summarized , i.e. "2 weeks ago" will have multiple entries and not 3x "2 weeks ago" inside it. This you can only solve by creating your own user control that does this kind of stuff. There is no out-of-box solution, at least not in WPF. Maybe third-party libraries – Tseng Jan 31 '16 at 23:37

1 Answers1

0

I think you have the right general idea of how to create something like that. A listview of your movies and a grid would be a good layout.

You will definitely need to look into styling to create something as professional looking at what you described. This should get you started in the right direction.

This should help you with getting started on your layout.

mrsargent
  • 2,267
  • 3
  • 19
  • 36