Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
538 B

using System;
using System.Windows;
namespace MyCompanyName.MyProjectName;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private readonly HelloWorldService _helloWorldService;
public MainWindow(HelloWorldService helloWorldService)
{
_helloWorldService = helloWorldService;
InitializeComponent();
}
protected override void OnContentRendered(EventArgs e)
{
HelloLabel.Content = _helloWorldService.SayHello();
}
}