在WPF开发中,App.xaml文件主要用于定义和配置应用程序级的资源和行为,同时也是程序的入口点
在以下代码中,重点需要关注StartupUri属性,其规定了程序启动时,第一个调用的界面。
xaml 代码:<Application x:Class="EpicInformation.App" <!-- Class属性规定了类名称,xaml和类名必须一致 -->
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:EpicInformation"
<!-- 程序启动时,调用并显示MainWindow.xaml的内容 -->
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>