52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
namespace Volian.Controls.Library
|
|
{
|
|
partial class StepPanel
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
private bool _ShuttingDown = false;
|
|
|
|
public bool ShuttingDown
|
|
{
|
|
get { return _ShuttingDown; }
|
|
set { _ShuttingDown = value; }
|
|
}
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
ShuttingDown = disposing;
|
|
if (disposing && (components != null))
|
|
{
|
|
SelectedEditItem = null; // Save Changes
|
|
foreach (EditItem EditItem in _LookupEditItems.Values)
|
|
{
|
|
EditItem.MyItemInfo.ResetParts();
|
|
EditItem.MyItemInfo.MyContent.RefreshContentParts();
|
|
}
|
|
_LookupEditItems.Clear();
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|