pascalabcnet/VisualPascalABCNETLinux/ABCHealth.cs
Mikhalkovich Stanislav 3072383106 Для Linux-версии исправлен DockContent, редактор (показ всплывающего окна)
Сделан новый проект VisualPABCLinux
И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору
Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
2022-06-30 09:47:11 +03:00

29 lines
633 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VisualPascalABC
{
public partial class ABCHealth : Form
{
public ABCHealth()
{
InitializeComponent();
this.Font = new Font(this.Font.FontFamily, 10);
this.Activated += OnActivated;
//this.Paint += OnPaint;
}
private int i = 0;
private void OnActivated(object sender, EventArgs e)
{
}
}
}