0
write two functions, but when start the project only my first storyboard is executed
public partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
// Insert code required on object creation below this point.
}
private void ckBox_Unchecked(object sender, System.Windows.RoutedEventArgs e)
{
Storyboard st = Resources["stplus"] as Storyboard;
st.Begin(this, true);
}
private void ckBox_Checked(object sender, System.Windows.RoutedEventArgs e)
{
Storyboard st = Resources["stminus"] as Storyboard;
st.Begin(this, true);
}
}
}
0
Write a seperate function to start a second storyboard with necessary information.
Call this function in the check box checked changed event
------------------------------------
thanks
vr
Mark it as Answer if it helps