我正在使用 picot GUI 应用程序来显示一些图形和图表,我尝试使用 pyqtgraph 来实现,但它不适用于日期或时间,所以我切换到 matplotlib
它工作完美,但结果显示在同一个窗口中,我无法返回主窗口
我正在寻找一种在另一个窗口中显示相同结果的方法,因为我尝试使用像本例这样的小部件来完成此操作https://github.com/swharden/Python-GUI-examples/tree/master/2016-07 -30_qt_matplotlib_sine_scroll,在ui内部但有很多问题
我尝试在第二个窗口 pyqt5 中使用这个例子 matplotlib 它工作完美并且它显示另一个窗口但它是空的
这是我的用户界面
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QPushButton" name="pushButton_113">
<property name="geometry">
<rect>
<x>610</x>
<y>90</y>
<width>161</width>
<height>41</height>
</rect>
</property>
<property name="text">
<string>Recherche</string>
</property>
</widget>
<widget class="QDateEdit" name="dateEdit_20">
<property name="geometry">
<rect>
<x>340</x>
<y>90</y>
<width>251</width>
<height>41</height>
</rect>
</property>
<property name="dateTime">
<datetime>
<hour>0</hour>
<minute>0</minute>
<second>0</second>
<year>2020</year>
<month>1</month>
<day>1</day>
</datetime>
</property>
<property name="calendarPopup">
<bool>true</bool>
</property>
</widget>
<widget class="QDateEdit" name="dateEdit_19">
<property name="geometry">
<rect>
<x>40</x>
<y>90</y>
<width>271</width>
<height>41</height>
</rect>
</property>
<property name="dateTime">
<datetime>
<hour>0</hour>
<minute>0</minute>
<second>0</second>
<year>2020</year>
<month>1</month>
<day>1</day>
</datetime>
</property>
一只甜甜圈
相关分类