RecommendedConfiguration.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132
  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 OTSSysMgrApp
  11. {
  12. public partial class RecommendedConfiguration : Form
  13. {
  14. public RecommendedConfiguration()
  15. {
  16. InitializeComponent();
  17. }
  18. private void RecommendedConfiguration_Load(object sender, EventArgs e)
  19. {
  20. richTextBox_RecommendedConfiguration.Text = "电镜型号 能谱型号 x轴正方向 y轴正方向 100倍下屏幕宽度 分辨率\n";
  21. richTextBox_RecommendedConfiguration.Text+= " FEI 牛津 向右为正 向上为正 1270(宝丽来) 1024*704\n";
  22. richTextBox_RecommendedConfiguration.Text+= " 布鲁克 向右为正 向上为正 1270(宝丽来) 1024*768\n";
  23. richTextBox_RecommendedConfiguration.Text+= " FEI 向右为正 向上为正 1270(宝丽来) 1536*1024\n";
  24. richTextBox_RecommendedConfiguration.Text+= " 蔡司 牛津 向左为正 向下为正 1142(宝丽来) 1024*768\n";
  25. richTextBox_RecommendedConfiguration.Text+= " 布鲁克 向左为正 向下为正 1142(宝丽来) 1024*768\n";
  26. richTextBox_RecommendedConfiguration.Text+= " Coxem 牛津 向左为正 向下为正 1972(宝丽来) 1024*768";
  27. richTextBox_RecommendedConfiguration.Enabled = false;
  28. }
  29. }
  30. }