Advertisement
JP_Bispo123

Untitled

Aug 29th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 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 View
  12. {
  13. public partial class MenuEstoque : Form
  14. {
  15. public MenuEstoque()
  16. {
  17. InitializeComponent();
  18. }
  19.  
  20. private void button7_Click(object sender, EventArgs e)
  21. {
  22. Application.Run(new Relatorio());
  23. }
  24.  
  25. private void button1_Click(object sender, EventArgs e)
  26. {
  27. CadastrarItem menu = new CadastrarItem();
  28. menu.Show();
  29. this.Visible = false;
  30.  
  31. }
  32.  
  33. private void button4_Click(object sender, EventArgs e)
  34. {
  35. Pesquisa menu = new Pesquisa();
  36. menu.Show();
  37. this.Visible = false;
  38. }
  39.  
  40. private void button2_Click(object sender, EventArgs e)
  41. {
  42. Entrada menu = new Entrada();
  43. menu.Show();
  44. this.Visible = false;
  45. }
  46.  
  47. private void button5_Click(object sender, EventArgs e)
  48. {
  49. Saida menu = new Saida();
  50. menu.Show();
  51. this.Visible = false;
  52. }
  53.  
  54. private void button3_Click(object sender, EventArgs e)
  55. {
  56. ProdutoAcabado menu = new ProdutoAcabado();
  57. menu.Show();
  58. this.Visible = false;
  59. }
  60.  
  61. private void button6_Click(object sender, EventArgs e)
  62. {
  63. ConsultaViabilidade menu = new ConsultaViabilidade();
  64. menu.Show();
  65. this.Visible = false;
  66. }
  67. }
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement