Advertisement
AalborgHTX

Mit andet form program

Nov 24th, 2020
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System.Drawing;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6.  
  7. namespace Min_andet_form_program
  8. {
  9.     public partial class Form1 : Form
  10.     {
  11.         public Form1()
  12.         {
  13.             InitializeComponent();
  14.         }
  15.  
  16.         private void btnKnap_Click(object sender, EventArgs e)
  17.         {
  18.             MessageBox.Show(txtBoks1.Text, txtBoks2.Text, MessageBoxButtons.YesNoCancel, MessageBoxIcon.Error);
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement