- Remove excess properties from PrinterInfo - Remove call to Parent.Close from onPrinterStatusChanged
18 lines
No EOL
553 B
C#
18 lines
No EOL
553 B
C#
using MatterHackers.Agg;
|
|
using MatterHackers.Agg.UI;
|
|
using MatterHackers.Localizations;
|
|
using MatterHackers.MatterControl.DataStorage;
|
|
using MatterHackers.MatterControl.PrinterCommunication;
|
|
using MatterHackers.MatterControl.SlicerConfiguration;
|
|
using System;
|
|
|
|
namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
|
|
{
|
|
public class ConnectionWizardPage : WizardPage
|
|
{
|
|
public ConnectionWizardPage() : base("Cancel")
|
|
{
|
|
cancelButton.Click += (s, e) => PrinterConnectionAndCommunication.Instance.HaltConnectionThread();
|
|
}
|
|
}
|
|
} |