{"id":39220,"date":"2024-11-02T03:38:37","date_gmt":"2024-11-02T03:38:37","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=39220"},"modified":"2024-11-26T06:42:07","modified_gmt":"2024-11-26T06:42:07","slug":"pyqt%ea%b0%9c%eb%b0%9c%ea%b0%95%ec%a2%8c-qlistview-%eb%b0%8f-qtableview-%ea%b8%b0%eb%b3%b8-%ec%82%ac%ec%9a%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/39220\/","title":{"rendered":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95"},"content":{"rendered":"<p><body><\/p>\n<p>\n        PyQt\ub294 Python\uc5d0\uc11c Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ubc14\uc778\ub529\uc785\ub2c8\ub2e4. GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \ud234\ud0b7\uc744 \uc81c\uacf5\ud558\uba70, \uadf8 \uc911\uc5d0\uc11c\ub3c4 <strong>QListView<\/strong>\uc640 <strong>QTableView<\/strong>\ub294 \ub370\uc774\ud130 \ubdf0\ub97c \ud45c\uc2dc\ud558\ub294\ub370 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub450 \uc704\uc82f\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>1. PyQt \ud658\uacbd \uc124\uc815<\/h2>\n<p>\n        PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc120 \uba3c\uc800 PyQt5\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798\uc758 \uba85\ub839\uc5b4\ub97c \ud130\ubbf8\ub110\uc5d0 \uc785\ub825\ud558\uc138\uc694:\n    <\/p>\n<pre><code>pip install PyQt5<\/code><\/pre>\n<h2>2. QListView \uac1c\uc694<\/h2>\n<p>\n<strong>QListView<\/strong>\ub294 \ubaa9\ub85d \ud615\ud0dc\ub85c \ub370\uc774\ud130\ub97c \ubcf4\uc5ec\uc8fc\ub294 \ubdf0\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\uac00 \uc2a4\ud06c\ub864\ud560 \uc218 \uc788\ub294 \ub9ac\uc2a4\ud2b8\ub85c \ub370\uc774\ud130\ub97c \ud45c\uc2dc\ud558\uba70, \uc8fc\ub85c \uc544\uc774\ud15c\uc744 \uc120\ud0dd\ud558\uac70\ub098 \uc120\ud0dd\ub41c \uc544\uc774\ud15c\uc5d0 \ub300\ud55c \uc815\ubcf4\ub97c \ud45c\uc2dc\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. QListView\ub294 \ubaa8\ub378-\ubdf0-\ucee8\ud2b8\ub864\ub7ec(MVC) \uc544\ud0a4\ud14d\ucc98\ub97c \ub530\ub985\ub2c8\ub2e4. \uc989, \ub370\uc774\ud130\ub294 \ubaa8\ub378\uc5d0\uc11c \uad00\ub9ac\ub418\uba70, \ubdf0\ub294 \uc774 \ub370\uc774\ud130\ub97c \ud45c\uc2dc\ud558\ub294 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>2.1 QListView \uc0dd\uc131 \uc608\uc81c<\/h3>\n<p>\ub2e4\uc74c\uc740 QListView\ub97c \uc0ac\uc6a9\ud558\ub294 \uae30\ubcf8\uc801\uc778 \uc608\uc81c\uc785\ub2c8\ub2e4.<\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QListView, QStringListModel\nimport sys\n\napp = QApplication(sys.argv)\n\n# QListView \ucd08\uae30\ud654\nlistView = QListView()\n\n# \ubb38\uc790\uc5f4 \ub9ac\uc2a4\ud2b8 \ubaa8\ub378 \uc0dd\uc131\nmodel = QStringListModel()\ndata = [\"\uc544\uc774\ud15c 1\", \"\uc544\uc774\ud15c 2\", \"\uc544\uc774\ud15c 3\", \"\uc544\uc774\ud15c 4\"]\nmodel.setStringList(data)\n\n# \ubaa8\ub378\uc744 QListView\uc5d0 \uc124\uc815\nlistView.setModel(model)\n\n# QListView \ubcf4\uc5ec\uc8fc\uae30\nlistView.show()\n\nsys.exit(app.exec_())<\/code><\/pre>\n<h2>3. QTableView \uac1c\uc694<\/h2>\n<p>\n<strong>QTableView<\/strong>\ub294 \ud14c\uc774\ube14 \ud615\ud0dc\ub85c \ub370\uc774\ud130\ub97c \ud45c\uc2dc\ud558\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \ud589\uacfc \uc5f4\ub85c \uad6c\uc131\ub418\uc5b4 \uc788\uc5b4 \ubcf5\uc7a1\ud55c \ub370\uc774\ud130\ub97c \uc27d\uac8c \uc815\ub82c \ubc0f \ubd84\uc11d\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. QListView\uc640 \ub9c8\ucc2c\uac00\uc9c0\ub85c QTableView\ub3c4 \ubaa8\ub378-\ubdf0-\ucee8\ud2b8\ub864\ub7ec(MVC) \uc544\ud0a4\ud14d\ucc98\ub97c \ub530\ub985\ub2c8\ub2e4. \ub370\uc774\ud130 \uc18c\uc2a4\ub294 \ubaa8\ub378\uc5d0\uc11c \uc81c\uacf5\ub418\uba70, \ubdf0\ub294 \uc774 \ub370\uc774\ud130\ub97c \uc0ac\uc6a9\uc790\uc5d0\uac8c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.\n    <\/p>\n<h3>3.1 QTableView \uc0dd\uc131 \uc608\uc81c<\/h3>\n<p>\ub2e4\uc74c\uc740 QTableView\ub97c \uc0ac\uc6a9\ud558\ub294 \uae30\ubcf8\uc801\uc778 \uc608\uc81c\uc785\ub2c8\ub2e4. \uc5ec\uae30\uc11c\ub294 2\ucc28\uc6d0 \ub370\uc774\ud130 \uad6c\uc870\ub97c \uc0dd\uc131\ud558\uc5ec QTableView\uc5d0 \ud45c\uc2dc\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QTableView\nfrom PyQt5.QtCore import QAbstractTableModel, Qt\nimport sys\n\n# \ud14c\uc774\ube14 \ubaa8\ub378 \ud074\ub798\uc2a4 \uc815\uc758\nclass MyTableModel(QAbstractTableModel):\n    def __init__(self, data):\n        super(MyTableModel, self).__init__()\n        self._data = data\n\n    def rowCount(self, parent=None):\n        return len(self._data)\n\n    def columnCount(self, parent=None):\n        return len(self._data[0]) if self._data else 0\n\n    def data(self, index, role=Qt.DisplayRole):\n        if role == Qt.DisplayRole:\n            return self._data[index.row()][index.column()]\n\n# \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ucd08\uae30\ud654\napp = QApplication(sys.argv)\n\n# QTableView \ucd08\uae30\ud654\ntableView = QTableView()\n\n# \ub370\uc774\ud130 \uc0dd\uc131\ndata = [\n    [\"\uc774\ub984\", \"\ub098\uc774\", \"\uc9c1\uc5c5\"],\n    [\"Alice\", 30, \"\uac1c\ubc1c\uc790\"],\n    [\"Bob\", 25, \"\ub514\uc790\uc774\ub108\"],\n    [\"Charlie\", 35, \"\ub9e4\ub2c8\uc800\"]\n]\n\n# \ud14c\uc774\ube14 \ubaa8\ub378 \uc0dd\uc131\nmodel = MyTableModel(data)\n\n# \ubaa8\ub378\uc744 QTableView\uc5d0 \uc124\uc815\ntableView.setModel(model)\n\n# QTableView \ubcf4\uc5ec\uc8fc\uae30\ntableView.show()\n\nsys.exit(app.exec_())<\/code><\/pre>\n<h2>4. QListView\uc640 QTableView\uc758 \ube44\uad50<\/h2>\n<p>\n        QListView\uc640 QTableView\ub294 \ubaa8\ub450 \ub370\uc774\ud130\ub97c \ud45c\uc2dc\ud558\ub294 \uac15\ub825\ud55c \uc704\uc82f\uc774\uc9c0\ub9cc, \uc0ac\uc6a9 \uc0ac\ub840\uc5d0 \ub530\ub77c \ub2e4\ub985\ub2c8\ub2e4. QListView\ub294 \ub2e8\uc77c \ucc28\uc6d0 \ub370\uc774\ud130\ub97c \uc2dc\uac01\ud654\ud558\uace0, QTableView\ub294 \ub2e4\ucc28\uc6d0 \ub370\uc774\ud130\ub97c \uc81c\uacf5\ud558\ub294 \ub370 \uc801\ud569\ud569\ub2c8\ub2e4. \ub530\ub77c\uc11c \ub370\uc774\ud130\uc758 \ud2b9\uc131\uacfc \ub300\uc0c1 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ub9de\ucdb0 \uc801\uc808\ud55c \uc704\uc82f\uc744 \uc120\ud0dd\ud574\uc57c \ud569\ub2c8\ub2e4.\n    <\/p>\n<h2>5. \ub370\uc774\ud130 \ubaa8\ub378\ub9c1<\/h2>\n<p>\n        QListView \ubc0f QTableView\ub97c \ud6a8\uacfc\uc801\uc73c\ub85c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc11c\ub294 \ub370\uc774\ud130\ub97c \uc5b4\ub5bb\uac8c \ubaa8\ub378\ub9c1\ud560\uc9c0\ub97c \uace0\ub824\ud574\uc57c \ud569\ub2c8\ub2e4. PyQt\ub294 \ub2e4\uc591\ud55c \ubaa8\ub378\uc744 \uc81c\uacf5\ud558\uc5ec \ub370\uc774\ud130\ubca0\uc774\uc2a4, XML, JSON \ub4f1\uc758 \ub370\uc774\ud130 \uc18c\uc2a4\ub97c \uc27d\uac8c \uc5f0\ub3d9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub370\uc774\ud130 \ubaa8\ub378\ub9c1\uc5d0\uc11c \uac00\uc7a5 \uc77c\ubc18\uc801\uc73c\ub85c \uc0ac\uc6a9\ub418\ub294 \ubaa8\ub378\ub85c\ub294 <strong>QStringListModel<\/strong> (QListView\uc6a9), <strong>QAbstractTableModel<\/strong> (QTableView\uc6a9) \ub4f1\uc774 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>6. \uc2dc\uadf8\ub110\uacfc \uc2ac\ub86f<\/h2>\n<p>\n        PyQt\uc758 \uac15\ub825\ud55c \uae30\ub2a5 \uc911 \ud558\ub098\ub294 \uc2dc\uadf8\ub110\uacfc \uc2ac\ub86f\uc785\ub2c8\ub2e4. UI\uc758 \ubc18\uc751\uc131\uc744 \ub192\uc774\uace0 \uc0ac\uc6a9\uc790 \uc0c1\ud638\uc791\uc6a9\uc744 \ucc98\ub9ac\ud558\uae30 \uc704\ud574 \uc2dc\uadf8\ub110\uacfc \uc2ac\ub86f\uc744 \ud65c\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, QListView\uc5d0\uc11c \uc544\uc774\ud15c\uc744 \uc120\ud0dd\ud558\uba74 \ud574\ub2f9 \uc544\uc774\ud15c\uc758 \uc138\ubd80 \uc815\ubcf4\ub97c \ud45c\uc2dc\ud558\ub294 \uc2ac\ub86f\uc744 \uc5f0\uacb0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>6.1 QListView\uc758 \uc2dc\uadf8\ub110 \uc5f0\uacb0 \uc608\uc81c<\/h3>\n<p>\uc544\ub798 \uc608\uc81c\ub294 QListView\uc5d0\uc11c \uc544\uc774\ud15c \uc120\ud0dd \uc2dc \ud574\ub2f9 \uc544\uc774\ud15c\uc744 \ucd9c\ub825\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QListView, QMessageBox, QStringListModel\nfrom PyQt5.QtCore import QModelIndex\nimport sys\n\ndef on_item_selected(index: QModelIndex):\n    if index.isValid():\n        item = model.data(index)\n        QMessageBox.information(None, \"\uc120\ud0dd\ub41c \uc544\uc774\ud15c\", f\"\uc120\ud0dd\ub41c \uc544\uc774\ud15c\uc740: {item}\")\n\napp = QApplication(sys.argv)\n\n# QListView \ucd08\uae30\ud654\nlistView = QListView()\n\n# \ubb38\uc790\uc5f4 \ub9ac\uc2a4\ud2b8 \ubaa8\ub378 \uc0dd\uc131\nmodel = QStringListModel()\ndata = [\"\uc544\uc774\ud15c 1\", \"\uc544\uc774\ud15c 2\", \"\uc544\uc774\ud15c 3\", \"\uc544\uc774\ud15c 4\"]\nmodel.setStringList(data)\n\n# \ubaa8\ub378\uc744 QListView\uc5d0 \uc124\uc815\nlistView.setModel(model)\n\n# \uc544\uc774\ud15c \uc120\ud0dd \uc2dc \uc2dc\uadf8\ub110 \uc5f0\uacb0\nlistView.clicked.connect(on_item_selected)\n\n# QListView \ubcf4\uc5ec\uc8fc\uae30\nlistView.show()\n\nsys.exit(app.exec_())<\/code><\/pre>\n<h2>7. \ub370\uc774\ud130 \uc5c5\ub370\uc774\ud2b8<\/h2>\n<p>\n        QListView\uc640 QTableView\ub294 \ub3d9\uc801\uc73c\ub85c \ub370\uc774\ud130\ub97c \uc5c5\ub370\uc774\ud2b8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubaa8\ub378\uc758 \ub370\uc774\ud130\ub97c \ubcc0\uacbd\ud558\uba74 \ubdf0\uac00 \uc790\ub3d9\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8\ub429\ub2c8\ub2e4. \uc774\ub294 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\uc758 \uc2e4\uc2dc\uac04 \ud53c\ub4dc\ubc31\uc744 \uc81c\uacf5\ud558\uace0 UI\uac00 \ud56d\uc0c1 \ucd5c\uc2e0 \uc0c1\ud0dc\ub97c \uc720\uc9c0\ud558\ub3c4\ub85d \ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>7.1 \ub370\uc774\ud130 \uc5c5\ub370\uc774\ud2b8 \uc608\uc81c<\/h3>\n<p>\uc544\ub798 \uc608\uc81c\uc5d0\uc11c\ub294 QTableView\uc758 \ub370\uc774\ud130\ub97c \uc2e4\uc2dc\uac04\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8\ud558\ub294 \ubc29\ubc95\uc744 \uc124\uba85\ud569\ub2c8\ub2e4.<\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QTableView, QPushButton, QVBoxLayout, QWidget\nfrom PyQt5.QtCore import Qt, QAbstractTableModel\nimport sys\n\nclass DataModel(QAbstractTableModel):\n    def __init__(self, data):\n        super(DataModel, self).__init__()\n        self._data = data\n\n    def rowCount(self, parent=None):\n        return len(self._data)\n\n    def columnCount(self, parent=None):\n        return len(self._data[0]) if self._data else 0\n\n    def data(self, index, role=Qt.DisplayRole):\n        if role == Qt.DisplayRole:\n            return self._data[index.row()][index.column()]\n\n    def update_data(self, new_data):\n        self._data = new_data\n        self.layoutChanged.emit()\n\n# \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ucd08\uae30\ud654\napp = QApplication(sys.argv)\n\n# QTableView \ucd08\uae30\ud654\ntableView = QTableView()\n\n# \ub370\uc774\ud130 \uc0dd\uc131\ndata = [\n    [\"\uc774\ub984\", \"\ub098\uc774\", \"\uc9c1\uc5c5\"],\n    [\"Alice\", 30, \"\uac1c\ubc1c\uc790\"],\n    [\"Bob\", 25, \"\ub514\uc790\uc774\ub108\"],\n    [\"Charlie\", 35, \"\ub9e4\ub2c8\uc800\"]\n]\n\n# \ud14c\uc774\ube14 \ubaa8\ub378 \uc0dd\uc131\nmodel = DataModel(data)\n\n# \ubaa8\ub378\uc744 QTableView\uc5d0 \uc124\uc815\ntableView.setModel(model)\n\n# \ub370\uc774\ud130 \uc5c5\ub370\uc774\ud2b8 \ubc84\ud2bc\nbutton = QPushButton(\"\ub370\uc774\ud130 \uc5c5\ub370\uc774\ud2b8\")\ndef update_table():\n    new_data = [\n        [\"\uc774\ub984\", \"\ub098\uc774\", \"\uc9c1\uc5c5\"],\n        [\"Dave\", 28, \"\ub9c8\ucf00\ud130\"],\n        [\"Eve\", 22, \"\ud2b8\ub808\uc774\ub108\"],\n        [\"Frank\", 40, \"\ub9ac\ub354\"]\n    ]\n    model.update_data(new_data)\n\nbutton.clicked.connect(update_table)\n\n# \ub808\uc774\uc544\uc6c3 \uc124\uc815\nlayout = QVBoxLayout()\nlayout.addWidget(tableView)\nlayout.addWidget(button)\n\nwindow = QWidget()\nwindow.setLayout(layout)\nwindow.show()\n\nsys.exit(app.exec_())<\/code><\/pre>\n<h2>8. \ucd5c\uc801\ud654 \ubc0f \uc0ac\uc6a9\uc790 \uacbd\ud5d8<\/h2>\n<p>\n        QListView\uc640 QTableView\ub97c \uc0ac\uc6a9\ud560 \ub54c \uc131\ub2a5 \ucd5c\uc801\ud654\uc640 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uace0\ub824\ud574\uc57c \ud569\ub2c8\ub2e4. \ub300\ub7c9\uc758 \ub370\uc774\ud130\ub97c \ub2e4\ub8f0 \ub54c\ub294 \ud398\uc774\uc9d5 \uae30\ubc95\uc774\ub098 \uc9c0\uc5f0 \ub85c\ub529\uc744 \ud1b5\ud574 \uc131\ub2a5\uc744 \ud5a5\uc0c1\uc2dc\ud0ac \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub610\ud55c, \uc0ac\uc6a9\uc790 \uce5c\ud654\uc801\uc778 UI \ub514\uc790\uc778\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \ud544\ud130\ub9c1, \uc815\ub82c, \uac80\uc0c9 \uae30\ub2a5 \ub4f1\uc744 \ucd94\uac00\ud558\uc5ec \uc0ac\uc6a9\uc790\uac00 \uc27d\uac8c \ub370\uc774\ud130\ub97c \uc870\uc791\ud560 \uc218 \uc788\ub3c4\ub85d \ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h2>9. \ub9c8\ubb34\ub9ac<\/h2>\n<p>\n        PyQt\uc5d0\uc11c QListView\uc640 QTableView\ub294 \ub9e4\uc6b0 \uc911\uc694\ud55c \uae30\ubcf8 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uc704\uc82f\ub4e4\uc744 \ud65c\uc6a9\ud558\uc5ec \ub2e4\uc591\ud55c \ud615\ud0dc\uc758 \ub370\uc774\ud130\ub97c \uc0ac\uc6a9\uc790\uc5d0\uac8c \ubcf4\uc5ec\uc904 \uc218 \uc788\uc73c\uba70, \ub370\uc774\ud130 \uc0c1\ud638\uc791\uc6a9\uc758 \uae30\ud68c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\ub97c \ud1b5\ud574 \uae30\ubcf8\uc801\uc778 \uc0ac\uc6a9\ubc95\uc744 \uc775\ud614\uc73c\ub2c8, \uc2e4\uc804\uc5d0\uc11c \ub2e4\uc591\ud55c \ud504\ub85c\uc81d\ud2b8\uc5d0 \uc751\uc6a9\ud558\uc5ec \ub354\uc6b1 \ud6a8\uacfc\uc801\uc778 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uad6c\ucd95\ud558\uae38 \ubc14\ub78d\ub2c8\ub2e4.\n    <\/p>\n<p>\uc774 \uae00\uc774 \uc5ec\ub7ec\ubd84\uc758 PyQt \uac1c\ubc1c\uc5d0 \ub9ce\uc740 \ub3c4\uc6c0\uc774 \ub418\uc5c8\uae38 \ubc14\ub78d\ub2c8\ub2e4. \uc9c8\ubb38\uc774 \uc788\uc73c\uc2dc\uba74 \ub313\uae00\ub85c \ub0a8\uaca8\uc8fc\uc138\uc694!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PyQt\ub294 Python\uc5d0\uc11c Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ubc14\uc778\ub529\uc785\ub2c8\ub2e4. GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \ud234\ud0b7\uc744 \uc81c\uacf5\ud558\uba70, \uadf8 \uc911\uc5d0\uc11c\ub3c4 QListView\uc640 QTableView\ub294 \ub370\uc774\ud130 \ubdf0\ub97c \ud45c\uc2dc\ud558\ub294\ub370 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub450 \uc704\uc82f\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \ud658\uacbd \uc124\uc815 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc120 \uba3c\uc800 PyQt5\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc124\uce58\ud560 \uc218 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/39220\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[193],"tags":[],"class_list":["post-39220","post","type-post","status-publish","format-standard","hentry","category-pyqt"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/39220\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"PyQt\ub294 Python\uc5d0\uc11c Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ubc14\uc778\ub529\uc785\ub2c8\ub2e4. GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \ud234\ud0b7\uc744 \uc81c\uacf5\ud558\uba70, \uadf8 \uc911\uc5d0\uc11c\ub3c4 QListView\uc640 QTableView\ub294 \ub370\uc774\ud130 \ubdf0\ub97c \ud45c\uc2dc\ud558\ub294\ub370 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub450 \uc704\uc82f\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \ud658\uacbd \uc124\uc815 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc120 \uba3c\uc800 PyQt5\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc124\uce58\ud560 \uc218 &hellip; \ub354 \ubcf4\uae30 &quot;PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/39220\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T03:38:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:42:07+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95\",\"datePublished\":\"2024-11-02T03:38:37+00:00\",\"dateModified\":\"2024-11-26T06:42:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/\"},\"wordCount\":62,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyQt\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/\",\"url\":\"https:\/\/atmokpo.com\/w\/39220\/\",\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T03:38:37+00:00\",\"dateModified\":\"2024-11-26T06:42:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/39220\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/39220\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/39220\/","og_locale":"ko_KR","og_type":"article","og_title":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"PyQt\ub294 Python\uc5d0\uc11c Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uac8c \ud574\uc8fc\ub294 \ubc14\uc778\ub529\uc785\ub2c8\ub2e4. GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc27d\uac8c \uac1c\ubc1c\ud560 \uc218 \uc788\ub3c4\ub85d \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \ud234\ud0b7\uc744 \uc81c\uacf5\ud558\uba70, \uadf8 \uc911\uc5d0\uc11c\ub3c4 QListView\uc640 QTableView\ub294 \ub370\uc774\ud130 \ubdf0\ub97c \ud45c\uc2dc\ud558\ub294\ub370 \ub9ce\uc774 \uc0ac\uc6a9\ub418\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \ub450 \uc704\uc82f\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. PyQt \ud658\uacbd \uc124\uc815 PyQt\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574\uc120 \uba3c\uc800 PyQt5\ub97c \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \uc704\ud574 pip\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc124\uce58\ud560 \uc218 &hellip; \ub354 \ubcf4\uae30 \"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95\"","og_url":"https:\/\/atmokpo.com\/w\/39220\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T03:38:37+00:00","article_modified_time":"2024-11-26T06:42:07+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/39220\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/39220\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95","datePublished":"2024-11-02T03:38:37+00:00","dateModified":"2024-11-26T06:42:07+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/39220\/"},"wordCount":62,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyQt"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/39220\/","url":"https:\/\/atmokpo.com\/w\/39220\/","name":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T03:38:37+00:00","dateModified":"2024-11-26T06:42:07+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/39220\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/39220\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/39220\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"PyQt\uac1c\ubc1c\uac15\uc88c, QListView \ubc0f QTableView \uae30\ubcf8 \uc0ac\uc6a9\ubc95"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":39284,"url":"https:\/\/atmokpo.com\/w\/39284\/","url_meta":{"origin":39220,"position":0},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, MacOS Spotlight \uac19\uc740 \uae30\ub2a5 \uad6c\ud604, \ud14d\uc2a4\ud2b8\uc640 \ub9c1\ud06c \ub4f1\uc744 \ud3ec\ud568\ud55c \uc815\ubcf4 \ub808\uc774\uc5b4 \ucd94\uac00","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 PyQt\ub294 Python \ud504\ub85c\uadf8\ub798\uba38\ub4e4\uc774 Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud65c\uc6a9\ud558\uc5ec \uac15\ub825\ud558\uace0 \uc9c1\uad00\uc801\uc778 GUI(Graphical User Interface) \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 MacOS\uc758 Spotlight\uc640 \uc720\uc0ac\ud55c \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcfc \uac83\uc785\ub2c8\ub2e4. Spotlight\ub294 \uc0ac\uc6a9\uc790\uac00 \ud544\uc694\ub85c \ud558\ub294 \uc815\ubcf4\ub97c \ube60\ub974\uac8c \ucc3e\uc744 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uc774\uc640 \uc720\uc0ac\ud55c \uac80\uc0c9 \uae30\ub2a5\uc744\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":39132,"url":"https:\/\/atmokpo.com\/w\/39132\/","url_meta":{"origin":39220,"position":1},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, QSequentialAnimationGroup\uacfc QParallelAnimationGroup","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \uc11c\ub860 PyQt\ub294 Python\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \uac00\ub2a5\ud558\uac8c \ud558\ub294 \uac00\uc7a5 \uc778\uae30 \uc788\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. PyQt\ub97c \ud65c\uc6a9\ud558\uba74 \ubcf5\uc7a1\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uc81c\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc560\ub2c8\uba54\uc774\uc158\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \ubcf4\ub2e4 \uc9c1\uad00\uc801\uc774\uace0 \ub9e4\ub825\uc801\uc73c\ub85c \ub9cc\ub4dc\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. QSequentialAnimationGroup\uacfc QParallelAnimationGroup\uc740 PyQt\uc5d0\uc11c \uc560\ub2c8\uba54\uc774\uc158\uc744 \ud6a8\uacfc\uc801\uc73c\ub85c \uad00\ub9ac\ud558\uae30 \uc704\ud55c \ub450 \uac00\uc9c0 \uc911\uc694\ud55c\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30973,"url":"https:\/\/atmokpo.com\/w\/30973\/","url_meta":{"origin":39220,"position":2},"title":"UWP \uac1c\ubc1c, ItemsControl \uc694\uc18c\ub97c \ud65c\uc6a9\ud55c XAML \uc694\uc18c\uc758 \uc0dd\uc131","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: [\ubc1c\ud589 \ub0a0\uc9dc] \ubaa9\ucc28 1. \uc11c\ub860 2. ItemsControl \uc774\ud574\ud558\uae30 3. ItemsControl \uc0dd\uc131\ud558\uae30 4. \ub370\uc774\ud130 \ubc14\uc778\ub529 \uc801\uc6a9\ud558\uae30 5. \ud56d\ubaa9 \ucee4\uc2a4\ud130\ub9c8\uc774\uc9d5\ud558\uae30 6. \uacb0\ub860 7. \ucc38\uace0\ubb38\ud5cc 1. \uc11c\ub860 UWP(Universal Windows Platform) \uac1c\ubc1c\uc740 \ub2e4\uc591\ud55c \ub514\ubc14\uc774\uc2a4\uc5d0\uc11c \uc791\ub3d9\ud558\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc791\uc131\ud560 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. XAML(Extensible Application Markup Language)\uc740 UWP \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 UI\ub97c \uc815\uc758\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294\u2026","rel":"","context":"&quot;UWP \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"UWP \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/uwp-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":31281,"url":"https:\/\/atmokpo.com\/w\/31281\/","url_meta":{"origin":39220,"position":3},"title":"WPF \uac15\uc88c, \ud15c\ud50c\ub9bf \ubc14\uc778\ub529\uc744 \uc0ac\uc6a9\ud558\uc5ec UI\ub97c \uc720\uc5f0\ud558\uac8c \uad6c\uc131\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \uc11c\ub860 Windows Presentation Foundation (WPF)\uc740 .NET \ud504\ub808\uc784\uc6cc\ud06c\uc758 \uc77c\ubd80\ub85c, \uac15\ub825\ud558\uace0 \uc720\uc5f0\ud55c \ub370\uc2a4\ud06c\ud1b1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud50c\ub7ab\ud3fc\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ud2b9\ud788, WPF\uc5d0\uc11c\ub294 \ub514\uc790\uc778\uacfc \ube44\uc988\ub2c8\uc2a4 \ub85c\uc9c1\uc744 \ubd84\ub9ac\ud560 \uc218 \uc788\ub294 \ub370\uc774\ud130 \ubc14\uc778\ub529, \uc2a4\ud0c0\uc77c, \ud15c\ud50c\ub9bf, \ub808\uc774\uc544\uc6c3 \uad00\ub9ac \ub4f1\uc758 \uae30\ub2a5\uc774 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uae30\ub2a5 \uc911 \ud15c\ud50c\ub9bf \ubc14\uc778\ub529\uc740 UI \uad6c\uc131 \uc694\uc18c\ub97c \uc720\uc5f0\ud558\uac8c \uc7ac\uc0ac\uc6a9\ud560\u2026","rel":"","context":"&quot;WPF \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"WPF \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/wpf-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":31075,"url":"https:\/\/atmokpo.com\/w\/31075\/","url_meta":{"origin":39220,"position":4},"title":"UWP \uac1c\ubc1c, XAML Controls Gallery","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \u00a0 | \u00a0 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c 1. UWP\ub780? UWP(Universal Windows Platform)\ub294 Windows 10, Windows 10 Mobile \ubc0f Xbox One\uacfc \uac19\uc740 \ub2e4\uc591\ud55c Windows \uc7a5\uce58\uc5d0\uc11c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\ub294 \ud50c\ub7ab\ud3fc\uc785\ub2c8\ub2e4. UWP\ub294 \ub2e4\uc591\ud55c \ub514\ubc14\uc774\uc2a4\uc5d0\uc11c \uc77c\uad00\ub41c \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\uae30 \uc704\ud574 \uc124\uacc4\ub418\uc5c8\uc73c\uba70, XAML, C#, JavaScript \ub4f1\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4. UWP\u2026","rel":"","context":"&quot;UWP \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"UWP \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/uwp-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43229,"url":"https:\/\/atmokpo.com\/w\/43229\/","url_meta":{"origin":39220,"position":5},"title":"[Prism]  003. Prism \uc18c\uac1c \ubc0f \uae30\ubcf8 \uac1c\ub150, Prism\uacfc WPF\uc758 \uad00\uacc4","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"WPF \uac1c\ubc1c\uc5d0\uc11c Prism \ud504\ub808\uc784\uc6cc\ud06c\uc758 \uc911\uc694\uc131\uacfc \uae30\ubcf8 \uac1c\ub150\uc5d0 \ub300\ud574 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Prism\uc774\ub780? Prism\uc740 Microsoft\uc5d0\uc11c \uac1c\ubc1c\ud55c \ubaa8\ub4c8\ud654 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc704\ud55c \ud504\ub808\uc784\uc6cc\ud06c\ub85c, WPF(Windows Presentation Foundation) \ubc0f \uae30\ud0c0 .NET \ud50c\ub7ab\ud3fc\uc5d0\uc11c\uc758 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \ub3d5\uae30 \uc704\ud574 \ub9cc\ub4e4\uc5b4\uc84c\uc2b5\ub2c8\ub2e4. Prism\uc740 MVVM(\ubaa8\ub378-\ubdf0-\ubdf0\ubaa8\ub378) \uc544\ud0a4\ud14d\ucc98 \ud328\ud134\uc744 \uc9c0\uc6d0\ud558\uba70, \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uad6c\uc131 \uc694\uc18c\ub97c \ubd84\ub9ac\ud558\uace0 \uc7ac\uc0ac\uc6a9\uc131\uc744 \ub192\uc774\ub294 \ub370 \uc720\ub9ac\ud569\ub2c8\ub2e4. Prism\uc758 \uc8fc\uc694 \ubaa9\ud45c\ub294 \uc720\uc9c0 \ubcf4\uc218\uc131\uc774 \ub192\uace0, \ub2e4\uc591\ud55c\u2026","rel":"","context":"&quot;WPF \uac1c\ubc1c&quot;\uc5d0\uc11c","block_context":{"text":"WPF \uac1c\ubc1c","link":"https:\/\/atmokpo.com\/w\/category\/wpf-%ea%b0%9c%eb%b0%9c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39220","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=39220"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39220\/revisions"}],"predecessor-version":[{"id":39221,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39220\/revisions\/39221"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=39220"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=39220"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=39220"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}