2015-04-08 15:20:10 -07:00
|
|
|
|
using MatterHackers.Agg;
|
2014-01-29 19:09:30 -08:00
|
|
|
|
using MatterHackers.Agg.UI;
|
2014-06-11 14:52:58 -07:00
|
|
|
|
using MatterHackers.Localizations;
|
2014-01-29 19:09:30 -08:00
|
|
|
|
using MatterHackers.MatterControl.DataStorage;
|
2014-06-11 14:52:58 -07:00
|
|
|
|
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-06-11 14:52:58 -07:00
|
|
|
|
|
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
|
|
|
|
{
|
2017-01-02 10:38:29 -08:00
|
|
|
|
public ConnectionWizardPage()
|
2015-04-08 15:20:10 -07:00
|
|
|
|
{
|
2016-11-30 13:31:19 -08:00
|
|
|
|
cancelButton.Click += (s, e) => PrinterConnectionAndCommunication.Instance.HaltConnectionThread();
|
2016-06-02 17:46:49 -07:00
|
|
|
|
}
|
2015-04-08 15:20:10 -07:00
|
|
|
|
}
|
|
|
|
|
|
}
|