Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Kleines GUI-Programm in C#

Empfohlene Antworten

Veröffentlicht

Ich wollte mich ein bisschen mit GUI-Programmierung befassen, und habe ein Codesnippet unmittelbar hier: Windows Forms herauskopiert...


using System;

using System.Windows.Forms;


public class HalloWelt

{

   [STAThread]

   public static void Main()

   {

      Form form = new Form();

      Button b = new Button();

      b.Text = "Klicken!";

      b.Click += (s,e)=>{MessageBox.Show("Geklickt!");};

      form.Controls.Add(;

      form.Show();

      Application.Run(form);

   }

}

[/code]

Als ich es kompilieren wollte, kamen folgende Fehler:

HalloWelt.cs (12, 20): ) expected.

HalloWelt.cs (12, 20) invalid expressionterm: ','.

HalloWelt.cs (12, 21) ; expected

HalloWelt.cs (12, 22) ; expected

HalloWelt.cs (12,22 invalid expression term )

HalloWelt.cs (12,24) invalid expression term )

HalloWelt.cs (12,25) ; expected

Gibt es ein gutes Buch zur GUI-Programmierung? Wieso hat er den Code nicht kompiliert - es steht zum einen so in Wiki, zum anderen kann ich auch keinen Fehler erkennen.

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.