Inheritance: System.EventArgs
Exemplo n.º 1
0
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }
Exemplo n.º 2
0
 private void handleFinishedFile(object sender, FilepathEventArgs e)
 {
     unselectFile(e.Filepath);
 }
Exemplo n.º 3
0
 private void handleFinishedFile(object sender, FilepathEventArgs e)
 {
     unselectFile(e.Filepath);
 }
Exemplo n.º 4
0
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }
Exemplo n.º 5
0
        protected virtual void onStartingFile(FilepathEventArgs e)
        {
            EventHandler<FilepathEventArgs> handler = StartingFile;

            if(handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 6
0
        protected virtual void onFinishedFile(FilepathEventArgs e)
        {
            EventHandler<FilepathEventArgs> handler = FinishedFile;

            if(handler != null)
            {
                handler(this, e);
            }
        }