super(Example, self).__init__()
?pyuic5 name.ui -o name.py
- запускаем из папки с файлом ui в cmdfrom PyQt5 import uic
from PyQt5.QtWidgets import QMainWindow
class MainWindow(QMainWindow):
def __init__(self):
super(MainWindow, self).__init__()
uic.loadUi('mainwindow.ui', self)
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 1.4
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
SplitView {
anchors.fill: parent
orientation: Qt.Vertical
SplitView {
anchors.left: parent.left
anchors.right: parent.right
height: parent.height / 2
orientation: Qt.Horizontal
Rectangle {
id: rect1
width: parent.width / 2
onWidthChanged: {rect3.width = width}
color: "lightblue"
}
Rectangle {
id: rect2
width: parent.width / 2
onWidthChanged: {rect4.width = width}
color: "lightgreen"
}
}
SplitView {
anchors.left: parent.left
anchors.right: parent.right
height: parent.height / 2
orientation: Qt.Horizontal
Rectangle {
id: rect3
width: parent.width / 2
onWidthChanged: {rect1.width = width}
color: "blue"
}
Rectangle {
id: rect4
width: parent.width / 2
onWidthChanged: {rect2.width = width}
color: "green"
}
}
}
}
git config
будет указано в авторе коммита. Если данный email зарегистрирован на GitHub, будет появляться ссылка на ваш GitHub-аккаунт.Пробовал клонировать репозиторий с github, в консоли перейти в папку с ним и там ввести git config --list --local, но там нет информации о имени и email.