{"id":37473,"date":"2024-11-01T09:57:51","date_gmt":"2024-11-01T09:57:51","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37473"},"modified":"2024-11-01T11:02:35","modified_gmt":"2024-11-01T11:02:35","slug":"uwp-development-common-properties-used-in-layout-elements","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37473\/","title":{"rendered":"UWP Development, Common Properties Used in Layout Elements"},"content":{"rendered":"<p>UWP (Universal Windows Platform) development is an essential technology for creating applications that run on the Windows 10 operating system. UWP applications are designed to adapt to various screen sizes and resolutions, making it important to understand the common properties of Layout elements.<\/p>\n<h2>1. Introduction to Layout Elements<\/h2>\n<p>In UWP, Layout elements play a crucial role in positioning, aligning, and resizing UI components. Layout elements are derived classes of the <code>Panel<\/code> class. The main Layout elements include <code>StackPanel<\/code>, <code>Grid<\/code>, <code>WrapPanel<\/code>, <code>Canvas<\/code>, and <code>RelativePanel<\/code>. These elements are used to define how child elements are arranged, each having unique properties.<\/p>\n<h2>2. Common Properties<\/h2>\n<p>Layout elements provide various properties to control the position and size of child elements. Here, we will examine some common properties and their use cases.<\/p>\n<h3>2.1 Margin<\/h3>\n<p>The <code>Margin<\/code> property sets the outer margin of an element. Margins are used to define the space between the element and other elements.<\/p>\n<pre><code class=\"language-xaml\">&lt;StackPanel Margin=\"10, 20, 10, 20\"&gt;\n    &lt;TextBlock Text=\"First Text\" \/&gt;\n    &lt;TextBlock Text=\"Second Text\" \/&gt;\n&lt;\/StackPanel&gt;<\/code><\/pre>\n<p>In this example, the <code>StackPanel<\/code> is set with a left and right margin of 10 pixels and a top and bottom margin of 20 pixels.<\/p>\n<h3>2.2 Padding<\/h3>\n<p>The <code>Padding<\/code> property is used to set the inner padding of an element. Inner padding defines the space between the content inside an element and the element&#8217;s border.<\/p>\n<pre><code class=\"language-xaml\">&lt;Border Padding=\"10\"&gt;\n    &lt;TextBlock Text=\"Text with padding\" \/&gt;\n&lt;\/Border&gt;<\/code><\/pre>\n<p>In the above example, a 10-pixel inner padding is applied to the <code>Border<\/code> element, setting the text to be 10 pixels away from the border.<\/p>\n<h3>2.3 HorizontalAlignment and VerticalAlignment<\/h3>\n<p>These two properties define how an element is aligned. <code>HorizontalAlignment<\/code> sets the horizontal alignment, while <code>VerticalAlignment<\/code> sets the vertical alignment.<\/p>\n<pre><code class=\"language-xaml\">&lt;Button Content=\"Button\" HorizontalAlignment=\"Center\" VerticalAlignment=\"Top\" \/&gt;<\/code><\/pre>\n<p>In this example, the button is aligned horizontally at the center and vertically at the top.<\/p>\n<h3>2.4 Width and Height<\/h3>\n<p>The <code>Width<\/code> and <code>Height<\/code> properties set a fixed size for an element. You can set an element to a fixed size as needed.<\/p>\n<pre><code class=\"language-xaml\">&lt;Rectangle Width=\"100\" Height=\"50\" Fill=\"Blue\" \/&gt;<\/code><\/pre>\n<p>In the above code, the blue rectangle has a fixed width of 100 pixels and a height of 50 pixels.<\/p>\n<h3>2.5 MinWidth and MinHeight \/ MaxWidth and MaxHeight<\/h3>\n<p>The <code>MinWidth<\/code> and <code>MinHeight<\/code> are used to set the minimum size of an element, while <code>MaxWidth<\/code> and <code>MaxHeight<\/code> are used to set the maximum size.<\/p>\n<pre><code class=\"language-xaml\">&lt;TextBox MinWidth=\"100\" MaxWidth=\"200\" MinHeight=\"30\" MaxHeight=\"60\" \/&gt;<\/code><\/pre>\n<p>In the above example, the text box can have a minimum width of 100 pixels and a maximum width of 200 pixels, a minimum height of 30 pixels, and a maximum height of 60 pixels.<\/p>\n<h3>2.6 Visibility<\/h3>\n<p>The <code>Visibility<\/code> property defines whether the element is visible or hidden. This property can have three states: <code>Visible<\/code>, <code>Collapsed<\/code>, and <code>Hidden<\/code>.<\/p>\n<pre><code class=\"language-xaml\">&lt;TextBlock Text=\"This text will be hidden\" Visibility=\"Collapsed\" \/&gt;<\/code><\/pre>\n<p>In the above example, the text is set to the <code>Collapsed<\/code> state, making it fully hidden from the UI.<\/p>\n<h2>3. Explanation of Layout Elements<\/h2>\n<p>Now that we understand Layout elements and properties, let\u2019s see how we can utilize them. I will provide a basic explanation and usage for each Layout element.<\/p>\n<h3>3.1 StackPanel<\/h3>\n<p>The <code>StackPanel<\/code> is used to arrange child elements either vertically or horizontally. By default, it stacks elements vertically.<\/p>\n<pre><code class=\"language-xaml\">&lt;StackPanel Orientation=\"Vertical\"&gt;\n    &lt;Button Content=\"Button 1\" \/&gt;\n    &lt;Button Content=\"Button 2\" \/&gt;\n&lt;\/StackPanel&gt;<\/code><\/pre>\n<p>The example above shows a <code>StackPanel<\/code> stacking two buttons vertically. By setting the <code>Orientation<\/code> property to <code>Horizontal<\/code>, you can arrange them horizontally.<\/p>\n<h3>3.2 Grid<\/h3>\n<p>The <code>Grid<\/code> is one of the most commonly used Layout elements in UWP. It allows you to arrange elements in a table format composed of rows and columns.<\/p>\n<pre><code class=\"language-xaml\">&lt;Grid&gt;\n    &lt;Grid.RowDefinitions&gt;\n        &lt;RowDefinition Height=\"*\" \/&gt;\n        &lt;RowDefinition Height=\"2*\" \/&gt;\n    &lt;\/Grid.RowDefinitions&gt;\n    &lt;Grid.ColumnDefinitions&gt;\n        &lt;ColumnDefinition Width=\"2*\" \/&gt;\n        &lt;ColumnDefinition Width=\"*\" \/&gt;\n    &lt;\/Grid.ColumnDefinitions&gt;\n\n    &lt;Button Grid.Row=\"0\" Grid.Column=\"0\" Content=\"Button A\" \/&gt;\n    &lt;Button Grid.Row=\"0\" Grid.Column=\"1\" Content=\"Button B\" \/&gt;\n    &lt;Button Grid.Row=\"1\" Grid.Column=\"0\" Content=\"Button C\" \/&gt;\n    &lt;Button Grid.Row=\"1\" Grid.Column=\"1\" Content=\"Button D\" \/&gt;\n&lt;\/Grid&gt;<\/code><\/pre>\n<p>In the example above, the <code>Grid<\/code> creates 2 rows and 2 columns, placing each button in the corresponding position. <code>Height<\/code> and <code>Width<\/code> are set in proportions to support flexible design.<\/p>\n<h3>3.3 WrapPanel<\/h3>\n<p>The <code>WrapPanel<\/code> is a Layout element that aligns child elements horizontally or vertically and moves to the next row when space runs out.<\/p>\n<pre><code class=\"language-xaml\">&lt;WrapPanel&gt;\n    &lt;Button Content=\"Button 1\" Width=\"100\" \/&gt;\n    &lt;Button Content=\"Button 2\" Width=\"100\" \/&gt;\n    &lt;Button Content=\"Button 3\" Width=\"100\" \/&gt;\n    &lt;Button Content=\"Button 4\" Width=\"100\" \/&gt;\n&lt;\/WrapPanel&gt;<\/code><\/pre>\n<p>This example shows that if the buttons exceed the width in the <code>WrapPanel<\/code>, they automatically move to the next line for placement.<\/p>\n<h3>3.4 Canvas<\/h3>\n<p>The <code>Canvas<\/code> is a Layout element used for positioning child elements absolutely. It is used to specify the position of each element based on coordinates.<\/p>\n<pre><code class=\"language-xaml\">&lt;Canvas&gt;\n    &lt;Button Content=\"Button 1\" Canvas.Left=\"50\" Canvas.Top=\"20\" \/&gt;\n    &lt;Button Content=\"Button 2\" Canvas.Left=\"150\" Canvas.Top=\"100\" \/&gt;\n&lt;\/Canvas&gt;<\/code><\/pre>\n<p>In the above code, each button is placed at absolute coordinates (50,20) and (150,100). This method allows for precise positioning.<\/p>\n<h3>3.5 RelativePanel<\/h3>\n<p>The <code>RelativePanel<\/code> is a Layout element that arranges child elements based on their relative positions. You can adjust alignment and placement based on the relationship with other elements.<\/p>\n<pre><code class=\"language-xaml\">&lt;RelativePanel&gt;\n    &lt;Button x:Name=\"button1\" Content=\"Button 1\" \/&gt;\n    &lt;Button x:Name=\"button2\" Content=\"Button 2\" \n        RelativePanel.RightOf=\"button1\" \/&gt;\n    &lt;Button x:Name=\"button3\" Content=\"Button 3\" \n        RelativePanel.Below=\"button1\" \/&gt;\n&lt;\/RelativePanel&gt;<\/code><\/pre>\n<p>In this example, <code>button2<\/code> is placed to the right of <code>button1<\/code>, and <code>button3<\/code> is placed below <code>button1<\/code>. This method allows you to easily implement more complex layouts.<\/p>\n<h2>4. Custom Layout<\/h2>\n<p>In UWP, in addition to the built-in Layout elements, users can create their own defined Layout elements. You can implement a new Layout by inheriting from the <code>Panel<\/code> class. This allows for unique designs and support for complex user interactions.<\/p>\n<h3>4.1 Creating a Custom Layout Class<\/h3>\n<pre><code class=\"language-csharp\">public class CustomLayout : Panel\n{\n    protected override Size MeasureOverride(Size availableSize)\n    {\n        \/\/ Measure and return the size of child elements here.\n    }\n\n    protected override Size ArrangeOverride(Size finalSize)\n    {\n        \/\/ Set the position of child elements here.\n    }\n}<\/code><\/pre>\n<p>The above code provides the basic structure for creating a custom Layout. By implementing the <code>MeasureOverride<\/code> and <code>ArrangeOverride<\/code> methods, you can define how to measure and arrange child elements.<\/p>\n<h2>5. Conclusion<\/h2>\n<p>This article provided a detailed explanation of common properties used with Layout elements in UWP development. Properties such as <code>Margin<\/code>, <code>Padding<\/code>, <code>HorizontalAlignment<\/code>, <code>VerticalAlignment<\/code>, <code>Width<\/code>, <code>Height<\/code>, <code>MinWidth<\/code>, <code>MaxWidth<\/code>, and <code>Visibility<\/code> can help design flexible and responsive UIs. Additionally, understanding the characteristics of various Layout elements lays the foundation for constructing complex layouts.<\/p>\n<p>Since UWP is a powerful platform that can be used across various devices and environments, understanding and utilizing these Layout properties and elements is crucial. This can maximize user experience and enable the development of high-quality applications.<\/p>\n<p>I hope this article helps in understanding UWP development and Layout elements. It is also important to continuously research design patterns and best practices that suit application development.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>UWP (Universal Windows Platform) development is an essential technology for creating applications that run on the Windows 10 operating system. UWP applications are designed to adapt to various screen sizes and resolutions, making it important to understand the common properties of Layout elements. 1. Introduction to Layout Elements In UWP, Layout elements play a crucial &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37473\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Common Properties Used in Layout Elements&#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":[115],"tags":[],"class_list":["post-37473","post","type-post","status-publish","format-standard","hentry","category-uwp-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>UWP Development, Common Properties Used in Layout Elements - \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\/37473\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Common Properties Used in Layout Elements - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"UWP (Universal Windows Platform) development is an essential technology for creating applications that run on the Windows 10 operating system. UWP applications are designed to adapt to various screen sizes and resolutions, making it important to understand the common properties of Layout elements. 1. Introduction to Layout Elements In UWP, Layout elements play a crucial &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Common Properties Used in Layout Elements&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37473\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:57:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:35+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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Common Properties Used in Layout Elements\",\"datePublished\":\"2024-11-01T09:57:51+00:00\",\"dateModified\":\"2024-11-01T11:02:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/\"},\"wordCount\":836,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37473\/\",\"name\":\"UWP Development, Common Properties Used in Layout Elements - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:57:51+00:00\",\"dateModified\":\"2024-11-01T11:02:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37473\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37473\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Common Properties Used in Layout Elements\"}]},{\"@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":"UWP Development, Common Properties Used in Layout Elements - \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\/37473\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Common Properties Used in Layout Elements - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"UWP (Universal Windows Platform) development is an essential technology for creating applications that run on the Windows 10 operating system. UWP applications are designed to adapt to various screen sizes and resolutions, making it important to understand the common properties of Layout elements. 1. Introduction to Layout Elements In UWP, Layout elements play a crucial &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Common Properties Used in Layout Elements\"","og_url":"https:\/\/atmokpo.com\/w\/37473\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:57:51+00:00","article_modified_time":"2024-11-01T11:02:35+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":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37473\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37473\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Common Properties Used in Layout Elements","datePublished":"2024-11-01T09:57:51+00:00","dateModified":"2024-11-01T11:02:35+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37473\/"},"wordCount":836,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37473\/","url":"https:\/\/atmokpo.com\/w\/37473\/","name":"UWP Development, Common Properties Used in Layout Elements - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:57:51+00:00","dateModified":"2024-11-01T11:02:35+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37473\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37473\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37473\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Common Properties Used in Layout Elements"}]},{"@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":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37473","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=37473"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37473\/revisions"}],"predecessor-version":[{"id":37474,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37473\/revisions\/37474"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37473"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37473"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37473"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}