Window.SetTitle - screenshakes/Desktopia GitHub Wiki
Changes the title of the window.
public void SetTitle(string title)
{
SetWindowText(Handle, title);
Title = title;
}
Changes the title of the window.
public void SetTitle(string title)
{
SetWindowText(Handle, title);
Title = title;
}