mattercontrol/PrinterControls/PrinterConnections/ConnectionWizardPage.cs

18 lines
536 B
C#
Raw Normal View History

2015-04-08 15:20:10 -07:00
using MatterHackers.Agg;
2014-01-29 19:09:30 -08:00
using MatterHackers.Agg.UI;
using MatterHackers.Localizations;
2014-01-29 19:09:30 -08:00
using MatterHackers.MatterControl.DataStorage;
using MatterHackers.MatterControl.PrinterCommunication;
2016-04-18 11:31:31 -07:00
using MatterHackers.MatterControl.SlicerConfiguration;
2015-04-08 15:20:10 -07:00
using System;
2014-01-29 19:09:30 -08:00
namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
2015-04-08 15:20:10 -07:00
{
2016-06-08 09:31:26 -07:00
public class ConnectionWizardPage : WizardPage
2015-04-08 15:20:10 -07:00
{
public ConnectionWizardPage()
2015-04-08 15:20:10 -07:00
{
cancelButton.Click += (s, e) => PrinterConnectionAndCommunication.Instance.HaltConnectionThread();
}
2015-04-08 15:20:10 -07:00
}
}