Comments
1 comment
-
Sorry for a delay in getting back to you. We don't usually check these forums, using http://forums.reflector.net/ instead these days.
I've logged this bug under reference RP-2467 Thanks for reporting it
Add comment
Please sign in to leave a comment.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
15
</Double>
<Double x:Key="{x:Static SystemParameters.HorizontalScrollBarHeightKey}" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
15
</Double>
.........
I guess it should be:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<sys:Double x:Key="{x:Static SystemParameters.VerticalScrollBarWidthKey}" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
15
</sys:Double>
<sys:Double x:Key="{x:Static SystemParameters.HorizontalScrollBarHeightKey}" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
15
</sys:Double>
Otherwise Double type is not recognized.