Advertisement
AalborgHTX

Brug af integer variabel

Dec 15th, 2020
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.65 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace WindowsFormsApp9
  12. {
  13.     public partial class Form1 : Form
  14.     {
  15.         int sum = 0;
  16.         public Form1()
  17.         {
  18.             InitializeComponent();
  19.         }
  20.  
  21.         private void btnTælOp_Click(object sender, EventArgs e)
  22.         {
  23.             sum = sum + 1;
  24.         }
  25.  
  26.         private void btnUdskriv_Click(object sender, EventArgs e)
  27.         {
  28.             lblUd.Text = sum.ToString();
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement