Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace Hvadharduskrevet
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void btnKnap_Click(object sender, EventArgs e)
- {
- string temp = txtInput.Text;
- int tal = int.Parse(temp);
- if (tal == 3)
- {
- lstOutput.Items.Add("Du har trykket på 3");
- }
- else if (tal ==4)
- {
- lstOutput.Items.Add("Du har trykket på 4");
- }
- else
- {
- lstOutput.Items.Add("Du har ikke skrevet 3 eller 4");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment