26 lines
721 B
C#
26 lines
721 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 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");
|
|
}
|
|
}
|
|
}
|