コード例 #1
0
ファイル: DemodulationForm.cs プロジェクト: xiaoyj/Space
 public DemodulationForm(string p_strMCS, TrafficCollectionModel model, LinkType linkType, IApplicationContext appContext) : this()
 {
     this.dataGridView1.PasteHandle = new PasteHandle(this.CtrlVMethod);
     this.m_TrafficModel = model;
     this.SetDataGridMenu();
     this.m_MCSManagement = model.McsManagement;
     this.m_REManagement = model.RecepEquipManagement;
     this.m_DemodulationList = this.m_REManagement.GetDemodulationList(p_strMCS);
     this.m_tempList.AddRange(this.m_DemodulationList.ToArray());
     this.m_ReceptionEquipmentLinkType = linkType;
     this.AddComboBox();
     this.Init();
 }
コード例 #2
0
ファイル: MCSValidator.cs プロジェクト: xiaoyj/Space
 public MCSValidator(TrafficCollectionModel model, LinkType linkType)
 {
     this.m_Management = model.McsManagement;
     this.m_LinkType = linkType;
 }
コード例 #3
0
ファイル: TrafficSubSys.cs プロジェクト: xiaoyj/Space
 private void InitManagement()
 {
     this.m_MobManagement = this.m_Model.MobilityManagement;
     this.m_SerManagement = this.m_Model.UnionPsServiceManagement;
     this.m_UserProfileManagement = this.m_Model.UserProfileManagement;
     this.m_TerminalManagement = this.m_Model.TerminalManagement;
     this.m_EnvManagement = this.m_Model.EnvironemntMangement;
     this.m_McsManagement = this.m_Model.McsManagement;
     this.m_MimoManagement = this.m_Model.MIMOManagement;
     this.m_ReceptionEquipmentManagement = this.m_Model.RecepEquipManagement;
 }