UNPKG

clr

Version:

Node.js binding for .NET Framework API

13 lines (10 loc) 304 B
require("../lib/clr").init({assemblies: ["System.Windows.Forms"]}); with (System.Windows.Forms) { console.log("select file"); var ofd = new OpenFileDialog(); if (ofd.ShowDialog().Equals(DialogResult.OK)) { console.log(ofd.FileName); } else { console.log("cancelled"); } }