无法在 VS 2015 上使用 WpfToolkit
can not use WpfToolkit on VS 2015
我有一个在 .NET 4.0 上工作的 WPF 项目,我开始使用 Visual Studio 2015
但是我遇到了 wpf 工具包无法使用的问题,所以我得到了
System.Windows.Markup.XamlParseException
示例:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication1"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<xctk:TimePicker />
</Grid>
</Window>
从 Xceed Extended WPF Toolkit Plus
New version 2.8
的下一个 link 最后一个 "feature" 检查
http://xceed.com/pages/topmenu/downloads/updates.aspx?periodcode=lb
For themes different than Windows 8, the exception of type
"Initialization of 'Xceed.Wpf.Toolkit.XXX' will no longer be thrown in
Visual Studio 2015. This affects all controls of the toolkit.
您需要将工具包更新到最新版本
我有一个在 .NET 4.0 上工作的 WPF 项目,我开始使用 Visual Studio 2015
但是我遇到了 wpf 工具包无法使用的问题,所以我得到了
System.Windows.Markup.XamlParseException
示例:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication1"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<xctk:TimePicker />
</Grid>
</Window>
从 Xceed Extended WPF Toolkit Plus
New version 2.8
http://xceed.com/pages/topmenu/downloads/updates.aspx?periodcode=lb
For themes different than Windows 8, the exception of type "Initialization of 'Xceed.Wpf.Toolkit.XXX' will no longer be thrown in Visual Studio 2015. This affects all controls of the toolkit.
您需要将工具包更新到最新版本