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:
namespace TestButton1 { public partial class MainWindow:Window { public Page ( ) { //Required to initialize variables InitializeComponent (); } } }
VB Code Code:
Namespace TestButton1 Public Partial Class MainWindow Inherits Window Public Sub New () 'This next line does not work and I don't know what is wrong... Me.InitializeComponent () End Sub 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.




Reply With Quote