Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Python by (16.4k points)
closed by

I've made a menubar in Python 3, and I'm considering how to add a keyboard easy routes and accelerators to it. Like hitting "F" for File Menu and so forth. 

Through some burrowing around I discovered the "underline=" trait, however, it doesn't appear to work in Python 3. It didn't work when I attempted it, and the lone documentation I found for it was for before adaptations of Python.

    menubar = Menu(master)

    filemenu = Menu(menubar, tearoff=0)

    .....

    menubar.add_cascade(label="File", underline=0, menu=filemenu)

I just want to know, whether we can do this in tkinter in python3?

closed

4 Answers

0 votes
by (15.4k points)
selected by
 
Best answer
Yes, you can add keyboard shortcuts and accelerators to menus in Python 3 using the tkinter library. However, simply using the underline attribute is not enough in modern Python versions.

To add keyboard shortcuts, use the accelerator property of menu items. Here's a shorter example:

import tkinter as tk

def open_file():

    # Functionality for opening a file

def save_file():

    # Functionality for saving a file

root = tk.Tk()

menubar = tk.Menu(root)

filemenu = tk.Menu(menubar, tearoff=0)

filemenu.add_command(label="Open", accelerator="Ctrl+O", command=open_file)

filemenu.add_command(label="Save", accelerator="Ctrl+S", command=save_file)

filemenu.add_command(label="Exit", accelerator="Ctrl+Q", command=root.quit)

root.config(menu=menubar)

root.bind("<Control-o>", lambda e: open_file())

root.bind("<Control-s>", lambda e: save_file())

root.bind("<Control-q>", lambda e: root.quit())

root.mainloop()

In this concise example, we create a menu bar with a "File" menu and options for opening, saving, and exiting. The accelerator property is used to assign keyboard shortcuts to the menu items. The corresponding functions (open_file, save_file) handle the functionality for each option.

To make the keyboard shortcuts functional, we bind them to the desired events using bind. When the specified keyboard combination is pressed, the associated function is executed.

By utilizing the accelerator property and key bindings, you can easily incorporate keyboard shortcuts and accelerators into your tkinter menus in Python 3.
0 votes
by (26.4k points)

You need to tie your gadget to an event to your capacity/function: 

Keyboard events are sent to the widget that currently owns the keyboard focus. You can use the focus_set method to move focus to a widget:

Capturing keyboard events

from Tkinter import *

root = Tk()

def key(event):

    print "pressed", repr(event.char)

def callback(event):

    frame.focus_set()

    print "clicked at", event.x, event.y

frame = Frame(root, width=100, height=100)

frame.bind("<Key>", key)

frame.bind("<Button-1>", callback)

frame.pack()

root.mainloop()

If you run this script, you’ll find that you have to click in the frame before it starts receiving any keyboard events.

I followed this manual for carry out a ctrl+f restricting to one of my capacities/functions some time prior: 

toolmenu.add_command(label="Search Ctrl+f", command=self.cntrlf)

root.bind('<Control-f>', self.searchbox)

def cntrlf(self, event):

    self.searchbox()

for your document menu, you should consider executing accelerators:

menubar.add_cascade(label="File", menu=fileMenu)

fileMenu.add_command(label="Exit", command=quit, accelerator="Ctrl+Q")

config(menu=menubar) 

for Menu, alternatives make sure to utilize ALT followed by the principal letter of the OptionName 

record Menu = ALT followed by f Tool Menu = ALT followed by t, etc 

trust this gives valuables

Interested to learn python in detail? Come and Join the python course.

0 votes
by (25.7k points)
Yes, it is possible to add keyboard shortcuts and accelerators to menus in Python 3 using the tkinter library. However, the underline attribute alone is not sufficient for defining keyboard shortcuts in modern versions of Python.

In tkinter, you can define keyboard shortcuts and accelerators using the accelerator property of menu items. Here's an example of how you can add keyboard shortcuts to a menu in Python 3 with tkinter:

import tkinter as tk

def open_file():

    # Functionality for opening a file

    pass

def save_file():

    # Functionality for saving a file

    pass

root = tk.Tk()

menubar = tk.Menu(root)

filemenu = tk.Menu(menubar, tearoff=0)

filemenu.add_command(label="Open", accelerator="Ctrl+O", command=open_file)

filemenu.add_command(label="Save", accelerator="Ctrl+S", command=save_file)

filemenu.add_separator()

filemenu.add_command(label="Exit", accelerator="Ctrl+Q", command=root.quit)

root.config(menu=menubar)

# Create key bindings for the shortcuts

root.bind("<Control-o>", lambda e: open_file())

root.bind("<Control-s>", lambda e: save_file())

root.bind("<Control-q>", lambda e: root.quit())

root.mainloop()

In this example, we create a menu bar and add a "File" menu with options for opening, saving, and exiting. Each menu item is assigned an accelerator using the accelerator property, specifying the desired keyboard shortcut.

To make the keyboard shortcuts functional, we bind them to corresponding events using the bind method. When the specified keyboard combination is pressed, the associated function will be executed.

By using the accelerator property and key bindings, you can easily add keyboard shortcuts and accelerators to menus in Python 3 with tkinter.
0 votes
by (19k points)

import tkinter as tk

def open_file():

    # Functionality for opening a file

def save_file():

    # Functionality for saving a file

root = tk.Tk()

menubar = tk.Menu(root)

filemenu = tk.Menu(menubar, tearoff=0)

filemenu.add_command(label="Open", accelerator="Ctrl+O", command=open_file)

filemenu.add_command(label="Save", accelerator="Ctrl+S", command=save_file)

filemenu.add_command(label="Exit", accelerator="Ctrl+Q", command=root.quit)

root.config(menu=menubar)

root.bind("<Control-o>", lambda e: open_file())

root.bind("<Control-s>", lambda e: save_file())

root.bind("<Control-q>", lambda e: root.quit())

root.mainloop()

It creates a menu bar with a "File" menu and options for opening, saving, and exiting. The accelerator property assigns keyboard shortcuts to the menu items. The corresponding functions handle the functionality for each option.
Key bindings using bind make the keyboard shortcuts functional. When the specified keyboard combination is pressed, the associated function is executed.
By following this approach, you can easily add keyboard shortcuts and accelerators to your tkinter menus in Python 3.

Related questions

0 votes
1 answer
0 votes
5 answers

Browse Categories

...