This is not really a problem, but it is still something I would like to know the answer to. When setting the Visibility property of elements in my design using the codebehind, the Intellisense in Visual Studio 2013 gives me the options of Xaml.Visibility.Collapsed
or Xaml.Visibility.Visible. These are, as we know, the two options, but why does it try to make us include the Xaml namespace? Regardless of whether Windows.UI.Xaml is included in the imported namespaces, all that is necessary is Visibility.Collapsed
or Visibility.Visible, so I usually remove the Xaml. from my code to keep it as short as possible, but this is extra editing that I think Visual Studio 2013 should be doing for us. Why does it do this, and is there a fix or workaround for it? Thanks.
Nathan Sokalski njsokalski@hotmail.com http://www.nathansokalski.com/