整合自定义控件
This commit is contained in:
@@ -2,8 +2,12 @@
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
|
||||
using NeuWPF;
|
||||
using NeuWPF.Controls;
|
||||
|
||||
namespace NeuWPFTest
|
||||
{
|
||||
@@ -12,20 +16,25 @@ namespace NeuWPFTest
|
||||
/// </summary>
|
||||
public partial class App : Application
|
||||
{
|
||||
protected override void OnStartup(StartupEventArgs e)
|
||||
{
|
||||
base.OnStartup(e);
|
||||
//Splash.ShowAsync("pack://application:,,,/NeuWPFTest;component/Resources/Images/ImageTest.png");
|
||||
//MainWindow = new MainWindow();
|
||||
//Splash.CloseOnLoaded(MainWindow);
|
||||
//MainWindow.Show();
|
||||
|
||||
}
|
||||
//protected override void OnStartup(StartupEventArgs e)
|
||||
//{
|
||||
// base.OnStartup(e);
|
||||
|
||||
// // 在应用启动时,调用方法打印所有已加载的资源字典
|
||||
// Debug.WriteLine("==========================================================");
|
||||
// Debug.WriteLine(" Dumping All Loaded Application Resource Dictionaries... ");
|
||||
// Debug.WriteLine("==========================================================");
|
||||
|
||||
// // 从最顶层的 Application.Resources 开始遍历
|
||||
// DumpResourceDictionaries(Application.Current.Resources, 0);
|
||||
|
||||
// Debug.WriteLine("====================== End of Dump =======================");
|
||||
|
||||
//}
|
||||
/// <summary>
|
||||
/// 递归打印资源字典及其合并的子字典。
|
||||
|
||||
Reference in New Issue
Block a user