Xwt.Mac.AppDelegate.OpenFiles C# (CSharp) 메소드

OpenFiles() 공개 메소드

public OpenFiles ( NSApplication sender, string filenames ) : void
sender MonoMac.AppKit.NSApplication
filenames string
리턴 void
		public override void OpenFiles (NSApplication sender, string[] filenames)
		{
			var openFilesEvent = OpenFilesRequest;
			if (openFilesEvent != null) {
				var args = new OpenFilesEventArgs (filenames);
				openFilesEvent (NSApplication.SharedApplication, args);
			}
		}
	}