File size: 868 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
using DWSIM.Interfaces;
using System;
namespace DWSIM.ProFeatures
{
public partial class FormCosting : WeifenLuo.WinFormsUI.Docking.DockContent
{
public IFlowsheet CurrentFlowsheet;
public IAnalyticsProvider AnalyticsProvider;
public FormCosting()
{
InitializeComponent();
lblFeature = _lblFeature;
_lblFeature.Name = "lblFeature";
}
private void Button2_Click(object sender, EventArgs e)
{
Functions.CreateTransitionObject(CurrentFlowsheet, "", "Costing", "", "", default);
Functions.DisplayTransitionForm(AnalyticsProvider, CurrentFlowsheet, "Costing");
}
private void FormCosting_Load_1(object sender, EventArgs e)
{
ExtensionMethods.FormExtensions.ChangeDefaultFont(this);
}
}
} |