AutoCAD

[AutoCAD] 윈도우 작업표시줄 Taskbar에 AutoCAD 열린도면들의 이름이 나열된다..

데브프로그라 2024. 2. 18. 00:17
반응형

 

작업표시줄에 표시된 상태

시스템변수 : TaskBar

값 : 1 => 윈도우 테스크바에 열린도면이 개별항목으로 표시된다..

      0 => 윈도우 테스크바에 하나의 AutoCAD 항목만 표시된다.. 

 

(taskbar 1)

 

(taskbar )

반응형

/* 코드복사 버튼 */ pre { position: relative; overflow: visible; } pre .copy-button { opacity: 0; position: absolute; right: 8px; top: 4px; padding: 6px 18px; color: rgb(255, 255, 255); background: rgba(255, 223, 0, 0.6); border-radius: 5px; transition: opacity .3s ease-in-out; } pre:hover .copy-button { opacity: 1; } pre .copy-button:hover { color: #eee; transition: all ease-in-out 0.3s; } pre .copy-button:active { color: #33f; transition: all ease-in-out 0.1s; } .copy-message:before { content: attr(copy-message); position: absolute; left: -95px; top: 0px; padding: 6px 18px; color: #fff; background: rgba(255, 223, 0, 0.6); border-radius: 5px; } /* 코드복사 버튼 END */