Form1.cs 1006 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. // This is the code for your desktop app.
  11. // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app.
  12. namespace SketchAssistant
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20. private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  21. {
  22. // Click on the link below to continue learning how to build a desktop app using WinForms!
  23. System.Diagnostics.Process.Start("http://aka.ms/dotnet-get-started-desktop");
  24. }
  25. private void button1_Click(object sender, EventArgs e)
  26. {
  27. MessageBox.Show("Thanks!");
  28. }
  29. private void Form1_Load(object sender, EventArgs e)
  30. {
  31. }
  32. }
  33. }