Dev machine: Windows 7 64bit desktop. Visual Studio 2008 Professional.
Not sure what the cause is but the behavior is this: I can develop in VS on this desktop just fine. Have done some class libraries and windows forms with no issues from what I have seen. However in WPF project I cannot get any content to render in window when I run the project. A simple hello world in wpf like this:
<Window x:Class="test"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Hello" Height="300" Width="300">
<Grid>
<TextBlock Text="Hello World" />
</Grid>
Renders an empty window with a white background. Also, I have noticed that if I resize the window the white area does not resize correctly with the window. Is this a graphics driver issue or a framework install issue or??
Thanks for any thoughts.