238 lines
12 KiB
C#
238 lines
12 KiB
C#
namespace AdvertsingProfitControl
|
|
{
|
|
partial class FrmManageAdItems
|
|
{
|
|
/// <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 && (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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmManageAdItems));
|
|
this.mainLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
|
this.adItemListView = new System.Windows.Forms.ListView();
|
|
this.columnOnePanel = new System.Windows.Forms.Panel();
|
|
this.addItemLabel = new System.Windows.Forms.Label();
|
|
this.adItemTextBox = new System.Windows.Forms.TextBox();
|
|
this.addItemButton = new System.Windows.Forms.Button();
|
|
this.notificationLabel = new System.Windows.Forms.Label();
|
|
this.deleteSelectedItem = new System.Windows.Forms.Button();
|
|
this.adItemFilterComboBox = new System.Windows.Forms.ComboBox();
|
|
this.letterSelectionLabel = new System.Windows.Forms.Label();
|
|
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|
this.fileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.closeFormFileMainMenu = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.mainLayoutPanel.SuspendLayout();
|
|
this.columnOnePanel.SuspendLayout();
|
|
this.menuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// mainLayoutPanel
|
|
//
|
|
this.mainLayoutPanel.ColumnCount = 2;
|
|
this.mainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 45F));
|
|
this.mainLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 55F));
|
|
this.mainLayoutPanel.Controls.Add(this.adItemListView, 1, 1);
|
|
this.mainLayoutPanel.Controls.Add(this.columnOnePanel, 0, 1);
|
|
this.mainLayoutPanel.Controls.Add(this.menuStrip1, 0, 0);
|
|
this.mainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.mainLayoutPanel.Location = new System.Drawing.Point(0, 0);
|
|
this.mainLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.mainLayoutPanel.Name = "mainLayoutPanel";
|
|
this.mainLayoutPanel.RowCount = 3;
|
|
this.mainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
|
|
this.mainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.mainLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
|
this.mainLayoutPanel.Size = new System.Drawing.Size(909, 822);
|
|
this.mainLayoutPanel.TabIndex = 0;
|
|
//
|
|
// adItemListView
|
|
//
|
|
this.adItemListView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.adItemListView.Location = new System.Drawing.Point(413, 39);
|
|
this.adItemListView.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.adItemListView.Name = "adItemListView";
|
|
this.mainLayoutPanel.SetRowSpan(this.adItemListView, 2);
|
|
this.adItemListView.Size = new System.Drawing.Size(492, 779);
|
|
this.adItemListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.adItemListView.TabIndex = 5;
|
|
this.adItemListView.UseCompatibleStateImageBehavior = false;
|
|
this.adItemListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnOnePanel
|
|
//
|
|
this.columnOnePanel.Controls.Add(this.addItemLabel);
|
|
this.columnOnePanel.Controls.Add(this.adItemTextBox);
|
|
this.columnOnePanel.Controls.Add(this.addItemButton);
|
|
this.columnOnePanel.Controls.Add(this.notificationLabel);
|
|
this.columnOnePanel.Controls.Add(this.deleteSelectedItem);
|
|
this.columnOnePanel.Controls.Add(this.adItemFilterComboBox);
|
|
this.columnOnePanel.Controls.Add(this.letterSelectionLabel);
|
|
this.columnOnePanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.columnOnePanel.Location = new System.Drawing.Point(4, 39);
|
|
this.columnOnePanel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.columnOnePanel.Name = "columnOnePanel";
|
|
this.mainLayoutPanel.SetRowSpan(this.columnOnePanel, 2);
|
|
this.columnOnePanel.Size = new System.Drawing.Size(401, 779);
|
|
this.columnOnePanel.TabIndex = 1;
|
|
//
|
|
// addItemLabel
|
|
//
|
|
this.addItemLabel.AutoSize = true;
|
|
this.addItemLabel.Location = new System.Drawing.Point(35, 378);
|
|
this.addItemLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
|
|
this.addItemLabel.Name = "addItemLabel";
|
|
this.addItemLabel.Size = new System.Drawing.Size(140, 25);
|
|
this.addItemLabel.TabIndex = 6;
|
|
this.addItemLabel.Text = "Add New Item:";
|
|
//
|
|
// adItemTextBox
|
|
//
|
|
this.adItemTextBox.Location = new System.Drawing.Point(213, 373);
|
|
this.adItemTextBox.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
|
|
this.adItemTextBox.Name = "adItemTextBox";
|
|
this.adItemTextBox.Size = new System.Drawing.Size(180, 29);
|
|
this.adItemTextBox.TabIndex = 2;
|
|
//
|
|
// addItemButton
|
|
//
|
|
this.addItemButton.Enabled = false;
|
|
this.addItemButton.Location = new System.Drawing.Point(213, 421);
|
|
this.addItemButton.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
|
|
this.addItemButton.Name = "addItemButton";
|
|
this.addItemButton.Size = new System.Drawing.Size(183, 59);
|
|
this.addItemButton.TabIndex = 3;
|
|
this.addItemButton.Text = "Add Item";
|
|
this.addItemButton.UseVisualStyleBackColor = true;
|
|
this.addItemButton.Click += new System.EventHandler(this.addItemButton_Click);
|
|
//
|
|
// notificationLabel
|
|
//
|
|
this.notificationLabel.AutoSize = true;
|
|
this.notificationLabel.Location = new System.Drawing.Point(17, 78);
|
|
this.notificationLabel.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
|
|
this.notificationLabel.Name = "notificationLabel";
|
|
this.notificationLabel.Size = new System.Drawing.Size(0, 25);
|
|
this.notificationLabel.TabIndex = 3;
|
|
//
|
|
// deleteSelectedItem
|
|
//
|
|
this.deleteSelectedItem.Enabled = false;
|
|
this.deleteSelectedItem.Location = new System.Drawing.Point(17, 702);
|
|
this.deleteSelectedItem.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.deleteSelectedItem.Name = "deleteSelectedItem";
|
|
this.deleteSelectedItem.Size = new System.Drawing.Size(220, 61);
|
|
this.deleteSelectedItem.TabIndex = 4;
|
|
this.deleteSelectedItem.Text = "Delete Selected Item";
|
|
this.deleteSelectedItem.UseVisualStyleBackColor = true;
|
|
this.deleteSelectedItem.Click += new System.EventHandler(this.deleteSelectedItem_Click);
|
|
//
|
|
// adItemFilterComboBox
|
|
//
|
|
this.adItemFilterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.adItemFilterComboBox.FormattingEnabled = true;
|
|
this.adItemFilterComboBox.Location = new System.Drawing.Point(149, 4);
|
|
this.adItemFilterComboBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.adItemFilterComboBox.Name = "adItemFilterComboBox";
|
|
this.adItemFilterComboBox.Size = new System.Drawing.Size(246, 32);
|
|
this.adItemFilterComboBox.TabIndex = 1;
|
|
//
|
|
// letterSelectionLabel
|
|
//
|
|
this.letterSelectionLabel.AutoSize = true;
|
|
this.letterSelectionLabel.Location = new System.Drawing.Point(11, 4);
|
|
this.letterSelectionLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.letterSelectionLabel.Name = "letterSelectionLabel";
|
|
this.letterSelectionLabel.Size = new System.Drawing.Size(129, 25);
|
|
this.letterSelectionLabel.TabIndex = 0;
|
|
this.letterSelectionLabel.Text = "Select a filter:";
|
|
//
|
|
// menuStrip1
|
|
//
|
|
this.mainLayoutPanel.SetColumnSpan(this.menuStrip1, 2);
|
|
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileMainMenu});
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
this.menuStrip1.Padding = new System.Windows.Forms.Padding(7, 2, 0, 2);
|
|
this.menuStrip1.Size = new System.Drawing.Size(909, 35);
|
|
this.menuStrip1.TabIndex = 2;
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
//
|
|
// fileMainMenu
|
|
//
|
|
this.fileMainMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.closeFormFileMainMenu});
|
|
this.fileMainMenu.Name = "fileMainMenu";
|
|
this.fileMainMenu.Size = new System.Drawing.Size(56, 31);
|
|
this.fileMainMenu.Text = "&File";
|
|
//
|
|
// closeFormFileMainMenu
|
|
//
|
|
this.closeFormFileMainMenu.Name = "closeFormFileMainMenu";
|
|
this.closeFormFileMainMenu.Size = new System.Drawing.Size(208, 34);
|
|
this.closeFormFileMainMenu.Text = "&Close Form";
|
|
this.closeFormFileMainMenu.Click += new System.EventHandler(this.closeFormFileMainMenu_Click);
|
|
//
|
|
// FrmManageAdItems
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(168F, 168F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.ClientSize = new System.Drawing.Size(909, 822);
|
|
this.Controls.Add(this.mainLayoutPanel);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MainMenuStrip = this.menuStrip1;
|
|
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmManageAdItems";
|
|
this.Text = "Manage Ad Items";
|
|
this.Load += new System.EventHandler(this.frmManageAdItems_Load);
|
|
this.mainLayoutPanel.ResumeLayout(false);
|
|
this.mainLayoutPanel.PerformLayout();
|
|
this.columnOnePanel.ResumeLayout(false);
|
|
this.columnOnePanel.PerformLayout();
|
|
this.menuStrip1.ResumeLayout(false);
|
|
this.menuStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel mainLayoutPanel;
|
|
private System.Windows.Forms.ListView adItemListView;
|
|
private System.Windows.Forms.Panel columnOnePanel;
|
|
private System.Windows.Forms.ComboBox adItemFilterComboBox;
|
|
private System.Windows.Forms.Label letterSelectionLabel;
|
|
private System.Windows.Forms.Button deleteSelectedItem;
|
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem fileMainMenu;
|
|
private System.Windows.Forms.ToolStripMenuItem closeFormFileMainMenu;
|
|
private System.Windows.Forms.Label notificationLabel;
|
|
private System.Windows.Forms.Label addItemLabel;
|
|
private System.Windows.Forms.TextBox adItemTextBox;
|
|
private System.Windows.Forms.Button addItemButton;
|
|
}
|
|
} |