C'est très étrange.
J'ai un fichier XAML qui ressemble à ce qui suit ...
<Window
x:Name="window"
x:Class="ix.Production.Title"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Title" Height="768" Width="1024"
Loaded="window_Loaded">
<Window.Resources>
etc...
Et mon code ci-contre ressemble à ce qui suit ...
using System;
using System.Windows;
using System.Windows.Media.Animation;
using System.Threading;
namespace ix.Production
{
public partial class Title : Window
{
public Title()
{
InitializeComponent();
}
....
Ce code refuse de compiler car VS.NET insiste sur le fait que InitializeComponent "n'existe pas dans le contexte actuel".
Des idées?