public void ShowStripProperties(Strip stp)
        {
            Form frm = new StripProperties(stp);
            if (frm.ShowDialog(this) == DialogResult.Cancel)
                return;

            // UNDONE: animation interval must be updated if Strip.DefHoldCount changes
            //			if (stp == stpc.Strip)
            //				tmrAnim.Interval = 80 + (80 * stpc.Strip.DefHoldCount);
        }
Beispiel #2
0
        public void ShowStripProperties(Strip stp)
        {
            Form frm = new StripProperties(stp);

            if (frm.ShowDialog(this) == DialogResult.Cancel)
            {
                return;
            }

            // UNDONE: animation interval must be updated if Strip.DefHoldCount changes
//			if (stp == stpc.Strip)
//				tmrAnim.Interval = 80 + (80 * stpc.Strip.DefHoldCount);
        }