Guest User

Untitled

a guest
Dec 13th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. def OpenFileX(self):
  2. self.file, _ = QtWidgets.QFileDialog.getOpenFileName(self, 'Single File', QtCore.QDir.rootPath() , '*.csv')
  3. self.textBrowserMS.setText(self.fileName)
  4. return self.fileName
  5.  
  6. def getfileOG(self):
  7. filePath, _ = QtWidgets.QFileDialog.getOpenFileName(self, 'Single File', QtCore.QDir.rootPath() , '*.csv')
  8. self.textBrowserOG.setText(filePath)
  9. def getfileConfig(self):
  10. filePath, _ = QtWidgets.QFileDialog.getOpenFileName(self, 'Single File', QtCore.QDir.rootPath() , '*.csv')
  11. self.textEdit_config.setText(filePath)
  12.  
  13. Import C
  14. class analysis(QtWidgets.QMainWindow, C.Ui_Dialog):
  15. def __init__(self,parent=None):
  16. QtWidgets.QMainWindow.__init__(self, parent)
  17. #self.ui = C.Ui_MainWindow()
  18. self.setupUi(self)
Add Comment
Please, Sign In to add comment