Files
Plugin_SN_Widmung/ui/tabs/tab_b.py
Michael Otto a5ad498e8a Aufgeräumt.
2025-11-17 11:29:50 +01:00

12 lines
379 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from qgis.PyQt.QtWidgets import QWidget, QVBoxLayout, QLabel, QTextEdit
class TabB(QWidget):
tab_title = "Tab B"
def __init__(self, parent=None):
super().__init__(parent)
layout = QVBoxLayout()
layout.addWidget(QLabel("Plugin2 Tab B"))
layout.addWidget(QTextEdit("Mehrzeiliger Text für Plugin2"))
self.setLayout(layout)