我刚注意到,我的xaml编辑器无法看到App.xaml中定义的样式。
<Application x:Class="MyApp.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Windows\MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Assets/Themes/ShinyBlue.xaml"/>
</ResourceDictionary.MergedDictionaries>
// this one gets a warning that's never used, though it is
<LinearGradientBrush x:Key="backgroundBrush" EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="{StaticResource NormalBrushGradient3}" Offset="0.1" />
<GradientStop Color="{StaticResource NormalBrushGradient1}" Offset="0.4" />
</LinearGradientBrush>
对这种风格的每次调用都有下划线,设计师都没有加载任何样式(一切都是背面和白色)。当我运行应用程序时,它看起来都很好 - 正在加载样式。
最近我将入口点更改为我的应用程序:
public partial class App : Application
{
[System.STAThreadAttribute()]
public static int Main(string[] args)
{
var dirsToCreate = new[]
{
Settings.Default.PhotosDirectory
};
foreach (var dir in dirsToCreate)
{
if (!Directory.Exists(dir))
Directory.CreateDirectory(dir);
}
App app = new App();
app.InitializeComponent();
app.Run();
return 0;
}
我怀疑,但无法确定此更改的入口点可能与此有关(我将MainWinow的构建操作更改为'Page')。
有什么想法,以及如何解决这个问题?
答案 0 :(得分:0)
由于您更改了输入点,您是否已将app.xaml中的“StartupUri”属性更改为要启动的新窗口?
app.xaml文件中的x:Class属性是什么?startupwindow.xaml文件中的x:Class属性是什么?
您是否尝试将样式引用为DynamicResource而不是StaticResource? DynamicResource不会在编译时加载样式,它会在运行时加载它们。编辑时,您不会在“设计”窗口中看到样式,但在运行应用程序时将应用样式。这可能不是解决这个问题的最佳方法,但我过去只是为了克服一些愚蠢的小障碍。就个人而言,我从不使用设计师窗口,我只是在XAML中编写我的UI,所以这对我来说不是一个问题。
尝试一下,如果其中任何一个适合您,请告诉我。