I'm new to programming and I was able to do this code with help, but an error is occurring. follow image.
public sealed partial class MainPage : Page
{
private MySqlConnection _connection;
DispatcherTimer mytimer = new DispatcherTimer();
int currentcout = 0;
public MainPage()
{
this.InitializeComponent();
mytimer.Interval = new TimeSpan(0, 0, 0, 1, 0);
mytimer.Tick += new EventHandler(mytimer_Tick);
}
private void mytimer_Tick(object sender, EventArgs e)
{
}
}
Thereisstillanerror,evenwithchangesthathavebeenmadebyyourcolleaguebefore.