{"id":16231,"date":"2022-10-14T19:51:03","date_gmt":"2022-10-14T14:21:03","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/"},"modified":"2022-10-14T19:51:03","modified_gmt":"2022-10-14T14:21:03","slug":"solved-draw-samurai-sudoku-grid-on-wpf","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/","title":{"rendered":"[Solved] Draw samurai sudoku grid on WPF"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-67943072\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"67943072\" data-parentid=\"67941969\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>Example for demonstration.<br \/>\nIt is not as difficult as in the picture in the question.<br \/>\nBut it will not be a problem for you to supplement it.<\/p>\n<pre><code>public class SudokuCell\n{\n    public Thickness Border { get; }\n    public int Value { get; set; }\n\n    public int Row { get; }\n    public int Column { get; }\n\n    public SudokuCell(int row, int column, Thickness border)\n    {\n        Row = row;\n        Column = column;\n        Border = border;\n    }\n\n    public SudokuCell(int row, int column, Thickness border, int value)\n        : this(row, column, border)\n    {\n        Value = value;\n    }\n}\n<\/code><\/pre>\n<pre><code>public class SudokuViewModel\n{\n    public ObservableCollection&lt;SudokuCell&gt; Cells { get; }\n        = new ObservableCollection&lt;SudokuCell&gt;();\n\n    public IEnumerable&lt;int&gt; ValidValues { get; } = Enumerable.Range(1, 9);\n\n    private readonly SudokuCell[,] cellsArray;\n\n    private static readonly Random random = new Random();\n    public SudokuViewModel()\n    {\n        cellsArray = new SudokuCell[9, 9];\n        for (int row = 0; row &lt; 9; row++)\n        {\n            for (int column = 0; column &lt; 9; column++)\n            {\n                if ((row \/ 3 + column \/ 3) % 2 == 1)\n                    continue;\n\n                double left = 0.5;\n                if (column % 3 == 0)\n                    left = 3;\n\n                double top = 0.5;\n                if (row % 3 == 0)\n                    top = 3;\n\n                double right = 0.5;\n                if (column % 3 == 2)\n                    right = 3;\n\n                double bottom = 0.5;\n                if (row % 3 == 2)\n                    bottom = 3;\n\n                int value = 0;\n                if (random.Next(5) &lt; 2)\n                    value = random.Next(9) + 1;\n\n                cellsArray[row, column] = new SudokuCell(\n                    row,\n                    column,\n                    new Thickness(left, top, right, bottom),\n                    value);\n            }\n        }\n\n        foreach (var cell in cellsArray)\n        {\n            Cells.Add(cell);\n        }\n    }\n}\n<\/code><\/pre>\n<pre><code>    &lt;Window.Resources&gt;\n        &lt;local:SudokuViewModel x:Key=\"viewModel\"\/&gt;\n        &lt;ItemsPanelTemplate x:Key=\"Sudoku.Panel\"&gt;\n            &lt;UniformGrid Columns=\"9\" Rows=\"9\"\/&gt;\n        &lt;\/ItemsPanelTemplate&gt;\n        &lt;DataTemplate x:Key=\"Sudoku.CellTemplate\" DataType=\"{x:Type local:SudokuCell}\"&gt;\n            &lt;Border BorderBrush=\"SkyBlue\" BorderThickness=\"{Binding Border}\"\n                    Background=\"{Binding Background, ElementName=comboBox}\"&gt;\n                &lt;Border.Style&gt;\n                    &lt;Style&gt;\n                        &lt;Style.Triggers&gt;\n                            &lt;DataTrigger Binding=\"{Binding}\" Value=\"{x:Null}\"&gt;\n                                &lt;Setter Property=\"Border.Opacity\" Value=\"0\"\/&gt;\n                            &lt;\/DataTrigger&gt;\n                        &lt;\/Style.Triggers&gt;\n                    &lt;\/Style&gt;\n                &lt;\/Border.Style&gt;\n                &lt;ComboBox x:Name=\"comboBox\" ItemsSource=\"{Binding ValidValues, Source={StaticResource viewModel}}\"\n                          SelectedItem=\"{Binding Value}\"\n                          FontSize=\"20\" VerticalAlignment=\"Center\" HorizontalAlignment=\"Center\"\n                          BorderThickness=\"0\"\/&gt;\n                &lt;\/Border&gt;\n        &lt;\/DataTemplate&gt;\n    &lt;\/Window.Resources&gt;\n<\/code><\/pre>\n<pre><code>    &lt;ItemsControl ItemsSource=\"{Binding Cells, Source={StaticResource viewModel}}\"\n                  ItemTemplate=\"{DynamicResource Sudoku.CellTemplate}\"\n                  ItemsPanel=\"{DynamicResource Sudoku.Panel}\"\/&gt;\n<\/code><\/pre>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\"><img decoding=\"async\" src=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\" alt=\"enter image description here\"><\/a><\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">0<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Draw samurai sudoku grid on WPF <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] Example for demonstration. It is not as difficult as in the picture in the question. But it will not be a problem for you to supplement it. public class SudokuCell { public Thickness Border { get; } public int Value { get; set; } public int Row { get; } public int Column { &#8230; <a title=\"[Solved] Draw samurai sudoku grid on WPF\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/\" aria-label=\"More on [Solved] Draw samurai sudoku grid on WPF\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324,4145,4136,874],"class_list":["post-16231","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c","tag-desktop","tag-sudoku","tag-wpf"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] Draw samurai sudoku grid on WPF - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Draw samurai sudoku grid on WPF - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] Example for demonstration. It is not as difficult as in the picture in the question. But it will not be a problem for you to supplement it. public class SudokuCell { public Thickness Border { get; } public int Value { get; set; } public int Row { get; } public int Column { ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-14T14:21:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Draw samurai sudoku grid on WPF\",\"datePublished\":\"2022-10-14T14:21:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/\"},\"wordCount\":43,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\",\"keywords\":[\"c++\",\"desktop\",\"sudoku\",\"wpf\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/\",\"name\":\"[Solved] Draw samurai sudoku grid on WPF - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\",\"datePublished\":\"2022-10-14T14:21:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/Solved-Draw-samurai-sudoku-grid-on-WPF.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-draw-samurai-sudoku-grid-on-wpf\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Draw samurai sudoku grid on WPF\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Draw samurai sudoku grid on WPF - JassWeb","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:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Draw samurai sudoku grid on WPF - JassWeb","og_description":"[ad_1] Example for demonstration. It is not as difficult as in the picture in the question. But it will not be a problem for you to supplement it. public class SudokuCell { public Thickness Border { get; } public int Value { get; set; } public int Row { get; } public int Column { ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/","og_site_name":"JassWeb","article_published_time":"2022-10-14T14:21:03+00:00","og_image":[{"url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png","type":"","width":"","height":""}],"author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Draw samurai sudoku grid on WPF","datePublished":"2022-10-14T14:21:03+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/"},"wordCount":43,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png","keywords":["c++","desktop","sudoku","wpf"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/","url":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/","name":"[Solved] Draw samurai sudoku grid on WPF - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#primaryimage"},"image":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#primaryimage"},"thumbnailUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png","datePublished":"2022-10-14T14:21:03+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#primaryimage","url":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/uploads\/2022\/10\/Solved-Draw-samurai-sudoku-grid-on-WPF.png"},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-draw-samurai-sudoku-grid-on-wpf\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Draw samurai sudoku grid on WPF"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16231","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=16231"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16231\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=16231"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=16231"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=16231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}