Since installation of Visual Studion 2015 CTP6 RangeSlider gives as runtime error:
{"'Initialization of 'Xceed.Wpf.Toolkit.RangeSlider' threw an exception.' Line number '87' and line position '189'."}
{pack://application:,,,/Coolblue.Purchasing.CompetitorPricing;component/views/elasticitysettingsview.xaml}
{"Initialization of 'Xceed.Wpf.Toolkit.Core.VersionResourceDictionary' threw an exception."}
{"Cannot locate resource 'xceed.wpf.toolkit;v2.3.0.0;themes/xceed.wpf.toolkit;v2.3.0.0;component/themes/aero/brushes_normalcolor.xaml'."}
This did not happen before in Visual Studio 2015 Preview.
Dit something change in VS2015 CTP6 that broke this?
Thanks in Advance for any answers,
Antoni Dol
Comments: ** Comment from web user: BoucherS **
{"'Initialization of 'Xceed.Wpf.Toolkit.RangeSlider' threw an exception.' Line number '87' and line position '189'."}
{pack://application:,,,/Coolblue.Purchasing.CompetitorPricing;component/views/elasticitysettingsview.xaml}
{"Initialization of 'Xceed.Wpf.Toolkit.Core.VersionResourceDictionary' threw an exception."}
{"Cannot locate resource 'xceed.wpf.toolkit;v2.3.0.0;themes/xceed.wpf.toolkit;v2.3.0.0;component/themes/aero/brushes_normalcolor.xaml'."}
This did not happen before in Visual Studio 2015 Preview.
Dit something change in VS2015 CTP6 that broke this?
Thanks in Advance for any answers,
Antoni Dol
Comments: ** Comment from web user: BoucherS **
Hi,
Go in file "Xceed.Wpf.Toolkit/Core/VersionResourceDictionary.cs"
In method "ISupportInitialize.EndInit()"
Replace :
```
string uriStr = string.Format( @"{0};v{1};component/{2}", this.AssemblyName, _XceedVersionInfo.Version, this.SourcePath );
this.Source = new Uri( uriStr, UriKind.Relative );
```
with :
```
string uriStr = string.Format( @"pack://application:,,,/{0};v{1};component/{2}", this.AssemblyName, _XceedVersionInfo.Version, this.SourcePath );
this.Source = new Uri( uriStr, UriKind.Absolute );
```
and see if you still ahev the exception.