我为singleInstance应用程序创建了一些逻辑,我必须使用自己的入口点(不是App.xaml)来实现Application。我在App.xaml中有一些样式现在无法正常工作。在我的情况下,如何将App.xaml中的ResourceDictionaries用于整个项目?
我的管理应用程序启动课程
public class SingleInstanceManager : WindowsFormsApplicationBase
{
App app;
public SingleInstanceManager()
{
this.IsSingleInstance = true;
}
protected override bool OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e)
{
try
{
// First time app is launched
app = new App();
App.Current.Properties["rcID"] = e.CommandLine;
//IntroLibrary.OpenDocumentFromNotify();
app.Run();
return false;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return false;
}
}
protected override void OnStartupNextInstance(StartupNextInstanceEventArgs eventArgs)
{
// Subsequent launches
base.OnStartupNextInstance(eventArgs);
Intro win = (Intro)app.MainWindow;
if (eventArgs != null)
{
App.Current.Properties["rcID"] = eventArgs.CommandLine[0];
}
IntroLibrary.OpenDocumentFromNotify();
app.Activate();
}
}
和我自己的入口点:
public class EntryPoint
{
[STAThread]
public static void Main(string[] args)
{
SingleInstanceManager manager = new SingleInstanceManager();
manager.Run(args);
}
}
我的App.Xaml代码背后:
public partial class App : Application
{
protected override void OnStartup(System.Windows.StartupEventArgs e)
{
base.OnStartup(e);
// Create and show the application's main window
Intro window = new Intro();
window.Show();
}
public void Activate()
{
// Reactivate application's main window
this.MainWindow.Activate();
}
}
我的App.xaml有一些代码,它们描述了无法正常工作的ResourceDictionaries。为什么呢?
答案 0 :(得分:2)
我找到了解决这个问题的方法。我创建了新的资源字典并将所有其他资源粘贴到这个新字典中:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="themes/ShinyBlue.xaml" />
<ResourceDictionary Source="themes/Anim.xaml" />
<ResourceDictionary Source="themes/Generic.xaml" />
<ResourceDictionary Source="themes/CustomStyles.xaml" />
<ResourceDictionary Source="themes/Resource.xaml" />
<ResourceDictionary Source="themes/CustomWindowChrome.xaml" />
</ResourceDictionary.MergedDictionaries>
然后只编辑了一下我的App.cs
public partial class App : Application
{
protected override void OnStartup(System.Windows.StartupEventArgs e)
{
base.OnStartup(e);
ResourceDictionary rd = new ResourceDictionary() { Source = new Uri("CommonStyle.xaml",UriKind.RelativeOrAbsolute) };
this.Resources = rd;
// Create and show the application's main window
Intro window = new Intro();
window.Show();
}
public void Activate()
{
// Reactivate application's main window
this.MainWindow.Activate();
}
}
我希望这个解决方案可以帮助某人)))