App.xaml
あなたの質問に興味をそそられたので、私は新しいプロジェクトを作成し、App.xaml.cs
ファイルを吹き飛ばしました。次に、プロジェクトにウィンドウを追加し、ファイルプロパティエディターのビルドアクションをApplicationDefinition
からPage
に変更し、次にファイルxaml
とxaml.cs
ファイルをアプリケーションクラスに変更しました。その後、正しく動作しました。
すなわち
App.xaml
<Application x:Class="WpfApplication1.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>
App.xaml.cs
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
namespace WpfApplication1
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}