mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-28 16:55:32 +00:00
58 lines
1.5 KiB
C#
58 lines
1.5 KiB
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;
|
|
using System.Xml.Linq;
|
|
|
|
namespace HaInformator
|
|
{
|
|
public partial class HaProgram : Form
|
|
{
|
|
private static Informate _informate;
|
|
|
|
public HaProgram()
|
|
{
|
|
InitializeComponent();
|
|
_informate = new Informate(new Logger(LogBox),
|
|
NodeTree,
|
|
NodeList,
|
|
AttrList,
|
|
ValList,
|
|
ArribValDesc,
|
|
cMenu);
|
|
Description.Text = _informate.Description;
|
|
}
|
|
|
|
private void InFileBtn_Click(object sender, EventArgs e)
|
|
{
|
|
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
|
InFilepath.Text = openFileDialog.FileName;
|
|
}
|
|
|
|
private void GoBtn_Click(object sender, EventArgs e)
|
|
{
|
|
GoBtn.Enabled = false;
|
|
if (_informate.Act(InFilepath.Text) == HaControl.HaControlResult.OK)
|
|
{
|
|
|
|
}
|
|
GoBtn.Enabled = true;
|
|
}
|
|
|
|
private void SaveLogBtn_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void LogBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|