<> = sfPropGrid = == Overview == '''sfPropGrid''' is a Dyalog User Command that use the Syncfusion !PropertyGrid control to browse the properties a .net object. Also the methods, events and constructors of the .net object are shown in a traditional list box. The constructor(s) of the selected property, method or event is shown at the bottom of the window if available. == Deployment == The following assemblies (version 12.4 or newer) are required in the subdirectory /Syncfusion/4.5 of the Dyalog APL version 14 (or newer) directory: * Syncfusion.!PropertyGrid.Wpf.dll * Syncfusion.Shared.Wpf.dll * Syncfusion.Tools.Wpf.dll == Installation == Download the following file [[attachment:sfPropGrid.1.1.dyalog]]. Copy it to your user command directory (for advice how to organize your User Commands see UserCommands/WhereShouldTheyGo). == Typical Usage == The main function of the user command is called NOE (.Net Object Explorer). Here is some examples: {{{ ⎕USING←'System.Windows.Controls,WPF/PresentationFramework.dll' '' 'System' ⍝ A class that have not been instantiated ]NOE Button ⍝ A class instantiated btn ← ⎕NEW Button ]NOE btn ⍝ A vector of objects objs ← ⎕NEW¨ Button ListBox TextBox Label ]NOE objs }}} Here is some screenshots: {{attachment:properties.png || width=500}} {{attachment:methods.png || width=500}} {{attachment:events.png || width=500}} == Version Information == ||Original author: ||Pierre Gilbert || ||Responsible: ||PierreGilbert || ||Email: || <> || Thanks to DanBaronet and Vince of Dyalog for their help in writing this User Command. ---- CategoryDyalog - CategoryDyalogDotNet - CategorySyncfusionWpfExamples - CategoryDotNet