Inheritance: System.EventArgs
Ejemplo n.º 1
0
protected virtual void onStartingFile(FilepathEventArgs e)
{
    EventHandler<FilepathEventArgs> handler = StartingFile;

            if(handler != null)
            {
                handler(this, e);
            }
}
Ejemplo n.º 2
0
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }
Ejemplo n.º 3
0
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }