Exemplo n.º 1
0
 public TmaCfgFormEditor(TmaCollection coll, string name)
 {
     this.m_coll = coll;
     TmaEquipment tma = coll.FindTmaByName(name);
     this.clone(tma);
     this.SetName(tma);
 }
Exemplo n.º 2
0
 private void CreateEditor(TmaCollection coll, string name)
 {
     this.m_Editor = new TmaCfgFormEditor(coll, name);
 }
Exemplo n.º 3
0
 private void InitOutDoorInfo(CollectionsModel collModel, AntConfig outdoorEntity, string cellName, string oriCellName)
 {
     this.m_CellCollection = collModel.TranceiverColl;
     this.m_AntennaCollection = collModel.Antennas;
     this.m_TmaCollection = collModel.TmaColl;
     this.m_FeederCollection = collModel.FeederColl;
     this.m_SmartAntennaCollection = collModel.SmartAntennas;
     this.m_Entity = outdoorEntity;
     this.m_CellName = cellName;
     this.m_OriCellName = oriCellName;
 }
Exemplo n.º 4
0
 public TmaCfgForm(TmaCollection coll, string name)
 {
     this.InitializeComponent();
     this.CreateEditor(coll, name);
     this.SetupPropertyGrid();
 }
Exemplo n.º 5
0
 public EquipmentCfgFormEditor(CollectionsModel model)
 {
     this.feederColl = model.FeederColl;
     this.tmaColl = model.TmaColl;
     this.cellColl = model.TranceiverColl;
 }