private void Timer_Tick(object sender, EventArgs e)
{
CurrentValue.Text = current.GetTitle();
}
public MainForm()
{
InitializeComponent();
timer = new Timer();
timer.Tick += Timer_Tick;
timer.Interval = 1000;
current = new CurrentData();
StopWork.Enabled = false;
}
Попробуйте так еще.
StatisticFormula statisticFormula = new StatisticFormula();
Я же не знаю всех подробностей.