Comments
3 comments
-
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-2463 Thanks for reporting it! -
nick.maidment wrote: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-2463 Thanks for reporting it!
OK, thanks, I"ll post issues into new location (but actually put here a lot of issues...... ) -
Thanks a lot, I've just been working through them now but posting on the other forum will give us an idea if other people are having problems with this as well
(I imagine they are)
Add comment
Please sign in to leave a comment.
here is a short explanation of the issue:
1)Reflector (7.5.0.252) did this:
........
<ResourceDictionary>
<Style Style.TargetType="{x:Type ToolTip}">
.......
</Style>
</ResourceDictionary>
but thats not complete decoding!
Reason:
error MC3022: All objects added to an IDictionary must have a Key attribute or some other type of key associated with them. Line 67 Position 10.
Should be something like this:
<ResourceDictionary>
<Style x:Key="{x:Type ToolTip}" Style.TargetType="{x:Type ToolTip}">
.......
</Style>
</ResourceDictionary>
Does it make sense?
if so, please consider adding this into baml dedoder
Thanks