private void editarToolStripMenuItem1_Click(object sender, EventArgs e) { FormSceneProperties p = new FormSceneProperties(project.storyboard.GetScene((int)ctxSource.Tag)); p.ShowDialog(); storyboardPanel.Invalidate(); }
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(); }