Ejemplo n.º 1
0
 private void mnuILCProperties_Click(object sender, EventArgs e)
 {
     foreach (ListViewItem LVI in this.lstItems.SelectedItems)
     {
         ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as Item);
         TPP.Show(this);
     }
 }
Ejemplo n.º 2
0
        private void ListView_DoubleClick(object sender, EventArgs e)
        {
            ListView LV = sender as ListView;

            foreach (ListViewItem LVI in LV.SelectedItems)
            {
                ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as IThing);
                TPP.Show(this);
            }
        }
Ejemplo n.º 3
0
        private void mnuELCProperties_Click(object sender, EventArgs e)
        {
            ListView LV = this.mnuEntryListContext.SourceControl as ListView;

            if (LV != null)
            {
                foreach (ListViewItem LVI in LV.SelectedItems)
                {
                    ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as IThing);
                    TPP.Show(this);
                }
            }
        }
Ejemplo n.º 4
0
 private void mnuELCProperties_Click(object sender, EventArgs e)
 {
     ListView LV = this.mnuEntryListContext.SourceControl as ListView;
       if (LV != null) {
     foreach (ListViewItem LVI in LV.SelectedItems) {
     ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as IThing);
       TPP.Show(this);
     }
       }
 }
Ejemplo n.º 5
0
 private void ListView_DoubleClick(object sender, EventArgs e)
 {
     ListView LV = sender as ListView;
       foreach (ListViewItem LVI in LV.SelectedItems) {
       ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as IThing);
     TPP.Show(this);
       }
 }
Ejemplo n.º 6
0
 private void mnuILCProperties_Click(object sender, EventArgs e)
 {
     foreach (ListViewItem LVI in this.lstItems.SelectedItems) {
       ThingPropertyPages TPP = new ThingPropertyPages(LVI.Tag as Item);
     TPP.Show(this);
       }
 }