Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created September 4, 2016 19:37
Show Gist options
  • Save manashmandal/34d91469a100ac9e20253513f126ca09 to your computer and use it in GitHub Desktop.
Save manashmandal/34d91469a100ac9e20253513f126ca09 to your computer and use it in GitHub Desktop.
from PyQt5.QtWidgets import QSlider, QDialog, QLabel, QHBoxLayout
from PyQt5.QtCore import Qt, pyqtSignal
class Slider_Dialog(QDialog):
# Added a signal
changedValue = pyqtSignal(int)
def __init__(self):
super(Slider_Dialog, self).__init__()
self.init_ui()
#.....................
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment