{"id":3175,"date":"2025-09-24T16:05:21","date_gmt":"2025-09-24T16:05:21","guid":{"rendered":"https:\/\/xceed.com\/?p=3175"},"modified":"2026-02-16T19:28:34","modified_gmt":"2026-02-16T19:28:34","slug":"step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/all\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/","title":{"rendered":"Step-by-Step: Building a High-Performance Master-Detail Grid in WPF (MVVM, Async Loads)"},"content":{"rendered":"<div data-elementor-type=\"wp-post\" data-elementor-id=\"3175\" class=\"elementor elementor-3175\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7541308e e-flex e-con-boxed e-con e-parent\" data-id=\"7541308e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6ee60b4 elementor-widget elementor-widget-text-editor\" data-id=\"6ee60b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>WPF master-detail grid performance is a challenge for many .NET developers. Expanding detail rows can slow down your app and ruin scroll fluidity. In this step-by-step guide, you\u2019ll learn how to combine MVVM, async commands, and aggressive virtualization to build a high-performance master-detail grid in WPF\u2014ensuring your UI stays fast, responsive, and easy to maintain.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-75544c51 elementor-widget elementor-widget-text-editor\" data-id=\"75544c51\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\n<h2 class=\"wp-block-heading\"><strong>Introducci\u00f3n<\/strong><\/h2>\n\n\n\n<p>Master\u2013detail UIs are notorious for slowing WPF applications down. Expanding detail rows often multiplies the visual tree, killing performance and scroll fluidity. This guide shows how to keep things snappy by combining <strong>MVVM<\/strong>, <strong>async commands<\/strong>y <strong>virtualization<\/strong> inside a WPF DataGrid.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What You\u2019ll Build<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Master grid of Orders<\/strong><\/li>\n\n\n\n<li>On expand \u2192 <strong>details load asynchronously<\/strong> (Items per Order)<\/li>\n\n\n\n<li><strong>Smooth scrolling<\/strong> with row virtualization and recycling<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Key XAML (trimmed for clarity)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">&lt;DataGrid ItemsSource=\"{Binding Orders}\"\n          EnableRowVirtualization=\"True\"\n          VirtualizingPanel.IsVirtualizing=\"True\"\n          VirtualizingPanel.VirtualizationMode=\"Recycling\"&gt;\n\n  &lt;DataGrid.RowDetailsTemplate&gt;\n    &lt;DataTemplate&gt;\n      &lt;ItemsControl ItemsSource=\"{Binding Items}\" \/&gt;\n    &lt;\/DataTemplate&gt;\n  &lt;\/DataGrid.RowDetailsTemplate&gt;\n&lt;\/DataGrid&gt;\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Virtualization flags<\/strong> keep scrolling smooth.<\/li>\n\n\n\n<li><strong>RowDetailsTemplate<\/strong> bound to a lightweight Items view.<\/li>\n\n\n\n<li><strong>Async command<\/strong> loads details without blocking UI.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">MVVM Pattern<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>ViewModel<\/strong> exposes ObservableCollection&lt;OrderVm>.<\/li>\n\n\n\n<li>Each OrderVm loads details with a Task-based async method.<\/li>\n\n\n\n<li><strong>Placeholder UI<\/strong> shown instantly while data fetch runs.<\/li>\n\n\n\n<li><strong>Cancellation tokens<\/strong> ensure stale loads are canceled during rapid navigation.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Performance Tips<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Keep detail templates <strong>lightweight<\/strong> (avoid heavy converters).<\/li>\n\n\n\n<li>Defer expensive bindings until IsVisible == true.<\/li>\n\n\n\n<li>Cache small detail views if reused frequently.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Developer Wins<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users perceive <strong>instant expand response<\/strong>.<\/li>\n\n\n\n<li>No UI thread stalls during slow I\/O.<\/li>\n\n\n\n<li>Clean <strong>MVVM separation<\/strong> \u2192 easier testing and maintenance.<\/li>\n\n\n\n<li><\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 Get the <strong>full working sample<\/strong> and test it against your own dataset.<\/p>\n\n\n\n<p>Comienza tu <strong>45-day trial<\/strong> here: <a href=\"https:\/\/xceed.com\/es\/ensayo\/\">https:\/\/xceed.com\/trial\/<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>FAQ<\/strong><\/h3>\n\n\n\n<p><strong>Q: Can I prefetch details for the next rows?<\/strong><\/p>\n\n\n\n<p>A: Yes. Prefetch adjacent rows on scroll idle, but keep requests cancellable.<\/p>\n\n\n\n<p><strong>Q: Will virtualization break details?<\/strong><\/p>\n\n\n\n<p>A: No. Details render on demand. Just keep templates lightweight.<\/p>\n\n\n\n<p><strong>Q: How do I theme the details consistently?<\/strong><\/p>\n\n\n\n<p>A: Apply <strong>Toolkit Plus themes<\/strong> or shared resource dictionaries.<\/p>\n\n\n\n<p><\/p>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>Master\u2013detail UIs are notorious performance traps in WPF. Expanding details multiplies the visual tree, tanks frame rate, and wrecks smooth scrolling. This guide shows how to keep it snappy with MVVM-driven state, async commands, and aggressive virtualization inside a WPF DataGrid.<\/p>","protected":false},"author":12,"featured_media":3176,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[70,109,118,83,72,115,82,122],"class_list":["post-3175","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","category-tutorials","tag-net","tag-net-components","tag-net-developer-tools","tag-partnership","tag-wpf","tag-wpf-data-grid","tag-xceed","tag-xceed-software"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WPF Master-Detail Grid Performance: Async, MVVM &amp; Virtualization Step-by-Step<\/title>\n<meta name=\"description\" content=\"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WPF Master-Detail Grid Performance: Async, MVVM &amp; Virtualization Step-by-Step\" \/>\n<meta property=\"og:description\" content=\"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-24T16:05:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-16T19:28:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christopher Radford\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Radford\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/\"},\"author\":{\"name\":\"Christopher Radford\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/79a6cce48b70a88e6701fef086d7c351\"},\"headline\":\"Step-by-Step: Building a High-Performance Master-Detail Grid in WPF (MVVM, Async Loads)\",\"datePublished\":\"2025-09-24T16:05:21+00:00\",\"dateModified\":\"2026-02-16T19:28:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/\"},\"wordCount\":311,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/5.png\",\"keywords\":[\".net\",\".NET components\",\".NET developer tools\",\"partnership\",\"WPF\",\"WPF data grid\",\"xceed\",\"Xceed Software\"],\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/\",\"name\":\"WPF Master-Detail Grid Performance: Async, MVVM & Virtualization Step-by-Step\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/5.png\",\"datePublished\":\"2025-09-24T16:05:21+00:00\",\"dateModified\":\"2026-02-16T19:28:34+00:00\",\"description\":\"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/5.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/5.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Step-by-Step: Building a High-Performance Master-Detail Grid in WPF (MVVM, Async Loads)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"name\":\"Xceed\",\"description\":\"Provides tools for .NET, Windows Forms, WPF, Silverlight, and ASP.NET developers to create better applications.\",\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/xceed.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\",\"name\":\"Xceed\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cropped-xceed-logo.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cropped-xceed-logo.png\",\"width\":609,\"height\":150,\"caption\":\"Xceed\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/79a6cce48b70a88e6701fef086d7c351\",\"name\":\"Christopher Radford\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g\",\"caption\":\"Christopher Radford\"},\"sameAs\":[\"http:\\\/\\\/www.localhost:10003\"],\"url\":\"https:\\\/\\\/xceed.com\\\/es\\\/blog\\\/author\\\/radfordc\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WPF Master-Detail Grid Performance: Async, MVVM & Virtualization Step-by-Step","description":"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.","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:\/\/xceed.com\/es\/blog\/tutoriales\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/","og_locale":"es_MX","og_type":"article","og_title":"WPF Master-Detail Grid Performance: Async, MVVM & Virtualization Step-by-Step","og_description":"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/","og_site_name":"Xceed","article_published_time":"2025-09-24T16:05:21+00:00","article_modified_time":"2026-02-16T19:28:34+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png","type":"image\/png"}],"author":"Christopher Radford","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Christopher Radford","Est. reading time":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/"},"author":{"name":"Christopher Radford","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/79a6cce48b70a88e6701fef086d7c351"},"headline":"Step-by-Step: Building a High-Performance Master-Detail Grid in WPF (MVVM, Async Loads)","datePublished":"2025-09-24T16:05:21+00:00","dateModified":"2026-02-16T19:28:34+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/"},"wordCount":311,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png","keywords":[".net",".NET components",".NET developer tools","partnership","WPF","WPF data grid","xceed","Xceed Software"],"articleSection":["All","Tutorials"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/","url":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/","name":"WPF Master-Detail Grid Performance: Async, MVVM & Virtualization Step-by-Step","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png","datePublished":"2025-09-24T16:05:21+00:00","dateModified":"2026-02-16T19:28:34+00:00","description":"Boost WPF master-detail grid performance with async loads, MVVM, and virtualization. Follow this step-by-step guide for smooth, high-performance UIs in .NET.","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2025\/09\/5.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/step-by-step-building-a-high-performance-master-detail-grid-in-wpf-mvvm-async-loads\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Step-by-Step: Building a High-Performance Master-Detail Grid in WPF (MVVM, Async Loads)"}]},{"@type":"WebSite","@id":"https:\/\/xceed.com\/fr\/#website","url":"https:\/\/xceed.com\/fr\/","name":"Xceed","description":"Proporciona herramientas para que los desarrolladores de .NET, Windows Forms, WPF, Silverlight y ASP.NET puedan crear mejores aplicaciones.","publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xceed.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/xceed.com\/fr\/#organization","name":"Xceed","url":"https:\/\/xceed.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/04\/cropped-xceed-logo.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/04\/cropped-xceed-logo.png","width":609,"height":150,"caption":"Xceed"},"image":{"@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/79a6cce48b70a88e6701fef086d7c351","name":"Christopher Radford","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/646a50aec7dd7187eab0ace3be81c465cdf54ce89b57357657f254b7cb1b996c?s=96&d=mm&r=g","caption":"Christopher Radford"},"sameAs":["http:\/\/www.localhost:10003"],"url":"https:\/\/xceed.com\/es\/blog\/author\/radfordc\/"}]}},"_links":{"self":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/3175","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/comments?post=3175"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/3175\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media\/3176"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media?parent=3175"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=3175"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=3175"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}