I'm relatively new to WPF, I come from a WinForms background, I'm trying to implement a coverflow, and I don't fully understand the example, from I what I see, I add the paths to my images to a StringCollection
.
This is what I have right now :
public MainWindow()
{
InitializeComponent();
elementFlow1.Layout = new CoverFlow();
StringCollection itemssource = new StringCollection();
itemssource.Add(@"Images\1.png");
itemssource.Add(@"Images\2.png");
elementFlow1.SelectedIndex = 0;
elementFlow1.ItemsSource = itemssource;
}
And I have the ElementFlow
defined in XAML like so:
<fluidkit:ElementFlow Grid.Row="1" Height="194" Name="elementFlow1" VerticalAlignment="Top" Width="503" />
Lo and behold, when I run it, nothing happens.
Can someone please explain how I'm supposed to use ElementFlow
? The example doesn't really "explain" it very well.
You're missing a key step. The
ElementFlow
control displaysUIElement
s, not strings. You have a list of strings that contain the logical file location of the image files. Now you need to convert that collection of strings to a collection ofDataTemplate
s. If you look in the sample xaml file, you'll see this section:That section essentially takes a string input and converts it to a
DataTemplate
. This is done by setting theItemTemplate
property to thisDataTemplate
resource.You'll probably be better off manipulating this control in XAML rather than code-behind. Things are easier that way (in my opinion anyways).
Hope this helps.