Esempio n. 1
0
 internal static IList <TreeNodeData> GetThreadsOrBelow(WindowCache wc, MainForm mf, Process parent, bool visibleOnly)
 {
     if (mf.DisplayThreads)
     {
         return(GetThreads(wc, mf, parent, visibleOnly));
     }
     else
     {
         return(WindowData.GetWindowsOrBelow(wc, mf, parent, null, visibleOnly));
     }
 }
Esempio n. 2
0
 internal override IList <TreeNodeData> GetChildren(WindowCache wc, bool visibleOnly)
 {
     return(WindowData.GetWindowsOrBelow(wc, mf, process, thread, visibleOnly));
 }