{"id":37745,"date":"2024-11-01T10:00:05","date_gmt":"2024-11-01T10:00:05","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37745"},"modified":"2024-11-01T11:03:54","modified_gmt":"2024-11-01T11:03:54","slug":"wpf-development-theme","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37745\/","title":{"rendered":"WPF Development, Theme"},"content":{"rendered":"<p>Windows Presentation Foundation (WPF) is a powerful UI framework based on Microsoft&#8217;s .NET platform. WPF has the capability to provide developers with an amazing user experience through data binding, various media formats, and a highly flexible layout system. Among these, themes are an important aspect that determine the look and feel of WPF applications. In this article, we will take a detailed look at the concept of WPF themes, how to create them, and how to apply them through actual example code.<\/p>\n<h2>1. Concept of Themes<\/h2>\n<p>A theme defines the style and colors of the visual components of a WPF application. Through themes, users can recognize the core functionality of the application while experiencing a visually appealing UI. WPF provides several default themes, and developers can extend or modify these themes to build their own unique styles.<\/p>\n<h3>1.1 Default Themes<\/h3>\n<p>WPF offers the following default themes:<\/p>\n<ul>\n<li><strong>Aero<\/strong>: Reflects the visual style of Windows Vista and later versions.<\/li>\n<li><strong>Aero2<\/strong>: Reflects the new user interface of Windows 8.<\/li>\n<li><strong>Classic<\/strong>: The traditional style from earlier versions of Windows.<\/li>\n<\/ul>\n<h3>1.2 Importance of Themes<\/h3>\n<p>Choosing and applying the right theme plays a significant role in maximizing the user experience and enhancing the brand image of the application. It is a useful way to attract users&#8217; attention and help them intuitively understand the functionality of the application.<\/p>\n<h2>2. How to Create Themes in WPF<\/h2>\n<p>The process of creating and applying themes in WPF can be broken down into several steps:<\/p>\n<ul>\n<li>Define styles and colors using ResourceDictionary.<\/li>\n<li>Apply the defined theme to the application in the App.xaml file.<\/li>\n<li>Apply the defined styles to controls.<\/li>\n<\/ul>\n<h3>2.1 Defining ResourceDictionary<\/h3>\n<p>The styles and colors of a theme are defined through a ResourceDictionary. Below is an example defining the default button style:<\/p>\n<pre><code class=\"language-xaml\">&lt;ResourceDictionary xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n                    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"&gt;\n    &lt;Style TargetType=\"Button\"&gt;\n        &lt;Setter Property=\"Background\" Value=\"SkyBlue\" \/&gt;\n        &lt;Setter Property=\"Foreground\" Value=\"White\" \/&gt;\n        &lt;Setter Property=\"Padding\" Value=\"10\" \/&gt;\n        &lt;Setter Property=\"Margin\" Value=\"5\" \/&gt;\n        &lt;Setter Property=\"FontSize\" Value=\"16\" \/&gt;\n    &lt;\/Style&gt;\n&lt;\/ResourceDictionary&gt;<\/code><\/pre>\n<h3>2.2 Applying Themes in the App.xaml File<\/h3>\n<p>You can apply the ResourceDictionary defined above to the entire application by adding it to the App.xaml file:<\/p>\n<pre><code class=\"language-xaml\">&lt;Application x:Class=\"WpfApp.MyApp\"\n             xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n             xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n             StartupUri=\"MainWindow.xaml\"&gt;\n    &lt;Application.Resources&gt;\n        &lt;ResourceDictionary&gt;\n            &lt;ResourceDictionary.MergedDictionaries&gt;\n                &lt;ResourceDictionary Source=\"Themes\/MyTheme.xaml\"\/&gt;\n            &lt;\/ResourceDictionary.MergedDictionaries&gt;\n        &lt;\/ResourceDictionary&gt;\n    &lt;\/Application.Resources&gt;\n&lt;\/Application&gt;<\/code><\/pre>\n<h3>2.3 Applying Styles<\/h3>\n<p>To apply the defined button style to a button in XAML, use the Style property:<\/p>\n<pre><code class=\"language-xaml\">&lt;Button Content=\"Click Me\" Style=\"{StaticResource {x:Type Button}}\"\/&gt;<\/code><\/pre>\n<h2>3. Example: Applying Theme to the Entire Application<\/h2>\n<p>Below is the example code for applying a theme to the entire application.<\/p>\n<h3>3.1 MainWindow.xaml<\/h3>\n<pre><code class=\"language-xaml\">&lt;Window x:Class=\"WpfApp.MainWindow\"\n        xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n        xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n        Title=\"WPF Theme Example\" Height=\"350\" Width=\"525\"&gt;\n    &lt;Grid&gt;\n        &lt;Button Content=\"Click Me\" Style=\"{StaticResource {x:Type Button}}\"\/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Window&gt;<\/code><\/pre>\n<h3>3.2 Themes\/MyTheme.xaml<\/h3>\n<pre><code class=\"language-xaml\">&lt;ResourceDictionary xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n                    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"&gt;\n    &lt;Style TargetType=\"Button\"&gt;\n        &lt;Setter Property=\"Background\" Value=\"Coral\" \/&gt;\n        &lt;Setter Property=\"Foreground\" Value=\"White\" \/&gt;\n        &lt;Setter Property=\"FontSize\" Value=\"16\" \/&gt;\n        &lt;Setter Property=\"Padding\" Value=\"10\" \/&gt;\n    &lt;\/Style&gt;\n&lt;\/ResourceDictionary&gt;<\/code><\/pre>\n<h3>3.3 App.xaml<\/h3>\n<pre><code class=\"language-xaml\">&lt;Application x:Class=\"WpfApp.App\"\n             xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n             xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n             StartupUri=\"MainWindow.xaml\"&gt;\n    &lt;Application.Resources&gt;\n        &lt;ResourceDictionary&gt;\n            &lt;ResourceDictionary.MergedDictionaries&gt;\n                &lt;ResourceDictionary Source=\"Themes\/MyTheme.xaml\"\/&gt;\n            &lt;\/ResourceDictionary.MergedDictionaries&gt;\n        &lt;\/ResourceDictionary&gt;\n    &lt;\/Application.Resources&gt;\n&lt;\/Application&gt;<\/code><\/pre>\n<h2>4. Theme Switching<\/h2>\n<p>In WPF, it is also possible to switch themes at runtime. This allows for a colorful environment for users. Below is a simple method for dynamically switching themes.<\/p>\n<pre><code class=\"language-csharp\">private void ChangeTheme(string themePath)\n{\n    var resourceDictionary = new ResourceDictionary\n    {\n        Source = new Uri(themePath, UriKind.Relative)\n    };\n    Application.Current.Resources.MergedDictionaries.Clear();\n    Application.Current.Resources.MergedDictionaries.Add(resourceDictionary);\n}<\/code><\/pre>\n<p>The above method takes a theme path as a parameter and applies the corresponding theme to the application. You can create various theme files and implement the method so users can select their desired theme.<\/p>\n<h2>5. Custom Controls and Themes<\/h2>\n<p>In WPF, it is possible to create custom controls and apply themes to them. You can use ControlTemplate to set the style of custom controls. Below is an example of a style for a custom button.<\/p>\n<pre><code class=\"language-xaml\">&lt;Style TargetType=\"local:CustomButton\"&gt;\n    &lt;Setter Property=\"Template\"&gt;\n        &lt;Setter.Value&gt;\n            &lt;ControlTemplate TargetType=\"local:CustomButton\"&gt;\n                &lt;Border Background=\"LightBlue\" CornerRadius=\"5\"&gt;\n                    &lt;ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"\/&gt;\n                &lt;\/Border&gt;\n            &lt;\/ControlTemplate&gt;\n        &lt;Setter.Value&gt;\n    &lt;\/Setter&gt;\n&lt;\/Style&gt;<\/code><\/pre>\n<p>In the above style, the ControlTemplate is defined for a custom button called CustomButton to specify its visual appearance.<\/p>\n<h2>6. Considerations for Theme Design<\/h2>\n<p>When designing themes for a WPF application, the following considerations should be kept in mind:<\/p>\n<ul>\n<li><strong>Accessibility:<\/strong> Consider color contrast, font size, etc.<\/li>\n<li><strong>Consistency:<\/strong> Maintain a consistent style across all screens in the application.<\/li>\n<li><strong>Responsive Design:<\/strong> Should be designed to accommodate different screen sizes and resolutions.<\/li>\n<\/ul>\n<h2>7. Conclusion<\/h2>\n<p>In WPF, themes are an important factor in enhancing the visual user experience of applications. By leveraging the provided themes or creating custom themes, you can emphasize the originality and functionality of your application. Additionally, it is important to consider design consistency and accessibility to provide an effective user experience. By utilizing WPF&#8217;s theme system, you can build an attractive and intuitive UI to offer users a better experience.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows Presentation Foundation (WPF) is a powerful UI framework based on Microsoft&#8217;s .NET platform. WPF has the capability to provide developers with an amazing user experience through data binding, various media formats, and a highly flexible layout system. Among these, themes are an important aspect that determine the look and feel of WPF applications. In &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37745\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;WPF Development, Theme&#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":[117],"tags":[],"class_list":["post-37745","post","type-post","status-publish","format-standard","hentry","category-wpf-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WPF Development, Theme - \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\/37745\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WPF Development, Theme - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Windows Presentation Foundation (WPF) is a powerful UI framework based on Microsoft&#8217;s .NET platform. WPF has the capability to provide developers with an amazing user experience through data binding, various media formats, and a highly flexible layout system. Among these, themes are an important aspect that determine the look and feel of WPF applications. In &hellip; \ub354 \ubcf4\uae30 &quot;WPF Development, Theme&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37745\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:00:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:03:54+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\/37745\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37745\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"WPF Development, Theme\",\"datePublished\":\"2024-11-01T10:00:05+00:00\",\"dateModified\":\"2024-11-01T11:03:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37745\/\"},\"wordCount\":604,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"WPF Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37745\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37745\/\",\"name\":\"WPF Development, Theme - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:00:05+00:00\",\"dateModified\":\"2024-11-01T11:03:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37745\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37745\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37745\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WPF Development, Theme\"}]},{\"@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":"WPF Development, Theme - \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\/37745\/","og_locale":"ko_KR","og_type":"article","og_title":"WPF Development, Theme - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Windows Presentation Foundation (WPF) is a powerful UI framework based on Microsoft&#8217;s .NET platform. WPF has the capability to provide developers with an amazing user experience through data binding, various media formats, and a highly flexible layout system. Among these, themes are an important aspect that determine the look and feel of WPF applications. In &hellip; \ub354 \ubcf4\uae30 \"WPF Development, Theme\"","og_url":"https:\/\/atmokpo.com\/w\/37745\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:00:05+00:00","article_modified_time":"2024-11-01T11:03:54+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\/37745\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37745\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"WPF Development, Theme","datePublished":"2024-11-01T10:00:05+00:00","dateModified":"2024-11-01T11:03:54+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37745\/"},"wordCount":604,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["WPF Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37745\/","url":"https:\/\/atmokpo.com\/w\/37745\/","name":"WPF Development, Theme - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:00:05+00:00","dateModified":"2024-11-01T11:03:54+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37745\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37745\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37745\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"WPF Development, Theme"}]},{"@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\/37745","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=37745"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37745\/revisions"}],"predecessor-version":[{"id":37746,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37745\/revisions\/37746"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37745"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37745"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37745"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}