Exemplo n.º 1
0
 protected virtual void OnFileClick(ExplorerClickEventArgs e)
 {
     if (FileClick != null)
     {
         FileClick(this, e);
     }
 }
Exemplo n.º 2
0
        void _winProjExplorer_FileClick(object sender, ExplorerClickEventArgs e)
        {
            Document doc = ShowFile(e.FileName);

            if (doc != null)
            {
                doc.ParseContentsNow();
            }
        }