Programm_Wirl/AA-Forms/FormLaden.cs
2025-11-30 11:51:28 +01:00

42 lines
776 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 Deckungsbeitrag
{
public partial class FormLaden : Form
{
public FormLaden()
{
InitializeComponent();
}
public FormLaden(bool loading) : this()
{
Cursor = Cursors.WaitCursor;
if (!loading) this.Close();
}
private void pictureBoxWalli_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Close();
}
private void FormLaden_Load(object sender, EventArgs e)
{
}
private void buttonAbbrechen_Click(object sender, EventArgs e)
{
this.Close();
}
}
}