mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 13:07:17 +08:00
12 lines
292 B
Python
12 lines
292 B
Python
import os
|
|
|
|
from PyQt6 import uic
|
|
|
|
|
|
class QtUtil:
|
|
@staticmethod
|
|
def load_ui(ui_name):
|
|
# 项目根目录
|
|
project_root_path = os.path.abspath(os.path.dirname(__file__))
|
|
path = os.path.join(project_root_path, "..", "pages", ui_name)
|
|
return uic.loadUi(path) |