/////////////////////////////////////////////////////////////////////////////////
// Paint.NET //
// Copyright (C) Rick Brewster, Tom Jackson, and past contributors. //
// Portions Copyright (C) Microsoft Corporation. All Rights Reserved. //
// See src/Resources/Files/License.txt for full licensing and attribution //
// details. //
// . //
/////////////////////////////////////////////////////////////////////////////////
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace PaintDotNet
{
public sealed class NoSaveConfigWidget
: SaveConfigWidget
{
private System.Windows.Forms.Label label1;
private System.ComponentModel.IContainer components = null;
public NoSaveConfigWidget()
{
// This call is required by the Windows Form Designer.
InitializeComponent();
}
///
/// Clean up any resources being used.
///
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (components != null)
{
components.Dispose();
components = null;
}
}
base.Dispose(disposing);
}
#region Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.Location = new System.Drawing.Point(24, 32);
this.label1.Name = "label1";
this.label1.TabIndex = 0;
this.label1.Text = "(No Settings)";
//
// NoSaveConfigWidget
//
this.Controls.Add(this.label1);
this.AutoScaleDimensions = new SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Name = "NoSaveConfigWidget";
this.Size = new System.Drawing.Size(152, 88);
this.ResumeLayout(false);
}
#endregion
}
}