System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs)

Here are the examples of the csharp api class System.Windows.Forms.CommonDialog.OnHelpRequest(System.EventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: TraceLab
Source File: VistaFileDialog.cs
internal void DoHelpRequest()
        {
            OnHelpRequest(new HelpEventArgs(Cursor.Position));
        }

2. Example

Project: TraceLab
Source File: VistaFileDialog.cs
private void DownlevelDialog_HelpRequest(object sender, EventArgs e)
        {
            OnHelpRequest(e);
        }