2
Answers

Any news?

Sam Hobbs

Sam Hobbs

15y
2.6k
1

I sthere any news of what prizes or rewards or whatever will be available? I see that there is an annual reward for authors and that is all I see at the moment.
 
Thank you for everything that has been provided in the past. I wish I could help more than I have.
Answers (2)
0
nedzada alesevic

nedzada alesevic

NA 3 1.7k 14y
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
Vasanth R

Vasanth R

NA 68 0 14y

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