Initial commit – alle alten Commits entfernt

This commit is contained in:
2026-04-05 12:12:47 +02:00
commit 76cd7de383
17 changed files with 1711 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
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 MailSend_Lesebestätigung
{
public partial class FHelp : FormEx
{
public FHelp()
{
InitializeComponent();
}
private void FHelp_Load(object sender, EventArgs e)
{
}
private void FHelp_VisibleChanged(object sender, EventArgs e)
{
if(this.Visible == true)
{
try
{
webBrowser1.Url = new Uri($@"{Application.StartupPath}\help.html");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
private void FHelp_FormClosing(object sender, FormClosingEventArgs e)
{
this.Visible = false;
e.Cancel = true;
}
}
}