Es gibt jetzt hutprofil und kurzliner

This commit is contained in:
Husky
2018-07-21 15:31:10 +02:00
parent acec9fee09
commit 6d5f049650
20 changed files with 727 additions and 26 deletions

View File

@@ -0,0 +1,45 @@
using KlassenBIB;
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
{
/// <summary>
///
/// </summary>
public partial class FrmReparaturKonzept : Form
{
Sanierungskonzept konzept = null;
/// <summary>
///
/// </summary>
/// <param name="konzept"></param>
public FrmReparaturKonzept(Sanierungskonzept konzept)
{
InitializeComponent();
this.konzept = konzept != null ? konzept : new Sanierungskonzept();
}
private void FrmRepaturKonzept_Load(object sender, EventArgs e)
{
txt_anweisung.DataBindings.Add(new Binding("text", konzept, "Anweisung"));
}
private void FrmRepaturKonzept_FormClosing(object sender, FormClosingEventArgs e)
{
txt_anweisung.DataBindings.Clear();
}
private void btn_add_san_Click(object sender, EventArgs e)
{
FrmSelectNewSan frmSelectNewSan = new FrmSelectNewSan();
}
}
}