Wisej_3_2_0_8

0
0

Hi Wisej,

  1. You can check Treeview on version wisej framework 3.2.0.8. Node do not clear with: TreeView.Nodes.Clear()
  2. When using DropdownMenu of ToolbarButton docking Left:

– wisej framework version 3.2.0.8: Showing dropdown on Right…. Width of ToolBar is bigger

– wisej framework version 3.1.7.5: Showing dropdown on Bottom…. Width of ToolBar is small and nice

– How to set DropdownMenu  of ToolBarButton like wisej framework version 3.1.7.5?

Best regards.

  • You must to post comments
0
0

As a workaround, you can do TreeView.Nodes.Clear(True). See attached sample.

Private Sub ClearNode()
Me.TreeView1.Nodes.Clear(True) ' err: fixed
nFrom += 1
nTo += 10
For i As Integer = nFrom To nTo
Me.TreeView1.Nodes.Add("Node " & i)
Next
nFrom = nTo
End Sub

Attachment
  • Julie (ITG)
    As of 3.2.0-beta-9 the issue has been fixed. TreeView.Nodes.Clear() will clear all nodes.
  • You must to post comments
0
0

Thank you for reporting the issue on Wisej.NET 3.2 Beta!

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.