<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Namespace problems in XAML in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090296#M7050</link>
    <description>&lt;P&gt;In my project I am having a dockpanel with two panes inside. All views give me errors, still the project can be built...&lt;/P&gt;&lt;P&gt;Here the structure of my project:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Stepper&lt;/U&gt;&lt;/P&gt;&lt;P&gt;|_ Commands&lt;/P&gt;&lt;P&gt;|_ Models&lt;/P&gt;&lt;P&gt;|_ ViewModels&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderControlViewModel.cs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderRulesViewModel.cs&lt;/P&gt;&lt;P&gt;|_ Views&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderControlView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderRulesView.xaml&lt;/P&gt;&lt;P&gt;_ StepperDockpane.xaml&lt;/P&gt;&lt;P&gt;_ StepperDockpaneViewModel.cs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here the content of StepperDockpane.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.StepperDockpaneView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    
             xmlns:ui="clr-namespace:Stepper"
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:controls="clr-namespace:ArcGIS.Desktop.Framework.Controls;assembly=ArcGIS.Desktop.Framework"                       
             xmlns:viewModel="clr-namespace:Stepper.ViewModels"
             xmlns:view="clr-namespace:Stepper.Views"
             mc:Ignorable="d" 
             d:DesignHeight="600" d:DesignWidth="300"
             d:DataContext="{Binding Path=ui.StepperDockpaneViewModel}"&amp;gt;
    &amp;lt;UserControl.Resources&amp;gt;
        &amp;lt;ResourceDictionary&amp;gt;
            &amp;lt;ResourceDictionary.MergedDictionaries&amp;gt;
                &amp;lt;extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/&amp;gt;
            &amp;lt;/ResourceDictionary.MergedDictionaries&amp;gt;
            &amp;lt;DataTemplate DataType="{x:Type viewModel:PaneHeaderRulesViewModel}"&amp;gt;
                &amp;lt;view:PaneHeaderRulesView /&amp;gt;
            &amp;lt;/DataTemplate&amp;gt;
            &amp;lt;DataTemplate DataType="{x:Type viewModel:PaneHeaderControlViewModel}"&amp;gt;
                &amp;lt;view:PaneHeaderControlView /&amp;gt;
            &amp;lt;/DataTemplate&amp;gt;
        &amp;lt;/ResourceDictionary&amp;gt;
    &amp;lt;/UserControl.Resources&amp;gt;
    &amp;lt;Grid&amp;gt;
        &amp;lt;Grid.RowDefinitions&amp;gt;
			&amp;lt;RowDefinition Height="Auto"/&amp;gt;
			&amp;lt;RowDefinition Height="*"/&amp;gt;
        &amp;lt;/Grid.RowDefinitions&amp;gt;
        &amp;lt;DockPanel Grid.Row="0" LastChildFill="False" KeyboardNavigation.TabNavigation="Local" Height="30" Margin="5,0"&amp;gt;
            &amp;lt;ListBox x:Name="primaryNavigator" DockPanel.Dock="Left"
                     Style="{DynamicResource Esri_ListBoxPanelIndicator}"
                     ItemsSource="{Binding PrimaryMenuList}"
                     SelectedIndex="{Binding SelectedPanelHeaderIndex, Mode=TwoWay}"
                     IsSynchronizedWithCurrentItem="True" /&amp;gt;
            &amp;lt;controls:BurgerButton DockPanel.Dock="Right"
                                   ToolTip="{Binding BurgerButtonTooltip}"
                                   PopupMenu="{Binding BurgerButtonMenu}"/&amp;gt;
        &amp;lt;/DockPanel&amp;gt;		
        &amp;lt;ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"&amp;gt;
            &amp;lt;StackPanel&amp;gt;
                &amp;lt;ContentPresenter Content="{Binding CurrentPage}"&amp;gt;&amp;lt;/ContentPresenter&amp;gt;
            &amp;lt;/StackPanel&amp;gt;
        &amp;lt;/ScrollViewer&amp;gt;
    &amp;lt;/Grid&amp;gt;
&amp;lt;/UserControl&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 17 returns:&lt;/P&gt;&lt;P&gt;Error: Could not load file or assembly 'ArcGIS.Desktop.Framework, Culture=neutral' or one of its dependencies. The referenced file could not be found.&lt;/P&gt;&lt;P&gt;Line 34 returns:&lt;/P&gt;&lt;P&gt;Warning: The resource "Esri_ListBoxPanelIndicator" could not be resolved.&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;Here the relevant content of PaneHeaderRulesView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.Views.PaneHeaderRulesView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:ui="clr-namespace:Stepper.Views"
             xmlns:i="http://schemas.microsoft.com/xaml/behaviors" 
             xmlns:viewmodels="clr-namespace:Stepper.ViewModels" 
             d:DataContext="{d:DesignInstance Type=viewmodels:PaneHeaderRulesViewModel}"
             mc:Ignorable="d" 
             d:DesignHeight="520" d:DesignWidth="300"&amp;gt;
     &amp;lt;UserControl.Resources&amp;gt;
        &amp;lt;ResourceDictionary&amp;gt;
            &amp;lt;ResourceDictionary.MergedDictionaries&amp;gt;
                &amp;lt;extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/&amp;gt;
            &amp;lt;/ResourceDictionary.MergedDictionaries&amp;gt;
        &amp;lt;/ResourceDictionary&amp;gt;
    &amp;lt;/UserControl.Resources&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 16 returns:&lt;/P&gt;&lt;P&gt;Error: Could not load file or assembly 'ArcGIS.Desktop.Framework, Culture=neutral' or one of its dependencies. The referenced file could not be found.&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;Here the relevant content of PaneHeaderControlView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.Views.PaneHeaderControlView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:editing="clr-namespace:ArcGIS.Desktop.Editing;assembly=ArcGIS.Desktop.Editing"
             xmlns:ui="clr-namespace:Stepper.Views"
             xmlns:i="http://schemas.microsoft.com/xaml/behaviors" 
             xmlns:viewmodels="clr-namespace:Stepper.ViewModels" 
             d:DataContext="{d:DesignInstance Type=viewmodels:PaneHeaderControlViewModel}"
             mc:Ignorable="d" 
             d:DesignHeight="520" d:DesignWidth="300"&amp;gt;
