
AnimatedStackPanel
How do I move the panel left and right? I would like to do this within XAML
I have tried
<ItemsPanelTemplate>
<views:AnimatedStackPanel
x:Name="AnimationSP"
Loaded="AnimationSP_Loaded">
</views:AnimatedStackPanel>
</ItemsPanelTemplate>
public View(ViewModel viewModel)
{
InitializeComponent();
ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel test = AnimationSP
}
And it does not work.
This does
private void AnimationSP_Loaded(object sender, RoutedEventArgs e)
{
animationSP = (AnimatedStackPanel)sender;
}
private void ImageButton_Click(object sender, RoutedEventArgs e)
{
animationSP.LineLeft();
}
Both are not very nice. I looked at your commanding example with Books but cannot get this work. Can you please help?
We are not a customer yet, but looking into buying if this does what we need.
Thanks in advance
Chris
How do I move the panel left and right? I would like to do this within XAML
I have tried
<ItemsPanelTemplate>
<views:AnimatedStackPanel
x:Name="AnimationSP"
Loaded="AnimationSP_Loaded">
</views:AnimatedStackPanel>
</ItemsPanelTemplate>
public View(ViewModel viewModel)
{
InitializeComponent();
ActiproSoftware.Windows.Controls.Views.AnimatedStackPanel test = AnimationSP
}
And it does not work.
This does
private void AnimationSP_Loaded(object sender, RoutedEventArgs e)
{
animationSP = (AnimatedStackPanel)sender;
}
private void ImageButton_Click(object sender, RoutedEventArgs e)
{
animationSP.LineLeft();
}
Both are not very nice. I looked at your commanding example with Books but cannot get this work. Can you please help?
We are not a customer yet, but looking into buying if this does what we need.
Thanks in advance
Chris