⎕USING ← 'System.Windows,WPF/PresentationFramework.dll'
win ← ⎕NEW Window
if you want to change the visibility property of the window, one way of doing it is like this:
win.Visibility ← win.Visibility.Hidden ⍝ case 1
An alternative way is:
win.(Visibility ← Visibility.Hidden) ⍝ case 2
My question is: Is there another way even shorter that is possible ?
win.Visibility.( ← .Hidden) ⍝ Does not work but in this style
Thanks,
Pierre Gilbert