Advertisement
Guest User

menu.cs shitty half built stuff

a guest
Sep 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 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 matrixcalculator
  12. {
  13. public partial class Menu : Form
  14. {
  15. public Menu()
  16. {
  17. InitializeComponent();
  18. }
  19.  
  20. private void label1_Click(object sender, EventArgs e)
  21. {
  22. // something happened i don't know why but if it delete this it dies so
  23. }
  24.  
  25. // Define the UI classes (form, var name = new form function)
  26. DeterminantUI DeterminantUI = new DeterminantUI();
  27.  
  28. public void btnMenuDet_Click(object sender, EventArgs e)
  29. {
  30. Determinant();
  31. }
  32.  
  33. private void btnMenuMulti_Click(object sender, EventArgs e)
  34. {
  35.  
  36. }
  37.  
  38. public void Determinant() // public means that any class can access, void can fuck off
  39. {
  40. DeterminantUI.Show(); // Display DeterminantUI.cs form
  41.  
  42.  
  43. }
  44.  
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement