Beispiel #1
0
 private void AddVectorList(GetAllVectorForm frm)
 {
     foreach (VectorEntity entity in this.m_VectorMap.VectorList)
     {
         frm.VectorList.Add(entity.Name);
     }
 }
Beispiel #2
0
 private void GetSelectedVectorList(GetAllVectorForm frm)
 {
     frm.SelectVectorList.ForEach(ne => this.GetVector(ne));
 }
Beispiel #3
0
 private void AddVectorBtn_Click(object sender, EventArgs e)
 {
     GetAllVectorForm frm = new GetAllVectorForm();
     this.AddVectorList(frm);
     if (frm.ShowDialog() == DialogResult.OK)
     {
         this.GetSelectedVectorList(frm);
     }
 }