stroke-explorer sort close

2列排列所有打开的explorer窗口

关闭全部explorer 窗口

function getExplorerWindows() {
    let wnds = sp.AllApplications();
    const proName = "explorer";
    let result = new Array();
    for(let i =0;i< wnds.Length;++i) {
        let cur = wnds[i];
        //sp.MessageBox(cur.Process.ProcessName, "Result");
        if(cur.Process.ProcessName == proName) {
            result.push(cur);
        }
    }

    return result;
}

function closeExporer() {
    let todo = getExplorerWindows();
    for(let i =0;i< todo.length;++i) {
        todo[i].SendClose()
    }
}


function sortExporer(windArray) {
    if(!!!windArray || windArray.length<1) return;
    const total = windArray.length;
    const curScreen = windArray[0].Screen;
    const sWidth = curScreen.WorkingArea.Width;
    const sHeight = curScreen.WorkingArea.Height;
    
    const cellW = Math.floor(sWidth/2);
    const cellH = Math.floor(sHeight/Math.floor((total+1)/2));


    let result = "";
    for(let i =0; i<total;++i) {
        let rect =   windArray[i].Rectangle;
        windArray[i].BringToFront()
        rect.Width =cellW;
        rect.Height = cellH;
        rect.X = (i%2)*cellW;
        rect.Y = Math.floor((i)/2.0)*cellH;
        windArray[i].Rectangle = rect;
    }
}


sortExporer(getExplorerWindows());
posted @ 2020-11-13 16:49  fndefbwefsowpvqfx  阅读(76)  评论(0编辑  收藏  举报