Riorg codice + aggiunta sample ufficiale Mitsubishi

This commit is contained in:
Samuele Locatelli
2024-11-18 10:53:14 +01:00
parent 61bece0345
commit 7bbc934ee5
30 changed files with 2022 additions and 211 deletions
@@ -0,0 +1,28 @@
// Program.cs : アプリケーションのメインエントリポイント
//
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2023 MITSUBISHI Electric Corporation All Rights Reserved
//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SampleAppCS
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormSampleApp());
}
}
}