Example #1
0
 public void OpenFile(string path)
 {
     OpenFileRequest?.Invoke(this, new FileIOEventArgs()
     {
         Path = path
     });
 }
 /// <summary>
 /// Called when [open file request].
 /// </summary>
 /// <param name="path">The path.</param>
 protected void OnOpenFileRequest(string path)
 {
     OpenFileRequest?.Invoke(this, new OpenFileRequestEventArgs(path));
 }