Ejemplo n.º 1
0
        public ImportPatternsForm(string[] antnames, ISmartAntMgr ants)
        {
            iantennas = ants;

            //现在该窗体的模式是Import
            m_FormMode = FormMode.Import;

            InitializeComponent();
            InitialNameAndAngle(antnames);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 显示并可以修改智能天线属性
        /// </summary>
        public InputMainAngle_for_import(SmartAntenna sa, ISmartAntMgr iants)
        {
            //当前窗体的工作模式是查看Properties
            m_FormMode = FormMode.Properties;

            InitializeComponent();
            m_SA = sa;
            iantennas = iants;
            ViewSmartAntProperty(sa);

        }
        /// <summary>
        /// 显示并可以修改智能天线属性
        /// </summary>
        public ImportPatternsForm(SmartAntenna sa, ISmartAntMgr iants)
        {
            //当前窗体的工作模式是查看Properties
            m_FormMode = FormMode.Properties;

            InitializeComponent();
            m_SA = sa;
            iantennas = iants;
            ViewSmartAntPatternProperty(sa);

        }
Ejemplo n.º 4
0
        public SmartAntProperty(ISmartAntMgr SaMg)
        {
            this.m_SaMg = SaMg;

        }
Ejemplo n.º 5
0
        public InputMainAngle_for_import(string[] antnames, ISmartAntMgr ants)
        {
            iantennas = ants;

            //现在该窗体的模式是Import
            m_FormMode = FormMode.Import;

            InitializeComponent();
            int RowsNum = antnames.Length;
            InputMainAngle_dataGridView.Rows.Add(RowsNum);

            InitialNameAndAngle(antnames);
        }
Ejemplo n.º 6
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;
 }