Click here to Skip to main content
15,896,453 members
Articles / Web Development / ASP.NET

Template-Based Code Generation with SmartCode

Rate me:
Please Sign up or sign in to vote.
4.82/5 (35 votes)
25 Dec 20067 min read 101.1K   3.5K   121  
SmartCode is a template based code generator.This tutorial describes the process of building a templates to SmartCode
/*
 * Copyright � 2005-2006 Danilo Mendez <danilo.mendez@kontac.net>
 * Adolfo Socorro <ajs@esolutionspr.com>
 * www.kontac.net 
 * All rights reserved.
 * Released under both BSD license and Lesser GPL library license.
 * Whenever there is any discrepancy between the two licenses,
 * the BSD license will take precedence.
 */

namespace SmartCode.Studio
{
    partial class SmartStudio
    {
        /// <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()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SmartStudio));
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.projectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.librariesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.loadLibraryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewLibrariesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.generateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.uiBtnNew = new System.Windows.Forms.ToolStripButton();
            this.uiBtnOpen = new System.Windows.Forms.ToolStripButton();
            this.uiBtnSave = new System.Windows.Forms.ToolStripButton();
            this.uiBtnSaveAs = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.uiBtnAddLibraries = new System.Windows.Forms.ToolStripButton();
            this.uiBtnLibrarySetting = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.uiBtnGenerate = new System.Windows.Forms.ToolStripButton();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.uiPnlExplorer = new System.Windows.Forms.Panel();
            this.uiTvExplorer = new System.Windows.Forms.TreeView();
            this.uiDBImages = new System.Windows.Forms.ImageList(this.components);
            this.panel1 = new System.Windows.Forms.Panel();
            this.toolStrip2 = new System.Windows.Forms.ToolStrip();
            this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
            this.uiTBDeleteObject = new System.Windows.Forms.ToolStripButton();
            this.uiPnlMain = new System.Windows.Forms.Panel();
            this.uiPGNamedObject = new System.Windows.Forms.PropertyGrid();
            this.uiPnlMainTop = new System.Windows.Forms.Panel();
            this.uiTxtCaption = new System.Windows.Forms.RichTextBox();
            this.uiBarImages = new System.Windows.Forms.ImageList(this.components);
            this.addControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.menuStrip1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.uiPnlExplorer.SuspendLayout();
            this.panel1.SuspendLayout();
            this.toolStrip2.SuspendLayout();
            this.uiPnlMain.SuspendLayout();
            this.uiPnlMainTop.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.projectToolStripMenuItem,
            this.librariesToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(806, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.toolStripSeparator3,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.toolStripSeparator4,
            this.closeToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.newToolStripMenuItem.Text = "&New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.NewProject_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.openToolStripMenuItem.Text = "&Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.OpenProject_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(121, 6);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Enabled = false;
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.saveToolStripMenuItem.Text = "&Save";
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.SaveProject_Click);
            // 
            // saveAsToolStripMenuItem
            // 
            this.saveAsToolStripMenuItem.Enabled = false;
            this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
            this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.saveAsToolStripMenuItem.Text = "Save &As";
            this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.SaveAsProject_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(121, 6);
            // 
            // closeToolStripMenuItem
            // 
            this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
            this.closeToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.closeToolStripMenuItem.Text = "&Exit";
            this.closeToolStripMenuItem.Click += new System.EventHandler(this.CloseProject_Click);
            // 
            // projectToolStripMenuItem
            // 
            this.projectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.refreshProjectToolStripMenuItem,
            this.addControlToolStripMenuItem});
            this.projectToolStripMenuItem.Name = "projectToolStripMenuItem";
            this.projectToolStripMenuItem.Size = new System.Drawing.Size(53, 20);
            this.projectToolStripMenuItem.Text = "&Project";
            // 
            // refreshProjectToolStripMenuItem
            // 
            this.refreshProjectToolStripMenuItem.Enabled = false;
            this.refreshProjectToolStripMenuItem.Name = "refreshProjectToolStripMenuItem";
            this.refreshProjectToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.refreshProjectToolStripMenuItem.Text = "&Refresh Project";
            this.refreshProjectToolStripMenuItem.Click += new System.EventHandler(this.refreshProjectToolStripMenuItem_Click);
            // 
            // librariesToolStripMenuItem
            // 
            this.librariesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.loadLibraryToolStripMenuItem,
            this.viewLibrariesToolStripMenuItem,
            this.toolStripSeparator5,
            this.generateToolStripMenuItem});
            this.librariesToolStripMenuItem.Name = "librariesToolStripMenuItem";
            this.librariesToolStripMenuItem.Size = new System.Drawing.Size(72, 20);
            this.librariesToolStripMenuItem.Text = "&Generation";
            // 
            // loadLibraryToolStripMenuItem
            // 
            this.loadLibraryToolStripMenuItem.Enabled = false;
            this.loadLibraryToolStripMenuItem.Name = "loadLibraryToolStripMenuItem";
            this.loadLibraryToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.loadLibraryToolStripMenuItem.Text = "&Add Library";
            this.loadLibraryToolStripMenuItem.Click += new System.EventHandler(this.LoadLibrary_Click);
            // 
            // viewLibrariesToolStripMenuItem
            // 
            this.viewLibrariesToolStripMenuItem.Enabled = false;
            this.viewLibrariesToolStripMenuItem.Name = "viewLibrariesToolStripMenuItem";
            this.viewLibrariesToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.viewLibrariesToolStripMenuItem.Text = "&View Libraries";
            this.viewLibrariesToolStripMenuItem.Click += new System.EventHandler(this.ViewLibraries_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(149, 6);
            // 
            // generateToolStripMenuItem
            // 
            this.generateToolStripMenuItem.Enabled = false;
            this.generateToolStripMenuItem.Name = "generateToolStripMenuItem";
            this.generateToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.generateToolStripMenuItem.Text = "Ge&nerate";
            this.generateToolStripMenuItem.Click += new System.EventHandler(this.Generate_Click);
            // 
            // helpToolStripMenuItem
            // 
            this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.helpToolStripMenuItem1,
            this.aboutToolStripMenuItem});
            this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
            this.helpToolStripMenuItem.Size = new System.Drawing.Size(40, 20);
            this.helpToolStripMenuItem.Text = "&Help";
            // 
            // helpToolStripMenuItem1
            // 
            this.helpToolStripMenuItem1.Name = "helpToolStripMenuItem1";
            this.helpToolStripMenuItem1.Size = new System.Drawing.Size(114, 22);
            this.helpToolStripMenuItem1.Text = "H&elp";
            this.helpToolStripMenuItem1.Click += new System.EventHandler(this.helpToolStripMenuItem1_Click);
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
            this.aboutToolStripMenuItem.Text = "&About";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.uiBtnNew,
            this.uiBtnOpen,
            this.uiBtnSave,
            this.uiBtnSaveAs,
            this.toolStripSeparator1,
            this.uiBtnAddLibraries,
            this.uiBtnLibrarySetting,
            this.toolStripSeparator2,
            this.uiBtnGenerate});
            this.toolStrip1.Location = new System.Drawing.Point(0, 24);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(806, 25);
            this.toolStrip1.TabIndex = 1;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // uiBtnNew
            // 
            this.uiBtnNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnNew.Image = global::SmartCode.Studio.Properties.Resources.file_new;
            this.uiBtnNew.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnNew.Name = "uiBtnNew";
            this.uiBtnNew.Size = new System.Drawing.Size(23, 22);
            this.uiBtnNew.Text = "New";
            this.uiBtnNew.Click += new System.EventHandler(this.NewProject_Click);
            // 
            // uiBtnOpen
            // 
            this.uiBtnOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnOpen.Image = global::SmartCode.Studio.Properties.Resources.open_document_16;
            this.uiBtnOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnOpen.Name = "uiBtnOpen";
            this.uiBtnOpen.Size = new System.Drawing.Size(23, 22);
            this.uiBtnOpen.Text = "Open";
            this.uiBtnOpen.Click += new System.EventHandler(this.OpenProject_Click);
            // 
            // uiBtnSave
            // 
            this.uiBtnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnSave.Enabled = false;
            this.uiBtnSave.Image = ((System.Drawing.Image)(resources.GetObject("uiBtnSave.Image")));
            this.uiBtnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnSave.Name = "uiBtnSave";
            this.uiBtnSave.Size = new System.Drawing.Size(23, 22);
            this.uiBtnSave.Text = "Save";
            this.uiBtnSave.Click += new System.EventHandler(this.SaveProject_Click);
            // 
            // uiBtnSaveAs
            // 
            this.uiBtnSaveAs.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnSaveAs.Enabled = false;
            this.uiBtnSaveAs.Image = global::SmartCode.Studio.Properties.Resources.SaveAllHS;
            this.uiBtnSaveAs.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnSaveAs.Name = "uiBtnSaveAs";
            this.uiBtnSaveAs.Size = new System.Drawing.Size(23, 22);
            this.uiBtnSaveAs.Text = "Save As";
            this.uiBtnSaveAs.Click += new System.EventHandler(this.SaveAsProject_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // uiBtnAddLibraries
            // 
            this.uiBtnAddLibraries.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnAddLibraries.Enabled = false;
            this.uiBtnAddLibraries.Image = global::SmartCode.Studio.Properties.Resources.AddLibrariesHS;
            this.uiBtnAddLibraries.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnAddLibraries.Name = "uiBtnAddLibraries";
            this.uiBtnAddLibraries.Size = new System.Drawing.Size(23, 22);
            this.uiBtnAddLibraries.Text = "Add Libraries";
            this.uiBtnAddLibraries.Click += new System.EventHandler(this.LoadLibrary_Click);
            // 
            // uiBtnLibrarySetting
            // 
            this.uiBtnLibrarySetting.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnLibrarySetting.Enabled = false;
            this.uiBtnLibrarySetting.Image = global::SmartCode.Studio.Properties.Resources.LibrariesHS;
            this.uiBtnLibrarySetting.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnLibrarySetting.Name = "uiBtnLibrarySetting";
            this.uiBtnLibrarySetting.Size = new System.Drawing.Size(23, 22);
            this.uiBtnLibrarySetting.Text = "View Libraries";
            this.uiBtnLibrarySetting.Click += new System.EventHandler(this.ViewLibraries_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // uiBtnGenerate
            // 
            this.uiBtnGenerate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiBtnGenerate.Enabled = false;
            this.uiBtnGenerate.Image = global::SmartCode.Studio.Properties.Resources.generate;
            this.uiBtnGenerate.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiBtnGenerate.Name = "uiBtnGenerate";
            this.uiBtnGenerate.Size = new System.Drawing.Size(23, 22);
            this.uiBtnGenerate.Text = "Generate";
            this.uiBtnGenerate.Click += new System.EventHandler(this.Generate_Click);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Location = new System.Drawing.Point(0, 545);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(806, 22);
            this.statusStrip1.TabIndex = 2;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 49);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.uiPnlExplorer);
            this.splitContainer1.Panel1.Controls.Add(this.panel1);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.uiPnlMain);
            this.splitContainer1.Panel2.Controls.Add(this.uiPnlMainTop);
            this.splitContainer1.Size = new System.Drawing.Size(806, 496);
            this.splitContainer1.SplitterDistance = 267;
            this.splitContainer1.TabIndex = 3;
            // 
            // uiPnlExplorer
            // 
            this.uiPnlExplorer.Controls.Add(this.uiTvExplorer);
            this.uiPnlExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiPnlExplorer.Location = new System.Drawing.Point(0, 25);
            this.uiPnlExplorer.Name = "uiPnlExplorer";
            this.uiPnlExplorer.Size = new System.Drawing.Size(267, 471);
            this.uiPnlExplorer.TabIndex = 1;
            // 
            // uiTvExplorer
            // 
            this.uiTvExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTvExplorer.FullRowSelect = true;
            this.uiTvExplorer.HideSelection = false;
            this.uiTvExplorer.ImageIndex = 0;
            this.uiTvExplorer.ImageList = this.uiDBImages;
            this.uiTvExplorer.Location = new System.Drawing.Point(0, 0);
            this.uiTvExplorer.Name = "uiTvExplorer";
            this.uiTvExplorer.SelectedImageIndex = 0;
            this.uiTvExplorer.Size = new System.Drawing.Size(267, 471);
            this.uiTvExplorer.TabIndex = 0;
            this.uiTvExplorer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.uiTvExplorer_AfterSelect);
            // 
            // uiDBImages
            // 
            this.uiDBImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("uiDBImages.ImageStream")));
            this.uiDBImages.TransparentColor = System.Drawing.Color.Transparent;
            this.uiDBImages.Images.SetKeyName(0, "folder_closed_16_h.gif");
            this.uiDBImages.Images.SetKeyName(1, "Table.gif");
            this.uiDBImages.Images.SetKeyName(2, "Columns.gif");
            this.uiDBImages.Images.SetKeyName(3, "WorkSpace.gif");
            this.uiDBImages.Images.SetKeyName(4, "RelationshipsHS.png");
            this.uiDBImages.Images.SetKeyName(5, "Join.png");
            this.uiDBImages.Images.SetKeyName(6, "DatasetView_Column.png");
            this.uiDBImages.Images.SetKeyName(7, "");
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.toolStrip2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(267, 25);
            this.panel1.TabIndex = 0;
            // 
            // toolStrip2
            // 
            this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton2,
            this.uiTBDeleteObject});
            this.toolStrip2.Location = new System.Drawing.Point(0, 0);
            this.toolStrip2.Name = "toolStrip2";
            this.toolStrip2.Size = new System.Drawing.Size(267, 25);
            this.toolStrip2.TabIndex = 0;
            this.toolStrip2.Text = "toolStrip2";
            // 
            // toolStripButton2
            // 
            this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButton2.Enabled = false;
            this.toolStripButton2.Image = global::SmartCode.Studio.Properties.Resources.add16x16_8_bit;
            this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton2.Name = "toolStripButton2";
            this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
            this.toolStripButton2.Text = "toolStripButton2";
            this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
            // 
            // uiTBDeleteObject
            // 
            this.uiTBDeleteObject.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.uiTBDeleteObject.Enabled = false;
            this.uiTBDeleteObject.Image = global::SmartCode.Studio.Properties.Resources.remove;
            this.uiTBDeleteObject.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.uiTBDeleteObject.Name = "uiTBDeleteObject";
            this.uiTBDeleteObject.Size = new System.Drawing.Size(23, 22);
            this.uiTBDeleteObject.Text = "Remove";
            this.uiTBDeleteObject.Click += new System.EventHandler(this.OnDeleteObject_Click);
            // 
            // uiPnlMain
            // 
            this.uiPnlMain.Controls.Add(this.uiPGNamedObject);
            this.uiPnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiPnlMain.Location = new System.Drawing.Point(0, 25);
            this.uiPnlMain.Name = "uiPnlMain";
            this.uiPnlMain.Size = new System.Drawing.Size(535, 471);
            this.uiPnlMain.TabIndex = 1;
            // 
            // uiPGNamedObject
            // 
            this.uiPGNamedObject.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiPGNamedObject.Location = new System.Drawing.Point(0, 0);
            this.uiPGNamedObject.Name = "uiPGNamedObject";
            this.uiPGNamedObject.Size = new System.Drawing.Size(535, 471);
            this.uiPGNamedObject.TabIndex = 1;
            // 
            // uiPnlMainTop
            // 
            this.uiPnlMainTop.Controls.Add(this.uiTxtCaption);
            this.uiPnlMainTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.uiPnlMainTop.Location = new System.Drawing.Point(0, 0);
            this.uiPnlMainTop.Name = "uiPnlMainTop";
            this.uiPnlMainTop.Size = new System.Drawing.Size(535, 25);
            this.uiPnlMainTop.TabIndex = 0;
            // 
            // uiTxtCaption
            // 
            this.uiTxtCaption.BackColor = System.Drawing.SystemColors.ActiveBorder;
            this.uiTxtCaption.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.uiTxtCaption.Dock = System.Windows.Forms.DockStyle.Fill;
            this.uiTxtCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.uiTxtCaption.Location = new System.Drawing.Point(0, 0);
            this.uiTxtCaption.Name = "uiTxtCaption";
            this.uiTxtCaption.ReadOnly = true;
            this.uiTxtCaption.Size = new System.Drawing.Size(535, 25);
            this.uiTxtCaption.TabIndex = 0;
            this.uiTxtCaption.Text = "";
            // 
            // uiBarImages
            // 
            this.uiBarImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("uiBarImages.ImageStream")));
            this.uiBarImages.TransparentColor = System.Drawing.Color.Transparent;
            this.uiBarImages.Images.SetKeyName(0, "0086.ico");
            // 
            // addControlToolStripMenuItem
            // 
            this.addControlToolStripMenuItem.Enabled = false;
            this.addControlToolStripMenuItem.Name = "addControlToolStripMenuItem";
            this.addControlToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.addControlToolStripMenuItem.Text = "&Add Control";
            this.addControlToolStripMenuItem.Click += new System.EventHandler(this.addControlToolStripMenuItem_Click);
            // 
            // SmartStudio
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(806, 567);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.menuStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "SmartStudio";
            this.Text = "SmartCode Studio";
            this.Load += new System.EventHandler(this.SmartStudio_Load);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.uiPnlExplorer.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.toolStrip2.ResumeLayout(false);
            this.toolStrip2.PerformLayout();
            this.uiPnlMain.ResumeLayout(false);
            this.uiPnlMainTop.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
        private System.Windows.Forms.ToolStrip toolStrip1;
        private System.Windows.Forms.ToolStripButton uiBtnNew;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.SplitContainer splitContainer1;
        private System.Windows.Forms.Panel uiPnlExplorer;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.ToolStrip toolStrip2;
        private System.Windows.Forms.ToolStripButton toolStripButton2;
        private System.Windows.Forms.ToolStripButton uiTBDeleteObject;
        private System.Windows.Forms.Panel uiPnlMain;
        private System.Windows.Forms.Panel uiPnlMainTop;
        private System.Windows.Forms.PropertyGrid uiPGNamedObject;
        private System.Windows.Forms.TreeView uiTvExplorer;
        private System.Windows.Forms.ImageList uiDBImages;
        private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
        private System.Windows.Forms.ToolStripButton uiBtnOpen;
        private System.Windows.Forms.ToolStripButton uiBtnSave;
        private System.Windows.Forms.ToolStripButton uiBtnSaveAs;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
        private System.Windows.Forms.ToolStripButton uiBtnAddLibraries;
        private System.Windows.Forms.ToolStripButton uiBtnLibrarySetting;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
        private System.Windows.Forms.ToolStripButton uiBtnGenerate;
        private System.Windows.Forms.ImageList uiBarImages;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
        private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
        private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem librariesToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem loadLibraryToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem viewLibrariesToolStripMenuItem;
        private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
        private System.Windows.Forms.ToolStripMenuItem generateToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem1;
        private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
        private System.Windows.Forms.RichTextBox uiTxtCaption;
        private System.Windows.Forms.ToolStripMenuItem projectToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem refreshProjectToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem addControlToolStripMenuItem;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Danilo is the creator of SmartRules, a Business Rules Engine. He is an industry consultant working primarily with companies interested in implementing dynamic rules programming concepts to add flexibility to their architectures on web, CE, and desktop platforms. He operates his own website, Kontac, where you will find more information.

To contact Danilo, email him at danilo.mendez@gmail.com.

Comments and Discussions