Esempio n. 1
0
        public IEnumerable <IndexedItem> GetItems() =>
        ControlPanelItemList
        .Create()
        .Select(cpi => new ControlPanelIndexedItem()
        {
            Item = cpi,

            IndexerName = cpi.LocalizedString,
            Description = cpi.ProcessStartInfo.FileName + " " + cpi.ProcessStartInfo.Arguments
        })
        .ToList();
Esempio n. 2
0
 public Icon GetIcon(int size)
 {
     return(ControlPanelItemList.getIcon(Key, size));
 }