Ejemplo n.º 1
0
        //////////////////////////////////////////////////////////////////////////**********20141014
        //添加新线路
        private void buttonAddNewRoad_Click(object sender, EventArgs e)
        {
            AddRoadForm arForm = new AddRoadForm(m_Conn, comboBox_RoadNames, GlobalVariable.ADD_NEW_ROAD, textBox_Longitude.Text, textBox_Latitude.Text);

            arForm.Show();
        }
Ejemplo n.º 2
0
        //////////////////////////////////////////////////////////////////////////**********20141014
        //修改线路的路名和桩号
        private void buttonModifyRoad_Click(object sender, EventArgs e)
        {
            AddRoadForm arForm = new AddRoadForm(m_Conn, comboBox_RoadNames, GlobalVariable.MODIFY_ROAD_INFO, textBox_Longitude.Text, textBox_Latitude.Text);

            arForm.Show();
        }