Schachtanbindung angestellt

This commit is contained in:
Husky
2018-07-01 14:57:21 +02:00
parent bf38d340fc
commit b832a0319f
8 changed files with 94 additions and 7 deletions

View File

@@ -22,6 +22,7 @@ namespace SanSystem
LINERGRUNDLAGEN
}
InlinerSanierung inliner = null;
string destinationPath = string.Empty;
public UCInliner(InlinerSanierung san)
{
InitializeComponent();
@@ -60,6 +61,7 @@ namespace SanSystem
private void UCInliner_Load(object sender, EventArgs e)
{
CheckDirectories();
cb_genehmigung.DataBindings.Clear();
cb_stvo.DataBindings.Clear();
cb_wasserhaltung.DataBindings.Clear();
@@ -76,7 +78,7 @@ namespace SanSystem
cb_genehmigung.DataBindings.Add(new Binding("Checked", inliner, "genehmigungVorhanden"));
cb_stvo.DataBindings.Add(new Binding("Checked", inliner, "sTVOAbsicherung"));
cb_wasserhaltung.DataBindings.Add(new Binding("Checked", inliner, "wasserhaltungEingerichtet"));
txt_temp_aussen.DataBindings.Add(new Binding("Text", inliner, "TempAusen", false, DataSourceUpdateMode.OnPropertyChanged));
txt_temp_aussen.DataBindings.Add(new Binding("Text", inliner, "TempAusen"));
txt_temp_kanal.DataBindings.Add(new Binding("Text", inliner, "TempKanal"));
}
@@ -98,9 +100,7 @@ namespace SanSystem
private void CheckDirectories()
{
string verzeichnispfad = string.Format("{0}-{1}")
string path = Path.Combine("")
if(!Directory.Exists())
destinationPath = inliner.CheckVerzeichnisse(Global.Instance.projektpfad);
}
}
}