{"id":39278,"date":"2024-11-02T03:39:03","date_gmt":"2024-11-02T03:39:03","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=39278"},"modified":"2024-11-26T06:41:56","modified_gmt":"2024-11-26T06:41:56","slug":"pyqt%ea%b0%9c%eb%b0%9c%ea%b0%95%ec%a2%8c-qlabel-qpushbutton-qlineedit-%eb%93%b1-%ea%b8%b0%eb%b3%b8-%ec%9c%84%ec%a0%af-%ec%82%ac%ec%9a%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/39278\/","title":{"rendered":"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95"},"content":{"rendered":"<p><body><\/p>\n<p>\n    PyQt\ub294 Python\uc5d0\uc11c Qt \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud574 \uc0ac\uc6a9\ub418\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \uac15\ub825\ud558\uba74\uc11c\ub3c4 \uc720\uc5f0\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774 \ube14\ub85c\uadf8 \uae00\uc5d0\uc11c\ub294 PyQt\uc758 \uae30\ubcf8 \uc704\uc82f\uc778 <code>QLabel<\/code>, <code>QPushButton<\/code>, <code>QLineEdit<\/code>\uc758 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uace0, \uac01\uac01\uc758 \uc704\uc82f\uc744 \ud65c\uc6a9\ud55c \uc608\uc81c \ucf54\ub4dc\ub3c4 \uc81c\uacf5\ud560 \uac83\uc785\ub2c8\ub2e4.\n<\/p>\n<h2>1. QLabel<\/h2>\n<p>\n<code>QLabel<\/code>\uc740 \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0 \ub4f1\uc744 \ud654\uba74\uc5d0 \ud45c\uc2dc\ud558\uae30 \uc704\ud55c \uc704\uc82f\uc785\ub2c8\ub2e4. \uc8fc\ub85c \ub2e4\ub978 \uc704\uc82f\ub4e4\uacfc \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \uc815\ubcf4 \uc81c\uacf5\uc774\ub098 \uc0ac\uc6a9\uc790 \uc548\ub0b4 \uc5ed\ud560\uc744 \ud569\ub2c8\ub2e4.\n<\/p>\n<h3>1.1 QLabel\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<pre><code>from PyQt5.QtWidgets import QApplication, QLabel, QWidget\n\napp = QApplication([])\nwindow = QWidget()\nwindow.setWindowTitle('QLabel \uc608\uc81c')\nlabel = QLabel('\uc548\ub155\ud558\uc138\uc694, PyQt!', window)\nlabel.move(50, 50)\nwindow.setGeometry(100, 100, 300, 200)\nwindow.show()\napp.exec_()<\/code><\/pre>\n<h3>1.2 QLabel\uc758 \uc2a4\ud0c0\uc77c \ubcc0\uacbd\ud558\uae30<\/h3>\n<p>\n    QLabel\uc758 \uc2a4\ud0c0\uc77c\uc744 \ubcc0\uacbd\ud560 \uc218 \uc788\ub294 \ub2e4\uc591\ud55c \uc18d\uc131\uc774 \uc788\uc73c\uba70, \uc774 \uc18d\uc131\uc744 \ud1b5\ud574 \uae00\uaf34, \uc0c9\uc0c1, \uc815\ub82c \ub4f1\uc744 \uc870\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub2e4\uc74c \uc608\uc81c\uc5d0\uc11c\ub294 QLabel\uc758 \uae00\uaf34 \ud06c\uae30\uc640 \uc0c9\uc0c1\uc744 \uc218\uc815\ud569\ub2c8\ub2e4.\n<\/p>\n<pre><code>label.setStyleSheet(\"font-size: 20px; color: blue;\")<\/code><\/pre>\n<p>\n    \uc774 \ucf54\ub4dc\ub97c \ud1b5\ud574 QLabel\uc758 \uae00\uaf34 \ud06c\uae30\ub97c 20\ud53d\uc140\ub85c \ubcc0\uacbd\ud558\uace0, \uc0c9\uc0c1\uc744 \ud30c\ub780\uc0c9\uc73c\ub85c \uc9c0\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n<\/p>\n<h2>2. QPushButton<\/h2>\n<p>\n<code>QPushButton<\/code>\uc740 \ubc84\ud2bc\uc744 \ub9cc\ub4e4\uae30 \uc704\ud55c \uc704\uc82f\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\uac00 \ud074\ub9ad\ud558\uba74 \ud2b9\uc815 \uc791\uc5c5\uc774 \uc218\ud589\ub418\ub3c4\ub85d \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc77c\ubc18\uc801\uc73c\ub85c form \ub0b4\uc5d0\uc11c \ub370\uc774\ud130\ub97c \uc81c\ucd9c\ud558\uac70\ub098 \ub2e4\ub978 \uc791\uc5c5\uc744 \uc218\ud589\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.\n<\/p>\n<h3>2.1 QPushButton\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<pre><code>from PyQt5.QtWidgets import QApplication, QPushButton, QWidget\n\napp = QApplication([])\nwindow = QWidget()\nwindow.setWindowTitle('QPushButton \uc608\uc81c')\nbutton = QPushButton('\ud074\ub9ad\ud558\uc138\uc694!', window)\nbutton.move(50, 50)\nwindow.setGeometry(100, 100, 300, 200)\nwindow.show()\napp.exec_()<\/code><\/pre>\n<h3>2.2 \ubc84\ud2bc \ud074\ub9ad \uc774\ubca4\ud2b8 \ucc98\ub9ac\ud558\uae30<\/h3>\n<p>\n    \ubc84\ud2bc\uc744 \ud074\ub9ad\ud588\uc744 \ub54c \ubc1c\uc0dd\ud558\ub294 \uc774\ubca4\ud2b8\ub97c \ucc98\ub9ac\ud558\uae30 \uc704\ud55c \ubc29\ubc95\uc73c\ub85c <code>clicked<\/code> \uc2e0\ud638\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uba74 \ud2b9\uc815 \ud568\uc218\ub97c \ud638\ucd9c\ud558\ub3c4\ub85d \uc124\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n<\/p>\n<pre><code>def on_button_click():\n    print('\ubc84\ud2bc\uc774 \ud074\ub9ad\ub418\uc5c8\uc2b5\ub2c8\ub2e4!')\n\nbutton.clicked.connect(on_button_click)<\/code><\/pre>\n<h2>3. QLineEdit<\/h2>\n<p>\n<code>QLineEdit<\/code>\ub294 \uc0ac\uc6a9\uc790\ub85c\ubd80\ud130 \ud14d\uc2a4\ud2b8 \uc785\ub825\uc744 \ubc1b\uc744 \uc218 \uc788\ub294 \uc704\uc82f\uc785\ub2c8\ub2e4. \uc8fc\ub85c \uc0ac\uc6a9\uc790 \uc778\uc99d, \uac80\uc0c9, \ub370\uc774\ud130 \uc785\ub825\uacfc \uac19\uc740 \uae30\ub2a5\uc744 \uad6c\ud604\ud560 \ub54c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.\n<\/p>\n<h3>3.1 QLineEdit\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<pre><code>from PyQt5.QtWidgets import QApplication, QLineEdit, QWidget\n\napp = QApplication([])\nwindow = QWidget()\nwindow.setWindowTitle('QLineEdit \uc608\uc81c')\ninput_field = QLineEdit(window)\ninput_field.move(50, 50)\ninput_field.setPlaceholderText('\uc5ec\uae30\uc5d0 \uc785\ub825\ud558\uc138\uc694...')\nwindow.setGeometry(100, 100, 300, 200)\nwindow.show()\napp.exec_()<\/code><\/pre>\n<h3>3.2 QLineEdit\uc5d0\uc11c \uc785\ub825\uac12 \uac00\uc838\uc624\uae30<\/h3>\n<p>\n    \uc0ac\uc6a9\uc790\uac00 \uc785\ub825\ud55c \uac12\uc744 \uac00\uc838\uc624\uae30 \uc704\ud574\uc11c\ub294 <code>text()<\/code> \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubc84\ud2bc \ud074\ub9ad \uc2dc \uc785\ub825\ub41c \ud14d\uc2a4\ud2b8\ub97c \ucd9c\ub825\ud558\ub294 \uc608\uc81c\ub97c \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.\n<\/p>\n<pre><code>button = QPushButton('\ud655\uc778', window)\nbutton.move(50, 100)\n\ndef show_input():\n    print('\uc0ac\uc6a9\uc790 \uc785\ub825: ', input_field.text())\n\nbutton.clicked.connect(show_input)<\/code><\/pre>\n<h2>4. \uae30\ubcf8 \uc704\uc82f\uc744 \ud65c\uc6a9\ud55c \uc885\ud569 \uc608\uc81c<\/h2>\n<p>\n    \uc55e\uc11c \uc18c\uac1c\ud55c <code>QLabel<\/code>, <code>QPushButton<\/code>, <code>QLineEdit<\/code> \uc704\uc82f\uc744 \ubaa8\ub450 \ud65c\uc6a9\ud558\uc5ec \uac04\ub2e8\ud55c GUI \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ud504\ub85c\uadf8\ub7a8\uc740 \uc0ac\uc6a9\uc790\ub85c\ubd80\ud130 \uc774\ub984\uc744 \uc785\ub825\ubc1b\uc544, \ud574\ub2f9 \uc774\ub984\uc73c\ub85c \uc778\uc0ac\ud558\ub294 \uae30\ub2a5\uc744 \uac16\uace0 \uc788\uc2b5\ub2c8\ub2e4.\n<\/p>\n<pre><code>from PyQt5.QtWidgets import QApplication, QLabel, QLineEdit, QPushButton, QWidget\n\ndef greet_user():\n    name = name_input.text()\n    greeting_label.setText(f'\uc548\ub155\ud558\uc138\uc694, {name}!')\n\napp = QApplication([])\nwindow = QWidget()\nwindow.setWindowTitle('\uc778\uc0ac\ud558\uae30 \uc571')\n\nname_input = QLineEdit(window)\nname_input.setPlaceholderText('\uc774\ub984\uc744 \uc785\ub825\ud558\uc138\uc694...')\nname_input.move(50, 50)\n\ngreet_button = QPushButton('\uc778\uc0ac\ud558\uae30', window)\ngreet_button.move(50, 100)\ngreet_button.clicked.connect(greet_user)\n\ngreeting_label = QLabel('', window)\ngreeting_label.move(50, 150)\n\nwindow.setGeometry(100, 100, 300, 250)\nwindow.show()\napp.exec_()<\/code><\/pre>\n<h2>\uacb0\ub860<\/h2>\n<p>\n    \uc774\ubc88 \ud3ec\uc2a4\ud2b8\uc5d0\uc11c\ub294 PyQt\uc758 \uae30\ubcf8 \uc704\uc82f\uc778 <code>QLabel<\/code>, <code>QPushButton<\/code>, <code>QLineEdit<\/code>\uc758 \uc0ac\uc6a9\ubc95\uacfc \uc774\ub4e4\uc744 \ud65c\uc6a9\ud55c \uac04\ub2e8\ud55c \uc608\uc81c\ub97c \uc0b4\ud3b4\ubcf4\uc558\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uae30\ubcf8 \uc704\uc82f\uc740 PyQt\ub97c \ud1b5\ud574 GUI \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc124\uacc4\ud558\uace0 \uad6c\ud604\ud558\ub294 \ub370 \ud544\uc218\uc801\uc778 \uc694\uc18c\ub4e4\uc785\ub2c8\ub2e4. \ub354 \uae4a\uc774 \uc788\ub294 \uac1c\ubc1c\uc744 \uc704\ud574 \ub2e4\uc591\ud55c \uc704\uc82f\uacfc \uadf8 \uc870\ud569\uc5d0 \ub300\ud574 \uc2e4\ud5d8\ud574 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n<\/p>\n<hr\/>\n<p>\uc774 \ube14\ub85c\uadf8 \uae00\uc774 PyQt\ub97c \ubc30\uc6b0\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uc5c8\uae30\ub97c \ubc14\ub78d\ub2c8\ub2e4. \ucd94\uac00 \uc9c8\ubb38\uc774\ub098 \ud53c\ub4dc\ubc31\uc740 \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 \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud574 \uc0ac\uc6a9\ub418\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \uac15\ub825\ud558\uba74\uc11c\ub3c4 \uc720\uc5f0\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774 \ube14\ub85c\uadf8 \uae00\uc5d0\uc11c\ub294 PyQt\uc758 \uae30\ubcf8 \uc704\uc82f\uc778 QLabel, QPushButton, QLineEdit\uc758 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uace0, \uac01\uac01\uc758 \uc704\uc82f\uc744 \ud65c\uc6a9\ud55c \uc608\uc81c \ucf54\ub4dc\ub3c4 \uc81c\uacf5\ud560 \uac83\uc785\ub2c8\ub2e4. 1. QLabel QLabel\uc740 \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0 \ub4f1\uc744 \ud654\uba74\uc5d0 \ud45c\uc2dc\ud558\uae30 \uc704\ud55c \uc704\uc82f\uc785\ub2c8\ub2e4. \uc8fc\ub85c \ub2e4\ub978 \uc704\uc82f\ub4e4\uacfc \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \uc815\ubcf4 \uc81c\uacf5\uc774\ub098 \uc0ac\uc6a9\uc790 \uc548\ub0b4 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/39278\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \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-39278","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, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \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\/39278\/\" \/>\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, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"PyQt\ub294 Python\uc5d0\uc11c Qt \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud574 \uc0ac\uc6a9\ub418\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \uac15\ub825\ud558\uba74\uc11c\ub3c4 \uc720\uc5f0\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774 \ube14\ub85c\uadf8 \uae00\uc5d0\uc11c\ub294 PyQt\uc758 \uae30\ubcf8 \uc704\uc82f\uc778 QLabel, QPushButton, QLineEdit\uc758 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uace0, \uac01\uac01\uc758 \uc704\uc82f\uc744 \ud65c\uc6a9\ud55c \uc608\uc81c \ucf54\ub4dc\ub3c4 \uc81c\uacf5\ud560 \uac83\uc785\ub2c8\ub2e4. 1. QLabel QLabel\uc740 \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0 \ub4f1\uc744 \ud654\uba74\uc5d0 \ud45c\uc2dc\ud558\uae30 \uc704\ud55c \uc704\uc82f\uc785\ub2c8\ub2e4. \uc8fc\ub85c \ub2e4\ub978 \uc704\uc82f\ub4e4\uacfc \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \uc815\ubcf4 \uc81c\uacf5\uc774\ub098 \uc0ac\uc6a9\uc790 \uc548\ub0b4 &hellip; \ub354 \ubcf4\uae30 &quot;PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/39278\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T03:39:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:41:56+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=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95\",\"datePublished\":\"2024-11-02T03:39:03+00:00\",\"dateModified\":\"2024-11-26T06:41:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/\"},\"wordCount\":26,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyQt\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/\",\"url\":\"https:\/\/atmokpo.com\/w\/39278\/\",\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T03:39:03+00:00\",\"dateModified\":\"2024-11-26T06:41:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/39278\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/39278\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \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, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \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\/39278\/","og_locale":"ko_KR","og_type":"article","og_title":"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"PyQt\ub294 Python\uc5d0\uc11c Qt \uc5b4\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud558\uae30 \uc704\ud574 \uc0ac\uc6a9\ub418\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \uac15\ub825\ud558\uba74\uc11c\ub3c4 \uc720\uc5f0\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc774 \ube14\ub85c\uadf8 \uae00\uc5d0\uc11c\ub294 PyQt\uc758 \uae30\ubcf8 \uc704\uc82f\uc778 QLabel, QPushButton, QLineEdit\uc758 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc790\uc138\ud788 \uc124\uba85\ud558\uace0, \uac01\uac01\uc758 \uc704\uc82f\uc744 \ud65c\uc6a9\ud55c \uc608\uc81c \ucf54\ub4dc\ub3c4 \uc81c\uacf5\ud560 \uac83\uc785\ub2c8\ub2e4. 1. QLabel QLabel\uc740 \ud14d\uc2a4\ud2b8, \uc774\ubbf8\uc9c0 \ub4f1\uc744 \ud654\uba74\uc5d0 \ud45c\uc2dc\ud558\uae30 \uc704\ud55c \uc704\uc82f\uc785\ub2c8\ub2e4. \uc8fc\ub85c \ub2e4\ub978 \uc704\uc82f\ub4e4\uacfc \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4 \uc815\ubcf4 \uc81c\uacf5\uc774\ub098 \uc0ac\uc6a9\uc790 \uc548\ub0b4 &hellip; \ub354 \ubcf4\uae30 \"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95\"","og_url":"https:\/\/atmokpo.com\/w\/39278\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T03:39:03+00:00","article_modified_time":"2024-11-26T06:41:56+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":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/39278\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/39278\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95","datePublished":"2024-11-02T03:39:03+00:00","dateModified":"2024-11-26T06:41:56+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/39278\/"},"wordCount":26,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyQt"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/39278\/","url":"https:\/\/atmokpo.com\/w\/39278\/","name":"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \uc0ac\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T03:39:03+00:00","dateModified":"2024-11-26T06:41:56+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/39278\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/39278\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/39278\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"PyQt\uac1c\ubc1c\uac15\uc88c, QLabel, QPushButton, QLineEdit \ub4f1 \uae30\ubcf8 \uc704\uc82f \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":39278,"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":39278,"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":25676,"url":"https:\/\/atmokpo.com\/w\/25676\/","url_meta":{"origin":39278,"position":2},"title":"\ud50c\ub7ec\ud130 \uac15\uc88c: 9.1 \uc0c1\uc18d\uc774\ub780?","author":"root","date":"2024\ub144 10\uc6d4 26\uc77c","format":false,"excerpt":"\ud504\ub85c\uadf8\ub798\ubc0d\uc758 \ud575\uc2ec \uac1c\ub150 \uc911 \ud558\ub098\uc778 \uc0c1\uc18d\uc740 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uac00\uc7a5 \uc911\uc694\ud55c \ud2b9\uc9d5 \uc911 \ud558\ub098\ub85c, \ud50c\ub7ec\ud130\uc5d0\uc11c\ub3c4 \uac1d\uccb4 \uc9c0\ud5a5 \ud504\ub85c\uadf8\ub798\ubc0d\uc758 \uc6d0\uce59\uc744 \ub530\ub974\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \ud50c\ub7ec\ud130\uc5d0\uc11c\uc758 \uc0c1\uc18d \uac1c\ub150, \uc0ac\uc6a9 \ubc29\ubc95, \uadf8\ub9ac\uace0 \uc2e4\uc804 \uc608\uc81c\ub97c \ud1b5\ud574 \uc0c1\uc18d\uc744 \uae4a\uc774 \uc774\ud574\ud560 \uc218 \uc788\ub3c4\ub85d \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc0c1\uc18d\uc758 \uc815\uc758 \uc0c1\uc18d(Inheritance)\uc740 \uae30\uc874 \ud074\ub798\uc2a4(\ubd80\ubaa8 \ud074\ub798\uc2a4 \ub610\ub294 \uc288\ud37c \ud074\ub798\uc2a4)\uc758 \uc18d\uc131\uacfc \uba54\uc11c\ub4dc\ub97c\u2026","rel":"","context":"&quot;\ud50c\ub7ec\ud130 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud50c\ub7ec\ud130 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%94%8c%eb%9f%ac%ed%84%b0-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":31337,"url":"https:\/\/atmokpo.com\/w\/31337\/","url_meta":{"origin":39278,"position":3},"title":"WPF \uac15\uc88c, \ud2b8\ub9ac\uac70\uc640 \ud15c\ud50c\ub9bf\uc744 \ud65c\uc6a9\ud55c \uace0\uae09 \uc2a4\ud0c0\uc77c\ub9c1","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"WPF(Windows Presentation Foundation)\ub294 \uac15\ub825\ud55c \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4(UI) \ud504\ub808\uc784\uc6cc\ud06c\ub85c, \uac1c\ubc1c\uc790\uac00 \uc544\ub984\ub2f5\uace0 \ud48d\ubd80\ud55c UI\ub97c \uc27d\uac8c \uad6c\ud604\ud560 \uc218 \uc788\ub294 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uadf8\uc911\uc5d0\uc11c\ub3c4 \ud2b8\ub9ac\uac70\uc640 \ud15c\ud50c\ub9bf\uc740 UI \uc694\uc18c\uc758 \uc2a4\ud0c0\uc77c\uc744 \ub3d9\uc801\uc73c\ub85c \uc870\uc815\ud560 \uc218 \uc788\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774\ubc88 \uae00\uc5d0\uc11c\ub294 WPF\uc5d0\uc11c \ud2b8\ub9ac\uac70\uc640 \ud15c\ud50c\ub9bf\uc744 \ud65c\uc6a9\ud558\uc5ec \uace0\uae09 \uc2a4\ud0c0\uc77c\ub9c1\uc744 \uad6c\ud604\ud558\ub294 \ubc29\ubc95\uc744 \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 1. WPF\uc758 \uae30\ubcf8 \uac1c\ub150 WPF\ub294 XAML(Extensible Application Markup Language)\uc774\ub77c\ub294\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":43227,"url":"https:\/\/atmokpo.com\/w\/43227\/","url_meta":{"origin":39278,"position":4},"title":"[Prism]  017. Prism\uc758 \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8, \ub370\uc774\ud130 \ud15c\ud50c\ub9bf\uacfc ControlTemplate \uc0ac\uc6a9\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"WPF(Windows Presentation Foundation)\uc758 Prism \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ubaa8\ub4c8\ud654 \ubc0f MVVM(\ubaa8\ub378-\ubdf0-\ubdf0\ubaa8\ub378) \ud328\ud134\uc744 \uae30\ubc18\uc73c\ub85c \ud558\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \uc704\ud55c \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Prism\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8\ub97c \uc815\uc758\ud558\uace0, \ub370\uc774\ud130 \ud15c\ud50c\ub9bf \ubc0f ControlTemplate\uc744 \ud65c\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. Prism\uacfc \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8\uc758 \uc911\uc694\uc131 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc0ac\uc6a9\uc790 \uacbd\ud5d8(UX)\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\uae30 \uc704\ud574\uc11c\ub294 \uc77c\uad00\ub41c \uc2a4\ud0c0\uc77c\uacfc \ub9e4\ub825\uc801\uc778 \ud14c\ub9c8\uac00 \ud544\uc218\uc801\uc785\ub2c8\ub2e4. Prism\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":43231,"url":"https:\/\/atmokpo.com\/w\/43231\/","url_meta":{"origin":39278,"position":5},"title":"[Prism]  016. Prism\uc758 \uc2a4\ud0c0\uc77c \ubc0f \ud14c\ub9c8, \uc0ac\uc6a9\uc790 \uc815\uc758 \uc2a4\ud0c0\uc77c \uc801\uc6a9","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"WPF(Windows Presentation Foundation)\uc5d0\uc11c Prism \ud504\ub808\uc784\uc6cc\ud06c\ub294 \ubaa8\ub4c8\ud615 \uc544\ud0a4\ud14d\ucc98\ub97c \uc81c\uacf5\ud558\uc5ec \ub300\uaddc\ubaa8 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uac1c\ubc1c\uc744 \uc6a9\uc774\ud558\uac8c \ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 Prism\uc744 \uc0ac\uc6a9\ud558\uc5ec WPF \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc758 \uc2a4\ud0c0\uc77c\uacfc \ud14c\ub9c8\ub97c \uc801\uc6a9\ud558\uace0, \uc0ac\uc6a9\uc790 \uc815\uc758 \uc2a4\ud0c0\uc77c\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uae4a\uc774 \uc788\ub294 \uc124\uba85\uacfc \uc608\uc81c\ub97c \uc81c\uacf5\ud569\ub2c8\ub2e4. 1. Prism \uc18c\uac1c Prism\uc740 WPF, Xamarin, Unity \ub4f1 \ub2e4\uc591\ud55c \ud50c\ub7ab\ud3fc\uc5d0\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc788\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. Prism\uc740 MVVM(\ubaa8\ub378-\ubdf0-\ubdf0\ubaa8\ub378)\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\/39278","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=39278"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39278\/revisions"}],"predecessor-version":[{"id":39279,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39278\/revisions\/39279"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=39278"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=39278"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=39278"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}