私は複数のフォームを使用しているWPFアプリケーションを使用しています。 MainWindow.xaml
として知られているアプリケーションを起動すると開くメインフォームが1つあります。このフォームには、ユーザーオプションに応じて開かれる複数のフォームがあります。書式はStartClassWindow.xaml
です。現在私はこのフォームに取り組んでいるので、MainWindow.xaml
の代わりに直接開始したいと思っています。エラー:タイプに一致するコンストラクタが見つかりません
<Application x:Class="Class.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
DispatcherUnhandledException="Application_DispatcherUnhandledException"
StartupUri="StartClassWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>
しかし、その後、それは以下のようなエラーを与え始め:だから私はapp.xaml startupuri
を変更これを行うには、パラメータを追加する必要があります
namespace Class
{
public partial class StartClassWindow : System.Windows.Window
{
public StartClassWindow(string classData)
{
InitializeComponent();
className = classData;
function();
}
//rest of the code.
}
}