I want to change the window name of nuitrack_csharp_sample.exe

If you look at the picture above, you don’t know what the name of the window is.

I want to know the name of the window and change it if possible.

This is to do my specific logic.

Thank you

To set a title for a window, you have to set the value of the Title field for an object of the MainForm class. You can do this directly in the constructor of this class (see the file Program.cs):

...
namespace nuitrack
{
    ...
    public class MainForm : Form
    {
        ...
        public MainForm()
        {
            this.Title = "title"; // set the window title
            ...