using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfBieden
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void butn1_Click(object sender, RoutedEventArgs e)
{
{
//variabelen
string name = txtbox1.Text;
string txtbod = txtbox2.Text;
string bodtxt = txtbox1.Text;
int bod = Convert.ToInt32(txtbod);
int hoogstebieder = 0;
if (bod > hoogstebieder);
{
labeltext.Content = $" {name} heeft met {bod} het hoogste bod.";
hoogstebieder = bod;
}
else
{
labeltext.Content = "Gelieve een postief getal in te voeren.";
}
if (bod > hoogstebieder)
{
labeltext.Content = $" {name} heeft met {bod} het hoogste bod.";
}
else
{
labeltext.Content = $" {name} heeft met {bod} het hoogste bod.";
}
}
}
}
}