Changing Window Titles

Provides the ability to change the titles of all windows in the MATLAB process

이 제출물을 팔로우합니다

If you're using more than one instance of MATLAB at a time, it's useful to be able to tell them apart at a glance. This utility lets you rename the MATLAB window so that it can be distinguished from other instances in the task bar, and when tabbing between windows.
Two functions are included:

>> [hWnd,title] = findAllWindows
returns the names and handles of all windows in the MATLAB process.

>> setWindowTitle(hWnd,title)
allows you to set the title of any window in the MATLAB process.

An example script is included, as are help files and full source code.

You will need to build the MEX functions yourself. If you haven't run "mex" before, use:
>> mex -setup
and follow the instructions for selecting a compiler.

Then run:
>> mex findAllWindows.cpp
>> mex setWindowTitle.cpp
This works with Microsoft Visual Studio 2005, and probably with other versions too. If you encounter linking problems, try adding "user32.lib" to the end of the command.

인용 양식

Malcolm Wood (2026). Changing Window Titles (https://kr.mathworks.com/matlabcentral/fileexchange/11046-changing-window-titles), MATLAB Central File Exchange. 검색 날짜: .

도움

도움 받은 파일: sethicon

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
1.3.0.1

Updated license

1.3.0.0

Removed mexw32 files.

1.2.0.0

Added copyright lines. Removed binaries to comply with conditions of the site. Added compilation instructions.

1.1.0.0

Review

1.0.0.0

Removed the function which changes the window icon, which is in violation of the licence agreement for MATLAB 7 and later.