12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using GrxCAD.DatabaseServices;
- 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 HCTools
- {
- public partial class EleRd : Form
- {
- public EleRd()
- {
- InitializeComponent();
- }
-
- private void EleRd_Load(object sender, EventArgs e)
- {
- this.comboBox_jqx.DropDownStyle = ComboBoxStyle.DropDownList;
- this.comboBox_sqx.DropDownStyle = ComboBoxStyle.DropDownList;
-
- //自动填充下拉框
- Database database = GrxCAD.DatabaseServices.HostApplicationServices.WorkingDatabase;
- using (Transaction traction = database.TransactionManager.StartTransaction())
- {
- //存放所有图层名
- List<string> alllayername = new List<string>();
- LayerTable layertable = traction.GetObject(database.LayerTableId, OpenMode.ForRead) as LayerTable;
- foreach (ObjectId objid in layertable)
- {
- LayerTableRecord layertablerecord = traction.GetObject(objid, OpenMode.ForRead) as LayerTableRecord;
- alllayername.Add(layertablerecord.Name);
- }
-
- alllayername.Sort();
-
- for (int i = 0; i < alllayername.Count; i++)
- {
- this.comboBox_jqx.Items.Add(alllayername[i]);
- this.comboBox_sqx.Items.Add(alllayername[i]);
- }
-
- if (alllayername.Contains("8110"))
- {
- int index = alllayername.IndexOf("8110");
- this.comboBox_sqx.SelectedIndex = index;
- }
- if (alllayername.Contains("8120"))
- {
- int index = alllayername.IndexOf("8120");
- this.comboBox_jqx.SelectedIndex = index;
- }
- traction.Commit();
- }
- }
-
- private void btn_OK_Click(object sender, EventArgs e)
- {
- if (comboBox_sqx.Text == "")
- {
- GrxCAD.ApplicationServices.Application.ShowAlertDialog("请选择首曲线");
- return;
- }
- if (comboBox_sqx.Text == "")
- {
- GrxCAD.ApplicationServices.Application.ShowAlertDialog("请选择计曲线");
- return;
- }
- EleRound.jqx = comboBox_jqx.Text;
- EleRound.sqx = comboBox_sqx.Text;
- this.Close();
- EleRound elerd = new EleRound();
- elerd.eleround();
- }
-
- private void btn_Cancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|