簡體   English   中英

WPF:安裝在XP上的WPF應用程序中的XamlParseException

[英]WPF : XamlParseException in WPF application when installed on XP

我有一個WPF應用程序,可以在Vista / 7上完美運行,但是在Windows XP上,它會出現System.Windows.Markup.XamlParse錯誤。

我將Visual Studio 2010與.NET 4.0,Telerik Q2 2011控件和DevExpress Control 2011一起使用。

有關異常的詳細信息:

Application: CVServer.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.Windows.Markup.XamlParseException
Stack:
at System.Windows.Markup.XamlReader.RewrapException(System.Exception,    System.Xaml.IXamlLineInfo, System.Uri)
at System.Windows.Markup.WpfXamlLoader.Load(System.Xaml.XamlReader, System.Xaml.IXamlObjectWriterFactory, Boolean, System.Object, System.Xaml.XamlObjectWriterSettings, System.Uri)
at System.Windows.Markup.WpfXamlLoader.LoadBaml(System.Xaml.XamlReader, Boolean, System.Object, System.Xaml.Permissions.XamlAccessLevel, System.Uri)
at System.Windows.Markup.XamlReader.LoadBaml(System.IO.Stream, System.Windows.Markup.ParserContext, System.Object, Boolean)
at System.Windows.Application.LoadBamlStreamWithSyncInfo(System.IO.Stream, System.Windows.Markup.ParserContext)
at System.Windows.Application.LoadComponent(System.Uri, Boolean)
at System.Windows.Application.DoStartup()
at System.Windows.Application.<.ctor>b__1(System.Object)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(System.Object)
at System.Threading.ExecutionContext.runTryCode(System.Object)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode, CleanupCode, System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
at System.Windows.Threading.Dispatcher.InvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(System.Windows.Interop.MSG ByRef)
at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
at System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame)
at System.Windows.Threading.Dispatcher.Run()
at System.Windows.Application.RunDispatcher(System.Object)
at System.Windows.Application.RunInternal(System.Windows.Window)
at System.Windows.Application.Run(System.Windows.Window)
at System.Windows.Application.Run()
at Procesta.CvServer.App.Main() 

更新1:

我正在從靜態資源文件中應用樣式

更新2:

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="clr-namespace:System;assembly=mscorlib">
<!-- Resource dictionary entries should be defined here. -->
<RadialGradientBrush x:Key="Background" GradientOrigin="-0.01,1.01" RadiusY="0.52">
    <GradientStop Color="#FF62BAFB"/>
    <GradientStop Color="#FF0070DA" Offset="0.479"/>
    <GradientStop Color="#FF00499F" Offset="1"/>
</RadialGradientBrush>
<FontFamily x:Key="ButtonFontFamily">Segoe UI</FontFamily>

<SolidColorBrush x:Key="TextBlockForeground" Color="Black"/>
<System:Double x:Key="ButtonFontSize">13.333</System:Double>
<System:Double x:Key="TextFontSize">14.667</System:Double>
<LinearGradientBrush x:Key="TextBoxBackground" EndPoint="0.5,1" StartPoint="0.5,0">
    <GradientStop Color="#FFD0D8E8" Offset="0.006"/>
    <GradientStop Color="#FFE5E9F1" Offset="0.124"/>
    <GradientStop Color="#FFFEFEFE" Offset="0.972"/>
</LinearGradientBrush>
<SolidColorBrush x:Key="ImageButtonForeground" Color="Black"/>
<SolidColorBrush x:Key="ImageButtonToolTipBorder" Color="#FFA30909"/>
<SolidColorBrush x:Key="ImageButtonToolTipBackground" Color="#A18C8C93"/>
<System:Double x:Key="ImageButtonFontSize">16</System:Double>
<FontFamily x:Key="ImageButtonFontFamily">Adobe Kaiti Std R</FontFamily>    
</ResourceDictionary>

像這樣應用那些資源

Background="{DynamicResource Background}"

可能的問題可能是Segoe UI字體的使用。 XP中未安裝該字體。

<FontFamily x:Key="ButtonFontFamily">Segoe UI</FontFamily>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM