コード例 #1
0
        private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Button button = (Button)contextMenuStrip1.SourceControl;

            if (button.Tag != null)
            {
                MixdownInfo    mixdownInfo    = button.Tag as MixdownInfo;
                PropertiesForm propertiesForm = new PropertiesForm(mixdownInfo);
                if (propertiesForm.ShowDialog() == DialogResult.OK)
                {
                }
            }
        }
コード例 #2
0
ファイル: MixDiffForm.cs プロジェクト: ActivePHOENiX/NAudio
 private void propertiesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Button button = (Button)contextMenuStrip1.SourceControl;
     if (button.Tag != null)
     {
         MixdownInfo mixdownInfo = button.Tag as MixdownInfo;
         PropertiesForm propertiesForm = new PropertiesForm(mixdownInfo);
         if (propertiesForm.ShowDialog() == DialogResult.OK)
         {
             
         }
     }
 }