示例#1
0
 void commandList_ItemUpdated(object sender, ListItemUpdateEventArgs <IMacroCommand> e)
 {
     lock (syncRoot) {
         tableModel.Rows.RemoveAt(e.Index);
         tableModel.Rows.Insert(e.Index, new MacroCommandRow(e.Item));
     }
 }
示例#2
0
 void reportList_ItemUpdated(object sender, ListItemUpdateEventArgs <RuntimeObjectsLoaderReport> e)
 {
     reportListBox.Items[e.Index] = e.Item;
 }
示例#3
0
 void commandList_ItemUpdated(object sender, ListItemUpdateEventArgs<IMacroCommand> e)
 {
     lock (syncRoot) {
         tableModel.Rows.RemoveAt(e.Index);
         tableModel.Rows.Insert(e.Index, new MacroCommandRow(e.Item));
     }
 }
 void reportList_ItemUpdated(object sender, ListItemUpdateEventArgs<RuntimeObjectsLoaderReport> e)
 {
     reportListBox.Items[e.Index] = e.Item;
 }