Example #1
0
        /// <summary>
        /// Populates the combo box with the list of animations
        /// </summary>
        /// <param name="list"></param>
        private void PopulateAnimations(GUIAnimationCollection animationCollection)
        {
            mAnimationsToolStripComboBox.Items.Clear();

            // Add the channel sets to the dropdown
            foreach (GUIAnimation animation in animationCollection)
            {
                mAnimationsToolStripComboBox.Items.Add(animation);
            }
        }
Example #2
0
        /// <summary>
        /// Populates the combo box with the list of animations
        /// </summary>
        /// <param name="list"></param>
        private void PopulateAnimations(GUIAnimationCollection animationCollection)
        {
            mAnimationsToolStripComboBox.Items.Clear();

            // Add the channel sets to the dropdown
            foreach (GUIAnimation animation in animationCollection)
                mAnimationsToolStripComboBox.Items.Add(animation);
        }