19 lines
326 B
C#
19 lines
326 B
C#
using Microsoft.UI.Xaml;
|
|
|
|
|
|
namespace Wino
|
|
{
|
|
public sealed partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void myButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
myButton.Content = "Clicked";
|
|
}
|
|
}
|
|
}
|