Es gibt jetzt hutprofil und kurzliner
This commit is contained in:
45
SanSystem/FrmReparaturKonzept.cs
Normal file
45
SanSystem/FrmReparaturKonzept.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user