Сделан новый проект VisualPABCLinux И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
29 lines
633 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|