Inheritance: System.EventArgs
コード例 #1
0
ファイル: Phosphinator.cs プロジェクト: dbaileychess/Compass
protected virtual void onStartingFile(FilepathEventArgs e)
{
    EventHandler<FilepathEventArgs> handler = StartingFile;

            if(handler != null)
            {
                handler(this, e);
            }
}
コード例 #2
0
ファイル: phosphinatorForm.cs プロジェクト: trishorts/Compass
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }
コード例 #3
0
ファイル: phosphinatorForm.cs プロジェクト: B-Rich/Compass
 private void handleStartingFile(object sender, FilepathEventArgs e)
 {
     changeCurrentFile(e.Filepath);
 }