Description
Description-Separate-1I want to move the the .NET picture box to the back of the waveform chart. I tried to use "Move Backward" & "Move to back" command under "Reorder" menu bar on the front panel but the .NET picture box always locate in front of waveform chart.
Expected Result:

Error Result:

Description-Separate-2How to Use
How-Separate-1There's no way to reorder the .NET picture box in front panel. In simple term, .NET picture box is opened as "new window" , therefore it always be located at the front of the front panel object.
Alternative way is hide the .NET picture box programmatically in LabVIEW by using property node.
- Right click Picture box in block diagram. Select Create >> Property Node >> Visible
- Right click the property node and select Change All To Write
- Create a false constant and link to it
How-Separate-2Additional Information
Additional-Separate-1Create a while loop and link false constant at loop terminal. When the VI is running, the .NET picture will be hide until the VI is stopped.
Additional-Separate-2