Files
PR_PRM_GUI/LFP_Manager_PRM/Forms/fmxCommConfig.cs
2026-02-11 10:10:43 +09:00

36 lines
760 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Linq;
using System.Windows.Forms;
using DevExpress.XtraEditors;
namespace LFP_Manager.Forms
{
public delegate void UpdateEvent(object aConfig);
public partial class fmxCommConfig : DevExpress.XtraEditors.XtraForm
{
public event UpdateEvent OnUpdate = null;
public fmxCommConfig()
{
InitializeComponent();
ucCommConfig1.OnClose += FormClose;
}
private void FormClose(object Config)
{
if (OnUpdate != null)
{
OnUpdate(Config);
}
Close();
}
}
}