Beispiel #1
0
        private void editarToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            FormSceneProperties p = new FormSceneProperties(project.storyboard.GetScene((int)ctxSource.Tag));

            p.ShowDialog();
            storyboardPanel.Invalidate();
        }
Beispiel #2
0
        private void thumbnail_DoubleClick(object sender, EventArgs e)
        {
            if (selectNextScene)
            {
                return;
            }

            Control             thumbnail = (Control)sender;
            FormSceneProperties p         = new FormSceneProperties(scenes[(int)thumbnail.Tag]);

            p.ShowDialog();
            group.Invalidate();
        }