Hello
How I can make proper work of events MouseEnter and MouseLeave? On entering mouse cursor in Item PanelBar these two events switching one after other. I detect in code
Dim Panel As New RadPanelBarItem()
Dim item As New TextBlock() Witch{.Text = "Bla-Bla-Bla"}
AddHandler item.MouseEnter, AdressOf item_MouseEnter
AddHandler item.MouseLeave, AdressOf item_MouseLeave
Panel.Items.Add(item)
but these events are raising continuously while mouse cursor is on Item object.
What can I do? Thanks
How I can make proper work of events MouseEnter and MouseLeave? On entering mouse cursor in Item PanelBar these two events switching one after other. I detect in code
Dim Panel As New RadPanelBarItem()
Dim item As New TextBlock() Witch{.Text = "Bla-Bla-Bla"}
AddHandler item.MouseEnter, AdressOf item_MouseEnter
AddHandler item.MouseLeave, AdressOf item_MouseLeave
Panel.Items.Add(item)
but these events are raising continuously while mouse cursor is on Item object.
What can I do? Thanks