版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

57 lines
1.4 KiB

  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. namespace ProductionControl
  11. {
  12. public partial class FrmChart : Form
  13. {
  14. public FrmChart()
  15. {
  16. InitializeComponent();
  17. initDataView();
  18. }
  19. private void initDataView()
  20. {
  21. }
  22. private class Product
  23. {
  24. public Product(string _code, string _name)
  25. {
  26. code = _code;
  27. name = _name;
  28. }
  29. public string code { get; set; }
  30. public string name { get; set; }
  31. public string spec { get { return "1-1323"; } }
  32. public string stepCode { get { return "0001"; } }
  33. public string stepName { get { return "屏幕检测"; } }
  34. public string userName { get { return "管理员"; } }
  35. public string dateTime { get { return DateTime.Now.ToString("yyyy-MM-dd HH:mm"); } }
  36. }
  37. private void toolStripButton2_Click(object sender, EventArgs e)
  38. {
  39. }
  40. private void toolStripButton3_Click(object sender, EventArgs e)
  41. {
  42. }
  43. private void toolStripButton1_Click(object sender, EventArgs e)
  44. {
  45. }
  46. private void FrmProductList_Load(object sender, EventArgs e)
  47. {
  48. }
  49. }
  50. }