Python Forum
[Tkinter] canvas widget scroll issue
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] canvas widget scroll issue
#3
(Apr-04-2021, 10:42 PM)deanhystad Wrote: I'm guessing you mean that things move when you spin the mouse wheel. The reason this happens is because your code includes this:
    def _on_mousewheel(self, event: tk.Event):
        self.canvas.yview_scroll(int(-1*(event.delta/120)), "units")
If you tell the canvas to scroll, shouldn't it scroll?

A scrollbar is smart. It knows when to enable/disable the thumb, resize the thumb, position the thumb. It knows what to do when the scroll window is smaller or larger than the view window. Your event code is not smart. You spin the mouse wheel and it scrolls. If you want the mouse wheel to be smart, maybe it should work through the scrollbar.

Thx for the info, but what I don't understand then is when I enter widgets that span beyond the scroll view, the scrolling does in fact work correctly...
Reply


Messages In This Thread
canvas widget scroll issue - by chrisdb - Apr-02-2021, 01:02 PM
RE: canvas widget scroll issue - by deanhystad - Apr-04-2021, 10:42 PM
RE: canvas widget scroll issue - by chrisdb - Apr-07-2021, 05:48 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] QTableView: scroll to top cell of the screen random_nick 2 2,873 Oct-08-2022, 12:29 AM
Last Post: random_nick
  [PyQt] How do I get a QScrollArea to scroll? LavaCreeperKing 9 7,880 Oct-29-2021, 08:33 AM
Last Post: Axel_Erfurt
  Treeview scroll selected node to top rfresh737 1 2,729 Apr-14-2021, 03:27 AM
Last Post: deanhystad
  Entry Widget issue PA3040 16 6,891 Jan-20-2021, 02:21 PM
Last Post: pitterbrayn
  [Tkinter] Help with scroll bars kraco 1 2,256 Sep-27-2020, 11:20 PM
Last Post: Larz60+
  How to place global tk text widget in class or on canvas puje 1 2,345 Jul-04-2020, 09:25 AM
Last Post: deanhystad
  Matplotlib figsize and centering issue on canvas deffonotsean 0 1,851 Jun-10-2020, 10:31 AM
Last Post: deffonotsean
  [Tkinter] How to place scroll bar correctly scratchmyhead 1 3,968 May-18-2020, 04:17 PM
Last Post: scratchmyhead
  Scroll frame with MouseWheel Nemesis 1 3,644 Mar-25-2020, 09:29 PM
Last Post: Nemesis
  The coordinates of the Entry widget (canvas) when moving berckut72 8 5,968 Jan-07-2020, 09:26 AM
Last Post: berckut72

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020