Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7876631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T03:11:48+00:00 2026-06-03T03:11:48+00:00

How can i make my qmenu checkable? from PyQt4 import QtGui app = QtGui.QApplication([])

  • 0

How can i make my qmenu checkable?

from PyQt4 import QtGui

app = QtGui.QApplication([])

menu = QtGui.QMenu()

menu.addAction('50%')
menu.addAction('100%')
menu.addAction('200%')
menu.addAction('400%')
menu.show()

app.exec_()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T03:11:49+00:00Added an answer on June 3, 2026 at 3:11 am

    like this:

    from PyQt4 import QtGui
    
    app = QtGui.QApplication([])
    
    w = QtGui.QMainWindow()
    menu = QtGui.QMenu("menu", w)
    
    menu.addAction(QtGui.QAction('50%', menu, checkable=True))
    menu.addAction(QtGui.QAction('100%', menu, checkable=True))
    menu.addAction(QtGui.QAction('200%', menu, checkable=True))
    menu.addAction(QtGui.QAction('300%', menu, checkable=True))
    menu.addAction(QtGui.QAction('400%', menu, checkable=True))
    
    w.menuBar().addMenu(menu)
    w.show()
    app.exec_()
    

    or witht radio buttons:

    from PyQt4 import QtGui
    
    app = QtGui.QApplication([])
    
    w = QtGui.QMainWindow()
    menu = QtGui.QMenu("menu", w)
    ag = QtGui.QActionGroup(w, exclusive=True)
    
    a = ag.addAction(QtGui.QAction('50%', w, checkable=True))
    menu.addAction(a)
    
    a = ag.addAction(QtGui.QAction('100%', w, checkable=True))
    menu.addAction(a)
    
    a = ag.addAction(QtGui.QAction('200%', w, checkable=True))
    menu.addAction(a)
    
    a = ag.addAction(QtGui.QAction('300%', w, checkable=True))
    menu.addAction(a)
    
    a = ag.addAction(QtGui.QAction('400%', w, checkable=True))
    menu.addAction(a)
    
    w.menuBar().addMenu(menu)
    w.show()
    app.exec_()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can make a variable's name from two variables' value: $a = 'tea'; $b
Can someone tell me how I can make a table be 100% height in
how i can make windows server 2003 see some directory from UNIX-AIX ? i
I can make a sequence of numbers like this: s = seq(from=1, to=10, by=1)
I can make a synthetic class cls1 that inherits from cls . >>> class
One can make smooth scrolling animations to go from one part of a webpage
We can make Webservice call in android app by creating HttpURLConnection and POST request.
How Can Make media For Each app In One Project??? For Example I Have
I can make my program write a .dat file with an array of Node
How can make a link within a facebox window that redirects it to another

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.