Archive Browser
Download PhotoshopColorSwatchWriter.zip version 2.0.0.0, last updated 15/03/2026 (17.27 KB)
Download- md5: 56d753ea51f23c0dcdfb6bc934aabc5b
- sha1: dc65c9411b063b43b194845dc99a27e228a319a4
- sha256: f22265a7b2fd0f6e71db50bbeeff063b5a28adc731420dbf6b85e888b3dd267d
using System.IO;
namespace PhotoshopColorSwatchWriter
{
partial class GeneratorWindow
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <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)
{
if (disposing)
{
if (!string.IsNullOrEmpty(_tempFileName) && File.Exists(_tempFileName))
{
File.Delete(_tempFileName);
}
if (components != null)
{
components.Dispose();
}
}
base.Dispose(disposing);
}
#region Windows Form 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()
{
this.splitContainer = new System.Windows.Forms.SplitContainer();
this.originalPalettePanel = new PhotoshopColorSwatchWriter.PalettePanel();
this.comparePalettePanel = new PhotoshopColorSwatchWriter.PalettePanel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.refreshButton = new System.Windows.Forms.Button();
this.grayscaleRadioButton = new System.Windows.Forms.RadioButton();
this.hslRadioButton = new System.Windows.Forms.RadioButton();
this.rgbRadioButton = new System.Windows.Forms.RadioButton();
this.splitContainer.Panel1.SuspendLayout();
this.splitContainer.Panel2.SuspendLayout();
this.splitContainer.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer
//
this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer.Location = new System.Drawing.Point(0, 61);
this.splitContainer.Name = "splitContainer";
//
// splitContainer.Panel1
//
this.splitContainer.Panel1.Controls.Add(this.originalPalettePanel);
//
// splitContainer.Panel2
//
this.splitContainer.Panel2.Controls.Add(this.comparePalettePanel);
this.splitContainer.Size = new System.Drawing.Size(774, 427);
this.splitContainer.SplitterDistance = 386;
this.splitContainer.TabIndex = 0;
//
// originalPalettePanel
//
this.originalPalettePanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.originalPalettePanel.Location = new System.Drawing.Point(0, 0);
this.originalPalettePanel.Name = "originalPalettePanel";
this.originalPalettePanel.Size = new System.Drawing.Size(386, 427);
this.originalPalettePanel.TabIndex = 0;
//
// comparePalettePanel
//
this.comparePalettePanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.comparePalettePanel.Location = new System.Drawing.Point(0, 0);
this.comparePalettePanel.Name = "comparePalettePanel";
this.comparePalettePanel.Size = new System.Drawing.Size(384, 427);
this.comparePalettePanel.TabIndex = 1;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.editToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(774, 24);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.exitToolStripMenuItem.Text = "E&xit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.refreshToolStripMenuItem});
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
this.editToolStripMenuItem.Text = "&Edit";
//
// refreshToolStripMenuItem
//
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
this.refreshToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.refreshToolStripMenuItem.Text = "&Refresh";
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "&Help";
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
this.aboutToolStripMenuItem.Text = "&About...";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// panel1
//
this.panel1.Controls.Add(this.refreshButton);
this.panel1.Controls.Add(this.grayscaleRadioButton);
this.panel1.Controls.Add(this.hslRadioButton);
this.panel1.Controls.Add(this.rgbRadioButton);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 24);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(774, 37);
this.panel1.TabIndex = 2;
//
// refreshButton
//
this.refreshButton.Location = new System.Drawing.Point(212, 3);
this.refreshButton.Name = "refreshButton";
this.refreshButton.Size = new System.Drawing.Size(75, 23);
this.refreshButton.TabIndex = 3;
this.refreshButton.Text = "&Refresh";
this.refreshButton.UseVisualStyleBackColor = true;
this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
//
// grayscaleRadioButton
//
this.grayscaleRadioButton.AutoSize = true;
this.grayscaleRadioButton.Location = new System.Drawing.Point(118, 6);
this.grayscaleRadioButton.Name = "grayscaleRadioButton";
this.grayscaleRadioButton.Size = new System.Drawing.Size(72, 17);
this.grayscaleRadioButton.TabIndex = 2;
this.grayscaleRadioButton.Text = "&Grayscale";
this.grayscaleRadioButton.UseVisualStyleBackColor = true;
this.grayscaleRadioButton.CheckedChanged += new System.EventHandler(this.rgbRadioButton_CheckedChanged);
//
// hslRadioButton
//
this.hslRadioButton.AutoSize = true;
this.hslRadioButton.Location = new System.Drawing.Point(66, 6);
this.hslRadioButton.Name = "hslRadioButton";
this.hslRadioButton.Size = new System.Drawing.Size(46, 17);
this.hslRadioButton.TabIndex = 1;
this.hslRadioButton.Text = "H&SL";
this.hslRadioButton.UseVisualStyleBackColor = true;
this.hslRadioButton.CheckedChanged += new System.EventHandler(this.rgbRadioButton_CheckedChanged);
//
// rgbRadioButton
//
this.rgbRadioButton.AutoSize = true;
this.rgbRadioButton.Checked = true;
this.rgbRadioButton.Location = new System.Drawing.Point(12, 6);
this.rgbRadioButton.Name = "rgbRadioButton";
this.rgbRadioButton.Size = new System.Drawing.Size(48, 17);
this.rgbRadioButton.TabIndex = 0;
this.rgbRadioButton.TabStop = true;
this.rgbRadioButton.Text = "RG&B";
this.rgbRadioButton.UseVisualStyleBackColor = true;
this.rgbRadioButton.CheckedChanged += new System.EventHandler(this.rgbRadioButton_CheckedChanged);
//
// GeneratorWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(774, 488);
this.Controls.Add(this.splitContainer);
this.Controls.Add(this.panel1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "GeneratorWindow";
this.Text = "Photoshop Color Swatch Writer Demo";
this.splitContainer.Panel1.ResumeLayout(false);
this.splitContainer.Panel2.ResumeLayout(false);
this.splitContainer.ResumeLayout(false);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private PalettePanel originalPalettePanel;
private PalettePanel comparePalettePanel;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Button refreshButton;
private System.Windows.Forms.RadioButton grayscaleRadioButton;
private System.Windows.Forms.RadioButton hslRadioButton;
private System.Windows.Forms.RadioButton rgbRadioButton;
}
}
Donate
This software may be used free of charge, but as with all free software there are costs involved to develop and maintain.
If this site or its services have saved you time, please consider a donation to help with running costs and timely updates.
Donate