Hi all,
I have a WPF application compiled in VS2008 as 32bit app with .net 3.5 as target framework.
In the meanwhile the same application has been migrated to be compiled in VS2010 as 64bit app with the .net 4.0 as target framework.
Now if i run the 64bit application and then i run the 32bit application i got the following results:
-the 64bit version correctly work.
-the 32bit version runs, but I can't work with it because, many features are compromised by the wrong behavior of some control.
I.E. I have a toggle button with a text content that should be not visible but it is visible without content:
<ToggleButton Visibility="{Binding OpenButtonVisibility}"
It seems that Binding doesn't work.
My O.S. is Windows 7 64 bit.
Note: at the moment I don't have a VS2008 license to debug the old application.
Mr.Perelli