KOP-PIbd-32-Katysheva-N-E/ComponentsView/Program.cs

20 lines
574 B
C#
Raw Normal View History

2024-10-15 11:27:49 +04:00
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
2024-09-30 22:43:40 +04:00
namespace ComponentsView
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
2024-10-15 11:27:49 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2024-10-28 20:23:38 +04:00
ApplicationConfiguration.Initialize();
Application.Run(new FormComponents());
2024-10-15 11:27:49 +04:00
}
2024-09-30 22:43:40 +04:00
}
}