示例#1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="e"></param>
 private void OnFileFound(PlugInFileEventArgs e)
 {
     if (FileFound != null)
     {
         FileFound(this, e);
     }
 }
示例#2
0
        private static void FileFound(object sender, OMLSDK.PlugInFileEventArgs e)
        {
            OMLPlugin plugin = (OMLPlugin)sender;

            Console.WriteLine("Loading file " + e.FileName + " using " + plugin.Name + " importer");
        }
示例#3
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="e"></param>
 private void OnFileFound(PlugInFileEventArgs e)
 {
     if (FileFound != null)
         FileFound(this, e);
 }