up vote 1 down vote favorite
share [g+] share [fb]

What i want to do is make a wpf listbox photo album for one my college project and i have come to a point when im really stuck.

i simply need to design a data template/ listbox style so it will look like a stack jumbled of photos , Ie the top one being the item under focus (selected item)

i drew a quick crude drawing in paint to help show as im rubbish at explaining.

Please have a look

Image here

alt text

with refference to the drawing

item 1) is not shown

item 2) is at back of stack

item 3) in the middle of 2 and 4

item 4) is under focus (selected item)

item 5) is not shown

any help suggestions would be great , the stuff im most stuck on is getting the items to rotate and overlap and most difficult is getting the item under focus to be show as the top.

Im using Visual basic because i havent yet mastered c# so be a real help if examples could be in VB or use mainly WPF

thanks for reading luke

link|improve this question
feedback

1 Answer

To get the items to rotate, you should look at using Transforms. The one that is most relevant in this case is the Rotate Transform, also to give it that random scattered apperance, we can use an ObjectDataProvider and generate our angles somewhere else.

I don't know VB, but the only C# involved in this is pretty simple, and should be easily transferable.

Lets just use something simple like Colors, which can easily be switched over to image resource paths. Here we've got an ObservableCollection of our Colors, and also a separate class that we will use to generate angles, all it's going to do is return a number between 0 and 360, which we will use to rotate each item.

public partial class Window1 : Window
{
	public Window1()
	{
		InitializeComponent();

		Colors = new ObservableCollection<string>();
		Colors.Add("Red");
		Colors.Add("Blue");
		Colors.Add("Green");
		Colors.Add("Yellow");

		this.DataContext = this;
	}

	public ObservableCollection<string> Colors
	{
		get;
		set;
	}
}

public class AngleService
{
	private static Random rand = new Random();

	public int GetAngle()
	{
		return rand.Next(0, 90);
	}
}

In the XAML, we can now create a resource that can be used to generate the angles.

<Window.Resources>
	<local:AngleService x:Key="Local_AngleService" />
	<ObjectDataProvider x:Key="Local_AngleProvider"
						x:Shared="False"
						ObjectInstance="{StaticResource Local_AngleService}"
						MethodName="GetAngle" />
</Window.Resources>

Now, we just need to create something to display our items. We can put them in a ListBox and add a data template to set the background for each color item, as well as apply the RotateTransform.

<ListBox ItemsSource="{Binding Colors}"
		 VerticalContentAlignment="Center"
		 HorizontalContentAlignment="Center">
	<ListBox.ItemTemplate>
		<DataTemplate>
			<Border x:Name="uiItemBorder"
					BorderBrush="Black"
					BorderThickness="2"
					CornerRadius="3"
					Background="{Binding}"
					Width="50"
					Height="50">
				<TextBlock Text="{Binding}"
						   VerticalAlignment="Center"
						   HorizontalAlignment="Center" />
				<Border.RenderTransform>
					<RotateTransform Angle="{Binding Source={StaticResource Local_AngleProvider}}" />
				</Border.RenderTransform>
			</Border>
		</DataTemplate>
	</ListBox.ItemTemplate>
</ListBox>

The UI still needs a bit of work from there, but that should help out with the rotation of the items.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown