Note that there are some explanatory texts on larger screens.

plurals
  1. POUnidentified Resource by the URI
    text
    copied!<p>Making a WPF UI, have a Grid, some rows and textblocks. Heres the CS for the XAMl;</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Xaml; using Microsoft; using Microsoft.Expression; using Microsoft.Expression.Utility.ValueEditors; using IGotThis; namespace Project1 { /// &lt;summary&gt; /// Interaction logic for UserControl1.xaml /// &lt;/summary&gt; public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); } void Page_Loaded(object sender, RoutedEventArgs e) { String[,] outlookArray = IGotThis.PullOutLookMessages.getOutlookMessages(); this.OutLookInfo.DataContext = outlookArray; } } </code></pre> <p>IGotThis is another CS, which i believe to be unrelated. Whenever i debug the program, my WPF designer page gets replaced with this:</p> <blockquote> <p>Exception: The component 'Microsoft.Expression.Utility.ValueEditors.SplitComboBox' does not have a resource identified by the URI '/Microsoft.Expression.Utility;component/valueeditors/splitcombobox.xaml'.</p> <p>StackTrace</p> <p>at System.Windows.Application.LoadComponent(Object component, Uri resourceLocator) InnerException: None.</p> </blockquote> <p>I don't understand this error in the slightest. In my xaml code, <code>UserControl</code> is underlined with a blue worm withe the same error. </p> <p>Edit: Heres my XAML</p> <pre><code>&lt;UserControl x:Class="Project1.UserControl1" 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" mc:Ignorable="d" Width="528" Height="556.4"&gt; &lt;Grid x:Name="OutLookInfo"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" MinWidth="98"&gt;&lt;/ColumnDefinition&gt; &lt;ColumnDefinition&gt;&lt;/ColumnDefinition&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="69*"&gt;&lt;/RowDefinition&gt; &lt;RowDefinition Height="139*"&gt;&lt;/RowDefinition&gt; &lt;RowDefinition Height="93*"&gt;&lt;/RowDefinition&gt; &lt;RowDefinition Height="255*"&gt;&lt;/RowDefinition&gt; &lt;/Grid.RowDefinitions&gt; &lt;TextBlock Text="Sender Name" HorizontalAlignment="Left" Height="22" Margin="0,23,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="98" FontSize="16" TextAlignment="Center"/&gt; &lt;TextBlock Text="CC'd People" HorizontalAlignment="Left" Height="22" Margin="0,59,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="98" FontSize="16" TextAlignment="Center" Grid.Row="1"/&gt; &lt;TextBlock Text="Subject" HorizontalAlignment="Left" Height="22" Margin="0,39,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="98" FontSize="16" TextAlignment="Center" Grid.Row="2"/&gt; &lt;TextBlock Text="Body Text" HorizontalAlignment="Left" Height="22" Margin="0,112,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="98" FontSize="16" TextAlignment="Center" Grid.Row="3"/&gt; &lt;TextBlock Text ="{Binding outlookArray}" Grid.Column="1" HorizontalAlignment="Left" Height="235" Margin="10,10,0,0" Grid.Row="3" TextWrapping="Wrap" VerticalAlignment="Top" Width="410"/&gt; &lt;TextBlock Grid.Column="1" HorizontalAlignment="Left" Height="71" Margin="10,10,0,0" Grid.Row="2" TextWrapping="Wrap" VerticalAlignment="Top" Width="410" FontSize="18"/&gt; &lt;TextBlock Grid.Column="1" HorizontalAlignment="Left" Height="119" Margin="10,10,0,0" Grid.Row="1" TextWrapping="Wrap" VerticalAlignment="Top" Width="410" FontSize="18"/&gt; &lt;TextBlock Grid.Column="1" HorizontalAlignment="Left" Height="49" Margin="10,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="410" FontSize="18"/&gt; &lt;/Grid&gt; </code></pre> <p></p> <p>I'm not sure if this is related, but i just found this warning in my errors list:</p> <pre><code>Warning 1 There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "Microsoft.Expression.Utility, Version=5.0.30709.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=x86", "x86". This mismatch may cause runtime failures. Please consider changing the targeted processor architecture of your project through the Configuration Manager so as to align the processor architectures between your project and references, or take a dependency on references with a processor architecture that matches the targeted processor architecture of your project. IGotThis </code></pre> <p>I'm not sure what it means, or how to change the "targeted processor architecture"</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload