The link below points to a sample project i have done with version 3 that is not responding to the collapse button click.
Pls check it and help me figure out what i am doing wrong.
https://drive.google.com/file/d/1AufUAri6mWblQUvLHOPkBPc5fKY7oyA1/view?usp=sharing
That’s not a collapse button. It’s the app logo in the title. The click works without issues.
Private Sub NavigationBar1_TitleClick(sender As Object, e As EventArgs) Handles NavigationBar1.TitleClick
Me.NavigationBar1.CompactView = Not Me.NavigationBar1.CompactView
End Sub
This Window1 without any click handler.
Imports System
Imports Wisej.Web
Public Class Window1
End Class
This is Window1
‘
‘NavigationBar1
‘
Me.NavigationBar1.Dock = Wisej.Web.DockStyle.Left
Me.NavigationBar1.Logo = “menu-overflow”
Me.NavigationBar1.Name = “NavigationBar1”
Me.NavigationBar1.Size = New System.Drawing.Size(282, 695)
Me.NavigationBar1.TabIndex = 0
Me.NavigationBar1.Text = “NavigationBar1”
There is nothing to click and no items.
The circled button at the top left corner is what i am referring to.
The sample doesn’t have a navbar, it’s just an empty page and empty window.