{"id":37489,"date":"2024-11-01T09:57:59","date_gmt":"2024-11-01T09:57:59","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37489"},"modified":"2024-11-01T11:02:31","modified_gmt":"2024-11-01T11:02:31","slug":"uwp-development-named-style","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37489\/","title":{"rendered":"UWP Development, Named Style"},"content":{"rendered":"<p><body><\/p>\n<p>\n        In UWP (Universal Windows Platform) development, styles are an essential part of the visual elements experienced by users within the application.<br \/>\n        <strong>Named Style<\/strong>, which refers to explicit styles, is one way to define the visual properties of UI controls in XAML (XAML is an XML-based markup language used to define the UI of UWP applications).<br \/>\n        By using Named Styles, it becomes easy to apply and reuse a consistent style for specific UI elements.<br \/>\n        This article will explain the concept of Named Styles in UWP development and explore their usage through concrete examples.\n    <\/p>\n<h2>1. Concept of Named Style<\/h2>\n<p>\n        Named Style is a set of reusable visual properties that can be applied to specific UI elements, defined within XAML files.<br \/>\n        The main purpose of Named Style is to reduce code duplication and provide a consistent user interface.<br \/>\n        Named Styles are specified using the <code>Style<\/code> tag, which allows you to define styles.<br \/>\n        Using Named Styles makes it easy to change styles later and helps apply the same style to multiple UI elements.\n    <\/p>\n<h2>2. Defining Named Style<\/h2>\n<p>\n        Defining a Named Style is simple.<br \/>\n        You define the <code>Style<\/code> tag within <code>Page.Resources<\/code> in XAML and connect it to the <code>Style<\/code> property of specific UI elements.<br \/>\n        A key point here is to use the <code>x:Key<\/code> attribute to assign a name to the style, allowing it to be identified when defining styles.\n    <\/p>\n<h3>2.1 Example of Style Definition<\/h3>\n<pre><code>&lt;Page.Resources&gt;\n    &lt;Style x:Key=\"MyButtonStyle\" TargetType=\"Button\"&gt;\n        &lt;Setter Property=\"Background\" Value=\"Blue\"\/&gt;\n        &lt;Setter Property=\"Foreground\" Value=\"White\"\/&gt;\n        &lt;Setter Property=\"FontSize\" Value=\"16\"\/&gt;\n        &lt;Setter Property=\"Padding\" Value=\"10,5\"\/&gt;\n        &lt;Setter Property=\"Margin\" Value=\"5\"\/&gt;\n    &lt;\/Style&gt;\n&lt;\/Page.Resources&gt;<\/code><\/pre>\n<p>The above example defines a style named <code>MyButtonStyle<\/code>, setting the button&#8217;s background color, text color, font size, and margins.<\/p>\n<h2>3. Applying Named Style<\/h2>\n<p>\n        The defined Named Style can be easily applied to UI elements.<br \/>\n        This simplifies complex XAML code and allows the same style to be applied to multiple elements.<br \/>\n        Named Styles can be applied not only to buttons but also to various other UI elements.\n    <\/p>\n<h3>3.1 Example of Applying Style<\/h3>\n<pre><code>&lt;Button Style=\"{StaticResource MyButtonStyle}\" Content=\"Click Me!\" \/&gt;<\/code><\/pre>\n<p>The above code applies <code>MyButtonStyle<\/code> to the button, reflecting all the defined style properties on the button.<\/p>\n<h2>4. Scalability of Named Style<\/h2>\n<p>\n        Named Style provides a powerful feature for creating new styles based on existing styles.<br \/>\n        By using the <strong>BasedOn<\/strong> attribute, you can define a new style that inherits from an existing style.<br \/>\n        This minimizes code duplication and enables the creation of maintainable styles.\n    <\/p>\n<h3>4.1 Example of BasedOn<\/h3>\n<pre><code>&lt;Style x:Key=\"MySecondaryButtonStyle\" TargetType=\"Button\" BasedOn=\"{StaticResource MyButtonStyle}\"&gt;\n        &lt;Setter Property=\"Background\" Value=\"Gray\"\/&gt;\n    &lt;\/Style&gt;<\/code><\/pre>\n<p>The above code defines <code>MySecondaryButtonStyle<\/code>, creating a new style based on <code>MyButtonStyle<\/code>.<br \/>\n    The default background color is blue, but here it has been changed to gray.<\/p>\n<h2>5. Customization through Named Style<\/h2>\n<p>\n        Named Styles can be defined and applied in various ways according to user requirements.<br \/>\n        Styles go beyond mere appearance and greatly impact the overall user experience of the application.<br \/>\n        For instance, maintaining consistency in the shape, size, and color of buttons can provide comfort to users while using the application.\n    <\/p>\n<h3>5.1 Example of Customization<\/h3>\n<pre><code>&lt;Style TargetType=\"Button\"&gt;\n        &lt;Setter Property=\"Background\" Value=\"Green\"\/&gt;\n        &lt;Setter Property=\"Foreground\" Value=\"White\"\/&gt;\n        &lt;Setter Property=\"FontSize\" Value=\"18\"\/&gt;\n        &lt;Setter Property=\"BorderThickness\" Value=\"2\"\/&gt;\n        &lt;Setter Property=\"BorderBrush\" Value=\"Black\"\/&gt;\n    &lt;\/Style&gt;<\/code><\/pre>\n<p>Here, the background is set to green, the text color to white, the font size to 18, and a thick black border is added.<\/p>\n<h2>6. Differences between Named Style and Template<\/h2>\n<p>\n        In UWP, there is also the concept of <strong>Template<\/strong> for defining styles of UI elements.<br \/>\n        Named Styles and Templates are related but serve different purposes.<br \/>\n        <strong>Named Style<\/strong> is primarily used for setting visual properties, while <strong>Template<\/strong> is used for defining the structure and behavior of UI elements.<br \/>\n        This enables the creation of customizable UI elements.\n    <\/p>\n<h3>6.1 Example of Template Definition<\/h3>\n<pre><code>&lt;ControlTemplate TargetType=\"Button\"&gt;\n        &lt;Border Background=\"{TemplateBinding Background}\"&gt;\n            &lt;ContentPresenter \/&gt;\n        &lt;\/Border&gt;\n    &lt;\/ControlTemplate&gt;<\/code><\/pre>\n<p>The above code defines a Template for a button. Using Templates allows for the complete modification of the structure of UI elements.<\/p>\n<h2>7. Named Style and Data Binding<\/h2>\n<p>\n        When using data binding in UWP, it is possible to flexibly adjust the behavior and styles of various UI elements by combining it with Named Styles.<br \/>\n        For example, the style of a button can be changed dynamically based on the state of the data.\n    <\/p>\n<h3>7.1 Example of Data Binding<\/h3>\n<pre><code>&lt;Button Content=\"Submit\" Style=\"{StaticResource MyButtonStyle}\" \n        Background=\"{Binding IsEnabled, Converter={StaticResource BooleanToColorConverter}}\" \/&gt;<\/code><\/pre>\n<p>\n        In the above code, the button&#8217;s background color is dynamically set based on conditions through data binding.<br \/>\n        The <code>BooleanToColorConverter<\/code> is the converter that makes this process possible.\n    <\/p>\n<h2>8. Real World Example: Using Named Style in a UWP Application<\/h2>\n<p>Let&#8217;s take a look at how to utilize Named Styles in a real UWP application. Below is the full example code.<\/p>\n<pre><code>&lt;Page\n        x:Class=\"MyApp.MainPage\"\n        xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n        xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n        xmlns:local=\"using:MyApp\"\n        xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\"\n        xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\"\n        mc:Ignorable=\"d\"\n        &gt;\n    &lt;Page.Resources&gt;\n        &lt;Style x:Key=\"MyButtonStyle\" TargetType=\"Button\"&gt;\n            &lt;Setter Property=\"Background\" Value=\"Blue\"\/&gt;\n            &lt;Setter Property=\"Foreground\" Value=\"White\"\/&gt;\n            &lt;Setter Property=\"FontSize\" Value=\"16\"\/&gt;\n            &lt;Setter Property=\"Padding\" Value=\"10,5\"\/&gt;\n            &lt;Setter Property=\"Margin\" Value=\"5\"\/&gt;\n        &lt;\/Style&gt;\n    &lt;\/Page.Resources&gt;\n\n    &lt;Grid&gt;\n        &lt;Button Style=\"{StaticResource MyButtonStyle}\" Content=\"Click Me!\" \/&gt;\n    &lt;\/Grid&gt;\n    &lt;\/Page&gt;<\/code><\/pre>\n<p>This example adds a simple button and applies the style through the defined Named Style. Thus, Named Styles become a powerful tool in UWP development.<\/p>\n<h2>Conclusion<\/h2>\n<p>\n        We explored how to utilize Named Styles in UWP development.<br \/>\n        Named Styles, which help maintain consistency of UI element styles and make them reusable, assist in efficient development.<br \/>\n        The importance of Named Styles becomes even more pronounced when considering the maintenance and scalability of the application.<br \/>\n        I hope this article has helped you understand the basic concepts of Named Styles and how to apply them in practice.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In UWP (Universal Windows Platform) development, styles are an essential part of the visual elements experienced by users within the application. Named Style, which refers to explicit styles, is one way to define the visual properties of UI controls in XAML (XAML is an XML-based markup language used to define the UI of UWP applications). &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37489\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Named Style&#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-37489","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, Named Style - \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\/37489\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Named Style - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In UWP (Universal Windows Platform) development, styles are an essential part of the visual elements experienced by users within the application. Named Style, which refers to explicit styles, is one way to define the visual properties of UI controls in XAML (XAML is an XML-based markup language used to define the UI of UWP applications). &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Named Style&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37489\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:57:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:31+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Named Style\",\"datePublished\":\"2024-11-01T09:57:59+00:00\",\"dateModified\":\"2024-11-01T11:02:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/\"},\"wordCount\":755,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37489\/\",\"name\":\"UWP Development, Named Style - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:57:59+00:00\",\"dateModified\":\"2024-11-01T11:02:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37489\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37489\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Named Style\"}]},{\"@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, Named Style - \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\/37489\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Named Style - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In UWP (Universal Windows Platform) development, styles are an essential part of the visual elements experienced by users within the application. Named Style, which refers to explicit styles, is one way to define the visual properties of UI controls in XAML (XAML is an XML-based markup language used to define the UI of UWP applications). &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Named Style\"","og_url":"https:\/\/atmokpo.com\/w\/37489\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:57:59+00:00","article_modified_time":"2024-11-01T11:02:31+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37489\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37489\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Named Style","datePublished":"2024-11-01T09:57:59+00:00","dateModified":"2024-11-01T11:02:31+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37489\/"},"wordCount":755,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37489\/","url":"https:\/\/atmokpo.com\/w\/37489\/","name":"UWP Development, Named Style - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:57:59+00:00","dateModified":"2024-11-01T11:02:31+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37489\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37489\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37489\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Named Style"}]},{"@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\/37489","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=37489"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37489\/revisions"}],"predecessor-version":[{"id":37490,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37489\/revisions\/37490"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}