WeeXnesSuite/ExamplePlugin/ExampleUi.xaml.cs
2025-04-09 13:30:21 +02:00

18 lines
No EOL
354 B
C#

using System;
using System.Windows;
using System.Windows.Controls;
public partial class ExampleUi : Page
{
private int counter = 0;
public ExampleUi()
{
InitializeComponent();
}
private void ExampleUi_OnLoaded(object sender, RoutedEventArgs e)
{
counter++;
TestLabel.Text = counter.ToString();
}
}