.
.
.
                &amp;lt;editing:TableControl Grid.Row="2" x:Name="tableControl"
                                      AutomationProperties.AutomationId="_tableControl"
                                      HorizontalAlignment="Stretch"
                                      TableContent="{Binding Path=TableContent}"
                                      MinHeight="450"
                                      MaxHeight="500"
                                      RowContextMenu="{StaticResource StepperRowContextMenu}"
                                      SelectedRowContextMenu="{StaticResource StepperRowContextMenu}"
                                      ColumnContextMenu="{StaticResource StepperColumnContextMenu}"&amp;gt;
                    &amp;lt;i:Interaction.Triggers&amp;gt;
                        &amp;lt;i:EventTrigger EventName="MouseDoubleClick"&amp;gt;
                            &amp;lt;i:InvokeCommandAction Command="{Binding ZoomItemCommand}"/&amp;gt;
                        &amp;lt;/i:EventTrigger&amp;gt;
                        &amp;lt;i:EventTrigger EventName="SelectedRowsChanged"&amp;gt;
                            &amp;lt;i:InvokeCommandAction Command="{Binding GetSelectedRowCommand}"/&amp;gt;
                        &amp;lt;/i:EventTrigger&amp;gt;
                    &amp;lt;/i:Interaction.Triggers&amp;gt;
                &amp;lt;/editing:TableControl&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 17 returns:&lt;/P&gt;&lt;P&gt;Error: XDG0008 The name "TableControl" does not exist in the namespace "clr-namespace:ArcGIS.Desktop.Editing;assembly=ArcGIS.Desktop.Editing".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can clearly see in the Assembly Explorer of Visual Studio 2019 that ArcGIS.Desktop.Editing contains TableControl.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image 1.png" style="width: 305px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21141i9124AA94E9DE4BF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image 1.png" alt="Image 1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;On top of all this is every reference a la Style="{DynamicResource Esri_xxxx}" marked with a warning that the resource could not be resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Visual Studio version 16.11.1&lt;/P&gt;&lt;P&gt;.NET Framework version 4.8.03752&lt;/P&gt;&lt;P&gt;ArcGIS Pro SDK for .NET in version 2.8.0.29751&lt;/P&gt;&lt;P&gt;ArcGIS Pro SDK for .NET (Utilities) in version 2.8.0.29751&lt;/P&gt;&lt;P&gt;and the project has x64 as platform target.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Aug 2021 10:22:54 GMT</pubDate>
    <dc:creator>TomGeo</dc:creator>
    <dc:date>2021-08-19T10:22:54Z</dc:date>
    <item>
      <title>Namespace problems in XAML</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090296#M7050</link>
      <description>&lt;P&gt;In my project I am having a dockpanel with two panes inside. All views give me errors, still the project can be built...&lt;/P&gt;&lt;P&gt;Here the structure of my project:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Stepper&lt;/U&gt;&lt;/P&gt;&lt;P&gt;|_ Commands&lt;/P&gt;&lt;P&gt;|_ Models&lt;/P&gt;&lt;P&gt;|_ ViewModels&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderControlViewModel.cs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderRulesViewModel.cs&lt;/P&gt;&lt;P&gt;|_ Views&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderControlView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; |_ PaneHeaderRulesView.xaml&lt;/P&gt;&lt;P&gt;_ StepperDockpane.xaml&lt;/P&gt;&lt;P&gt;_ StepperDockpaneViewModel.cs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here the content of StepperDockpane.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.StepperDockpaneView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    
             xmlns:ui="clr-namespace:Stepper"
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:controls="clr-namespace:ArcGIS.Desktop.Framework.Controls;assembly=ArcGIS.Desktop.Framework"                       
             xmlns:viewModel="clr-namespace:Stepper.ViewModels"
             xmlns:view="clr-namespace:Stepper.Views"
             mc:Ignorable="d" 
             d:DesignHeight="600" d:DesignWidth="300"
             d:DataContext="{Binding Path=ui.StepperDockpaneViewModel}"&amp;gt;
    &amp;lt;UserControl.Resources&amp;gt;
        &amp;lt;ResourceDictionary&amp;gt;
            &amp;lt;ResourceDictionary.MergedDictionaries&amp;gt;
                &amp;lt;extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/&amp;gt;
            &amp;lt;/ResourceDictionary.MergedDictionaries&amp;gt;
            &amp;lt;DataTemplate DataType="{x:Type viewModel:PaneHeaderRulesViewModel}"&amp;gt;
                &amp;lt;view:PaneHeaderRulesView /&amp;gt;
            &amp;lt;/DataTemplate&amp;gt;
            &amp;lt;DataTemplate DataType="{x:Type viewModel:PaneHeaderControlViewModel}"&amp;gt;
                &amp;lt;view:PaneHeaderControlView /&amp;gt;
            &amp;lt;/DataTemplate&amp;gt;
        &amp;lt;/ResourceDictionary&amp;gt;
    &amp;lt;/UserControl.Resources&amp;gt;
    &amp;lt;Grid&amp;gt;
        &amp;lt;Grid.RowDefinitions&amp;gt;
			&amp;lt;RowDefinition Height="Auto"/&amp;gt;
			&amp;lt;RowDefinition Height="*"/&amp;gt;
        &amp;lt;/Grid.RowDefinitions&amp;gt;
        &amp;lt;DockPanel Grid.Row="0" LastChildFill="False" KeyboardNavigation.TabNavigation="Local" Height="30" Margin="5,0"&amp;gt;
            &amp;lt;ListBox x:Name="primaryNavigator" DockPanel.Dock="Left"
                     Style="{DynamicResource Esri_ListBoxPanelIndicator}"
                     ItemsSource="{Binding PrimaryMenuList}"
                     SelectedIndex="{Binding SelectedPanelHeaderIndex, Mode=TwoWay}"
                     IsSynchronizedWithCurrentItem="True" /&amp;gt;
            &amp;lt;controls:BurgerButton DockPanel.Dock="Right"
                                   ToolTip="{Binding BurgerButtonTooltip}"
                                   PopupMenu="{Binding BurgerButtonMenu}"/&amp;gt;
        &amp;lt;/DockPanel&amp;gt;		
        &amp;lt;ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"&amp;gt;
            &amp;lt;StackPanel&amp;gt;
                &amp;lt;ContentPresenter Content="{Binding CurrentPage}"&amp;gt;&amp;lt;/ContentPresenter&amp;gt;
            &amp;lt;/StackPanel&amp;gt;
        &amp;lt;/ScrollViewer&amp;gt;
    &amp;lt;/Grid&amp;gt;
