Infobox hinzugefügt

This commit is contained in:
HuskyTeufel
2021-05-17 11:18:31 +02:00
parent 20e22e196b
commit 4d05130bbb
5 changed files with 228 additions and 6 deletions

25
SanSystem/frmInfo.cs Normal file
View File

@@ -0,0 +1,25 @@
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 SanSystem
{
public partial class frmInfo : Form
{
public frmInfo()
{
InitializeComponent();
lst_info.Items.Add("Werte beziehen sich auf DN150");
lst_info.Items.Add("3D Liner => ca 7% Schrumpf");
lst_info.Items.Add("DN125 Liner => ca 3% Schrumpf");
lst_info.Items.Add("Nach insgesamt 232 eingebaute Liner, lernt man noch was,");
lst_info.Items.Add("was man noch nie erlebt hat");
}
}
}