Programm_Wirl/FormLaden.cs
2025-04-28 08:31:23 +02:00

32 lines
602 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();
}
}
}