&amp;lt;/UserControl&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 17 returns:&lt;/P&gt;&lt;P&gt;Error: Could not load file or assembly 'ArcGIS.Desktop.Framework, Culture=neutral' or one of its dependencies. The referenced file could not be found.&lt;/P&gt;&lt;P&gt;Line 34 returns:&lt;/P&gt;&lt;P&gt;Warning: The resource "Esri_ListBoxPanelIndicator" could not be resolved.&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;Here the relevant content of PaneHeaderRulesView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.Views.PaneHeaderRulesView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:ui="clr-namespace:Stepper.Views"
             xmlns:i="http://schemas.microsoft.com/xaml/behaviors" 
             xmlns:viewmodels="clr-namespace:Stepper.ViewModels" 
             d:DataContext="{d:DesignInstance Type=viewmodels:PaneHeaderRulesViewModel}"
             mc:Ignorable="d" 
             d:DesignHeight="520" d:DesignWidth="300"&amp;gt;
     &amp;lt;UserControl.Resources&amp;gt;
        &amp;lt;ResourceDictionary&amp;gt;
            &amp;lt;ResourceDictionary.MergedDictionaries&amp;gt;
                &amp;lt;extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/&amp;gt;
            &amp;lt;/ResourceDictionary.MergedDictionaries&amp;gt;
        &amp;lt;/ResourceDictionary&amp;gt;
    &amp;lt;/UserControl.Resources&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 16 returns:&lt;/P&gt;&lt;P&gt;Error: Could not load file or assembly 'ArcGIS.Desktop.Framework, Culture=neutral' or one of its dependencies. The referenced file could not be found.&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;Here the relevant content of PaneHeaderControlView.xaml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;UserControl x:Class="Stepper.Views.PaneHeaderControlView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
             xmlns:editing="clr-namespace:ArcGIS.Desktop.Editing;assembly=ArcGIS.Desktop.Editing"
             xmlns:ui="clr-namespace:Stepper.Views"
             xmlns:i="http://schemas.microsoft.com/xaml/behaviors" 
             xmlns:viewmodels="clr-namespace:Stepper.ViewModels" 
             d:DataContext="{d:DesignInstance Type=viewmodels:PaneHeaderControlViewModel}"
             mc:Ignorable="d" 
             d:DesignHeight="520" d:DesignWidth="300"&amp;gt;
