Advertisement
whiplk

[PROJECT] - HTMLeditor(form1.designer.cs)

Jun 4th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 11.99 KB | None | 0 0
  1. //Form1.Designer.cs - design controls
  2.  
  3. namespace WindowsFormsApplication1
  4. {
  5.     partial class Form1
  6.     {
  7.         /// <summary>
  8.         /// Required designer variable.
  9.         /// </summary>
  10.         private System.ComponentModel.IContainer components = null;
  11.  
  12.         /// <summary>
  13.         /// Clean up any resources being used.
  14.         /// </summary>
  15.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  16.         protected override void Dispose(bool disposing)
  17.         {
  18.             if (disposing && (components != null))
  19.             {
  20.                 components.Dispose();
  21.             }
  22.             base.Dispose(disposing);
  23.         }
  24.  
  25.         #region Windows Form Designer generated code
  26.  
  27.         /// <summary>
  28.         /// Required method for Designer support - do not modify
  29.         /// the contents of this method with the code editor.
  30.         /// </summary>
  31.         private void InitializeComponent()
  32.         {
  33.             this.richTextBox1 = new System.Windows.Forms.RichTextBox();
  34.             this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  35.             this.menuToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36.             this.novoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37.             this.abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38.             this.salvarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39.             this.fecharToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40.             this.sairToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41.             this.editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42.             this.fonteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43.             this.localizarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  44.             this.corToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  45.             this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
  46.             this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  47.             this.fontDialog1 = new System.Windows.Forms.FontDialog();
  48.             this.colorDialog1 = new System.Windows.Forms.ColorDialog();
  49.             this.panel1 = new System.Windows.Forms.Panel();
  50.             this.label1 = new System.Windows.Forms.Label();
  51.             this.textBox1 = new System.Windows.Forms.TextBox();
  52.             this.button1 = new System.Windows.Forms.Button();
  53.             this.menuStrip1.SuspendLayout();
  54.             this.panel1.SuspendLayout();
  55.             this.SuspendLayout();
  56.             //
  57.             // richTextBox1
  58.             //
  59.             this.richTextBox1.Location = new System.Drawing.Point(0, 27);
  60.             this.richTextBox1.Name = "richTextBox1";
  61.             this.richTextBox1.Size = new System.Drawing.Size(785, 534);
  62.             this.richTextBox1.TabIndex = 0;
  63.             this.richTextBox1.Text = "";
  64.             //
  65.             // menuStrip1
  66.             //
  67.             this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  68.             this.menuToolStripMenuItem,
  69.             this.editarToolStripMenuItem,
  70.             this.sairToolStripMenuItem});
  71.             this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  72.             this.menuStrip1.Name = "menuStrip1";
  73.             this.menuStrip1.Size = new System.Drawing.Size(784, 24);
  74.             this.menuStrip1.TabIndex = 1;
  75.             this.menuStrip1.Text = "menuStrip1";
  76.             //
  77.             // menuToolStripMenuItem
  78.             //
  79.             this.menuToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  80.             this.novoToolStripMenuItem,
  81.             this.abrirToolStripMenuItem,
  82.             this.salvarToolStripMenuItem,
  83.             this.fecharToolStripMenuItem});
  84.             this.menuToolStripMenuItem.Name = "menuToolStripMenuItem";
  85.             this.menuToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
  86.             this.menuToolStripMenuItem.Text = "Menu";
  87.             //
  88.             // novoToolStripMenuItem
  89.             //
  90.             this.novoToolStripMenuItem.Name = "novoToolStripMenuItem";
  91.             this.novoToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  92.             this.novoToolStripMenuItem.Text = "Novo";
  93.             this.novoToolStripMenuItem.Click += new System.EventHandler(this.novoToolStripMenuItem_Click);
  94.             //
  95.             // abrirToolStripMenuItem
  96.             //
  97.             this.abrirToolStripMenuItem.Name = "abrirToolStripMenuItem";
  98.             this.abrirToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  99.             this.abrirToolStripMenuItem.Text = "Abrir";
  100.             this.abrirToolStripMenuItem.Click += new System.EventHandler(this.abrirToolStripMenuItem_Click);
  101.             //
  102.             // salvarToolStripMenuItem
  103.             //
  104.             this.salvarToolStripMenuItem.Name = "salvarToolStripMenuItem";
  105.             this.salvarToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  106.             this.salvarToolStripMenuItem.Text = "Salvar";
  107.             this.salvarToolStripMenuItem.Click += new System.EventHandler(this.salvarToolStripMenuItem_Click);
  108.             //
  109.             // fecharToolStripMenuItem
  110.             //
  111.             this.fecharToolStripMenuItem.Name = "fecharToolStripMenuItem";
  112.             this.fecharToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  113.             this.fecharToolStripMenuItem.Text = "Fechar";
  114.             this.fecharToolStripMenuItem.Click += new System.EventHandler(this.fecharToolStripMenuItem_Click);
  115.             //
  116.             // sairToolStripMenuItem
  117.             //
  118.             this.sairToolStripMenuItem.Name = "sairToolStripMenuItem";
  119.             this.sairToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
  120.             this.sairToolStripMenuItem.Text = "Sair";
  121.             this.sairToolStripMenuItem.Click += new System.EventHandler(this.sairToolStripMenuItem_Click);
  122.             //
  123.             // editarToolStripMenuItem
  124.             //
  125.             this.editarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  126.             this.fonteToolStripMenuItem,
  127.             this.localizarToolStripMenuItem,
  128.             this.corToolStripMenuItem});
  129.             this.editarToolStripMenuItem.Name = "editarToolStripMenuItem";
  130.             this.editarToolStripMenuItem.Size = new System.Drawing.Size(49, 20);
  131.             this.editarToolStripMenuItem.Text = "Editar";
  132.             //
  133.             // fonteToolStripMenuItem
  134.             //
  135.             this.fonteToolStripMenuItem.Name = "fonteToolStripMenuItem";
  136.             this.fonteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  137.             this.fonteToolStripMenuItem.Text = "Fonte";
  138.             this.fonteToolStripMenuItem.Click += new System.EventHandler(this.fonteToolStripMenuItem_Click);
  139.             //
  140.             // localizarToolStripMenuItem
  141.             //
  142.             this.localizarToolStripMenuItem.Name = "localizarToolStripMenuItem";
  143.             this.localizarToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  144.             this.localizarToolStripMenuItem.Text = "Localizar";
  145.             this.localizarToolStripMenuItem.Click += new System.EventHandler(this.localizarToolStripMenuItem_Click);
  146.             //
  147.             // corToolStripMenuItem
  148.             //
  149.             this.corToolStripMenuItem.Name = "corToolStripMenuItem";
  150.             this.corToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  151.             this.corToolStripMenuItem.Text = "Cor";
  152.             this.corToolStripMenuItem.Click += new System.EventHandler(this.corToolStripMenuItem_Click);
  153.             //
  154.             // openFileDialog1
  155.             //
  156.             this.openFileDialog1.FileName = "Nome do arquivo";
  157.             this.openFileDialog1.Filter = "Páginas|*.html";
  158.             //
  159.             // saveFileDialog1
  160.             //
  161.             this.saveFileDialog1.FileName = "Nome do arquivo";
  162.             this.saveFileDialog1.Filter = "Páginas|*.html";
  163.             //
  164.             // colorDialog1
  165.             //
  166.             this.colorDialog1.Color = System.Drawing.Color.White;
  167.             this.colorDialog1.FullOpen = true;
  168.             //
  169.             // panel1
  170.             //
  171.             this.panel1.Controls.Add(this.button1);
  172.             this.panel1.Controls.Add(this.textBox1);
  173.             this.panel1.Controls.Add(this.label1);
  174.             this.panel1.Location = new System.Drawing.Point(190, 176);
  175.             this.panel1.Name = "panel1";
  176.             this.panel1.Size = new System.Drawing.Size(396, 95);
  177.             this.panel1.TabIndex = 2;
  178.             //
  179.             // label1
  180.             //
  181.             this.label1.AutoSize = true;
  182.             this.label1.Location = new System.Drawing.Point(16, 14);
  183.             this.label1.Name = "label1";
  184.             this.label1.Size = new System.Drawing.Size(145, 13);
  185.             this.label1.TabIndex = 0;
  186.             this.label1.Text = "Digite um texto para localizar:";
  187.             //
  188.             // textBox1
  189.             //
  190.             this.textBox1.Location = new System.Drawing.Point(168, 12);
  191.             this.textBox1.Name = "textBox1";
  192.             this.textBox1.Size = new System.Drawing.Size(209, 20);
  193.             this.textBox1.TabIndex = 1;
  194.             //
  195.             // button1
  196.             //
  197.             this.button1.Location = new System.Drawing.Point(159, 55);
  198.             this.button1.Name = "button1";
  199.             this.button1.Size = new System.Drawing.Size(75, 23);
  200.             this.button1.TabIndex = 2;
  201.             this.button1.Text = "Localizar";
  202.             this.button1.UseVisualStyleBackColor = true;
  203.             this.button1.Click += new System.EventHandler(this.button1_Click);
  204.             //
  205.             // Form1
  206.             //
  207.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  208.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  209.             this.ClientSize = new System.Drawing.Size(784, 562);
  210.             this.Controls.Add(this.panel1);
  211.             this.Controls.Add(this.richTextBox1);
  212.             this.Controls.Add(this.menuStrip1);
  213.             this.MainMenuStrip = this.menuStrip1;
  214.             this.Name = "Form1";
  215.             this.Text = "Form1";
  216.             this.menuStrip1.ResumeLayout(false);
  217.             this.menuStrip1.PerformLayout();
  218.             this.panel1.ResumeLayout(false);
  219.             this.panel1.PerformLayout();
  220.             this.ResumeLayout(false);
  221.             this.PerformLayout();
  222.  
  223.         }
  224.  
  225.         #endregion
  226.  
  227.         private System.Windows.Forms.RichTextBox richTextBox1;
  228.         private System.Windows.Forms.MenuStrip menuStrip1;
  229.         private System.Windows.Forms.ToolStripMenuItem menuToolStripMenuItem;
  230.         private System.Windows.Forms.ToolStripMenuItem novoToolStripMenuItem;
  231.         private System.Windows.Forms.ToolStripMenuItem abrirToolStripMenuItem;
  232.         private System.Windows.Forms.ToolStripMenuItem salvarToolStripMenuItem;
  233.         private System.Windows.Forms.ToolStripMenuItem fecharToolStripMenuItem;
  234.         private System.Windows.Forms.ToolStripMenuItem editarToolStripMenuItem;
  235.         private System.Windows.Forms.ToolStripMenuItem fonteToolStripMenuItem;
  236.         private System.Windows.Forms.ToolStripMenuItem localizarToolStripMenuItem;
  237.         private System.Windows.Forms.ToolStripMenuItem corToolStripMenuItem;
  238.         private System.Windows.Forms.ToolStripMenuItem sairToolStripMenuItem;
  239.         private System.Windows.Forms.OpenFileDialog openFileDialog1;
  240.         private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  241.         private System.Windows.Forms.FontDialog fontDialog1;
  242.         private System.Windows.Forms.ColorDialog colorDialog1;
  243.         private System.Windows.Forms.Panel panel1;
  244.         private System.Windows.Forms.TextBox textBox1;
  245.         private System.Windows.Forms.Label label1;
  246.         private System.Windows.Forms.Button button1;
  247.  
  248.     }
  249. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement