private void WindowLoaded(object sender, RoutedEventArgs e) { m_Project.Create(); TextBlock wizardTitle = (TextBlock)this.GetTemplateChild("WizardTitle"); wizardTitle.Text = "Project Created."; TextBlock wizardText = (TextBlock)this.GetTemplateChild("WizardText"); wizardText.Text = "Your MS Build Project has been created and saved as: "; this.FileLink.Content = m_Project.Filename; this.ContentGrid.Visibility = Visibility.Visible; }