.
.
.
                &amp;lt;editing:TableControl Grid.Row="2" x:Name="tableControl"
                                      AutomationProperties.AutomationId="_tableControl"
                                      HorizontalAlignment="Stretch"
                                      TableContent="{Binding Path=TableContent}"
                                      MinHeight="450"
                                      MaxHeight="500"
                                      RowContextMenu="{StaticResource StepperRowContextMenu}"
                                      SelectedRowContextMenu="{StaticResource StepperRowContextMenu}"
                                      ColumnContextMenu="{StaticResource StepperColumnContextMenu}"&amp;gt;
                    &amp;lt;i:Interaction.Triggers&amp;gt;
                        &amp;lt;i:EventTrigger EventName="MouseDoubleClick"&amp;gt;
                            &amp;lt;i:InvokeCommandAction Command="{Binding ZoomItemCommand}"/&amp;gt;
                        &amp;lt;/i:EventTrigger&amp;gt;
                        &amp;lt;i:EventTrigger EventName="SelectedRowsChanged"&amp;gt;
                            &amp;lt;i:InvokeCommandAction Command="{Binding GetSelectedRowCommand}"/&amp;gt;
                        &amp;lt;/i:EventTrigger&amp;gt;
                    &amp;lt;/i:Interaction.Triggers&amp;gt;
                &amp;lt;/editing:TableControl&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Line 17 returns:&lt;/P&gt;&lt;P&gt;Error: XDG0008 The name "TableControl" does not exist in the namespace "clr-namespace:ArcGIS.Desktop.Editing;assembly=ArcGIS.Desktop.Editing".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can clearly see in the Assembly Explorer of Visual Studio 2019 that ArcGIS.Desktop.Editing contains TableControl.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image 1.png" style="width: 305px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/21141i9124AA94E9DE4BF1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image 1.png" alt="Image 1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;------------------------------------&lt;/P&gt;&lt;P&gt;On top of all this is every reference a la Style="{DynamicResource Esri_xxxx}" marked with a warning that the resource could not be resolved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using Visual Studio version 16.11.1&lt;/P&gt;&lt;P&gt;.NET Framework version 4.8.03752&lt;/P&gt;&lt;P&gt;ArcGIS Pro SDK for .NET in version 2.8.0.29751&lt;/P&gt;&lt;P&gt;ArcGIS Pro SDK for .NET (Utilities) in version 2.8.0.29751&lt;/P&gt;&lt;P&gt;and the project has x64 as platform target.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 10:22:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090296#M7050</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-08-19T10:22:54Z</dc:date>
    </item>
    <item>
      <title>Re: Namespace problems in XAML</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090448#M7051</link>
      <description>&lt;P&gt;You should be able to compile/build and run your project despite these error messages.&amp;nbsp; The messages are coming from the 'XAML Designer' and if you close all XAML windows and rebuild you shouldn't get any messages.&amp;nbsp; The problem's cause was this:&lt;/P&gt;&lt;P&gt;In 2.8 all Pro assemblies were switched from mixed (x86 and x64) to 64 bit only. Unfortunately the XAML designer loader cannot load x64 bit assemblies. Here is a knowledge base article to that regard:&lt;A title="KB: Error: Could not load file or assembly " href="https://support.esri.com/en/Technical-Article/000025543" target="_self"&gt; Error: Could not load file or assembly 'ArcGIS.Desktop.Framework, Culture=neutral' or one of its dependencies. The system cannot find the file specified. (esri.com)&lt;/A&gt;&lt;BR /&gt;Hopefully the upcoming release of Visual Studio 2022 will fix this issue.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 16:23:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090448#M7051</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2021-08-19T16:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Namespace problems in XAML</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1093965#M7085</link>
      <description>&lt;P&gt;Closing the XAML files and rebuilding the solution helped. The issue remaining is line 17 in the PaneHeaderControlView.xaml&lt;/P&gt;&lt;P&gt;Error: XDG0008 The name "TableControl" does not exist in the namespace "clr-namespace:ArcGIS.Desktop.Editing;assembly=ArcGIS.Desktop.Editing".&lt;/P&gt;&lt;P&gt;I can clearly see in the Assembly Explorer of Visual Studio 2019 that ArcGIS.Desktop.Editing contains TableControl.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ThomasBecker1_0-1630413762515.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/22078i2D12561321EBD6C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ThomasBecker1_0-1630413762515.png" alt="ThomasBecker1_0-1630413762515.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Do you have a solution for that as well, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Aug 2021 12:43:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1093965#M7085</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-08-31T12:43:56Z</dc:date>
    </item>
  </channel>
</rss>

