Guten Tag,
ich habe ein neues Projekt in C# geöffnet. (Das NET Core UWP mit vorgefertigtem Fenster in Visual Studio)
Da ist dieser Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
static class Program
{
/// <summary>
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.
Application.Run(new Form1());
}
}
}
Ich möchte den Titel des Fensters ändern. Beispielsweise zu Test. Was muss ich da genau machen? Ich finde keine brauchbaren Tutorials oder so im Internet.