using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace OTSSysMgrApp { public partial class RecommendedConfiguration : Form { public RecommendedConfiguration() { InitializeComponent(); } private void RecommendedConfiguration_Load(object sender, EventArgs e) { richTextBox_RecommendedConfiguration.Text = "电镜型号 能谱型号 x轴正方向 y轴正方向 100倍下屏幕宽度 分辨率\n"; richTextBox_RecommendedConfiguration.Text+= " FEI 牛津 向右为正 向上为正 1270(宝丽来) 1024*704\n"; richTextBox_RecommendedConfiguration.Text+= " 布鲁克 向右为正 向上为正 1270(宝丽来) 1024*768\n"; richTextBox_RecommendedConfiguration.Text+= " FEI 向右为正 向上为正 1270(宝丽来) 1536*1024\n"; richTextBox_RecommendedConfiguration.Text+= " 蔡司 牛津 向左为正 向下为正 1142(宝丽来) 1024*768\n"; richTextBox_RecommendedConfiguration.Text+= " 布鲁克 向左为正 向下为正 1142(宝丽来) 1024*768\n"; richTextBox_RecommendedConfiguration.Text+= " Coxem 牛津 向左为正 向下为正 1972(宝丽来) 1024*768"; richTextBox_RecommendedConfiguration.Enabled = false; } } }