Exemplo n.º 1
0
 private void ChannelOrderDialog_HelpButtonClicked(object sender, CancelEventArgs e)
 {
     e.Cancel = true;
     using (
         var dialog =
             new HelpDialog(
                 "Drag channels into their new positions, or\n\nDouble-click at an insertion point.  Then Ctrl+Click on channels to move to that point.\nThe insertion point will automatically move with each channel inserted.")
         ) {
         dialog.ShowDialog();
     }
 }
Exemplo n.º 2
0
 private void AllChannelsColorDialog_HelpButtonClicked(object sender, CancelEventArgs e)
 {
     e.Cancel = true;
     const string helpText =
         "Drag colors from the color list onto the channel list." +
         "\n\nIf you have one channel selected, the color will apply to whatever channel you drop it on." +
         "\n\nIf you have multiple channels selected, the color will apply to all channels selected.";
     using (var dialog = new HelpDialog(helpText)) {
         dialog.ShowDialog();
     }
 }
Exemplo n.º 3
0
        private void AllChannelsColorDialog_HelpButtonClicked(object sender, CancelEventArgs e)
        {
            e.Cancel = true;
            const string helpText =
                "Drag colors from the color list onto the channel list." +
                "\n\nIf you have one channel selected, the color will apply to whatever channel you drop it on." +
                "\n\nIf you have multiple channels selected, the color will apply to all channels selected.";

            using (var dialog = new HelpDialog(helpText)) {
                dialog.ShowDialog();
            }
        }
Exemplo n.º 4
0
 private void ChannelOrderDialog_HelpButtonClicked(object sender, CancelEventArgs e)
 {
     e.Cancel = true;
     using (
         var dialog =
             new HelpDialog(
                 "Drag channels into their new positions, or\n\nDouble-click at an insertion point.  Then Ctrl+Click on channels to move to that point.\nThe insertion point will automatically move with each channel inserted.")
         ) {
         dialog.ShowDialog();
     }
 }