-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
36 lines (34 loc) · 1.48 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
// Directives using.
// Dyrektywy using.
namespace MultiscaleModelling
// Namespace declaration.
// Deklaracja przestrzeni nazw.
{
static class Program
// A static class containing methods.
// Klasa statyczna zawierające metody.
{
[STAThread]
// Indicates that the COM threading model for the application is a single-threaded apartment (STA).
// Wskazuje, że model wątkowości COM dla aplikacji jest apartamentem jednowątkowym (STA).
static void Main()
// The main entry point for the application.
// Główny punkt wejścia do aplikacji.
{
Application.EnableVisualStyles();
// Enables visual styles for the application.
// Włącza style wizualne dla aplikacji.
Application.SetCompatibleTextRenderingDefault(false);
// Sets the application-wide default for the UseCompatibleTextRendering property defined in some controls.
// Ustawia wartość domyślną dla całej aplikacji dla właściwości UseCompatibleTextRendering zdefiniowanej w niektórych kontrolkach.
Application.Run(new Form1());
// Begins running the standard application message loop on the current thread.
// Rozpoczyna uruchamianie standardowej pętli komunikatów aplikacji w bieżącym wątku.
}
}
}