I have been doing the following to reach that dll:
⎕USING←'System,mscorlib.dll'
progFiles←Environment.GetFolderPath Environment.SpecialFolder.ProgramFiles
_NetPath←progFiles,'\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Profile\Client\'
⎕USING←'System.Windows,',_NetPath,'PresentationFramework.dll'
⎕NEW Window
System.Windows.Window
I have seen Dyalog used instead of the above the following (that seems to be working very well and much simplier):
⎕USING←'System.Windows,WPF/PresentationFramework.dll'
⎕NEW Window
System.Windows.Window
I don't have any directory called 'WPF' with PresentationFramework.dll in it and still the last ⎕USING is working anyway. Why is that ?
Thanks in advance