Ejemplo n.º 1
0
        private void mnu_New_Click(object sender, EventArgs e)
        {
            //Create Empty Database
            ECCalcAidData = new ECCALibrary();
            ECCalcAidData.MaterialCollection.CreateNewMaterial();
            ECCalcAidData.SteelSectionCollection.CreateNewSection();
            ECCalcAidData.SteelSectionCollection.CreateDummySection();

            RefreshInterface();
        }
Ejemplo n.º 2
0
 private void InitiateLibrary()
 {
     Library = new ECCALibrary();
     Library = Library.OpenLibraryFromFile("");
 }
Ejemplo n.º 3
0
 private void openToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ECCalcAidData = ECCalcAidData.OpenLibraryFromFile("Test");
     RefreshInterface();
 }
Ejemplo n.º 4
0
 private void frm_DataBuilder_Load(object sender, EventArgs e)
 {
     ECCalcAidData = new ECCALibrary();
     RefreshInterface();
 }