Hey guys...

All I am trying to do is get my dumb button I created in Blend 4 work on a _Click event. I have the C# equivalent code, but I can't get it converted correctly...Here are both codes...I am using VS2010 just in case you want to know..

C# Code Code:
  1. namespace TestButton1
  2. {
  3.     public partial class MainWindow:Window
  4.     {
  5.         public Page ( )
  6.         {
  7.             //Required to initialize variables
  8.             InitializeComponent ();
  9.         }
  10.     }
  11. }

VB Code Code:
  1. Namespace TestButton1
  2.    
  3.     Public Partial Class MainWindow
  4.         Inherits Window
  5.  
  6.         Public Sub New ()
  7.         'This next line does not work and I don't know what is wrong...
  8.         Me.InitializeComponent ()
  9.        
  10.         End Sub
  11.  
  12. End NameSpace

As soon as I can get this very first initialization down, I know I can get the rest of the events written fine.

Thanks guys.