SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
AddVi.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9 
10 namespace SeciUserInterface.Dialogs.Tabs
11 {
12  public partial class AddVi : Form
13  {
14  public List<String> AvailableVis;
15  public List<String> VisToAdd = new List<string>();
16 
17  public AddVi()
18  {
19  InitializeComponent();
20  }
21 
22  private void btnOK_Click(object sender, EventArgs e)
23  {
24  VisToAdd.Clear();
25 
26  foreach (object item in lstVIs.SelectedItems)
27  {
28  VisToAdd.Add(item.ToString());
29  }
30 
31  DialogResult = DialogResult.OK;
32  Close();
33  }
34 
35  private void AddVi_Load(object sender, EventArgs e)
36  {
37  if (AvailableVis != null)
38  {
39  lstVIs.Items.AddRange(AvailableVis.ToArray());
40  }
41  }
42  }
43 }
void btnOK_Click(object sender, EventArgs e)
Definition: AddVi.cs:22
void AddVi_Load(object sender, EventArgs e)
Definition: AddVi.cs:35