我有一个 WPF 应用程序,想默认先启动一个常规的 Windows 窗体。基本上,它将是一个选项面板。
编辑:为澄清起见,我希望 Windows 窗体是唯一自动打开的窗体。稍后我将展示 WPF 表单。
我尝试修改 App.xaml:
<Application x:Class="The_Name_Of_My.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Form1.cs">
<Application.Resources>
我收到一个错误:“找不到资源 'form1.cs'。” 当我应该在 WPF 中制作选项面板时,我是否只是在这里旋转我的轮子并试图做一些愚蠢的事情?