Beispiel #1
0
 public ToolStripComboBox()
 {
     mToolStripComboBoxItems = new List<ToolStripComboBoxItem>();
     mMemberStreams = new List<MemberStream>();
     mCommands = new Dictionary<string, ICommand>();
     mToolStripComboBox = null;
 }
        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo      = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip          = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock     = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name     = "toolStrip2";
            this.toolStrip.Size     = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text     = "toolStrip2";

            this.triggerLabel    = new System.Windows.Forms.ToolStripLabel();
            this.trigger         = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode     = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name        = "trigger";
            this.trigger.Size        = new System.Drawing.Size(50, 25);
            this.trigger.Text        = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated  += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
                "ch1 ˄",
                "ch1 ˅",
                "ch2 ˄",
                "ch2 ˅",
                "ext ˄"
            });
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex              = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage    = (float.Parse(trigger.Text));
        }
Beispiel #3
0
        public override void AppendAdditionalMenuItems(System.Windows.Forms.ToolStripDropDown menu)
        {
            Menu_AppendItem(menu, "Component UI Location", UILocation_Clicked);
            Menu_AppendSeparator(menu);
            Menu_AppendItem(menu, "Select Feature Sub-Types", SelectTypes_Clicked);

            show3dMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
            show3dMenuItem.Text    = "Create 3D Buildings";
            show3dMenuItem.Click  += new EventHandler(Generate3D_Clicked);
            show3dMenuItem.Checked = show3d;
            if (wayFT == ElkLib.FeatureType.Building)
            {
                show3dMenuItem.Enabled = true;
            }
            else
            {
                show3dMenuItem.Enabled = false;
            }
            menu.Items.Add(show3dMenuItem);

            Menu_AppendSeparator(menu);
            // Add Feature Type ComboBox
            Menu_AppendItem(menu, "Feature Type:", FeatureType_Clicked);
            tsComboBox = new System.Windows.Forms.ToolStripComboBox();
            tsComboBox.ComboBox.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
            tsComboBox.ComboBox.BindingContext        = new System.Windows.Forms.BindingContext();
            tsComboBox.ComboBox.Width                 = 230;
            tsComboBox.ComboBox.DataSource            = featureTypes;
            tsComboBox.ComboBox.SelectedIndexChanged += new EventHandler(Feature_SelectedIndexChanged);
            tsComboBox.ComboBox.SelectedIndex         = featureTypes.IndexOf(way);
            menu.Items.Add(tsComboBox);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     btnClose   = new System.Windows.Forms.ToolStripButton();
     lblSearch  = new System.Windows.Forms.ToolStripLabel();
     cmbColumns = new System.Windows.Forms.ToolStripComboBox();
     txtSearch  = new System.Windows.Forms.ToolStripTextBox();
 }
        /// <summary>
        /// 设置ToolStripComboBox枚举选中项
        /// </summary>
        /// <typeparam name="T">枚举</typeparam>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="enumValue">选中项值</param>
        public static void SetEnumToToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox, T enumValue) where T : struct
        {
            Type enumType = typeof(T);

            EnumEx.AssertEnum(enumType);
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (toolStripComboBox.Items.Count == 0)
            {
                throw new Exception("ToolStripComboBox的中还没有绑定数据项");
            }

            try
            {
                for (int i = 0; i < toolStripComboBox.Items.Count; i++)
                {
                    if (enumValue.Equals(((FieldInfoEx)toolStripComboBox.Items[i]).Value))
                    {
                        toolStripComboBox.SelectedIndex = i;
                        return;
                    }
                }

                throw new Exception(string.Format("枚举类型:{0}与绑定到ToolStripComboBox的枚举类型不匹配", enumType.FullName));
            }
            catch (Exception ex)
            {
                throw new Exception("设定值失败", ex);
            }
        }
        /// <summary>
        /// 绑定集合到ToolStripComboBox
        /// </summary>
        /// <typeparam name="T">泛型类型</typeparam>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="bindItemss">要绑定的集合</param>
        /// <param name="selectedItem">默认选中项,不设置默认选中时该值为null[默认值为null]</param>
        private static void BindingIEnumerableGenericToToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox, List <FieldInfoEx> bindItemss, T selectedItem = null) where T : class
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            try
            {
                toolStripComboBox.Items.Clear();
                if (bindItemss.Count == 0)
                {
                    return;
                }

                int         selectedIndex = 0;
                FieldInfoEx item          = null;
                for (int i = 0; i < bindItemss.Count; i++)
                {
                    item = bindItemss[i];
                    if (item.Value == selectedItem || object.Equals(item.Value, selectedItem))
                    {
                        selectedIndex = i;
                    }

                    toolStripComboBox.Items.Add(item);
                }

                toolStripComboBox.SelectedIndex = selectedIndex;
            }
            catch (Exception ex)
            {
                throw new Exception("绑定值失败", ex);
            }
        }
        /// <summary>
        /// Initialize localization control inside ReportViewer
        /// </summary>
        /// <remarks>
        /// Messages can be set only after supplying a data source
        /// </remarks>
        private void InitializeLocalization( )
        {
            var separator = new System.Windows.Forms.ToolStripSeparator( );

            ToolStrip.Items.Add(separator);

            var language = new System.Windows.Forms.ToolStripComboBox( );

            language.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            language.Items.Add("English");
            language.Items.Add("Русский");
            language.SelectedIndex         = 0;
            language.SelectedIndexChanged += delegate
            {
                switch ((string)language.SelectedItem)
                {
                case "English":
                    rreportViewer.Messages = null;
                    break;

                case "Русский":
                    rreportViewer.Messages = new RussianReportViewerMessages( );
                    break;

                default:
                    Debug.Assert(false, "Unknown language: " + (string)language.SelectedItem);
                    break;
                }
            };
            ToolStrip.Items.Add(language);
        }
Beispiel #8
0
        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name = "toolStrip2";
            this.toolStrip.Size = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text = "toolStrip2";

            this.triggerLabel = new System.Windows.Forms.ToolStripLabel();
            this.trigger = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name = "trigger";
            this.trigger.Size = new System.Drawing.Size(50, 25);
            this.trigger.Text = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
            "ch1 ˄",
            "ch1 ˅",
            "ch2 ˄",
            "ch2 ˅",
            "ext ˄"});
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage = (float.Parse(trigger.Text));
        }
        /// <summary>
        /// 设置ToolStripComboBox字符串选中项
        /// </summary>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="selectedItem">选中项值</param>
        /// <param name="ignoreCase">是否区分大小写[true:区分大小写,false:不区分,默认值为false]</param>
        public static void SetStringToToolStripComboBox(System.Windows.Forms.ToolStripComboBox toolStripComboBox, string selectedItem, bool ignoreCase = false)
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (toolStripComboBox.Items.Count == 0)
            {
                return;
            }

            try
            {
                if (!ignoreCase && selectedItem != null)
                {
                    selectedItem = selectedItem.ToUpper();
                }

                object value = null;
                string item;
                for (int i = 0; i < toolStripComboBox.Items.Count; i++)
                {
                    value = ((FieldInfoEx)toolStripComboBox.Items[i]).Value;
                    if (value == null)
                    {
                        if (selectedItem == null)
                        {
                            toolStripComboBox.SelectedIndex = i;
                            return;
                        }

                        continue;
                    }

                    item = value.ToString();
                    if (!ignoreCase && item != null)
                    {
                        item = item.ToUpper();
                    }

                    if (object.Equals(selectedItem, item))
                    {
                        toolStripComboBox.SelectedIndex = i;
                        return;
                    }
                }

                throw new Exception(string.Format("ToolStripComboBox集合项中不包含类型:{0}的项:{1}", selectedItem.GetType().Name, selectedItem.ToString()));
            }
            catch (Exception ex)
            {
                throw new Exception("设定值失败", ex);
            }
        }
Beispiel #10
0
        public int setPortNameToToolStripComboBox(System.Windows.Forms.ToolStripComboBox cb)
        {
            foreach (var portName in SerialPort.GetPortNames())
            {
                cb.Items.Add(portName);
            }
            if (cb.Items.Count > 0)
            {
                cb.SelectedIndex = 0;
            }

            return(cb.Items.Count);
        }
        /// <summary>
        /// 绑定字符串集合到ToolStripComboBox
        /// </summary>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="items">集合项</param>
        /// <param name="selectedItem">默认选中项,不设置默认选中时该值为null[默认值为null]</param>
        /// <param name="ignoreCase">是否区分大小写[true:区分大小写,false:不区分,默认值为false]</param>
        public static void BindingIEnumerableStringToolStripComboBox(System.Windows.Forms.ToolStripComboBox toolStripComboBox, IEnumerable <string> items, string selectedItem = null, bool ignoreCase = false)
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            try
            {
                toolStripComboBox.Items.Clear();
                if (items == null || items.Count() == 0)
                {
                    return;
                }

                if (selectedItem != null && !ignoreCase)
                {
                    selectedItem = selectedItem.ToUpper();
                }

                int    selectedIndex = -1;
                string item          = null;
                for (int i = 0; i < items.Count(); i++)
                {
                    item = items.ElementAt(i);
                    toolStripComboBox.Items.Add(new FieldInfoEx(item.ToString(), item, string.Empty, item));

                    if (selectedIndex != -1)
                    {
                        continue;
                    }

                    if (!ignoreCase && item != null)
                    {
                        item = item.ToUpper();
                    }

                    if (item == selectedItem || object.Equals(selectedItem, item.ToUpper()))
                    {
                        selectedIndex = i;
                    }
                }

                //toolStripComboBox.DisplayMember = DropdownBindingItem.DisplayNameFieldName;
                toolStripComboBox.SelectedIndex = selectedIndex == -1 ? 0 : selectedIndex;
            }
            catch (Exception ex)
            {
                throw new Exception("绑定值失败", ex);
            }
        }
Beispiel #12
0
 public override void _initControl()
 {
     if (null == mToolStripComboBox || mToolStripComboBox.IsDisposed)
     {
         mToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
         foreach (ToolStripComboBoxItem i in mToolStripComboBoxItems)
         {
             string text_ = i._getText();
             ICommand command_ = i._getCommand();
             mCommands[text_] = command_;
             mToolStripComboBox.Items.Add(text_);
         }
         mToolStripComboBox.SelectedIndexChanged += this._selectedIndexChanged;
     }
 }
        private void InitialiseComponents()
        {
            
            this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.CloseMenuItem.Text = "Close";

            this.ShowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowMenuItem.Text = "Show";
            
            this.ShowSummaryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ShowSummaryMenuItem.Text = "Summary";

            this.SettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SettingsMenuItem.Text = "Settings";

            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();

            this.IconContextMenuStrip = new System.Windows.Forms.ContextMenuStrip();
            this.NotificationIcon = new System.Windows.Forms.NotifyIcon();
            //
            //notofication icon
            //
            this.NotificationIcon.Icon = ( (System.Drawing.Icon)( Resources.TaskBarIcon ) );
            this.NotificationIcon.Text = "WorkReportReminder";
            this.NotificationIcon.Visible = true;
            this.NotificationIcon.ContextMenuStrip = this.IconContextMenuStrip;
            this.NotificationIcon.DoubleClick += new System.EventHandler(this.OnNotificationIconDoubleClick);
            // 
            // IconContextMenuStrip
            // 
            this.IconContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
                                                         {
                                                             this.ShowMenuItem,
                                                             this.ShowSummaryMenuItem,
                                                             this.SettingsMenuItem,
                                                             this.CloseMenuItem
                                                         });

            this.IconContextMenuStrip.Name = "IconContextMenuStrip";
            this.IconContextMenuStrip.Size = new System.Drawing.Size(182, 124);

            this.IconContextMenuStrip.ResumeLayout(false);
            this.IconContextMenuStrip.PerformLayout();
        }
        /// <summary>
        /// 绑定枚举值到ToolStripComboBox
        /// </summary>
        /// <typeparam name="T">枚举</typeparam>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="defaultSelectedValue">默认选中项值</param>
        /// <param name="ignoreList">忽略项列表</param>
        public static void BindingEnumToToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox, T defaultSelectedValue, IEnumerable <T> ignoreList = null) where T : struct
        {
            Type enumType = typeof(T);

            EnumEx.AssertEnum(enumType);
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (ignoreList == null)
            {
                ignoreList = new List <T>();
            }

            try
            {
                toolStripComboBox.Items.Clear();
                List <FieldInfoEx> items = EnumEx.GetEnumFieldInfoExList(enumType);
                int selectedIndex        = -1;

                for (int i = 0; i < items.Count; i++)
                {
                    var  item     = items[i];
                    bool isIgnore = (from ignoreItem in ignoreList where object.Equals(item.Value, ignoreItem) select ignoreItem).Count() > 0;
                    if (isIgnore)
                    {
                        continue;
                    }

                    if (object.Equals(item.Value, defaultSelectedValue))
                    {
                        selectedIndex = i;
                    }

                    toolStripComboBox.Items.Add(item);
                }

                toolStripComboBox.SelectedIndex = selectedIndex == -1 ? 0 : selectedIndex;
            }
            catch (Exception ex)
            {
                throw new Exception("绑定值失败", ex);
            }
        }
        /// <summary>
        /// 获取ToolStripComboBox枚举选中项
        /// </summary>
        /// <typeparam name="T">枚举类型</typeparam>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <returns>选中项枚举值</returns>
        public static T GetEnumFromToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox) where T : struct
        {
            EnumEx.AssertEnum <T>();
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            try
            {
                FieldInfoEx selectedItem = (FieldInfoEx)(toolStripComboBox.Items[toolStripComboBox.SelectedIndex]);
                return((T)selectedItem.Value);
            }
            catch (Exception ex)
            {
                throw new Exception("获取值失败", ex);
            }
        }
        /// <summary>
        /// 获取ToolStripComboBox泛型选中项值
        /// </summary>
        /// <typeparam name="T">绑定时的集合类型</typeparam>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <returns>选中项值</returns>
        public static T GetGenericFromToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox)
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (toolStripComboBox.SelectedIndex == -1)
            {
                throw new Exception("ToolStripComboBox的选中项索引为-1,没有选中项");
            }

            try
            {
                return((T)((FieldInfoEx)toolStripComboBox.Items[toolStripComboBox.SelectedIndex]).Value);
            }
            catch (Exception ex)
            {
                throw new Exception("获取值失败", ex);
            }
        }
        /// <summary>
        /// 获取ToolStripComboBox字符串选中项值
        /// </summary>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <returns>选中项值</returns>
        public static string GetStringFromToolStripComboBox(System.Windows.Forms.ToolStripComboBox toolStripComboBox)
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (toolStripComboBox.SelectedIndex == -1)
            {
                throw new Exception("ToolStripComboBox的选中项索引为-1,没有选中项");
            }

            try
            {
                object value = ((FieldInfoEx)toolStripComboBox.Items[toolStripComboBox.SelectedIndex]).Value;
                return(value == null ? null : value.ToString());
            }
            catch (Exception ex)
            {
                throw new Exception("获取值失败", ex);
            }
        }
        /// <summary>
        /// 设置ToolStripComboBox泛型选中项
        /// </summary>
        /// <param name="toolStripComboBox">ToolStripComboBox</param>
        /// <param name="selectedItem">选中项值</param>
        public static void SetGenericToToolStripComboBox <T>(System.Windows.Forms.ToolStripComboBox toolStripComboBox, T selectedItem)
        {
            if (toolStripComboBox == null)
            {
                throw new ArgumentNullException(nameof(toolStripComboBox), "目标控件不能为null");
            }

            if (selectedItem == null)
            {
                throw new ArgumentNullException(nameof(selectedItem), "选中项不能为null");
            }

            if (toolStripComboBox.Items.Count == 0)
            {
                throw new Exception("ToolStripComboBox的中还没有绑定数据项");
            }

            try
            {
                object value = null;
                for (int i = 0; i < toolStripComboBox.Items.Count; i++)
                {
                    value = ((FieldInfoEx)toolStripComboBox.Items[i]).Value;
                    if (object.Equals(value, selectedItem))
                    {
                        toolStripComboBox.SelectedIndex = i;
                        return;
                    }
                }

                throw new Exception(string.Format("ToolStripComboBox集合项中不包含类型:{0}的项:{1}", selectedItem.GetType().Name, selectedItem.ToString()));
            }
            catch (Exception ex)
            {
                throw new Exception("设定值失败", ex);
            }
        }
 /// <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(Principal));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.cadastrosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.alunosMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.turmasMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aulasMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolbar = new System.Windows.Forms.ToolStrip();
     this.btnAdd = new System.Windows.Forms.ToolStripButton();
     this.btnRegistraPresenca = new System.Windows.Forms.ToolStripButton();
     this.btnUpdate = new System.Windows.Forms.ToolStripButton();
     this.btnDelete = new System.Windows.Forms.ToolStripButton();
     this.btnRelatorio = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.labelTipoCadastro = new System.Windows.Forms.ToolStripLabel();
     this.cmbTurmas = new System.Windows.Forms.ToolStripComboBox();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.statusImage = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusMessage = new System.Windows.Forms.ToolStripStatusLabel();
     this.panelPrincipal = new System.Windows.Forms.Panel();
     this.menuStrip1.SuspendLayout();
     this.toolbar.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cadastrosToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(741, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // cadastrosToolStripMenuItem
     //
     this.cadastrosToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.alunosMenuItem,
     this.turmasMenuItem,
     this.aulasMenuItem});
     this.cadastrosToolStripMenuItem.Name = "cadastrosToolStripMenuItem";
     this.cadastrosToolStripMenuItem.Size = new System.Drawing.Size(71, 20);
     this.cadastrosToolStripMenuItem.Text = "Cadastros";
     //
     // alunosMenuItem
     //
     this.alunosMenuItem.Name = "alunosMenuItem";
     this.alunosMenuItem.Size = new System.Drawing.Size(114, 22);
     this.alunosMenuItem.Text = "Alunos";
     this.alunosMenuItem.Click += new System.EventHandler(this.alunosMenuItem_Click);
     //
     // turmasMenuItem
     //
     this.turmasMenuItem.Name = "turmasMenuItem";
     this.turmasMenuItem.Size = new System.Drawing.Size(114, 22);
     this.turmasMenuItem.Text = "Turmas";
     this.turmasMenuItem.Click += new System.EventHandler(this.turmasMenuItem_Click);
     //
     // aulasMenuItem
     //
     this.aulasMenuItem.Name = "aulasMenuItem";
     this.aulasMenuItem.Size = new System.Drawing.Size(114, 22);
     this.aulasMenuItem.Text = "Aulas";
     this.aulasMenuItem.Click += new System.EventHandler(this.aulasMenuItem_Click);
     //
     // toolbar
     //
     this.toolbar.Enabled = false;
     this.toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnAdd,
     this.btnRegistraPresenca,
     this.btnUpdate,
     this.btnDelete,
     this.btnRelatorio,
     this.toolStripSeparator1,
     this.labelTipoCadastro,
     this.cmbTurmas});
     this.toolbar.Location = new System.Drawing.Point(0, 24);
     this.toolbar.Name = "toolbar";
     this.toolbar.Size = new System.Drawing.Size(741, 43);
     this.toolbar.TabIndex = 1;
     this.toolbar.Text = "toolStrip1";
     //
     // btnAdd
     //
     this.btnAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAdd.Image = global::NDDigital.DiarioAcademia.Apresentacao.WindowsApp.Properties.Resources.Symbol_Add;
     this.btnAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Padding = new System.Windows.Forms.Padding(6);
     this.btnAdd.Size = new System.Drawing.Size(40, 40);
     this.btnAdd.Text = "toolStripButton1";
     this.btnAdd.ToolTipText = " ";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnRegistraPresenca
     //
     this.btnRegistraPresenca.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRegistraPresenca.Image = ((System.Drawing.Image)(resources.GetObject("btnRegistraPresenca.Image")));
     this.btnRegistraPresenca.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnRegistraPresenca.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRegistraPresenca.Name = "btnRegistraPresenca";
     this.btnRegistraPresenca.Padding = new System.Windows.Forms.Padding(6);
     this.btnRegistraPresenca.Size = new System.Drawing.Size(40, 40);
     this.btnRegistraPresenca.Text = "toolStripButton1";
     this.btnRegistraPresenca.ToolTipText = " ";
     this.btnRegistraPresenca.Click += new System.EventHandler(this.btnRegistraPresenca_Click);
     //
     // btnUpdate
     //
     this.btnUpdate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnUpdate.Image = global::NDDigital.DiarioAcademia.Apresentacao.WindowsApp.Properties.Resources.Symbol_Pencil;
     this.btnUpdate.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnUpdate.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUpdate.Name = "btnUpdate";
     this.btnUpdate.Padding = new System.Windows.Forms.Padding(6);
     this.btnUpdate.Size = new System.Drawing.Size(40, 40);
     this.btnUpdate.Text = "toolStripButton1";
     this.btnUpdate.ToolTipText = " ";
     this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
     //
     // btnDelete
     //
     this.btnDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnDelete.Image = global::NDDigital.DiarioAcademia.Apresentacao.WindowsApp.Properties.Resources.Symbol_Delete;
     this.btnDelete.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Padding = new System.Windows.Forms.Padding(6);
     this.btnDelete.Size = new System.Drawing.Size(40, 40);
     this.btnDelete.Text = "toolStripButton1";
     this.btnDelete.ToolTipText = " ";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click_1);
     //
     // btnRelatorio
     //
     this.btnRelatorio.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRelatorio.Image = global::NDDigital.DiarioAcademia.Apresentacao.WindowsApp.Properties.Resources.Symbol_PDF;
     this.btnRelatorio.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btnRelatorio.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRelatorio.Name = "btnRelatorio";
     this.btnRelatorio.Padding = new System.Windows.Forms.Padding(6);
     this.btnRelatorio.Size = new System.Drawing.Size(36, 40);
     this.btnRelatorio.Text = "toolStripButton1";
     this.btnRelatorio.ToolTipText = " ";
     this.btnRelatorio.Click += new System.EventHandler(this.btnRelatorio_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 43);
     //
     // labelTipoCadastro
     //
     this.labelTipoCadastro.Name = "labelTipoCadastro";
     this.labelTipoCadastro.Size = new System.Drawing.Size(176, 40);
     this.labelTipoCadastro.Text = " Cadastro selecionado: Nenhum";
     //
     // cmbTurmas
     //
     this.cmbTurmas.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.cmbTurmas.AutoSize = false;
     this.cmbTurmas.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTurmas.Name = "cmbTurmas";
     this.cmbTurmas.Size = new System.Drawing.Size(250, 23);
     this.cmbTurmas.SelectedIndexChanged += new System.EventHandler(this.cmbTurmas_SelectedIndexChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusImage,
     this.statusMessage});
     this.statusStrip1.Location = new System.Drawing.Point(0, 534);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(741, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text = "statusStrip1";
     //
     // statusImage
     //
     this.statusImage.Name = "statusImage";
     this.statusImage.Size = new System.Drawing.Size(10, 17);
     this.statusImage.Text = " ";
     //
     // statusMessage
     //
     this.statusMessage.Name = "statusMessage";
     this.statusMessage.Size = new System.Drawing.Size(74, 17);
     this.statusMessage.Text = "[mensagem]";
     //
     // panelPrincipal
     //
     this.panelPrincipal.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelPrincipal.Location = new System.Drawing.Point(0, 67);
     this.panelPrincipal.Name = "panelPrincipal";
     this.panelPrincipal.Size = new System.Drawing.Size(741, 467);
     this.panelPrincipal.TabIndex = 3;
     //
     // Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(741, 556);
     this.Controls.Add(this.panelPrincipal);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolbar);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Principal";
     this.ShowIcon = false;
     this.Text = "Diario da Academia - O braço direito do prof. Panduio";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolbar.ResumeLayout(false);
     this.toolbar.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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.Windows.Forms.Label dESCRIPCIONLabel;
     System.Windows.Forms.Label nOMBRELabel;
     System.Windows.Forms.Label label40;
     System.Windows.Forms.Label label41;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Especies_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEspecies = new System.Windows.Forms.DataGridView();
     this.nOMCOMUNDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cODESPDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nOMCIENTIFICODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gRUPOCOMDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.grupoComercialBSource = new System.Windows.Forms.BindingSource(this.components);
     this.GRUPOECOLOGICO = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fAMILIADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONAGEOGRAFICADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.zONADEVIDADataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Detalle = new System.Windows.Forms.DataGridViewButtonColumn();
     this.specieBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEspecie = new System.Windows.Forms.BindingNavigator(this.components);
     this.cargarArchivo = new System.Windows.Forms.ToolStripButton();
     this.Btn_nuevaEspecie = new System.Windows.Forms.ToolStripButton();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.GroupComBSource = new System.Windows.Forms.BindingSource(this.components);
     this.groupBox = new System.Windows.Forms.GroupBox();
     this.button1 = new System.Windows.Forms.Button();
     this.cbx_GroupCom = new System.Windows.Forms.ComboBox();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.txt_DimCorte = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.txt_ZonaGeo = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.txt_NomCient = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.txt_NomCom = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.button3 = new System.Windows.Forms.Button();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.textBox4 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.textBox8 = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.grupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label42 = new System.Windows.Forms.Label();
     this.btn_crearImg = new System.Windows.Forms.Button();
     this.cbox_GrupoComercial = new System.Windows.Forms.ComboBox();
     this.btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_ZonaVida = new System.Windows.Forms.TextBox();
     this.txt_ZonaGeografica = new System.Windows.Forms.TextBox();
     this.txt_Familia = new System.Windows.Forms.TextBox();
     this.txt_NombreCientifico = new System.Windows.Forms.TextBox();
     this.txt_NombreComun = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.UpdateImageBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.imagenesBS = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem1 = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem1 = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.updImgUbic = new System.Windows.Forms.TextBox();
     this.pB_imgUpdate = new System.Windows.Forms.PictureBox();
     this.label36 = new System.Windows.Forms.Label();
     this.updImgDesc = new System.Windows.Forms.TextBox();
     this.updImgName = new System.Windows.Forms.TextBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.updGrupoEcoCbx = new System.Windows.Forms.ComboBox();
     this.label43 = new System.Windows.Forms.Label();
     this.Btn_CancelarUpdate = new System.Windows.Forms.Button();
     this.grupoComercialCbx = new System.Windows.Forms.ComboBox();
     this.Guardar = new System.Windows.Forms.Button();
     this.txt_ZonaVid = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txt_Fam = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.txt_NomCientifico = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.txt_NomComun = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.imagenTxt = new System.Windows.Forms.TextBox();
     this.txt_descripcionImg = new System.Windows.Forms.TextBox();
     this.txt_nombreImg = new System.Windows.Forms.TextBox();
     this.imgFichero = new System.Windows.Forms.OpenFileDialog();
     this.btn_cargarImg = new System.Windows.Forms.Button();
     this.pB_imgCrear = new System.Windows.Forms.PictureBox();
     this.pn_detalle = new System.Windows.Forms.Panel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.pB_imgDetalle = new System.Windows.Forms.PictureBox();
     this.label39 = new System.Windows.Forms.Label();
     this.rutatxt = new System.Windows.Forms.TextBox();
     this.imagenesBN = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.dESCRIPCIONTextBox = new System.Windows.Forms.TextBox();
     this.nOMBRETextBox = new System.Windows.Forms.TextBox();
     this.ver_detalle = new System.Windows.Forms.GroupBox();
     this.detailGrupoEcoTxt = new System.Windows.Forms.TextBox();
     this.label44 = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.cbxGrupoComercial_det = new System.Windows.Forms.ComboBox();
     this.txt_ZonaVid_det = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.txt_ZonaGeogra_det = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.txt_Fam_det = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.txt_NomCientifico_det = new System.Windows.Forms.TextBox();
     this.label34 = new System.Windows.Forms.Label();
     this.txt_NomComun_det = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.btn_cerrar = new System.Windows.Forms.Button();
     this.pn_cargarImg = new System.Windows.Forms.Panel();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label38 = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.btn_ImgCancelar = new System.Windows.Forms.Button();
     this.btn_ImgAceptar = new System.Windows.Forms.Button();
     dESCRIPCIONLabel = new System.Windows.Forms.Label();
     nOMBRELabel = new System.Windows.Forms.Label();
     label40 = new System.Windows.Forms.Label();
     label41 = new System.Windows.Forms.Label();
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).BeginInit();
     this.paginacionEspecie.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).BeginInit();
     this.groupBox.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.pn_crear.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).BeginInit();
     this.UpdateImageBN.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).BeginInit();
     this.pn_detalle.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).BeginInit();
     this.imagenesBN.SuspendLayout();
     this.ver_detalle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.pn_cargarImg.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // dESCRIPCIONLabel
     //
     dESCRIPCIONLabel.AutoSize = true;
     dESCRIPCIONLabel.Location = new System.Drawing.Point(12, 288);
     dESCRIPCIONLabel.Name = "dESCRIPCIONLabel";
     dESCRIPCIONLabel.Size = new System.Drawing.Size(63, 13);
     dESCRIPCIONLabel.TabIndex = 75;
     dESCRIPCIONLabel.Text = "Descripcion";
     //
     // nOMBRELabel
     //
     nOMBRELabel.AutoSize = true;
     nOMBRELabel.Location = new System.Drawing.Point(12, 257);
     nOMBRELabel.Name = "nOMBRELabel";
     nOMBRELabel.Size = new System.Drawing.Size(47, 13);
     nOMBRELabel.TabIndex = 73;
     nOMBRELabel.Text = "Nombre:";
     //
     // label40
     //
     label40.AutoSize = true;
     label40.Location = new System.Drawing.Point(12, 288);
     label40.Name = "label40";
     label40.Size = new System.Drawing.Size(63, 13);
     label40.TabIndex = 75;
     label40.Text = "Descripcion";
     //
     // label41
     //
     label41.AutoSize = true;
     label41.Location = new System.Drawing.Point(12, 257);
     label41.Name = "label41";
     label41.Size = new System.Drawing.Size(47, 13);
     label41.TabIndex = 73;
     label41.Text = "Nombre:";
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoEspecies);
     this.pn_listado.Controls.Add(this.paginacionEspecie);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(890, 486);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoEspecies
     //
     this.ListadoEspecies.AllowUserToAddRows = false;
     this.ListadoEspecies.AllowUserToDeleteRows = false;
     this.ListadoEspecies.AllowUserToOrderColumns = true;
     this.ListadoEspecies.AutoGenerateColumns = false;
     this.ListadoEspecies.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoEspecies.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoEspecies.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nOMCOMUNDataGridViewTextBoxColumn,
     this.cODESPDataGridViewTextBoxColumn,
     this.nOMCIENTIFICODataGridViewTextBoxColumn,
     this.gRUPOCOMDataGridViewTextBoxColumn,
     this.GRUPOECOLOGICO,
     this.fAMILIADataGridViewTextBoxColumn,
     this.zONAGEOGRAFICADataGridViewTextBoxColumn,
     this.zONADEVIDADataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar,
     this.Detalle});
     this.ListadoEspecies.DataSource = this.specieBSource;
     this.ListadoEspecies.Location = new System.Drawing.Point(0, 25);
     this.ListadoEspecies.Name = "ListadoEspecies";
     this.ListadoEspecies.ReadOnly = true;
     this.ListadoEspecies.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.ListadoEspecies.Size = new System.Drawing.Size(886, 457);
     this.ListadoEspecies.TabIndex = 3;
     this.ListadoEspecies.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.ListadoDeEspecies_CellValueChanged);
     this.ListadoEspecies.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.ListadoEspecies_CellFormatting);
     //
     // nOMCOMUNDataGridViewTextBoxColumn
     //
     this.nOMCOMUNDataGridViewTextBoxColumn.DataPropertyName = "NOMCOMUN";
     this.nOMCOMUNDataGridViewTextBoxColumn.HeaderText = "Nombre Común";
     this.nOMCOMUNDataGridViewTextBoxColumn.Name = "nOMCOMUNDataGridViewTextBoxColumn";
     this.nOMCOMUNDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // cODESPDataGridViewTextBoxColumn
     //
     this.cODESPDataGridViewTextBoxColumn.DataPropertyName = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.HeaderText = "CODESP";
     this.cODESPDataGridViewTextBoxColumn.Name = "cODESPDataGridViewTextBoxColumn";
     this.cODESPDataGridViewTextBoxColumn.ReadOnly = true;
     this.cODESPDataGridViewTextBoxColumn.Visible = false;
     //
     // nOMCIENTIFICODataGridViewTextBoxColumn
     //
     this.nOMCIENTIFICODataGridViewTextBoxColumn.DataPropertyName = "NOMCIENTIFICO";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.HeaderText = "Nombre Cientifico";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.Name = "nOMCIENTIFICODataGridViewTextBoxColumn";
     this.nOMCIENTIFICODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // gRUPOCOMDataGridViewTextBoxColumn
     //
     this.gRUPOCOMDataGridViewTextBoxColumn.DataPropertyName = "GRUPOCOM";
     this.gRUPOCOMDataGridViewTextBoxColumn.DataSource = this.grupoComercialBSource;
     this.gRUPOCOMDataGridViewTextBoxColumn.DisplayMember = "DESCRIPGRUPO";
     this.gRUPOCOMDataGridViewTextBoxColumn.HeaderText = "Grupo Comercial";
     this.gRUPOCOMDataGridViewTextBoxColumn.Name = "gRUPOCOMDataGridViewTextBoxColumn";
     this.gRUPOCOMDataGridViewTextBoxColumn.ReadOnly = true;
     this.gRUPOCOMDataGridViewTextBoxColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.gRUPOCOMDataGridViewTextBoxColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.gRUPOCOMDataGridViewTextBoxColumn.ValueMember = "GRUPOCOM";
     //
     // grupoComercialBSource
     //
     this.grupoComercialBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // GRUPOECOLOGICO
     //
     this.GRUPOECOLOGICO.DataPropertyName = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.HeaderText = "Grupo eco";
     this.GRUPOECOLOGICO.Name = "GRUPOECOLOGICO";
     this.GRUPOECOLOGICO.ReadOnly = true;
     this.GRUPOECOLOGICO.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // fAMILIADataGridViewTextBoxColumn
     //
     this.fAMILIADataGridViewTextBoxColumn.DataPropertyName = "FAMILIA";
     this.fAMILIADataGridViewTextBoxColumn.HeaderText = "Familia";
     this.fAMILIADataGridViewTextBoxColumn.Name = "fAMILIADataGridViewTextBoxColumn";
     this.fAMILIADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONAGEOGRAFICADataGridViewTextBoxColumn
     //
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.DataPropertyName = "ZONAGEOGRAFICA";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.HeaderText = "Zona Geografica";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.Name = "zONAGEOGRAFICADataGridViewTextBoxColumn";
     this.zONAGEOGRAFICADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // zONADEVIDADataGridViewTextBoxColumn
     //
     this.zONADEVIDADataGridViewTextBoxColumn.DataPropertyName = "ZONADEVIDA";
     this.zONADEVIDADataGridViewTextBoxColumn.HeaderText = "Zona De Vida";
     this.zONADEVIDADataGridViewTextBoxColumn.Name = "zONADEVIDADataGridViewTextBoxColumn";
     this.zONADEVIDADataGridViewTextBoxColumn.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Editar.HeaderText = "Editar";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 40;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.Eliminar.HeaderText = "Eliminar";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 49;
     //
     // Detalle
     //
     this.Detalle.HeaderText = "Detalle";
     this.Detalle.Name = "Detalle";
     this.Detalle.ReadOnly = true;
     this.Detalle.Text = "Ver detalle";
     this.Detalle.UseColumnTextForButtonValue = true;
     //
     // specieBSource
     //
     this.specieBSource.DataSource = typeof(SIFCA_DAL.ESPECIE);
     //
     // paginacionEspecie
     //
     this.paginacionEspecie.AddNewItem = null;
     this.paginacionEspecie.CountItem = null;
     this.paginacionEspecie.DeleteItem = null;
     this.paginacionEspecie.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cargarArchivo,
     this.Btn_nuevaEspecie,
     this.buscarLbl,
     this.busquedaTxt,
     this.filtrarLbl,
     this.criterioCbx});
     this.paginacionEspecie.Location = new System.Drawing.Point(0, 0);
     this.paginacionEspecie.MoveFirstItem = null;
     this.paginacionEspecie.MoveLastItem = null;
     this.paginacionEspecie.MoveNextItem = null;
     this.paginacionEspecie.MovePreviousItem = null;
     this.paginacionEspecie.Name = "paginacionEspecie";
     this.paginacionEspecie.PositionItem = null;
     this.paginacionEspecie.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.paginacionEspecie.Size = new System.Drawing.Size(886, 25);
     this.paginacionEspecie.TabIndex = 2;
     this.paginacionEspecie.Text = "bindingNavigator1";
     //
     // cargarArchivo
     //
     this.cargarArchivo.BackColor = System.Drawing.SystemColors.ControlLight;
     this.cargarArchivo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.cargarArchivo.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.cargarArchivo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.cargarArchivo.Name = "cargarArchivo";
     this.cargarArchivo.Size = new System.Drawing.Size(88, 22);
     this.cargarArchivo.Text = "Cargar archivo";
     this.cargarArchivo.ToolTipText = "Cargar archivo con especies desde excel";
     this.cargarArchivo.Click += new System.EventHandler(this.cargarArchivo_Click);
     //
     // Btn_nuevaEspecie
     //
     this.Btn_nuevaEspecie.BackColor = System.Drawing.SystemColors.ControlLight;
     this.Btn_nuevaEspecie.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevaEspecie.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Btn_nuevaEspecie.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevaEspecie.Name = "Btn_nuevaEspecie";
     this.Btn_nuevaEspecie.Size = new System.Drawing.Size(87, 22);
     this.Btn_nuevaEspecie.Text = "Nueva Especie";
     this.Btn_nuevaEspecie.Click += new System.EventHandler(this.Btn_nuevaEspecie_Click);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // filtrarLbl
     //
     this.filtrarLbl.Name = "filtrarLbl";
     this.filtrarLbl.Size = new System.Drawing.Size(92, 22);
     this.filtrarLbl.Text = "Filtrar busqueda";
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.Items.AddRange(new object[] {
     "Grupo Comercial",
     "Nombre Comun",
     "Nombre Cientifico",
     "Familia",
     "Zona Geografica",
     "Zona Vida"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // GroupComBSource
     //
     this.GroupComBSource.DataSource = typeof(SIFCA_DAL.GRUPOCOMERCIAL);
     //
     // groupBox
     //
     this.groupBox.Controls.Add(this.button1);
     this.groupBox.Controls.Add(this.cbx_GroupCom);
     this.groupBox.Controls.Add(this.Btn_Guardar);
     this.groupBox.Controls.Add(this.txt_DimCorte);
     this.groupBox.Controls.Add(this.label3);
     this.groupBox.Controls.Add(this.textBox1);
     this.groupBox.Controls.Add(this.label10);
     this.groupBox.Controls.Add(this.txt_ZonaGeo);
     this.groupBox.Controls.Add(this.label11);
     this.groupBox.Controls.Add(this.textBox2);
     this.groupBox.Controls.Add(this.label12);
     this.groupBox.Controls.Add(this.label13);
     this.groupBox.Controls.Add(this.txt_NomCient);
     this.groupBox.Controls.Add(this.label14);
     this.groupBox.Controls.Add(this.txt_NomCom);
     this.groupBox.Controls.Add(this.label15);
     this.groupBox.Location = new System.Drawing.Point(8, 2);
     this.groupBox.Name = "groupBox";
     this.groupBox.Size = new System.Drawing.Size(319, 283);
     this.groupBox.TabIndex = 5;
     this.groupBox.TabStop = false;
     this.groupBox.Text = "Editar Especie";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(189, 241);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 6;
     this.button1.Text = "Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     //
     // cbx_GroupCom
     //
     this.cbx_GroupCom.DisplayMember = "GRUPOCOM";
     this.cbx_GroupCom.FormattingEnabled = true;
     this.cbx_GroupCom.Location = new System.Drawing.Point(144, 84);
     this.cbx_GroupCom.Name = "cbx_GroupCom";
     this.cbx_GroupCom.Size = new System.Drawing.Size(152, 21);
     this.cbx_GroupCom.TabIndex = 18;
     this.cbx_GroupCom.ValueMember = "GRUPOCOM";
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(38, 241);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 5;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     //
     // txt_DimCorte
     //
     this.txt_DimCorte.Location = new System.Drawing.Point(144, 203);
     this.txt_DimCorte.Name = "txt_DimCorte";
     this.txt_DimCorte.Size = new System.Drawing.Size(61, 20);
     this.txt_DimCorte.TabIndex = 17;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 203);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 13);
     this.label3.TabIndex = 16;
     this.label3.Text = "Diametro Corte";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(143, 173);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(153, 20);
     this.textBox1.TabIndex = 15;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(22, 173);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(73, 13);
     this.label10.TabIndex = 14;
     this.label10.Text = "Zona De Vida";
     //
     // txt_ZonaGeo
     //
     this.txt_ZonaGeo.Location = new System.Drawing.Point(143, 143);
     this.txt_ZonaGeo.Name = "txt_ZonaGeo";
     this.txt_ZonaGeo.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeo.TabIndex = 13;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(23, 143);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(87, 13);
     this.label11.TabIndex = 12;
     this.label11.Text = "Zona Geografica";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(143, 113);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(153, 20);
     this.textBox2.TabIndex = 11;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(22, 113);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(39, 13);
     this.label12.TabIndex = 10;
     this.label12.Text = "Familia";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(22, 84);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(85, 13);
     this.label13.TabIndex = 8;
     this.label13.Text = "Grupo Comercial";
     //
     // txt_NomCient
     //
     this.txt_NomCient.Location = new System.Drawing.Point(143, 54);
     this.txt_NomCient.Name = "txt_NomCient";
     this.txt_NomCient.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCient.TabIndex = 7;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(23, 54);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(90, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "Nombre Cientifico";
     //
     // txt_NomCom
     //
     this.txt_NomCom.Location = new System.Drawing.Point(143, 25);
     this.txt_NomCom.Name = "txt_NomCom";
     this.txt_NomCom.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCom.TabIndex = 5;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(22, 25);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(80, 13);
     this.label15.TabIndex = 0;
     this.label15.Text = "Nombre Comun";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.textBox3);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.textBox4);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.textBox5);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.textBox6);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.textBox7);
     this.groupBox2.Controls.Add(this.label21);
     this.groupBox2.Controls.Add(this.textBox8);
     this.groupBox2.Controls.Add(this.label22);
     this.groupBox2.Location = new System.Drawing.Point(-43, -22);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(381, 288);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Editar Especie";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(202, 250);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(75, 23);
     this.button2.TabIndex = 6;
     this.button2.Text = "Cancelar";
     this.button2.UseVisualStyleBackColor = true;
     //
     // comboBox1
     //
     this.comboBox1.DataSource = this.GroupComBSource;
     this.comboBox1.DisplayMember = "DESCRIPGRUPO";
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(157, 93);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(152, 21);
     this.comboBox1.TabIndex = 18;
     this.comboBox1.ValueMember = "GRUPOCOM";
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(51, 250);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(75, 23);
     this.button3.TabIndex = 5;
     this.button3.Text = "Guardar";
     this.button3.UseVisualStyleBackColor = true;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(157, 212);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(61, 20);
     this.textBox3.TabIndex = 17;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(37, 212);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(77, 13);
     this.label16.TabIndex = 16;
     this.label16.Text = "Diametro Corte";
     //
     // textBox4
     //
     this.textBox4.Location = new System.Drawing.Point(156, 182);
     this.textBox4.Name = "textBox4";
     this.textBox4.Size = new System.Drawing.Size(153, 20);
     this.textBox4.TabIndex = 15;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(35, 182);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(73, 13);
     this.label17.TabIndex = 14;
     this.label17.Text = "Zona De Vida";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(156, 152);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(153, 20);
     this.textBox5.TabIndex = 13;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(36, 152);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(87, 13);
     this.label18.TabIndex = 12;
     this.label18.Text = "Zona Geografica";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(156, 122);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(153, 20);
     this.textBox6.TabIndex = 11;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(35, 122);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(39, 13);
     this.label19.TabIndex = 10;
     this.label19.Text = "Familia";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(35, 93);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(85, 13);
     this.label20.TabIndex = 8;
     this.label20.Text = "Grupo Comercial";
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(156, 63);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(153, 20);
     this.textBox7.TabIndex = 7;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(36, 63);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(90, 13);
     this.label21.TabIndex = 6;
     this.label21.Text = "Nombre Cientifico";
     //
     // textBox8
     //
     this.textBox8.Location = new System.Drawing.Point(156, 34);
     this.textBox8.Name = "textBox8";
     this.textBox8.Size = new System.Drawing.Size(153, 20);
     this.textBox8.TabIndex = 5;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(35, 34);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(80, 13);
     this.label22.TabIndex = 0;
     this.label22.Text = "Nombre Comun";
     //
     // pn_crear
     //
     this.pn_crear.Controls.Add(this.pictureBox1);
     this.pn_crear.Controls.Add(this.groupBox1);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(376, 420);
     this.pn_crear.TabIndex = 1;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox1.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(376, 71);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 17;
     this.pictureBox1.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.grupoEcoCbx);
     this.groupBox1.Controls.Add(this.label42);
     this.groupBox1.Controls.Add(this.btn_crearImg);
     this.groupBox1.Controls.Add(this.cbox_GrupoComercial);
     this.groupBox1.Controls.Add(this.btn_Cancelar);
     this.groupBox1.Controls.Add(this.Btn_Crear);
     this.groupBox1.Controls.Add(this.txt_ZonaVida);
     this.groupBox1.Controls.Add(this.txt_ZonaGeografica);
     this.groupBox1.Controls.Add(this.txt_Familia);
     this.groupBox1.Controls.Add(this.txt_NombreCientifico);
     this.groupBox1.Controls.Add(this.txt_NombreComun);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Location = new System.Drawing.Point(5, 77);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(344, 304);
     this.groupBox1.TabIndex = 16;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Informacion de la especie";
     //
     // grupoEcoCbx
     //
     this.grupoEcoCbx.DisplayMember = "GRUPOCOM";
     this.grupoEcoCbx.FormattingEnabled = true;
     this.grupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.grupoEcoCbx.Location = new System.Drawing.Point(136, 217);
     this.grupoEcoCbx.Name = "grupoEcoCbx";
     this.grupoEcoCbx.Size = new System.Drawing.Size(186, 21);
     this.grupoEcoCbx.TabIndex = 10;
     this.grupoEcoCbx.ValueMember = "GRUPOCOM";
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Location = new System.Drawing.Point(22, 221);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(91, 13);
     this.label42.TabIndex = 11;
     this.label42.Text = "Grupo ecológico :";
     //
     // btn_crearImg
     //
     this.btn_crearImg.Location = new System.Drawing.Point(49, 259);
     this.btn_crearImg.Name = "btn_crearImg";
     this.btn_crearImg.Size = new System.Drawing.Size(87, 23);
     this.btn_crearImg.TabIndex = 7;
     this.btn_crearImg.Text = "Cargar imagen";
     this.btn_crearImg.UseVisualStyleBackColor = true;
     this.btn_crearImg.Visible = false;
     this.btn_crearImg.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // cbox_GrupoComercial
     //
     this.cbox_GrupoComercial.DataSource = this.grupoComercialBSource;
     this.cbox_GrupoComercial.DisplayMember = "DESCRIPGRUPO";
     this.cbox_GrupoComercial.FormattingEnabled = true;
     this.cbox_GrupoComercial.Location = new System.Drawing.Point(136, 24);
     this.cbox_GrupoComercial.Name = "cbox_GrupoComercial";
     this.cbox_GrupoComercial.Size = new System.Drawing.Size(186, 21);
     this.cbox_GrupoComercial.TabIndex = 0;
     this.cbox_GrupoComercial.ValueMember = "GRUPOCOM";
     //
     // btn_Cancelar
     //
     this.btn_Cancelar.Location = new System.Drawing.Point(235, 259);
     this.btn_Cancelar.Name = "btn_Cancelar";
     this.btn_Cancelar.Size = new System.Drawing.Size(87, 23);
     this.btn_Cancelar.TabIndex = 9;
     this.btn_Cancelar.Text = "Cancelar";
     this.btn_Cancelar.UseVisualStyleBackColor = true;
     this.btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(142, 259);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(86, 23);
     this.Btn_Crear.TabIndex = 8;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_ZonaVida
     //
     this.txt_ZonaVida.AcceptsTab = true;
     this.txt_ZonaVida.Location = new System.Drawing.Point(136, 185);
     this.txt_ZonaVida.MaxLength = 200;
     this.txt_ZonaVida.Name = "txt_ZonaVida";
     this.txt_ZonaVida.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaVida.TabIndex = 5;
     this.txt_ZonaVida.Text = "Ninguna zona especificada";
     //
     // txt_ZonaGeografica
     //
     this.txt_ZonaGeografica.AcceptsTab = true;
     this.txt_ZonaGeografica.Location = new System.Drawing.Point(136, 152);
     this.txt_ZonaGeografica.MaxLength = 200;
     this.txt_ZonaGeografica.Name = "txt_ZonaGeografica";
     this.txt_ZonaGeografica.Size = new System.Drawing.Size(186, 20);
     this.txt_ZonaGeografica.TabIndex = 4;
     this.txt_ZonaGeografica.Text = "Ninguna zona especificada";
     //
     // txt_Familia
     //
     this.txt_Familia.AcceptsTab = true;
     this.txt_Familia.Location = new System.Drawing.Point(136, 119);
     this.txt_Familia.MaxLength = 200;
     this.txt_Familia.Name = "txt_Familia";
     this.txt_Familia.Size = new System.Drawing.Size(186, 20);
     this.txt_Familia.TabIndex = 3;
     //
     // txt_NombreCientifico
     //
     this.txt_NombreCientifico.AcceptsTab = true;
     this.txt_NombreCientifico.Location = new System.Drawing.Point(136, 88);
     this.txt_NombreCientifico.MaxLength = 200;
     this.txt_NombreCientifico.Name = "txt_NombreCientifico";
     this.txt_NombreCientifico.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreCientifico.TabIndex = 2;
     //
     // txt_NombreComun
     //
     this.txt_NombreComun.AcceptsTab = true;
     this.txt_NombreComun.Location = new System.Drawing.Point(136, 55);
     this.txt_NombreComun.MaxLength = 200;
     this.txt_NombreComun.Name = "txt_NombreComun";
     this.txt_NombreComun.Size = new System.Drawing.Size(186, 20);
     this.txt_NombreComun.TabIndex = 1;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(21, 185);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Zona vida :";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(21, 155);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(91, 13);
     this.label5.TabIndex = 4;
     this.label5.Text = "Zona geografica :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(21, 122);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 3;
     this.label4.Text = "Familia :";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(21, 91);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(97, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Nombre científico :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(21, 58);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "Nombre común :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(21, 30);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(90, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Grupo comercial :";
     //
     // pn_editar
     //
     this.pn_editar.Controls.Add(this.groupBox6);
     this.pn_editar.Controls.Add(this.groupBox3);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(723, 445);
     this.pn_editar.TabIndex = 2;
     //
     // groupBox6
     //
     this.groupBox6.AutoSize = true;
     this.groupBox6.Controls.Add(this.UpdateImageBN);
     this.groupBox6.Controls.Add(this.updImgUbic);
     this.groupBox6.Controls.Add(this.pB_imgUpdate);
     this.groupBox6.Controls.Add(this.label36);
     this.groupBox6.Controls.Add(label40);
     this.groupBox6.Controls.Add(this.updImgDesc);
     this.groupBox6.Controls.Add(label41);
     this.groupBox6.Controls.Add(this.updImgName);
     this.groupBox6.Location = new System.Drawing.Point(355, 14);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(357, 393);
     this.groupBox6.TabIndex = 60;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Imagenes";
     //
     // UpdateImageBN
     //
     this.UpdateImageBN.AddNewItem = null;
     this.UpdateImageBN.BindingSource = this.imagenesBS;
     this.UpdateImageBN.CountItem = this.bindingNavigatorCountItem1;
     this.UpdateImageBN.DeleteItem = null;
     this.UpdateImageBN.Enabled = false;
     this.UpdateImageBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem1,
     this.bindingNavigatorMovePreviousItem1,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorPositionItem1,
     this.bindingNavigatorCountItem1,
     this.bindingNavigatorSeparator3,
     this.bindingNavigatorMoveNextItem1,
     this.bindingNavigatorMoveLastItem1,
     this.bindingNavigatorSeparator4,
     this.toolStripButton2,
     this.toolStripButton1});
     this.UpdateImageBN.Location = new System.Drawing.Point(3, 16);
     this.UpdateImageBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem1;
     this.UpdateImageBN.MoveLastItem = this.bindingNavigatorMoveLastItem1;
     this.UpdateImageBN.MoveNextItem = this.bindingNavigatorMoveNextItem1;
     this.UpdateImageBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem1;
     this.UpdateImageBN.Name = "UpdateImageBN";
     this.UpdateImageBN.PositionItem = this.bindingNavigatorPositionItem1;
     this.UpdateImageBN.Size = new System.Drawing.Size(351, 25);
     this.UpdateImageBN.TabIndex = 0;
     this.UpdateImageBN.Text = "bindingNavigator1";
     //
     // imagenesBS
     //
     this.imagenesBS.DataSource = typeof(SIFCA_DAL.IMAGEN);
     //
     // bindingNavigatorCountItem1
     //
     this.bindingNavigatorCountItem1.Name = "bindingNavigatorCountItem1";
     this.bindingNavigatorCountItem1.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem1.Text = "de {0}";
     this.bindingNavigatorCountItem1.ToolTipText = "Número total de elementos";
     //
     // bindingNavigatorMoveFirstItem1
     //
     this.bindingNavigatorMoveFirstItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem1.Image")));
     this.bindingNavigatorMoveFirstItem1.Name = "bindingNavigatorMoveFirstItem1";
     this.bindingNavigatorMoveFirstItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem1.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem1
     //
     this.bindingNavigatorMovePreviousItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem1.Image")));
     this.bindingNavigatorMovePreviousItem1.Name = "bindingNavigatorMovePreviousItem1";
     this.bindingNavigatorMovePreviousItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem1.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem1
     //
     this.bindingNavigatorPositionItem1.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem1.AutoSize = false;
     this.bindingNavigatorPositionItem1.Name = "bindingNavigatorPositionItem1";
     this.bindingNavigatorPositionItem1.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem1.Text = "0";
     this.bindingNavigatorPositionItem1.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator3
     //
     this.bindingNavigatorSeparator3.Name = "bindingNavigatorSeparator3";
     this.bindingNavigatorSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem1
     //
     this.bindingNavigatorMoveNextItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem1.Image")));
     this.bindingNavigatorMoveNextItem1.Name = "bindingNavigatorMoveNextItem1";
     this.bindingNavigatorMoveNextItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem1.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem1
     //
     this.bindingNavigatorMoveLastItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem1.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem1.Image")));
     this.bindingNavigatorMoveLastItem1.Name = "bindingNavigatorMoveLastItem1";
     this.bindingNavigatorMoveLastItem1.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem1.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem1.Text = "Mover último";
     //
     // bindingNavigatorSeparator4
     //
     this.bindingNavigatorSeparator4.Name = "bindingNavigatorSeparator4";
     this.bindingNavigatorSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.RightToLeftAutoMirrorImage = true;
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Agregar nuevo";
     this.toolStripButton2.Click += new System.EventHandler(this.btn_crearImg_Click);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.RightToLeftAutoMirrorImage = true;
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Eliminar";
     this.toolStripButton1.Click += new System.EventHandler(this.deleteImage_Click);
     //
     // updImgUbic
     //
     this.updImgUbic.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.updImgUbic.Location = new System.Drawing.Point(77, 221);
     this.updImgUbic.Name = "updImgUbic";
     this.updImgUbic.Size = new System.Drawing.Size(237, 20);
     this.updImgUbic.TabIndex = 84;
     this.updImgUbic.TabStop = false;
     this.updImgUbic.Text = "Ninguna ruta ha sido especificada";
     this.updImgUbic.TextChanged += new System.EventHandler(this.rutaUpdtxt_TextChanged);
     //
     // pB_imgUpdate
     //
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Tag", this.imagenesBS, "RUTA", true));
     this.pB_imgUpdate.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgUpdate.Location = new System.Drawing.Point(27, 52);
     this.pB_imgUpdate.Name = "pB_imgUpdate";
     this.pB_imgUpdate.Size = new System.Drawing.Size(308, 160);
     this.pB_imgUpdate.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgUpdate.TabIndex = 83;
     this.pB_imgUpdate.TabStop = false;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Location = new System.Drawing.Point(10, 221);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(55, 13);
     this.label36.TabIndex = 82;
     this.label36.Text = "Ubicacion";
     //
     // updImgDesc
     //
     this.updImgDesc.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.updImgDesc.Location = new System.Drawing.Point(76, 290);
     this.updImgDesc.Multiline = true;
     this.updImgDesc.Name = "updImgDesc";
     this.updImgDesc.Size = new System.Drawing.Size(238, 84);
     this.updImgDesc.TabIndex = 76;
     this.updImgDesc.TabStop = false;
     this.updImgDesc.Text = "Ninguna";
     //
     // updImgName
     //
     this.updImgName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.updImgName.Location = new System.Drawing.Point(77, 256);
     this.updImgName.Name = "updImgName";
     this.updImgName.Size = new System.Drawing.Size(238, 20);
     this.updImgName.TabIndex = 74;
     this.updImgName.TabStop = false;
     this.updImgName.Text = "Ninguno";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.updGrupoEcoCbx);
     this.groupBox3.Controls.Add(this.label43);
     this.groupBox3.Controls.Add(this.Btn_CancelarUpdate);
     this.groupBox3.Controls.Add(this.grupoComercialCbx);
     this.groupBox3.Controls.Add(this.Guardar);
     this.groupBox3.Controls.Add(this.txt_ZonaVid);
     this.groupBox3.Controls.Add(this.label24);
     this.groupBox3.Controls.Add(this.txt_ZonaGeogra);
     this.groupBox3.Controls.Add(this.label25);
     this.groupBox3.Controls.Add(this.txt_Fam);
     this.groupBox3.Controls.Add(this.label26);
     this.groupBox3.Controls.Add(this.label27);
     this.groupBox3.Controls.Add(this.txt_NomCientifico);
     this.groupBox3.Controls.Add(this.label28);
     this.groupBox3.Controls.Add(this.txt_NomComun);
     this.groupBox3.Controls.Add(this.label29);
     this.groupBox3.Location = new System.Drawing.Point(10, 21);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(327, 378);
     this.groupBox3.TabIndex = 6;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Editar Especie";
     //
     // updGrupoEcoCbx
     //
     this.updGrupoEcoCbx.FormattingEnabled = true;
     this.updGrupoEcoCbx.Items.AddRange(new object[] {
     "Tolerante",
     "No Tolerante"});
     this.updGrupoEcoCbx.Location = new System.Drawing.Point(152, 202);
     this.updGrupoEcoCbx.Name = "updGrupoEcoCbx";
     this.updGrupoEcoCbx.Size = new System.Drawing.Size(153, 21);
     this.updGrupoEcoCbx.TabIndex = 19;
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Location = new System.Drawing.Point(32, 205);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(85, 13);
     this.label43.TabIndex = 18;
     this.label43.Text = "Grupo ecológico";
     //
     // Btn_CancelarUpdate
     //
     this.Btn_CancelarUpdate.Location = new System.Drawing.Point(230, 351);
     this.Btn_CancelarUpdate.Name = "Btn_CancelarUpdate";
     this.Btn_CancelarUpdate.Size = new System.Drawing.Size(75, 23);
     this.Btn_CancelarUpdate.TabIndex = 8;
     this.Btn_CancelarUpdate.Text = "Cancelar";
     this.Btn_CancelarUpdate.UseVisualStyleBackColor = true;
     this.Btn_CancelarUpdate.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // grupoComercialCbx
     //
     this.grupoComercialCbx.DataSource = this.GroupComBSource;
     this.grupoComercialCbx.DisplayMember = "DESCRIPGRUPO";
     this.grupoComercialCbx.FormattingEnabled = true;
     this.grupoComercialCbx.Location = new System.Drawing.Point(153, 82);
     this.grupoComercialCbx.Name = "grupoComercialCbx";
     this.grupoComercialCbx.Size = new System.Drawing.Size(152, 21);
     this.grupoComercialCbx.TabIndex = 2;
     this.grupoComercialCbx.ValueMember = "GRUPOCOM";
     //
     // Guardar
     //
     this.Guardar.Location = new System.Drawing.Point(131, 351);
     this.Guardar.Name = "Guardar";
     this.Guardar.Size = new System.Drawing.Size(75, 23);
     this.Guardar.TabIndex = 7;
     this.Guardar.Text = "Guardar";
     this.Guardar.UseVisualStyleBackColor = true;
     this.Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // txt_ZonaVid
     //
     this.txt_ZonaVid.Location = new System.Drawing.Point(152, 171);
     this.txt_ZonaVid.MaxLength = 200;
     this.txt_ZonaVid.Name = "txt_ZonaVid";
     this.txt_ZonaVid.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid.TabIndex = 5;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Location = new System.Drawing.Point(31, 171);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(73, 13);
     this.label24.TabIndex = 14;
     this.label24.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra
     //
     this.txt_ZonaGeogra.Location = new System.Drawing.Point(152, 141);
     this.txt_ZonaGeogra.MaxLength = 200;
     this.txt_ZonaGeogra.Name = "txt_ZonaGeogra";
     this.txt_ZonaGeogra.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra.TabIndex = 4;
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(32, 141);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(87, 13);
     this.label25.TabIndex = 12;
     this.label25.Text = "Zona Geografica";
     //
     // txt_Fam
     //
     this.txt_Fam.Location = new System.Drawing.Point(152, 111);
     this.txt_Fam.MaxLength = 200;
     this.txt_Fam.Name = "txt_Fam";
     this.txt_Fam.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam.TabIndex = 3;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(31, 111);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(39, 13);
     this.label26.TabIndex = 10;
     this.label26.Text = "Familia";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(31, 82);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(85, 13);
     this.label27.TabIndex = 8;
     this.label27.Text = "Grupo Comercial";
     //
     // txt_NomCientifico
     //
     this.txt_NomCientifico.Location = new System.Drawing.Point(152, 52);
     this.txt_NomCientifico.MaxLength = 200;
     this.txt_NomCientifico.Name = "txt_NomCientifico";
     this.txt_NomCientifico.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico.TabIndex = 1;
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(32, 52);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(90, 13);
     this.label28.TabIndex = 6;
     this.label28.Text = "Nombre Cientifico";
     //
     // txt_NomComun
     //
     this.txt_NomComun.Location = new System.Drawing.Point(152, 23);
     this.txt_NomComun.MaxLength = 200;
     this.txt_NomComun.Name = "txt_NomComun";
     this.txt_NomComun.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun.TabIndex = 0;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(31, 23);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(80, 13);
     this.label29.TabIndex = 0;
     this.label29.Text = "Nombre Comun";
     //
     // eP_errors
     //
     this.eP_errors.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.eP_errors.ContainerControl = this;
     //
     // imagenTxt
     //
     this.eP_errors.SetError(this.imagenTxt, "Cargue una imagen");
     this.imagenTxt.Location = new System.Drawing.Point(16, 14);
     this.imagenTxt.Name = "imagenTxt";
     this.imagenTxt.ReadOnly = true;
     this.imagenTxt.Size = new System.Drawing.Size(193, 20);
     this.imagenTxt.TabIndex = 24;
     this.imagenTxt.Text = "Seleccione una imagen";
     //
     // txt_descripcionImg
     //
     this.eP_errors.SetError(this.txt_descripcionImg, "Campo requerido");
     this.txt_descripcionImg.Location = new System.Drawing.Point(15, 74);
     this.txt_descripcionImg.Multiline = true;
     this.txt_descripcionImg.Name = "txt_descripcionImg";
     this.txt_descripcionImg.Size = new System.Drawing.Size(292, 128);
     this.txt_descripcionImg.TabIndex = 1;
     //
     // txt_nombreImg
     //
     this.eP_errors.SetError(this.txt_nombreImg, "Campo requerido");
     this.txt_nombreImg.Location = new System.Drawing.Point(96, 25);
     this.txt_nombreImg.Name = "txt_nombreImg";
     this.txt_nombreImg.Size = new System.Drawing.Size(211, 20);
     this.txt_nombreImg.TabIndex = 0;
     //
     // btn_cargarImg
     //
     this.btn_cargarImg.Location = new System.Drawing.Point(226, 12);
     this.btn_cargarImg.Name = "btn_cargarImg";
     this.btn_cargarImg.Size = new System.Drawing.Size(72, 23);
     this.btn_cargarImg.TabIndex = 0;
     this.btn_cargarImg.Text = "Cargar";
     this.btn_cargarImg.UseVisualStyleBackColor = true;
     this.btn_cargarImg.Click += new System.EventHandler(this.btn_cargarImg_Click);
     //
     // pB_imgCrear
     //
     this.pB_imgCrear.Location = new System.Drawing.Point(16, 38);
     this.pB_imgCrear.Name = "pB_imgCrear";
     this.pB_imgCrear.Size = new System.Drawing.Size(282, 220);
     this.pB_imgCrear.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgCrear.TabIndex = 21;
     this.pB_imgCrear.TabStop = false;
     //
     // pn_detalle
     //
     this.pn_detalle.Controls.Add(this.groupBox5);
     this.pn_detalle.Controls.Add(this.ver_detalle);
     this.pn_detalle.Controls.Add(this.btn_cerrar);
     this.pn_detalle.Location = new System.Drawing.Point(0, 0);
     this.pn_detalle.Name = "pn_detalle";
     this.pn_detalle.Size = new System.Drawing.Size(678, 474);
     this.pn_detalle.TabIndex = 3;
     this.pn_detalle.Visible = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.pB_imgDetalle);
     this.groupBox5.Controls.Add(this.label39);
     this.groupBox5.Controls.Add(this.rutatxt);
     this.groupBox5.Controls.Add(this.imagenesBN);
     this.groupBox5.Controls.Add(dESCRIPCIONLabel);
     this.groupBox5.Controls.Add(this.dESCRIPCIONTextBox);
     this.groupBox5.Controls.Add(nOMBRELabel);
     this.groupBox5.Controls.Add(this.nOMBRETextBox);
     this.groupBox5.Location = new System.Drawing.Point(321, 5);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(336, 396);
     this.groupBox5.TabIndex = 59;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Imagenes";
     //
     // pB_imgDetalle
     //
     this.pB_imgDetalle.DataBindings.Add(new System.Windows.Forms.Binding("Image", this.imagenesBS, "RUTA", true));
     this.pB_imgDetalle.Image = global::SIFCA.Properties.Resources.ninguna_imagen;
     this.pB_imgDetalle.Location = new System.Drawing.Point(56, 55);
     this.pB_imgDetalle.Name = "pB_imgDetalle";
     this.pB_imgDetalle.Size = new System.Drawing.Size(260, 145);
     this.pB_imgDetalle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pB_imgDetalle.TabIndex = 78;
     this.pB_imgDetalle.TabStop = false;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(10, 221);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(55, 13);
     this.label39.TabIndex = 82;
     this.label39.Text = "Ubicacion";
     //
     // rutatxt
     //
     this.rutatxt.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "RUTA", true));
     this.rutatxt.Enabled = false;
     this.rutatxt.Location = new System.Drawing.Point(74, 218);
     this.rutatxt.Name = "rutatxt";
     this.rutatxt.Size = new System.Drawing.Size(238, 20);
     this.rutatxt.TabIndex = 0;
     this.rutatxt.Text = "Ninguna ubicacion especificada";
     this.rutatxt.TextChanged += new System.EventHandler(this.rutatxt_TextChanged);
     //
     // imagenesBN
     //
     this.imagenesBN.AddNewItem = null;
     this.imagenesBN.BindingSource = this.imagenesBS;
     this.imagenesBN.CountItem = this.bindingNavigatorCountItem;
     this.imagenesBN.DeleteItem = null;
     this.imagenesBN.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem});
     this.imagenesBN.Location = new System.Drawing.Point(3, 16);
     this.imagenesBN.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.imagenesBN.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.imagenesBN.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.imagenesBN.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.imagenesBN.Name = "imagenesBN";
     this.imagenesBN.PositionItem = this.bindingNavigatorPositionItem;
     this.imagenesBN.Size = new System.Drawing.Size(330, 25);
     this.imagenesBN.TabIndex = 80;
     this.imagenesBN.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(78, 22);
     this.toolStripLabel1.Text = "Ver imagenes";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // dESCRIPCIONTextBox
     //
     this.dESCRIPCIONTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "DESCRIPCION", true));
     this.dESCRIPCIONTextBox.Enabled = false;
     this.dESCRIPCIONTextBox.Location = new System.Drawing.Point(76, 290);
     this.dESCRIPCIONTextBox.Multiline = true;
     this.dESCRIPCIONTextBox.Name = "dESCRIPCIONTextBox";
     this.dESCRIPCIONTextBox.Size = new System.Drawing.Size(238, 84);
     this.dESCRIPCIONTextBox.TabIndex = 2;
     this.dESCRIPCIONTextBox.Text = "Ninguna";
     //
     // nOMBRETextBox
     //
     this.nOMBRETextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.imagenesBS, "NOMBRE", true));
     this.nOMBRETextBox.Enabled = false;
     this.nOMBRETextBox.Location = new System.Drawing.Point(77, 256);
     this.nOMBRETextBox.Name = "nOMBRETextBox";
     this.nOMBRETextBox.Size = new System.Drawing.Size(238, 20);
     this.nOMBRETextBox.TabIndex = 1;
     this.nOMBRETextBox.Text = "Ninguno";
     //
     // ver_detalle
     //
     this.ver_detalle.Controls.Add(this.detailGrupoEcoTxt);
     this.ver_detalle.Controls.Add(this.label44);
     this.ver_detalle.Controls.Add(this.pictureBox2);
     this.ver_detalle.Controls.Add(this.cbxGrupoComercial_det);
     this.ver_detalle.Controls.Add(this.txt_ZonaVid_det);
     this.ver_detalle.Controls.Add(this.label30);
     this.ver_detalle.Controls.Add(this.txt_ZonaGeogra_det);
     this.ver_detalle.Controls.Add(this.label31);
     this.ver_detalle.Controls.Add(this.txt_Fam_det);
     this.ver_detalle.Controls.Add(this.label32);
     this.ver_detalle.Controls.Add(this.label33);
     this.ver_detalle.Controls.Add(this.txt_NomCientifico_det);
     this.ver_detalle.Controls.Add(this.label34);
     this.ver_detalle.Controls.Add(this.txt_NomComun_det);
     this.ver_detalle.Controls.Add(this.label35);
     this.ver_detalle.Location = new System.Drawing.Point(10, 5);
     this.ver_detalle.Name = "ver_detalle";
     this.ver_detalle.Size = new System.Drawing.Size(303, 396);
     this.ver_detalle.TabIndex = 58;
     this.ver_detalle.TabStop = false;
     this.ver_detalle.Text = "Detalle especie";
     //
     // detailGrupoEcoTxt
     //
     this.detailGrupoEcoTxt.Location = new System.Drawing.Point(137, 285);
     this.detailGrupoEcoTxt.Name = "detailGrupoEcoTxt";
     this.detailGrupoEcoTxt.ReadOnly = true;
     this.detailGrupoEcoTxt.Size = new System.Drawing.Size(152, 20);
     this.detailGrupoEcoTxt.TabIndex = 72;
     //
     // label44
     //
     this.label44.AutoSize = true;
     this.label44.Location = new System.Drawing.Point(17, 285);
     this.label44.Name = "label44";
     this.label44.Size = new System.Drawing.Size(85, 13);
     this.label44.TabIndex = 73;
     this.label44.Text = "Grupo ecológico";
     //
     // pictureBox2
     //
     this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Top;
     this.pictureBox2.Image = global::SIFCA.Properties.Resources.nueva_especie;
     this.pictureBox2.Location = new System.Drawing.Point(3, 16);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(297, 53);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 71;
     this.pictureBox2.TabStop = false;
     //
     // cbxGrupoComercial_det
     //
     this.cbxGrupoComercial_det.DataSource = this.GroupComBSource;
     this.cbxGrupoComercial_det.DisplayMember = "DESCRIPGRUPO";
     this.cbxGrupoComercial_det.Enabled = false;
     this.cbxGrupoComercial_det.FormattingEnabled = true;
     this.cbxGrupoComercial_det.Location = new System.Drawing.Point(136, 156);
     this.cbxGrupoComercial_det.Name = "cbxGrupoComercial_det";
     this.cbxGrupoComercial_det.Size = new System.Drawing.Size(152, 21);
     this.cbxGrupoComercial_det.TabIndex = 2;
     this.cbxGrupoComercial_det.ValueMember = "GRUPOCOM";
     //
     // txt_ZonaVid_det
     //
     this.txt_ZonaVid_det.Location = new System.Drawing.Point(136, 250);
     this.txt_ZonaVid_det.Name = "txt_ZonaVid_det";
     this.txt_ZonaVid_det.ReadOnly = true;
     this.txt_ZonaVid_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaVid_det.TabIndex = 5;
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Location = new System.Drawing.Point(15, 250);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(73, 13);
     this.label30.TabIndex = 66;
     this.label30.Text = "Zona De Vida";
     //
     // txt_ZonaGeogra_det
     //
     this.txt_ZonaGeogra_det.Location = new System.Drawing.Point(136, 220);
     this.txt_ZonaGeogra_det.Name = "txt_ZonaGeogra_det";
     this.txt_ZonaGeogra_det.ReadOnly = true;
     this.txt_ZonaGeogra_det.Size = new System.Drawing.Size(153, 20);
     this.txt_ZonaGeogra_det.TabIndex = 4;
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(16, 220);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(87, 13);
     this.label31.TabIndex = 64;
     this.label31.Text = "Zona Geografica";
     //
     // txt_Fam_det
     //
     this.txt_Fam_det.Location = new System.Drawing.Point(135, 185);
     this.txt_Fam_det.Name = "txt_Fam_det";
     this.txt_Fam_det.ReadOnly = true;
     this.txt_Fam_det.Size = new System.Drawing.Size(153, 20);
     this.txt_Fam_det.TabIndex = 3;
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Location = new System.Drawing.Point(14, 185);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(39, 13);
     this.label32.TabIndex = 62;
     this.label32.Text = "Familia";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Location = new System.Drawing.Point(14, 156);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(85, 13);
     this.label33.TabIndex = 61;
     this.label33.Text = "Grupo Comercial";
     //
     // txt_NomCientifico_det
     //
     this.txt_NomCientifico_det.Location = new System.Drawing.Point(135, 123);
     this.txt_NomCientifico_det.Name = "txt_NomCientifico_det";
     this.txt_NomCientifico_det.ReadOnly = true;
     this.txt_NomCientifico_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomCientifico_det.TabIndex = 1;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Location = new System.Drawing.Point(15, 123);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(90, 13);
     this.label34.TabIndex = 59;
     this.label34.Text = "Nombre Cientifico";
     //
     // txt_NomComun_det
     //
     this.txt_NomComun_det.Location = new System.Drawing.Point(135, 94);
     this.txt_NomComun_det.Name = "txt_NomComun_det";
     this.txt_NomComun_det.ReadOnly = true;
     this.txt_NomComun_det.Size = new System.Drawing.Size(153, 20);
     this.txt_NomComun_det.TabIndex = 0;
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Location = new System.Drawing.Point(14, 94);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(80, 13);
     this.label35.TabIndex = 57;
     this.label35.Text = "Nombre Comun";
     //
     // btn_cerrar
     //
     this.btn_cerrar.Location = new System.Drawing.Point(565, 408);
     this.btn_cerrar.Name = "btn_cerrar";
     this.btn_cerrar.Size = new System.Drawing.Size(92, 23);
     this.btn_cerrar.TabIndex = 0;
     this.btn_cerrar.Text = "Cerrar";
     this.btn_cerrar.UseVisualStyleBackColor = true;
     this.btn_cerrar.Click += new System.EventHandler(this.btn_cerrar_Click);
     //
     // pn_cargarImg
     //
     this.pn_cargarImg.Controls.Add(this.pB_imgCrear);
     this.pn_cargarImg.Controls.Add(this.groupBox4);
     this.pn_cargarImg.Controls.Add(this.imagenTxt);
     this.pn_cargarImg.Controls.Add(this.btn_cargarImg);
     this.pn_cargarImg.Location = new System.Drawing.Point(0, 0);
     this.pn_cargarImg.Name = "pn_cargarImg";
     this.pn_cargarImg.Size = new System.Drawing.Size(655, 317);
     this.pn_cargarImg.TabIndex = 4;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txt_descripcionImg);
     this.groupBox4.Controls.Add(this.label38);
     this.groupBox4.Controls.Add(this.txt_nombreImg);
     this.groupBox4.Controls.Add(this.label37);
     this.groupBox4.Controls.Add(this.btn_ImgCancelar);
     this.groupBox4.Controls.Add(this.btn_ImgAceptar);
     this.groupBox4.Location = new System.Drawing.Point(304, 12);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(329, 249);
     this.groupBox4.TabIndex = 35;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Detalles";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(12, 56);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(63, 13);
     this.label38.TabIndex = 39;
     this.label38.Text = "Descripción";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(9, 25);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(81, 13);
     this.label37.TabIndex = 37;
     this.label37.Text = "Nombre imagen";
     //
     // btn_ImgCancelar
     //
     this.btn_ImgCancelar.Location = new System.Drawing.Point(209, 220);
     this.btn_ImgCancelar.Name = "btn_ImgCancelar";
     this.btn_ImgCancelar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgCancelar.TabIndex = 3;
     this.btn_ImgCancelar.Text = "Cancelar";
     this.btn_ImgCancelar.UseVisualStyleBackColor = true;
     this.btn_ImgCancelar.Click += new System.EventHandler(this.btn_ImgCancelar_Click);
     //
     // btn_ImgAceptar
     //
     this.btn_ImgAceptar.Location = new System.Drawing.Point(105, 220);
     this.btn_ImgAceptar.Name = "btn_ImgAceptar";
     this.btn_ImgAceptar.Size = new System.Drawing.Size(98, 23);
     this.btn_ImgAceptar.TabIndex = 2;
     this.btn_ImgAceptar.Text = "Aceptar";
     this.btn_ImgAceptar.UseVisualStyleBackColor = true;
     this.btn_ImgAceptar.Click += new System.EventHandler(this.btn_ImgAceptar_Click);
     //
     // Especies_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(893, 491);
     this.Controls.Add(this.pn_detalle);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.Controls.Add(this.pn_cargarImg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Especies_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Especies";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEspecies)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grupoComercialBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.specieBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEspecie)).EndInit();
     this.paginacionEspecie.ResumeLayout(false);
     this.paginacionEspecie.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GroupComBSource)).EndInit();
     this.groupBox.ResumeLayout(false);
     this.groupBox.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.pn_editar.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UpdateImageBN)).EndInit();
     this.UpdateImageBN.ResumeLayout(false);
     this.UpdateImageBN.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgUpdate)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgCrear)).EndInit();
     this.pn_detalle.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pB_imgDetalle)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imagenesBN)).EndInit();
     this.imagenesBN.ResumeLayout(false);
     this.imagenesBN.PerformLayout();
     this.ver_detalle.ResumeLayout(false);
     this.ver_detalle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.pn_cargarImg.ResumeLayout(false);
     this.pn_cargarImg.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #21
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Views");
     System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Procedures");
     this.menuStrip1                                     = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.openScriptToolStripMenuItem                    = new System.Windows.Forms.ToolStripMenuItem();
     this.saveScriptCurrentTabToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.printHTMLReportToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1                            = new System.Windows.Forms.ToolStripSeparator();
     this.connectionManagerToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.cutToolStripMenuItem                           = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem                         = new System.Windows.Forms.ToolStripMenuItem();
     this.selectAllToolStripMenuItem                     = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem                         = new System.Windows.Forms.ToolStripMenuItem();
     this.convertMultisetToAccessToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.convertMultisetToSQLiteToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.sendResultsToStoredConnectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2                            = new System.Windows.Forms.ToolStripSeparator();
     this.xMLDataEditorToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.loadFromXMLToolStripMenuItem                   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3                            = new System.Windows.Forms.ToolStripSeparator();
     this.openScriptLogToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.tabsToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.newTabToolStripMenuItem                        = new System.Windows.Forms.ToolStripMenuItem();
     this.closeTabToolStripMenuItem                      = new System.Windows.Forms.ToolStripMenuItem();
     this.renameTabToolStripMenuItem                     = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem                          = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem                         = new System.Windows.Forms.ToolStripMenuItem();
     this.statusMain                                     = new System.Windows.Forms.StatusStrip();
     this.txtCurrentDatabase                             = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2                          = new System.Windows.Forms.ToolStripStatusLabel();
     this.txtStatus             = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStrip1            = new System.Windows.Forms.ToolStrip();
     this.btnRefreshDatabase    = new System.Windows.Forms.ToolStripButton();
     this.cboDatabaseConnection = new System.Windows.Forms.ToolStripComboBox();
     this.btnRunQuery           = new System.Windows.Forms.ToolStripButton();
     this.btnRunAction          = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4   = new System.Windows.Forms.ToolStripSeparator();
     this.btnOpenScript         = new System.Windows.Forms.ToolStripButton();
     this.btnSaveResultsAs      = new System.Windows.Forms.ToolStripButton();
     this.cboExportFormat       = new System.Windows.Forms.ToolStripComboBox();
     this.btnAboutHelp          = new System.Windows.Forms.ToolStripButton();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.tabDatabaseObjects    = new System.Windows.Forms.TabControl();
     this.tabPage1           = new System.Windows.Forms.TabPage();
     this.tvTablesList       = new System.Windows.Forms.TreeView();
     this.imageList1         = new System.Windows.Forms.ImageList(this.components);
     this.tabPage2           = new System.Windows.Forms.TabPage();
     this.tvViewsList        = new System.Windows.Forms.TreeView();
     this.tabPage3           = new System.Windows.Forms.TabPage();
     this.tvProceduresList   = new System.Windows.Forms.TreeView();
     this.tabQueries         = new System.Windows.Forms.TabControl();
     this.mnuQueryTabs       = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuQTabsNew        = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuQTabsClose      = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuQTabsRename     = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuTableOptions    = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuTableDrop       = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuTableViewCreate = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusMain.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.tabDatabaseObjects.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     this.tabPage3.SuspendLayout();
     this.mnuQueryTabs.SuspendLayout();
     this.mnuTableOptions.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.editToolStripMenuItem,
         this.toolsToolStripMenuItem,
         this.tabsToolStripMenuItem,
         this.helpToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Padding  = new System.Windows.Forms.Padding(4, 2, 0, 2);
     this.menuStrip1.Size     = new System.Drawing.Size(900, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openScriptToolStripMenuItem,
         this.saveScriptCurrentTabToolStripMenuItem,
         this.printHTMLReportToolStripMenuItem,
         this.toolStripSeparator1,
         this.connectionManagerToolStripMenuItem,
         this.exitToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // openScriptToolStripMenuItem
     //
     this.openScriptToolStripMenuItem.Name = "openScriptToolStripMenuItem";
     this.openScriptToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl-O";
     this.openScriptToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
     this.openScriptToolStripMenuItem.Text = "&Open Script";
     //
     // saveScriptCurrentTabToolStripMenuItem
     //
     this.saveScriptCurrentTabToolStripMenuItem.Name = "saveScriptCurrentTabToolStripMenuItem";
     this.saveScriptCurrentTabToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl-S";
     this.saveScriptCurrentTabToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
     this.saveScriptCurrentTabToolStripMenuItem.Text = "Save Script";
     //
     // printHTMLReportToolStripMenuItem
     //
     this.printHTMLReportToolStripMenuItem.Name = "printHTMLReportToolStripMenuItem";
     this.printHTMLReportToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
     this.printHTMLReportToolStripMenuItem.Text = "Print HTML Report";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(183, 6);
     //
     // connectionManagerToolStripMenuItem
     //
     this.connectionManagerToolStripMenuItem.Name   = "connectionManagerToolStripMenuItem";
     this.connectionManagerToolStripMenuItem.Size   = new System.Drawing.Size(186, 22);
     this.connectionManagerToolStripMenuItem.Text   = "&Connection Manager";
     this.connectionManagerToolStripMenuItem.Click += new System.EventHandler(this.ConnectionManagerToolStripMenuItemClick);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name   = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size   = new System.Drawing.Size(186, 22);
     this.exitToolStripMenuItem.Text   = "&Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItemClick);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.undoToolStripMenuItem,
         this.cutToolStripMenuItem,
         this.copyToolStripMenuItem,
         this.pasteToolStripMenuItem,
         this.selectAllToolStripMenuItem
     });
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "&Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.undoToolStripMenuItem.Text = "Undo";
     //
     // cutToolStripMenuItem
     //
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.cutToolStripMenuItem.Text = "Cut";
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.copyToolStripMenuItem.Text = "Copy";
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.pasteToolStripMenuItem.Text = "Paste";
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(122, 22);
     this.selectAllToolStripMenuItem.Text = "Select All";
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.convertMultisetToAccessToolStripMenuItem,
         this.convertMultisetToSQLiteToolStripMenuItem,
         this.sendResultsToStoredConnectionToolStripMenuItem,
         this.toolStripSeparator2,
         this.xMLDataEditorToolStripMenuItem,
         this.loadFromXMLToolStripMenuItem,
         this.toolStripSeparator3,
         this.openScriptLogToolStripMenuItem
     });
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
     this.toolsToolStripMenuItem.Text = "&Tools";
     //
     // convertMultisetToAccessToolStripMenuItem
     //
     this.convertMultisetToAccessToolStripMenuItem.Name = "convertMultisetToAccessToolStripMenuItem";
     this.convertMultisetToAccessToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
     this.convertMultisetToAccessToolStripMenuItem.Text = "Convert Multiset to Access";
     //
     // convertMultisetToSQLiteToolStripMenuItem
     //
     this.convertMultisetToSQLiteToolStripMenuItem.Name = "convertMultisetToSQLiteToolStripMenuItem";
     this.convertMultisetToSQLiteToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
     this.convertMultisetToSQLiteToolStripMenuItem.Text = "Convert Multiset to SQLite";
     //
     // sendResultsToStoredConnectionToolStripMenuItem
     //
     this.sendResultsToStoredConnectionToolStripMenuItem.Name = "sendResultsToStoredConnectionToolStripMenuItem";
     this.sendResultsToStoredConnectionToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
     this.sendResultsToStoredConnectionToolStripMenuItem.Text = "Send Results to Stored Connection";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(253, 6);
     //
     // xMLDataEditorToolStripMenuItem
     //
     this.xMLDataEditorToolStripMenuItem.Name = "xMLDataEditorToolStripMenuItem";
     this.xMLDataEditorToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
     this.xMLDataEditorToolStripMenuItem.Text = "XML Data Editor";
     //
     // loadFromXMLToolStripMenuItem
     //
     this.loadFromXMLToolStripMenuItem.Name = "loadFromXMLToolStripMenuItem";
     this.loadFromXMLToolStripMenuItem.Size = new System.Drawing.Size(256, 22);
     this.loadFromXMLToolStripMenuItem.Text = "Load From XML";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(253, 6);
     //
     // openScriptLogToolStripMenuItem
     //
     this.openScriptLogToolStripMenuItem.Name   = "openScriptLogToolStripMenuItem";
     this.openScriptLogToolStripMenuItem.Size   = new System.Drawing.Size(256, 22);
     this.openScriptLogToolStripMenuItem.Text   = "Open Script Log";
     this.openScriptLogToolStripMenuItem.Click += new System.EventHandler(this.openScriptLogToolStripMenuItem_Click);
     //
     // tabsToolStripMenuItem
     //
     this.tabsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.newTabToolStripMenuItem,
         this.closeTabToolStripMenuItem,
         this.renameTabToolStripMenuItem
     });
     this.tabsToolStripMenuItem.Name = "tabsToolStripMenuItem";
     this.tabsToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
     this.tabsToolStripMenuItem.Text = "&Tabs";
     //
     // newTabToolStripMenuItem
     //
     this.newTabToolStripMenuItem.Name   = "newTabToolStripMenuItem";
     this.newTabToolStripMenuItem.Size   = new System.Drawing.Size(138, 22);
     this.newTabToolStripMenuItem.Text   = "New Tab";
     this.newTabToolStripMenuItem.Click += new System.EventHandler(this.NewTabToolStripMenuItemClick);
     //
     // closeTabToolStripMenuItem
     //
     this.closeTabToolStripMenuItem.Name   = "closeTabToolStripMenuItem";
     this.closeTabToolStripMenuItem.Size   = new System.Drawing.Size(138, 22);
     this.closeTabToolStripMenuItem.Text   = "Close Tab";
     this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.CloseTabToolStripMenuItemClick);
     //
     // renameTabToolStripMenuItem
     //
     this.renameTabToolStripMenuItem.Name   = "renameTabToolStripMenuItem";
     this.renameTabToolStripMenuItem.Size   = new System.Drawing.Size(138, 22);
     this.renameTabToolStripMenuItem.Text   = "Rename Tab";
     this.renameTabToolStripMenuItem.Click += new System.EventHandler(this.RenameTabToolStripMenuItemClick);
     //
     // 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(107, 22);
     this.aboutToolStripMenuItem.Text   = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItemClick);
     //
     // statusMain
     //
     this.statusMain.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.txtCurrentDatabase,
         this.toolStripStatusLabel2,
         this.txtStatus
     });
     this.statusMain.Location = new System.Drawing.Point(0, 464);
     this.statusMain.Name     = "statusMain";
     this.statusMain.Size     = new System.Drawing.Size(900, 22);
     this.statusMain.TabIndex = 1;
     this.statusMain.Text     = "statusStrip1";
     //
     // txtCurrentDatabase
     //
     this.txtCurrentDatabase.Name = "txtCurrentDatabase";
     this.txtCurrentDatabase.Size = new System.Drawing.Size(133, 17);
     this.txtCurrentDatabase.Text = "Current Database: None";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(10, 17);
     this.toolStripStatusLabel2.Text = "|";
     //
     // txtStatus
     //
     this.txtStatus.Name = "txtStatus";
     this.txtStatus.Size = new System.Drawing.Size(74, 17);
     this.txtStatus.Text = "Status: None";
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.btnRefreshDatabase,
         this.cboDatabaseConnection,
         this.btnRunQuery,
         this.btnRunAction,
         this.toolStripSeparator4,
         this.btnOpenScript,
         this.btnSaveResultsAs,
         this.cboExportFormat,
         this.btnAboutHelp
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(900, 27);
     this.toolStrip1.TabIndex = 2;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // btnRefreshDatabase
     //
     this.btnRefreshDatabase.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRefreshDatabase.Image                 = ((System.Drawing.Image)(resources.GetObject("btnRefreshDatabase.Image")));
     this.btnRefreshDatabase.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRefreshDatabase.Name   = "btnRefreshDatabase";
     this.btnRefreshDatabase.Size   = new System.Drawing.Size(24, 24);
     this.btnRefreshDatabase.Text   = "Refresh";
     this.btnRefreshDatabase.Click += new System.EventHandler(this.BtnRefreshDatabaseClick);
     //
     // cboDatabaseConnection
     //
     this.cboDatabaseConnection.DropDownWidth = 200;
     this.cboDatabaseConnection.Name          = "cboDatabaseConnection";
     this.cboDatabaseConnection.Size          = new System.Drawing.Size(150, 27);
     this.cboDatabaseConnection.Text          = "(No DB Selected)";
     //
     // btnRunQuery
     //
     this.btnRunQuery.Image = ((System.Drawing.Image)(resources.GetObject("btnRunQuery.Image")));
     this.btnRunQuery.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRunQuery.Name   = "btnRunQuery";
     this.btnRunQuery.Size   = new System.Drawing.Size(87, 24);
     this.btnRunQuery.Text   = "Run Query";
     this.btnRunQuery.Click += new System.EventHandler(this.BtnRunQueryClick);
     //
     // btnRunAction
     //
     this.btnRunAction.Image = ((System.Drawing.Image)(resources.GetObject("btnRunAction.Image")));
     this.btnRunAction.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRunAction.Name   = "btnRunAction";
     this.btnRunAction.Size   = new System.Drawing.Size(125, 24);
     this.btnRunAction.Text   = "Run Action Query";
     this.btnRunAction.Click += new System.EventHandler(this.BtnRunActionClick);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 27);
     //
     // btnOpenScript
     //
     this.btnOpenScript.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenScript.Image")));
     this.btnOpenScript.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnOpenScript.Name   = "btnOpenScript";
     this.btnOpenScript.Size   = new System.Drawing.Size(93, 24);
     this.btnOpenScript.Text   = "Open Script";
     this.btnOpenScript.Click += new System.EventHandler(this.BtnOpenScriptClick);
     //
     // btnSaveResultsAs
     //
     this.btnSaveResultsAs.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveResultsAs.Image")));
     this.btnSaveResultsAs.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSaveResultsAs.Name   = "btnSaveResultsAs";
     this.btnSaveResultsAs.Size   = new System.Drawing.Size(114, 24);
     this.btnSaveResultsAs.Text   = "Save Results As:";
     this.btnSaveResultsAs.Click += new System.EventHandler(this.btnSaveResultsAs_Click);
     //
     // cboExportFormat
     //
     this.cboExportFormat.Items.AddRange(new object[] {
         "Excel (.xlsx)",
         "CSV",
         "Tab Delimited",
         "Choose Delimiter",
         "XML",
         "Multiset"
     });
     this.cboExportFormat.Name = "cboExportFormat";
     this.cboExportFormat.Size = new System.Drawing.Size(114, 27);
     this.cboExportFormat.Text = "Excel (.xlsx)";
     //
     // btnAboutHelp
     //
     this.btnAboutHelp.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAboutHelp.Image                 = ((System.Drawing.Image)(resources.GetObject("btnAboutHelp.Image")));
     this.btnAboutHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAboutHelp.Name   = "btnAboutHelp";
     this.btnAboutHelp.Size   = new System.Drawing.Size(24, 24);
     this.btnAboutHelp.Text   = "Help";
     this.btnAboutHelp.Click += new System.EventHandler(this.BtnAboutHelpClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 51);
     this.splitContainer1.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tabDatabaseObjects);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tabQueries);
     this.splitContainer1.Size             = new System.Drawing.Size(900, 413);
     this.splitContainer1.SplitterDistance = 201;
     this.splitContainer1.SplitterWidth    = 3;
     this.splitContainer1.TabIndex         = 3;
     //
     // tabDatabaseObjects
     //
     this.tabDatabaseObjects.Controls.Add(this.tabPage1);
     this.tabDatabaseObjects.Controls.Add(this.tabPage2);
     this.tabDatabaseObjects.Controls.Add(this.tabPage3);
     this.tabDatabaseObjects.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabDatabaseObjects.Location      = new System.Drawing.Point(0, 0);
     this.tabDatabaseObjects.Margin        = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabDatabaseObjects.Name          = "tabDatabaseObjects";
     this.tabDatabaseObjects.SelectedIndex = 0;
     this.tabDatabaseObjects.Size          = new System.Drawing.Size(201, 413);
     this.tabDatabaseObjects.TabIndex      = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.tvTablesList);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage1.Size     = new System.Drawing.Size(193, 387);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text     = "Tables";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // tvTablesList
     //
     this.tvTablesList.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tvTablesList.ImageIndex         = 0;
     this.tvTablesList.ImageList          = this.imageList1;
     this.tvTablesList.Location           = new System.Drawing.Point(2, 2);
     this.tvTablesList.Margin             = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tvTablesList.Name               = "tvTablesList";
     this.tvTablesList.SelectedImageIndex = 0;
     this.tvTablesList.ShowLines          = false;
     this.tvTablesList.ShowRootLines      = false;
     this.tvTablesList.Size               = new System.Drawing.Size(189, 383);
     this.tvTablesList.TabIndex           = 0;
     this.tvTablesList.DoubleClick       += new System.EventHandler(this.TvTablesListDoubleClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "table.png");
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.tvViewsList);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Padding  = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage2.Size     = new System.Drawing.Size(193, 393);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "Views";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // tvViewsList
     //
     this.tvViewsList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tvViewsList.Location = new System.Drawing.Point(2, 2);
     this.tvViewsList.Name     = "tvViewsList";
     treeNode1.Name            = "Views";
     treeNode1.Text            = "Views";
     this.tvViewsList.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode1
     });
     this.tvViewsList.Size     = new System.Drawing.Size(189, 389);
     this.tvViewsList.TabIndex = 0;
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.tvProceduresList);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Margin   = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage3.Name     = "tabPage3";
     this.tabPage3.Padding  = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabPage3.Size     = new System.Drawing.Size(193, 393);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text     = "Procedures";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // tvProceduresList
     //
     this.tvProceduresList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tvProceduresList.Location = new System.Drawing.Point(2, 2);
     this.tvProceduresList.Name     = "tvProceduresList";
     treeNode2.Name = "Procedures";
     treeNode2.Text = "Procedures";
     this.tvProceduresList.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode2
     });
     this.tvProceduresList.Size     = new System.Drawing.Size(189, 389);
     this.tvProceduresList.TabIndex = 0;
     //
     // tabQueries
     //
     this.tabQueries.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabQueries.Location      = new System.Drawing.Point(0, 0);
     this.tabQueries.Margin        = new System.Windows.Forms.Padding(2, 2, 2, 2);
     this.tabQueries.Name          = "tabQueries";
     this.tabQueries.SelectedIndex = 0;
     this.tabQueries.Size          = new System.Drawing.Size(696, 413);
     this.tabQueries.TabIndex      = 0;
     this.tabQueries.MouseClick   += new System.Windows.Forms.MouseEventHandler(this.TabQueriesMouseClick);
     //
     // mnuQueryTabs
     //
     this.mnuQueryTabs.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.mnuQueryTabs.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuQTabsNew,
         this.mnuQTabsClose,
         this.mnuQTabsRename
     });
     this.mnuQueryTabs.Name = "mnuQueryTabs";
     this.mnuQueryTabs.Size = new System.Drawing.Size(139, 70);
     //
     // mnuQTabsNew
     //
     this.mnuQTabsNew.Name   = "mnuQTabsNew";
     this.mnuQTabsNew.Size   = new System.Drawing.Size(138, 22);
     this.mnuQTabsNew.Text   = "New Tab";
     this.mnuQTabsNew.Click += new System.EventHandler(this.MnuQTabsNewClick);
     //
     // mnuQTabsClose
     //
     this.mnuQTabsClose.Name   = "mnuQTabsClose";
     this.mnuQTabsClose.Size   = new System.Drawing.Size(138, 22);
     this.mnuQTabsClose.Text   = "Close Tab";
     this.mnuQTabsClose.Click += new System.EventHandler(this.MnuQTabsCloseClick);
     //
     // mnuQTabsRename
     //
     this.mnuQTabsRename.Name   = "mnuQTabsRename";
     this.mnuQTabsRename.Size   = new System.Drawing.Size(138, 22);
     this.mnuQTabsRename.Text   = "Rename Tab";
     this.mnuQTabsRename.Click += new System.EventHandler(this.MnuQTabsRenameClick);
     //
     // mnuTableOptions
     //
     this.mnuTableOptions.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.mnuTableOptions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mnuTableDrop,
         this.mnuTableViewCreate
     });
     this.mnuTableOptions.Name = "mnuTableOptions";
     this.mnuTableOptions.Size = new System.Drawing.Size(172, 48);
     //
     // mnuTableDrop
     //
     this.mnuTableDrop.Name = "mnuTableDrop";
     this.mnuTableDrop.Size = new System.Drawing.Size(171, 22);
     this.mnuTableDrop.Text = "Drop";
     //
     // mnuTableViewCreate
     //
     this.mnuTableViewCreate.Name = "mnuTableViewCreate";
     this.mnuTableViewCreate.Size = new System.Drawing.Size(171, 22);
     this.mnuTableViewCreate.Text = "View Create Query";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(900, 486);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusMain);
     this.Controls.Add(this.menuStrip1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.Text          = "SQLRunner2";
     this.Load         += new System.EventHandler(this.MainFormLoad);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusMain.ResumeLayout(false);
     this.statusMain.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.tabDatabaseObjects.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     this.tabPage3.ResumeLayout(false);
     this.mnuQueryTabs.ResumeLayout(false);
     this.mnuTableOptions.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(UC_Dictionary));
     ExtendedRichTextBox.CharStyle charStyle1 = new ExtendedRichTextBox.CharStyle();
     ExtendedRichTextBox.ParaLineSpacing paraLineSpacing1 = new ExtendedRichTextBox.ParaLineSpacing();
     ExtendedRichTextBox.ParaListStyle paraListStyle1 = new ExtendedRichTextBox.ParaListStyle();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtKeyword = new System.Windows.Forms.TextBox();
     this.cbxDictionary = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.lblKeyWord = new System.Windows.Forms.Label();
     this.lvwDE = new System.Windows.Forms.ListView();
     this.clmKeyword = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.cmsRightMouse = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuCut = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuPaste = new System.Windows.Forms.ToolStripMenuItem();
     this.mnuConvert = new System.Windows.Forms.ToolStripMenuItem();
     this.btnNew = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.pnlShow = new System.Windows.Forms.Panel();
     this.rtxShow = new ExtendedRichTextBox();
     this.tlsTool = new System.Windows.Forms.ToolStrip();
     this.btnBold = new System.Windows.Forms.ToolStripButton();
     this.btnItalic = new System.Windows.Forms.ToolStripButton();
     this.btnUnderline = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAlignLeft = new System.Windows.Forms.ToolStripButton();
     this.btnAlignCenter = new System.Windows.Forms.ToolStripButton();
     this.btnAlignRight = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.cboSize = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnUndo = new System.Windows.Forms.ToolStripButton();
     this.btnRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnAddPicture = new System.Windows.Forms.ToolStripButton();
     this.btnColor = new System.Windows.Forms.ToolStripButton();
     this.btnHighLightColor = new System.Windows.Forms.ToolStripButton();
     this.groupBox1.SuspendLayout();
     this.cmsRightMouse.SuspendLayout();
     this.pnlShow.SuspendLayout();
     this.tlsTool.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.txtKeyword);
     this.groupBox1.Controls.Add(this.cbxDictionary);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.lblKeyWord);
     this.groupBox1.Controls.Add(this.lvwDE);
     this.groupBox1.Location = new System.Drawing.Point(3, -2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(251, 475);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     //
     // txtKeyword
     //
     this.txtKeyword.Location = new System.Drawing.Point(76, 53);
     this.txtKeyword.Name = "txtKeyword";
     this.txtKeyword.Size = new System.Drawing.Size(155, 20);
     this.txtKeyword.TabIndex = 1;
     this.txtKeyword.TextChanged += new System.EventHandler(this.txtKeyWord_TextChanged);
     //
     // cbxDictionary
     //
     this.cbxDictionary.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbxDictionary.FormattingEnabled = true;
     this.cbxDictionary.Items.AddRange(new object[] {
     "Afrikaans",
     "Albanian",
     "Arabic",
     "Armenian",
     "Azerbaijani",
     "Basque",
     "Belarusian",
     "Bengali",
     "Bosnian",
     "Bulgarian",
     "Catalan",
     "Cebuano",
     "Chinese",
     "Croatian",
     "Czech",
     "Danish",
     "Dutch",
     "English",
     "Esperanto",
     "Estonian",
     "Filipino",
     "Finnish",
     "French",
     "Galician",
     "Georgian",
     "German",
     "Greek",
     "Gujarati",
     "Haitian Creole",
     "Hausa",
     "Hebrew",
     "Hindi",
     "Hmong",
     "Hungarian",
     "Icelandic",
     "Igbo",
     "Indonesian",
     "Irish",
     "Italian",
     "Japanese",
     "Javanese",
     "Kannada",
     "Khmer",
     "Korean",
     "Lao",
     "Latin",
     "Latvian",
     "Lithuanian",
     "Macedonian",
     "Malay",
     "Maltese",
     "Maori",
     "Marathi",
     "Mongolian",
     "Nepali",
     "Norwegian",
     "Persian",
     "Polish",
     "Portuguese",
     "Punjabi",
     "Romanian",
     "Russian",
     "Serbian",
     "Slovak",
     "Slovenian",
     "Somali",
     "Spanish",
     "Swahili",
     "Swedish",
     "Tamil",
     "Telugu",
     "Thai",
     "Turkish",
     "Ukrainian",
     "Urdu",
     "Vietnamese",
     "Welsh",
     "Yiddish",
     "Yoruba",
     "Zulu"});
     this.cbxDictionary.Location = new System.Drawing.Point(76, 16);
     this.cbxDictionary.Name = "cbxDictionary";
     this.cbxDictionary.Size = new System.Drawing.Size(155, 21);
     this.cbxDictionary.TabIndex = 0;
     this.cbxDictionary.SelectedIndexChanged += new System.EventHandler(this.cbxDictionary_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(6, 85);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(107, 13);
     this.label1.TabIndex = 6;
     this.label1.Text = "Dictionary Entries";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label2.Location = new System.Drawing.Point(6, 19);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(64, 13);
     this.label2.TabIndex = 0;
     this.label2.Text = "Dictionary";
     //
     // lblKeyWord
     //
     this.lblKeyWord.AutoSize = true;
     this.lblKeyWord.BackColor = System.Drawing.Color.Transparent;
     this.lblKeyWord.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblKeyWord.Location = new System.Drawing.Point(6, 53);
     this.lblKeyWord.Name = "lblKeyWord";
     this.lblKeyWord.Size = new System.Drawing.Size(55, 13);
     this.lblKeyWord.TabIndex = 4;
     this.lblKeyWord.Text = "Keyword";
     //
     // lvwDE
     //
     this.lvwDE.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.clmKeyword});
     this.lvwDE.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.lvwDE.FullRowSelect = true;
     this.lvwDE.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.lvwDE.Location = new System.Drawing.Point(6, 101);
     this.lvwDE.MultiSelect = false;
     this.lvwDE.Name = "lvwDE";
     this.lvwDE.Size = new System.Drawing.Size(240, 374);
     this.lvwDE.TabIndex = 7;
     this.lvwDE.UseCompatibleStateImageBehavior = false;
     this.lvwDE.View = System.Windows.Forms.View.Details;
     this.lvwDE.SelectedIndexChanged += new System.EventHandler(this.lvwDE_SelectedIndexChanged);
     this.lvwDE.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvwDE_MouseClick);
     //
     // clmKeyword
     //
     this.clmKeyword.Text = "";
     this.clmKeyword.Width = 232;
     //
     // cmsRightMouse
     //
     this.cmsRightMouse.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuCopy,
     this.mnuCut,
     this.mnuPaste,
     this.mnuConvert});
     this.cmsRightMouse.Name = "cmsRightMouse";
     this.cmsRightMouse.Size = new System.Drawing.Size(178, 92);
     //
     // mnuCopy
     //
     this.mnuCopy.Image = ((System.Drawing.Image)(resources.GetObject("mnuCopy.Image")));
     this.mnuCopy.Name = "mnuCopy";
     this.mnuCopy.Size = new System.Drawing.Size(177, 22);
     this.mnuCopy.Text = "Copy";
     this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
     //
     // mnuCut
     //
     this.mnuCut.Image = ((System.Drawing.Image)(resources.GetObject("mnuCut.Image")));
     this.mnuCut.Name = "mnuCut";
     this.mnuCut.Size = new System.Drawing.Size(177, 22);
     this.mnuCut.Text = "Cut";
     this.mnuCut.Click += new System.EventHandler(this.mnuCut_Click);
     //
     // mnuPaste
     //
     this.mnuPaste.Image = ((System.Drawing.Image)(resources.GetObject("mnuPaste.Image")));
     this.mnuPaste.Name = "mnuPaste";
     this.mnuPaste.Size = new System.Drawing.Size(177, 22);
     this.mnuPaste.Text = "Paste";
     this.mnuPaste.Click += new System.EventHandler(this.mnuPaste_Click);
     //
     // mnuConvert
     //
     this.mnuConvert.Name = "mnuConvert";
     this.mnuConvert.Size = new System.Drawing.Size(177, 22);
     this.mnuConvert.Text = "Convert to Rtf code";
     this.mnuConvert.Click += new System.EventHandler(this.mnuConvert_Click);
     //
     // btnNew
     //
     this.btnNew.BackColor = System.Drawing.SystemColors.Control;
     this.btnNew.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnNew.BackgroundImage")));
     this.btnNew.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnNew.Image = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
     this.btnNew.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnNew.Location = new System.Drawing.Point(260, 3);
     this.btnNew.Name = "btnNew";
     this.btnNew.Size = new System.Drawing.Size(50, 50);
     this.btnNew.TabIndex = 3;
     this.btnNew.Text = "New";
     this.btnNew.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnNew.UseVisualStyleBackColor = false;
     this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
     //
     // btnSave
     //
     this.btnSave.BackColor = System.Drawing.SystemColors.Control;
     this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
     this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnSave.Location = new System.Drawing.Point(260, 171);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(50, 50);
     this.btnSave.TabIndex = 6;
     this.btnSave.Text = "Save";
     this.btnSave.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnSave.UseVisualStyleBackColor = false;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDelete
     //
     this.btnDelete.BackColor = System.Drawing.SystemColors.Control;
     this.btnDelete.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnDelete.BackgroundImage")));
     this.btnDelete.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnDelete.Location = new System.Drawing.Point(260, 115);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(50, 50);
     this.btnDelete.TabIndex = 5;
     this.btnDelete.Text = "Delete";
     this.btnDelete.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnDelete.UseVisualStyleBackColor = false;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.BackColor = System.Drawing.SystemColors.Control;
     this.btnEdit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnEdit.BackgroundImage")));
     this.btnEdit.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnEdit.Location = new System.Drawing.Point(260, 59);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(50, 50);
     this.btnEdit.TabIndex = 4;
     this.btnEdit.Text = "Edit";
     this.btnEdit.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnEdit.UseVisualStyleBackColor = false;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // pnlShow
     //
     this.pnlShow.Controls.Add(this.rtxShow);
     this.pnlShow.Controls.Add(this.tlsTool);
     this.pnlShow.Location = new System.Drawing.Point(316, 3);
     this.pnlShow.Name = "pnlShow";
     this.pnlShow.Size = new System.Drawing.Size(611, 470);
     this.pnlShow.TabIndex = 7;
     //
     // rtxShow
     //
     this.rtxShow.BackColor = System.Drawing.Color.Honeydew;
     this.rtxShow.ContextMenuStrip = this.cmsRightMouse;
     this.rtxShow.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxShow.Location = new System.Drawing.Point(0, 25);
     this.rtxShow.Name = "rtxShow";
     charStyle1.Bold = false;
     charStyle1.Italic = false;
     charStyle1.Link = false;
     charStyle1.Strikeout = false;
     charStyle1.Underline = false;
     this.rtxShow.SelectionCharStyle = charStyle1;
     this.rtxShow.SelectionFont2 = new System.Drawing.Font("Microsoft Sans Serif", 2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Inch);
     paraLineSpacing1.ExactSpacing = 0;
     paraLineSpacing1.SpacingStyle = ExtendedRichTextBox.ParaLineSpacing.LineSpacingStyle.Unknown;
     this.rtxShow.SelectionLineSpacing = paraLineSpacing1;
     paraListStyle1.BulletCharCode = ((short)(0));
     paraListStyle1.NumberingStart = ((short)(0));
     paraListStyle1.Style = ExtendedRichTextBox.ParaListStyle.ListStyle.NumberAndParenthesis;
     paraListStyle1.Type = ExtendedRichTextBox.ParaListStyle.ListType.None;
     this.rtxShow.SelectionListType = paraListStyle1;
     this.rtxShow.SelectionOffsetType = ExtendedRichTextBox.OffsetType.None;
     this.rtxShow.SelectionSpaceAfter = 0;
     this.rtxShow.SelectionSpaceBefore = 0;
     this.rtxShow.Size = new System.Drawing.Size(611, 445);
     this.rtxShow.TabIndex = 2;
     this.rtxShow.Text = "";
     //
     // tlsTool
     //
     this.tlsTool.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.tlsTool.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnBold,
     this.btnItalic,
     this.btnUnderline,
     this.toolStripSeparator1,
     this.btnAlignLeft,
     this.btnAlignCenter,
     this.btnAlignRight,
     this.toolStripSeparator2,
     this.cboSize,
     this.toolStripSeparator4,
     this.btnUndo,
     this.btnRedo,
     this.toolStripSeparator3,
     this.btnAddPicture,
     this.btnColor,
     this.btnHighLightColor});
     this.tlsTool.Location = new System.Drawing.Point(0, 0);
     this.tlsTool.Name = "tlsTool";
     this.tlsTool.Size = new System.Drawing.Size(611, 25);
     this.tlsTool.TabIndex = 4;
     this.tlsTool.Text = "toolStrip1";
     //
     // btnBold
     //
     this.btnBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnBold.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
     this.btnBold.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBold.Name = "btnBold";
     this.btnBold.Size = new System.Drawing.Size(23, 22);
     this.btnBold.Text = "B";
     this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
     //
     // btnItalic
     //
     this.btnItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnItalic.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnItalic.Image = ((System.Drawing.Image)(resources.GetObject("btnItalic.Image")));
     this.btnItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnItalic.Name = "btnItalic";
     this.btnItalic.Size = new System.Drawing.Size(23, 22);
     this.btnItalic.Text = "I";
     this.btnItalic.Click += new System.EventHandler(this.btnItalic_Click);
     //
     // btnUnderline
     //
     this.btnUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnUnderline.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnUnderline.Image = ((System.Drawing.Image)(resources.GetObject("btnUnderline.Image")));
     this.btnUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUnderline.Name = "btnUnderline";
     this.btnUnderline.Size = new System.Drawing.Size(23, 22);
     this.btnUnderline.Text = "U";
     this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // btnAlignLeft
     //
     this.btnAlignLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignLeft.Image")));
     this.btnAlignLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignLeft.Name = "btnAlignLeft";
     this.btnAlignLeft.Size = new System.Drawing.Size(23, 22);
     this.btnAlignLeft.Text = "toolStripButton1";
     this.btnAlignLeft.Click += new System.EventHandler(this.btnLeftAlign_Click);
     //
     // btnAlignCenter
     //
     this.btnAlignCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignCenter.Image")));
     this.btnAlignCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignCenter.Name = "btnAlignCenter";
     this.btnAlignCenter.Size = new System.Drawing.Size(23, 22);
     this.btnAlignCenter.Text = "toolStripButton1";
     this.btnAlignCenter.Click += new System.EventHandler(this.btnCenterAlign_Click);
     //
     // btnAlignRight
     //
     this.btnAlignRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("btnAlignRight.Image")));
     this.btnAlignRight.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAlignRight.Name = "btnAlignRight";
     this.btnAlignRight.Size = new System.Drawing.Size(23, 22);
     this.btnAlignRight.Text = "toolStripButton1";
     this.btnAlignRight.Click += new System.EventHandler(this.btnRightAlign_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // cboSize
     //
     this.cboSize.AutoSize = false;
     this.cboSize.Items.AddRange(new object[] {
     "8",
     "9",
     "10",
     "11",
     "12",
     "14",
     "16",
     "18",
     "20",
     "22",
     "24",
     "26",
     "28",
     "36",
     "48",
     "72"});
     this.cboSize.Name = "cboSize";
     this.cboSize.Size = new System.Drawing.Size(35, 23);
     this.cboSize.Text = "8";
     this.cboSize.SelectedIndexChanged += new System.EventHandler(this.cboSize_SelectedIndexChanged);
     this.cboSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboSize_KeyDown);
     this.cboSize.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboSize_KeyUp);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // btnUndo
     //
     this.btnUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnUndo.Image = ((System.Drawing.Image)(resources.GetObject("btnUndo.Image")));
     this.btnUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnUndo.Name = "btnUndo";
     this.btnUndo.Size = new System.Drawing.Size(23, 22);
     this.btnUndo.Text = "toolStripButton1";
     this.btnUndo.Click += new System.EventHandler(this.btnUndo_Click);
     //
     // btnRedo
     //
     this.btnRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnRedo.Image = ((System.Drawing.Image)(resources.GetObject("btnRedo.Image")));
     this.btnRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnRedo.Name = "btnRedo";
     this.btnRedo.Size = new System.Drawing.Size(23, 22);
     this.btnRedo.Text = "toolStripButton1";
     this.btnRedo.Click += new System.EventHandler(this.btnRedo_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // btnAddPicture
     //
     this.btnAddPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnAddPicture.Image = ((System.Drawing.Image)(resources.GetObject("btnAddPicture.Image")));
     this.btnAddPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnAddPicture.Name = "btnAddPicture";
     this.btnAddPicture.Size = new System.Drawing.Size(23, 22);
     this.btnAddPicture.Text = "toolStripButton1";
     this.btnAddPicture.Click += new System.EventHandler(this.btnAddPicture_Click);
     //
     // btnColor
     //
     this.btnColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnColor.Image = ((System.Drawing.Image)(resources.GetObject("btnColor.Image")));
     this.btnColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnColor.Name = "btnColor";
     this.btnColor.Size = new System.Drawing.Size(23, 22);
     this.btnColor.Text = "toolStripButton1";
     this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
     //
     // btnHighLightColor
     //
     this.btnHighLightColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnHighLightColor.Image = global::Reminiscent.Properties.Resources.mnuHighlightColor;
     this.btnHighLightColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnHighLightColor.Name = "btnHighLightColor";
     this.btnHighLightColor.Size = new System.Drawing.Size(23, 22);
     this.btnHighLightColor.Text = "toolStripButton1";
     this.btnHighLightColor.Click += new System.EventHandler(this.btnHighLightColor_Click);
     //
     // UC_Dictionary
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.Controls.Add(this.pnlShow);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnNew);
     this.Controls.Add(this.groupBox1);
     this.Name = "UC_Dictionary";
     this.Size = new System.Drawing.Size(930, 473);
     this.Load += new System.EventHandler(this.UC_Dictionary_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.cmsRightMouse.ResumeLayout(false);
     this.pnlShow.ResumeLayout(false);
     this.pnlShow.PerformLayout();
     this.tlsTool.ResumeLayout(false);
     this.tlsTool.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #23
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.настройкаToolStripMenuItem               = new System.Windows.Forms.ToolStripMenuItem();
     this.фильтрыToolStripMenuItem                 = new System.Windows.Forms.ToolStripMenuItem();
     this.выбратьИсходнуюПапкуToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.повторноПрименитьФильтрToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tsMenuUseML           = new System.Windows.Forms.ToolStripMenuItem();
     this.comboFilters          = new System.Windows.Forms.ToolStripComboBox();
     this.tbSearch              = new System.Windows.Forms.ToolStripTextBox();
     this.button1               = new System.Windows.Forms.Button();
     this.folderBrowserDialog1  = new System.Windows.Forms.FolderBrowserDialog();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statInfo              = new System.Windows.Forms.ToolStripStatusLabel();
     this.contextMenuStrip1     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьФайлИзИсключенияToolStripMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВыбранныеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.отметитьВсеToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.снятьВсеОтметкиToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.bindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.tbLog          = new System.Windows.Forms.TextBox();
     this.dataGridView1  = new SortFaxes.UserDataGridView();
     this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
     this.copyDataGridViewCheckBoxColumn          = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fileNameDataGridViewTextBoxColumn       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.destinationDirDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.Score = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dateEventDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.настройкаToolStripMenuItem,
         this.comboFilters,
         this.tbSearch
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1193, 27);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // настройкаToolStripMenuItem
     //
     this.настройкаToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.фильтрыToolStripMenuItem,
         this.выбратьИсходнуюПапкуToolStripMenuItem,
         this.повторноПрименитьФильтрToolStripMenuItem,
         this.tsMenuUseML
     });
     this.настройкаToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.настройкаToolStripMenuItem.Name = "настройкаToolStripMenuItem";
     this.настройкаToolStripMenuItem.Size = new System.Drawing.Size(87, 23);
     this.настройкаToolStripMenuItem.Text = "Настройка";
     //
     // фильтрыToolStripMenuItem
     //
     this.фильтрыToolStripMenuItem.Name   = "фильтрыToolStripMenuItem";
     this.фильтрыToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.фильтрыToolStripMenuItem.Text   = "Фильтры...";
     this.фильтрыToolStripMenuItem.Click += new System.EventHandler(this.ФильтрыToolStripMenuItemClick);
     //
     // выбратьИсходнуюПапкуToolStripMenuItem
     //
     this.выбратьИсходнуюПапкуToolStripMenuItem.Name   = "выбратьИсходнуюПапкуToolStripMenuItem";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.выбратьИсходнуюПапкуToolStripMenuItem.Text   = "Выбрать исходную папку...";
     this.выбратьИсходнуюПапкуToolStripMenuItem.Click += new System.EventHandler(this.ВыбратьИсходнуюПапкуToolStripMenuItemClick);
     //
     // повторноПрименитьФильтрToolStripMenuItem
     //
     this.повторноПрименитьФильтрToolStripMenuItem.Name   = "повторноПрименитьФильтрToolStripMenuItem";
     this.повторноПрименитьФильтрToolStripMenuItem.Size   = new System.Drawing.Size(265, 22);
     this.повторноПрименитьФильтрToolStripMenuItem.Text   = "Повторно применить фильтр";
     this.повторноПрименитьФильтрToolStripMenuItem.Click += new System.EventHandler(this.ПовторноПрименитьФильтрToolStripMenuItemClick);
     //
     // tsMenuUseML
     //
     this.tsMenuUseML.Checked      = true;
     this.tsMenuUseML.CheckOnClick = true;
     this.tsMenuUseML.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.tsMenuUseML.Name         = "tsMenuUseML";
     this.tsMenuUseML.Size         = new System.Drawing.Size(265, 22);
     this.tsMenuUseML.Text         = "Использовать нейросеть";
     this.tsMenuUseML.Click       += new System.EventHandler(this.tsMenuUseML_Click);
     //
     // comboFilters
     //
     this.comboFilters.Name   = "comboFilters";
     this.comboFilters.Size   = new System.Drawing.Size(121, 23);
     this.comboFilters.Click += new System.EventHandler(this.comboFilters_Click);
     //
     // tbSearch
     //
     this.tbSearch.BackColor = System.Drawing.Color.Khaki;
     this.tbSearch.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbSearch.ForeColor = System.Drawing.Color.Crimson;
     this.tbSearch.Name      = "tbSearch";
     this.tbSearch.Size      = new System.Drawing.Size(200, 23);
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.button1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Black;
     this.button1.FlatAppearance.BorderSize  = 2;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.button1.ForeColor = System.Drawing.SystemColors.WindowText;
     this.button1.Location  = new System.Drawing.Point(0, 677);
     this.button1.Name      = "button1";
     this.button1.Size      = new System.Drawing.Size(333, 31);
     this.button1.TabIndex  = 4;
     this.button1.Text      = "Переместить выбранные файлы";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // folderBrowserDialog1
     //
     this.folderBrowserDialog1.RootFolder          = System.Environment.SpecialFolder.DesktopDirectory;
     this.folderBrowserDialog1.ShowNewFolderButton = false;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1,
         this.statInfo
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 711);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(1193, 22);
     this.statusStrip1.TabIndex = 5;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name      = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size      = new System.Drawing.Size(38, 17);
     this.toolStripStatusLabel1.Text      = "status";
     this.toolStripStatusLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // statInfo
     //
     this.statInfo.AutoToolTip  = true;
     this.statInfo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.statInfo.ForeColor    = System.Drawing.Color.MidnightBlue;
     this.statInfo.Name         = "statInfo";
     this.statInfo.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.statInfo.Size         = new System.Drawing.Size(10, 17);
     this.statInfo.Text         = ".";
     this.statInfo.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem,
         this.удалитьФайлИзИсключенияToolStripMenuItem,
         this.отметитьВыбранныеToolStripMenuItem,
         this.отметитьВсеToolStripMenuItem,
         this.снятьВсеОтметкиToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(336, 114);
     //
     // добавитьФайлВИсключениенеПеремещатьToolStripMenuItem
     //
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Name   = "добавитьФайлВИсключениенеПеремещатьToolStripMenuItem";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Text   = "Добавить файл в исключение (не перемещать)";
     this.добавитьФайлВИсключениенеПеремещатьToolStripMenuItem.Click += new System.EventHandler(this.ДобавитьФайлВИсключениенеПеремещатьToolStripMenuItemClick);
     //
     // удалитьФайлИзИсключенияToolStripMenuItem
     //
     this.удалитьФайлИзИсключенияToolStripMenuItem.Name   = "удалитьФайлИзИсключенияToolStripMenuItem";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Size   = new System.Drawing.Size(335, 22);
     this.удалитьФайлИзИсключенияToolStripMenuItem.Text   = "Удалить файл из исключения";
     this.удалитьФайлИзИсключенияToolStripMenuItem.Click += new System.EventHandler(this.УдалитьФайлИзИсключенияToolStripMenuItemClick);
     //
     // отметитьВыбранныеToolStripMenuItem
     //
     this.отметитьВыбранныеToolStripMenuItem.BackColor = System.Drawing.Color.MediumAquamarine;
     this.отметитьВыбранныеToolStripMenuItem.Name      = "отметитьВыбранныеToolStripMenuItem";
     this.отметитьВыбранныеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВыбранныеToolStripMenuItem.Text      = "Отметить выбранные";
     this.отметитьВыбранныеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВыбранныеToolStripMenuItem_Click);
     //
     // отметитьВсеToolStripMenuItem
     //
     this.отметитьВсеToolStripMenuItem.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.отметитьВсеToolStripMenuItem.Name      = "отметитьВсеToolStripMenuItem";
     this.отметитьВсеToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.отметитьВсеToolStripMenuItem.Text      = "Отметить все";
     this.отметитьВсеToolStripMenuItem.Click    += new System.EventHandler(this.отметитьВсеToolStripMenuItem_Click);
     //
     // снятьВсеОтметкиToolStripMenuItem
     //
     this.снятьВсеОтметкиToolStripMenuItem.BackColor = System.Drawing.SystemColors.ControlLight;
     this.снятьВсеОтметкиToolStripMenuItem.Name      = "снятьВсеОтметкиToolStripMenuItem";
     this.снятьВсеОтметкиToolStripMenuItem.Size      = new System.Drawing.Size(335, 22);
     this.снятьВсеОтметкиToolStripMenuItem.Text      = "Снять все отметки";
     this.снятьВсеОтметкиToolStripMenuItem.Click    += new System.EventHandler(this.снятьВсеОтметкиToolStripMenuItem_Click);
     //
     // checkBox1
     //
     this.checkBox1.BackColor = System.Drawing.Color.LightCyan;
     this.checkBox1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.checkBox1.ForeColor = System.Drawing.Color.Black;
     this.checkBox1.Location  = new System.Drawing.Point(446, 3);
     this.checkBox1.Name      = "checkBox1";
     this.checkBox1.Size      = new System.Drawing.Size(201, 24);
     this.checkBox1.TabIndex  = 6;
     this.checkBox1.Text      = "Скрыть неотмеченные";
     this.checkBox1.UseVisualStyleBackColor = false;
     this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
     //
     // tbLog
     //
     this.tbLog.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.tbLog.Font       = new System.Drawing.Font("Palatino Linotype", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.tbLog.Location   = new System.Drawing.Point(540, 683);
     this.tbLog.Multiline  = true;
     this.tbLog.Name       = "tbLog";
     this.tbLog.ReadOnly   = true;
     this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.tbLog.Size       = new System.Drawing.Size(653, 48);
     this.tbLog.TabIndex   = 7;
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows    = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.AutoGenerateColumns         = false;
     this.dataGridView1.CheckedCount                = 0;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.copyDataGridViewCheckBoxColumn,
         this.fileNameDataGridViewTextBoxColumn,
         this.destinationDirDataGridViewTextBoxColumn,
         this.Score,
         this.dateEventDataGridViewTextBoxColumn
     });
     this.dataGridView1.ContextMenuStrip  = this.contextMenuStrip1;
     this.dataGridView1.DataSource        = this.bindingSource1;
     this.dataGridView1.EditMode          = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dataGridView1.Location          = new System.Drawing.Point(0, 27);
     this.dataGridView1.Name              = "dataGridView1";
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridView1.ShowCellErrors    = false;
     this.dataGridView1.ShowEditingIcon   = false;
     this.dataGridView1.ShowRowErrors     = false;
     this.dataGridView1.Size              = new System.Drawing.Size(1193, 652);
     this.dataGridView1.TabIndex          = 3;
     //
     // bindingSource1
     //
     this.bindingSource1.AllowNew   = false;
     this.bindingSource1.DataSource = typeof(SortFaxes.QFile);
     //
     // copyDataGridViewCheckBoxColumn
     //
     this.copyDataGridViewCheckBoxColumn.DataPropertyName = "Copy";
     this.copyDataGridViewCheckBoxColumn.HeaderText       = "Переместить";
     this.copyDataGridViewCheckBoxColumn.Name             = "copyDataGridViewCheckBoxColumn";
     //
     // fileNameDataGridViewTextBoxColumn
     //
     this.fileNameDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.fileNameDataGridViewTextBoxColumn.DataPropertyName = "FileName";
     this.fileNameDataGridViewTextBoxColumn.HeaderText       = "Имя файла";
     this.fileNameDataGridViewTextBoxColumn.MinimumWidth     = 250;
     this.fileNameDataGridViewTextBoxColumn.Name             = "fileNameDataGridViewTextBoxColumn";
     this.fileNameDataGridViewTextBoxColumn.ReadOnly         = true;
     this.fileNameDataGridViewTextBoxColumn.Width            = 250;
     //
     // destinationDirDataGridViewTextBoxColumn
     //
     this.destinationDirDataGridViewTextBoxColumn.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.destinationDirDataGridViewTextBoxColumn.DataPropertyName = "DestinationDir";
     this.destinationDirDataGridViewTextBoxColumn.DropDownWidth    = 20;
     this.destinationDirDataGridViewTextBoxColumn.HeaderText       = "Куда";
     this.destinationDirDataGridViewTextBoxColumn.MaxDropDownItems = 12;
     this.destinationDirDataGridViewTextBoxColumn.Name             = "destinationDirDataGridViewTextBoxColumn";
     this.destinationDirDataGridViewTextBoxColumn.Resizable        = System.Windows.Forms.DataGridViewTriState.True;
     this.destinationDirDataGridViewTextBoxColumn.SortMode         = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.destinationDirDataGridViewTextBoxColumn.Width            = 56;
     //
     // Score
     //
     this.Score.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Score.DataPropertyName = "Score";
     this.Score.HeaderText       = "%";
     this.Score.Name             = "Score";
     this.Score.ToolTipText      = "Вероятность угадывания папки для файла";
     this.Score.Width            = 40;
     //
     // dateEventDataGridViewTextBoxColumn
     //
     this.dateEventDataGridViewTextBoxColumn.DataPropertyName = "DateEvent";
     this.dateEventDataGridViewTextBoxColumn.HeaderText       = "Дата события";
     this.dateEventDataGridViewTextBoxColumn.Name             = "dateEventDataGridViewTextBoxColumn";
     this.dateEventDataGridViewTextBoxColumn.ReadOnly         = true;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1193, 733);
     this.Controls.Add(this.tbLog);
     this.Controls.Add(this.checkBox1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip     = this.menuStrip1;
     this.Name              = "MainForm";
     this.RightToLeftLayout = true;
     this.Text              = "SortFaxes";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(PicQueryForm));
     this.queryBtn = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.timeEdit2 = new DevExpress.XtraEditors.TimeEdit();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.bestPicListView = new System.Windows.Forms.ListView();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.pictureBoxFace = new System.Windows.Forms.PictureBox();
     this.labelCaptureLoc = new System.Windows.Forms.Label();
     this.labelCaptureTime = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.axVLCPlugin21 = new AxAXVLC.AxVLCPlugin2();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.pictureBoxWholeImg = new System.Windows.Forms.PictureBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonFirstPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPrePage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonNextPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonLastPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabelCurPage = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxPageSize = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonPlayVideo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit2.Properties)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axVLCPlugin21)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWholeImg)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // queryBtn
     //
     this.queryBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.queryBtn.Location = new System.Drawing.Point(724, 26);
     this.queryBtn.Name = "queryBtn";
     this.queryBtn.Size = new System.Drawing.Size(86, 23);
     this.queryBtn.TabIndex = 0;
     this.queryBtn.Text = "查询";
     this.queryBtn.UseVisualStyleBackColor = true;
     this.queryBtn.Click += new System.EventHandler(this.queryBtn_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "监控点";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(184, 31);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(23, 12);
     this.label2.TabIndex = 2;
     this.label2.Text = "从:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(470, 31);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(23, 12);
     this.label3.TabIndex = 3;
     this.label3.Text = "到:";
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(85, 27);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(73, 20);
     this.comboBox1.TabIndex = 4;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(209, 27);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(129, 21);
     this.dateTimePicker1.TabIndex = 5;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Location = new System.Drawing.Point(498, 27);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(129, 21);
     this.dateTimePicker2.TabIndex = 6;
     //
     // timeEdit1
     //
     this.timeEdit1.EditValue = new System.DateTime(2009, 5, 7, 0, 0, 0, 0);
     this.timeEdit1.Location = new System.Drawing.Point(344, 27);
     this.timeEdit1.Name = "timeEdit1";
     this.timeEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit1.Size = new System.Drawing.Size(75, 23);
     this.timeEdit1.TabIndex = 7;
     //
     // timeEdit2
     //
     this.timeEdit2.EditValue = new System.DateTime(2009, 5, 7, 0, 0, 0, 0);
     this.timeEdit2.Location = new System.Drawing.Point(633, 27);
     this.timeEdit2.Name = "timeEdit2";
     this.timeEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.timeEdit2.Size = new System.Drawing.Size(71, 23);
     this.timeEdit2.TabIndex = 8;
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(80, 60);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // imageList2
     //
     this.imageList2.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList2.ImageSize = new System.Drawing.Size(80, 60);
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     //
     // bestPicListView
     //
     this.bestPicListView.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.bestPicListView.AutoArrange = false;
     this.bestPicListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.bestPicListView.HideSelection = false;
     this.bestPicListView.Location = new System.Drawing.Point(0, 27);
     this.bestPicListView.MultiSelect = false;
     this.bestPicListView.Name = "bestPicListView";
     this.bestPicListView.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.bestPicListView.Size = new System.Drawing.Size(840, 256);
     this.bestPicListView.TabIndex = 10;
     this.bestPicListView.UseCompatibleStateImageBehavior = false;
     this.bestPicListView.ItemActivate += new System.EventHandler(this.bestPicListView_ItemActivate);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.queryBtn);
     this.groupBox3.Controls.Add(this.dateTimePicker1);
     this.groupBox3.Controls.Add(this.dateTimePicker2);
     this.groupBox3.Controls.Add(this.timeEdit1);
     this.groupBox3.Controls.Add(this.timeEdit2);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(840, 70);
     this.groupBox3.TabIndex = 17;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "查询条件";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.layoutControl1);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox4.Location = new System.Drawing.Point(0, 0);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(184, 185);
     this.groupBox4.TabIndex = 19;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "放大显示";
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.pictureBoxFace);
     this.layoutControl1.Controls.Add(this.labelCaptureLoc);
     this.layoutControl1.Controls.Add(this.labelCaptureTime);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(3, 17);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(178, 165);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // pictureBoxFace
     //
     this.pictureBoxFace.Location = new System.Drawing.Point(7, 7);
     this.pictureBoxFace.Name = "pictureBoxFace";
     this.pictureBoxFace.Size = new System.Drawing.Size(164, 86);
     this.pictureBoxFace.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBoxFace.TabIndex = 19;
     this.pictureBoxFace.TabStop = false;
     //
     // labelCaptureLoc
     //
     this.labelCaptureLoc.Location = new System.Drawing.Point(7, 103);
     this.labelCaptureLoc.Name = "labelCaptureLoc";
     this.labelCaptureLoc.Size = new System.Drawing.Size(164, 22);
     this.labelCaptureLoc.TabIndex = 17;
     this.labelCaptureLoc.Text = "抓拍地点:";
     this.labelCaptureLoc.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // labelCaptureTime
     //
     this.labelCaptureTime.Location = new System.Drawing.Point(7, 135);
     this.labelCaptureTime.Name = "labelCaptureTime";
     this.labelCaptureTime.Size = new System.Drawing.Size(164, 23);
     this.labelCaptureTime.TabIndex = 18;
     this.labelCaptureTime.Text = "抓拍时间:";
     this.labelCaptureTime.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1";
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.OptionsItemText.TextToControlDistance = 5;
     this.layoutControlGroup1.Size = new System.Drawing.Size(178, 165);
     this.layoutControlGroup1.Text = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.labelCaptureTime;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 128);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(0, 33);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(31, 33);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(174, 33);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.Text = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.labelCaptureLoc;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 96);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(0, 32);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(31, 32);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(174, 32);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.Text = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.pictureBoxFace;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(174, 96);
     this.layoutControlItem3.Text = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible = false;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 70);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.bestPicListView);
     this.splitContainer1.Panel2.Controls.Add(this.toolStrip1);
     this.splitContainer1.Size = new System.Drawing.Size(840, 472);
     this.splitContainer1.SplitterDistance = 185;
     this.splitContainer1.TabIndex = 20;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.groupBox4);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer2.Panel2.Controls.Add(this.splitter1);
     this.splitContainer2.Panel2.Controls.Add(this.groupBox1);
     this.splitContainer2.Size = new System.Drawing.Size(840, 185);
     this.splitContainer2.SplitterDistance = 184;
     this.splitContainer2.TabIndex = 21;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.axVLCPlugin21);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(442, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(210, 185);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "视频";
     //
     // axVLCPlugin21
     //
     this.axVLCPlugin21.Dock = System.Windows.Forms.DockStyle.Fill;
     this.axVLCPlugin21.Enabled = true;
     this.axVLCPlugin21.Location = new System.Drawing.Point(3, 17);
     this.axVLCPlugin21.Name = "axVLCPlugin21";
     this.axVLCPlugin21.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("axVLCPlugin21.OcxState")));
     this.axVLCPlugin21.Size = new System.Drawing.Size(204, 165);
     this.axVLCPlugin21.TabIndex = 31;
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(439, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 185);
     this.splitter1.TabIndex = 18;
     this.splitter1.TabStop = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.pictureBoxWholeImg);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(439, 185);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "全身像";
     //
     // pictureBoxWholeImg
     //
     this.pictureBoxWholeImg.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBoxWholeImg.Location = new System.Drawing.Point(3, 17);
     this.pictureBoxWholeImg.Name = "pictureBoxWholeImg";
     this.pictureBoxWholeImg.Size = new System.Drawing.Size(433, 165);
     this.pictureBoxWholeImg.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBoxWholeImg.TabIndex = 16;
     this.pictureBoxWholeImg.TabStop = false;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButtonFirstPage,
     this.toolStripButtonPrePage,
     this.toolStripButtonNextPage,
     this.toolStripButtonLastPage,
     this.toolStripLabelCurPage,
     this.toolStripComboBoxPageSize,
     this.toolStripLabel1,
     this.toolStripSeparator2,
     this.toolStripButtonPlayVideo,
     this.toolStripSeparator1,
     this.saveToolStripButton});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(840, 27);
     this.toolStrip1.TabIndex = 13;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButtonFirstPage
     //
     this.toolStripButtonFirstPage.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonFirstPage.Image")));
     this.toolStripButtonFirstPage.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonFirstPage.Name = "toolStripButtonFirstPage";
     this.toolStripButtonFirstPage.Size = new System.Drawing.Size(55, 24);
     this.toolStripButtonFirstPage.Text = "首页";
     this.toolStripButtonFirstPage.Click += new System.EventHandler(this.toolStripButtonFirstPage_Click);
     //
     // toolStripButtonPrePage
     //
     this.toolStripButtonPrePage.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPrePage.Image")));
     this.toolStripButtonPrePage.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPrePage.Name = "toolStripButtonPrePage";
     this.toolStripButtonPrePage.Size = new System.Drawing.Size(55, 24);
     this.toolStripButtonPrePage.Text = "上页";
     this.toolStripButtonPrePage.Click += new System.EventHandler(this.toolStripButtonPrePage_Click);
     //
     // toolStripButtonNextPage
     //
     this.toolStripButtonNextPage.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonNextPage.Image")));
     this.toolStripButtonNextPage.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonNextPage.Name = "toolStripButtonNextPage";
     this.toolStripButtonNextPage.Size = new System.Drawing.Size(55, 24);
     this.toolStripButtonNextPage.Text = "下页";
     this.toolStripButtonNextPage.Click += new System.EventHandler(this.toolStripButtonNextPage_Click);
     //
     // toolStripButtonLastPage
     //
     this.toolStripButtonLastPage.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLastPage.Image")));
     this.toolStripButtonLastPage.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonLastPage.Name = "toolStripButtonLastPage";
     this.toolStripButtonLastPage.Size = new System.Drawing.Size(55, 24);
     this.toolStripButtonLastPage.Text = "末页";
     this.toolStripButtonLastPage.Click += new System.EventHandler(this.toolStripButtonLastPage_Click);
     //
     // toolStripLabelCurPage
     //
     this.toolStripLabelCurPage.Name = "toolStripLabelCurPage";
     this.toolStripLabelCurPage.Size = new System.Drawing.Size(57, 24);
     this.toolStripLabelCurPage.Text = "第1/1页";
     //
     // toolStripComboBoxPageSize
     //
     this.toolStripComboBoxPageSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxPageSize.Items.AddRange(new object[] {
     "20",
     "30",
     "40",
     "50"});
     this.toolStripComboBoxPageSize.Name = "toolStripComboBoxPageSize";
     this.toolStripComboBoxPageSize.Size = new System.Drawing.Size(121, 27);
     this.toolStripComboBoxPageSize.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxPageSize_SelectedIndexChanged);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(41, 24);
     this.toolStripLabel1.Text = "张/页";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 27);
     //
     // toolStripButtonPlayVideo
     //
     this.toolStripButtonPlayVideo.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPlayVideo.Image")));
     this.toolStripButtonPlayVideo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPlayVideo.Name = "toolStripButtonPlayVideo";
     this.toolStripButtonPlayVideo.Size = new System.Drawing.Size(81, 24);
     this.toolStripButtonPlayVideo.Text = "相关视频";
     this.toolStripButtonPlayVideo.Click += new System.EventHandler(this.toolStripButtonPlayVideo_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 27);
     //
     // saveToolStripButton
     //
     this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
     this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.saveToolStripButton.Name = "saveToolStripButton";
     this.saveToolStripButton.Size = new System.Drawing.Size(97, 24);
     this.saveToolStripButton.Text = "保存图片(&S)";
     this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
     //
     // PicQueryForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(840, 542);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.groupBox3);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PicQueryForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "搜索图片";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.PicQueryForm_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.PicQueryForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit2.Properties)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFace)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.axVLCPlugin21)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWholeImg)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #25
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormOrderJournal));
     this.panel1              = new System.Windows.Forms.Panel();
     this.dateTimePicker2     = new System.Windows.Forms.DateTimePicker();
     this.label2              = new System.Windows.Forms.Label();
     this.label1              = new System.Windows.Forms.Label();
     this.dateButton          = new System.Windows.Forms.Button();
     this.buttonClose         = new System.Windows.Forms.Button();
     this.dateTimePicker1     = new System.Windows.Forms.DateTimePicker();
     this.panel2              = new System.Windows.Forms.Panel();
     this.toolStrip1          = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1  = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10   = new System.Windows.Forms.ToolStripButton();
     this.panel3              = new System.Windows.Forms.Panel();
     this.listView1           = new System.Windows.Forms.ListView();
     this.columnHeader1       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10      = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11      = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1   = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.создатьПланЗакупокToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьПланЗакупокToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьПланЗакупокToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1       = new System.Windows.Forms.ToolStripSeparator();
     this.обновитьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.toolTip1   = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.dateTimePicker2);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.dateButton);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Controls.Add(this.dateTimePicker1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 403);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(796, 45);
     this.panel1.TabIndex = 2;
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dateTimePicker2.CustomFormat = "dd.MM.yyyy";
     this.dateTimePicker2.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location     = new System.Drawing.Point(221, 12);
     this.dateTimePicker2.Name         = "dateTimePicker2";
     this.dateTimePicker2.Size         = new System.Drawing.Size(96, 20);
     this.dateTimePicker2.TabIndex     = 18;
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.Location  = new System.Drawing.Point(194, 13);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(44, 23);
     this.label2.TabIndex  = 21;
     this.label2.Text      = "по";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.Image      = ((System.Drawing.Image)(resources.GetObject("label1.Image")));
     this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.label1.Location   = new System.Drawing.Point(12, 13);
     this.label1.Name       = "label1";
     this.label1.Size       = new System.Drawing.Size(74, 23);
     this.label1.TabIndex   = 20;
     this.label1.Text       = "Период с";
     this.label1.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // dateButton
     //
     this.dateButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dateButton.Image     = ((System.Drawing.Image)(resources.GetObject("dateButton.Image")));
     this.dateButton.Location  = new System.Drawing.Point(323, 10);
     this.dateButton.Name      = "dateButton";
     this.dateButton.Size      = new System.Drawing.Size(25, 23);
     this.dateButton.TabIndex  = 19;
     this.dateButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolTip1.SetToolTip(this.dateButton, "Применить период.");
     this.dateButton.UseVisualStyleBackColor = true;
     this.dateButton.Click += new System.EventHandler(this.DateButtonClick);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(709, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dateTimePicker1.CustomFormat = "dd.MM.yyyy";
     this.dateTimePicker1.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location     = new System.Drawing.Point(92, 13);
     this.dateTimePicker1.Name         = "dateTimePicker1";
     this.dateTimePicker1.Size         = new System.Drawing.Size(96, 20);
     this.dateTimePicker1.TabIndex     = 16;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.toolStrip1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(796, 25);
     this.panel2.TabIndex = 3;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(796, 25);
     this.toolStrip1.TabIndex    = 25;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "Создать заказ";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text   = "Изменить заказ";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text   = "Удалить заказ";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 25);
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 22);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 22);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.listView1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(796, 378);
     this.panel3.TabIndex = 4;
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader7,
         this.columnHeader9,
         this.columnHeader8,
         this.columnHeader10,
         this.columnHeader11
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 0);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(796, 378);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 6;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Дата:";
     this.columnHeader2.Width = 100;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Номер документа:";
     this.columnHeader3.Width = 150;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "Документ:";
     this.columnHeader4.Width = 200;
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "Сумма:";
     this.columnHeader5.Width = 100;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "НДС:";
     this.columnHeader6.Width = 100;
     //
     // columnHeader7
     //
     this.columnHeader7.Text  = "Всего";
     this.columnHeader7.Width = 100;
     //
     // columnHeader9
     //
     this.columnHeader9.Text  = "Контрагент";
     this.columnHeader9.Width = 150;
     //
     // columnHeader8
     //
     this.columnHeader8.Text  = "Автор";
     this.columnHeader8.Width = 150;
     //
     // columnHeader10
     //
     this.columnHeader10.Text  = "План закупок";
     this.columnHeader10.Width = 100;
     //
     // columnHeader11
     //
     this.columnHeader11.Text  = "№";
     this.columnHeader11.Width = 0;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьПланЗакупокToolStripMenuItem,
         this.изменитьПланЗакупокToolStripMenuItem,
         this.удалитьПланЗакупокToolStripMenuItem,
         this.toolStripSeparator1,
         this.обновитьToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(160, 120);
     //
     // создатьПланЗакупокToolStripMenuItem
     //
     this.создатьПланЗакупокToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьПланЗакупокToolStripMenuItem.Image")));
     this.создатьПланЗакупокToolStripMenuItem.Name   = "создатьПланЗакупокToolStripMenuItem";
     this.создатьПланЗакупокToolStripMenuItem.Size   = new System.Drawing.Size(159, 22);
     this.создатьПланЗакупокToolStripMenuItem.Text   = "Создать заказ";
     this.создатьПланЗакупокToolStripMenuItem.Click += new System.EventHandler(this.СоздатьПланЗакупокToolStripMenuItemClick);
     //
     // изменитьПланЗакупокToolStripMenuItem
     //
     this.изменитьПланЗакупокToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьПланЗакупокToolStripMenuItem.Image")));
     this.изменитьПланЗакупокToolStripMenuItem.Name   = "изменитьПланЗакупокToolStripMenuItem";
     this.изменитьПланЗакупокToolStripMenuItem.Size   = new System.Drawing.Size(159, 22);
     this.изменитьПланЗакупокToolStripMenuItem.Text   = "Изменить заказ";
     this.изменитьПланЗакупокToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьПланЗакупокToolStripMenuItemClick);
     //
     // удалитьПланЗакупокToolStripMenuItem
     //
     this.удалитьПланЗакупокToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьПланЗакупокToolStripMenuItem.Image")));
     this.удалитьПланЗакупокToolStripMenuItem.Name   = "удалитьПланЗакупокToolStripMenuItem";
     this.удалитьПланЗакупокToolStripMenuItem.Size   = new System.Drawing.Size(159, 22);
     this.удалитьПланЗакупокToolStripMenuItem.Text   = "Удалить заказ";
     this.удалитьПланЗакупокToolStripMenuItem.Click += new System.EventHandler(this.УдалитьПланЗакупокToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(156, 6);
     //
     // обновитьToolStripMenuItem
     //
     this.обновитьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("обновитьToolStripMenuItem.Image")));
     this.обновитьToolStripMenuItem.Name   = "обновитьToolStripMenuItem";
     this.обновитьToolStripMenuItem.Size   = new System.Drawing.Size(159, 22);
     this.обновитьToolStripMenuItem.Text   = "Обновить";
     this.обновитьToolStripMenuItem.Click += new System.EventHandler(this.ОбновитьToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "page_white_text.png");
     //
     // FormOrderJournal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(796, 448);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "FormOrderJournal";
     this.Text        = "Журнал заказов";
     this.Activated  += new System.EventHandler(this.FormOrderJournalActivated);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormOrderJournalFormClosed);
     this.Load       += new System.EventHandler(this.FormOrderJournalLoad);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(MainForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.plikToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.zamknijToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.wynikToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.zapiszJakoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.splitter3 = new System.Windows.Forms.Splitter();
     this.splitter4 = new System.Windows.Forms.Splitter();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.headerPanel3 = new Parallelity.Windows.Controls.CapitionPanel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.headerPanel2 = new Parallelity.Windows.Controls.CapitionPanel();
     this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
     this.headerPanel1 = new Parallelity.Windows.Controls.CapitionPanel();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.logBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.typeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.textDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.timeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.udostępnijToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.headerPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.toolStrip2.SuspendLayout();
     this.headerPanel2.SuspendLayout();
     this.headerPanel1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logBindingSource)).BeginInit();
     this.tabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.tabControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.plikToolStripMenuItem,
     this.wynikToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(720, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // plikToolStripMenuItem
     //
     this.plikToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.zamknijToolStripMenuItem});
     this.plikToolStripMenuItem.Name = "plikToolStripMenuItem";
     this.plikToolStripMenuItem.Size = new System.Drawing.Size(38, 20);
     this.plikToolStripMenuItem.Text = "Plik";
     //
     // zamknijToolStripMenuItem
     //
     this.zamknijToolStripMenuItem.Name = "zamknijToolStripMenuItem";
     this.zamknijToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     this.zamknijToolStripMenuItem.Text = "Zamknij";
     this.zamknijToolStripMenuItem.Click += new System.EventHandler(this.zamknijToolStripMenuItem_Click);
     //
     // wynikToolStripMenuItem
     //
     this.wynikToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.zapiszJakoToolStripMenuItem,
     this.udostępnijToolStripMenuItem});
     this.wynikToolStripMenuItem.Name = "wynikToolStripMenuItem";
     this.wynikToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.wynikToolStripMenuItem.Text = "Wynik";
     //
     // zapiszJakoToolStripMenuItem
     //
     this.zapiszJakoToolStripMenuItem.Enabled = false;
     this.zapiszJakoToolStripMenuItem.Name = "zapiszJakoToolStripMenuItem";
     this.zapiszJakoToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.zapiszJakoToolStripMenuItem.Text = "Zapisz jako...";
     this.zapiszJakoToolStripMenuItem.Click += new System.EventHandler(this.zapiszJakoToolStripMenuItem_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel1});
     this.statusStrip1.Location = new System.Drawing.Point(0, 388);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(720, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(135, 17);
     this.toolStripStatusLabel1.Text = "Wykonywanie operacji...";
     this.toolStripStatusLabel1.Visible = false;
     //
     // splitter2
     //
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.splitter2.Location = new System.Drawing.Point(0, 256);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(720, 5);
     this.splitter2.TabIndex = 6;
     this.splitter2.TabStop = false;
     //
     // splitter3
     //
     this.splitter3.Location = new System.Drawing.Point(164, 24);
     this.splitter3.Name = "splitter3";
     this.splitter3.Size = new System.Drawing.Size(5, 232);
     this.splitter3.TabIndex = 7;
     this.splitter3.TabStop = false;
     //
     // splitter4
     //
     this.splitter4.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter4.Location = new System.Drawing.Point(515, 24);
     this.splitter4.Name = "splitter4";
     this.splitter4.Size = new System.Drawing.Size(5, 232);
     this.splitter4.TabIndex = 8;
     this.splitter4.TabStop = false;
     //
     // openFileDialog1
     //
     this.openFileDialog1.Filter = "Biblioteki aplikacji|*.dll";
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "toolStripButton2";
     //
     // headerPanel3
     //
     this.headerPanel3.BorderSize = 1;
     this.headerPanel3.Controls.Add(this.pictureBox1);
     this.headerPanel3.Controls.Add(this.toolStrip2);
     this.headerPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.headerPanel3.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel3.HeaderColor1 = System.Drawing.SystemColors.ActiveCaption;
     this.headerPanel3.HeaderColor2 = System.Drawing.SystemColors.InactiveCaption;
     this.headerPanel3.HeaderFont = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel3.HeaderHeight = 22;
     this.headerPanel3.HeaderText = "Zadanie";
     this.headerPanel3.Location = new System.Drawing.Point(169, 24);
     this.headerPanel3.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
     this.headerPanel3.Name = "headerPanel3";
     this.headerPanel3.Size = new System.Drawing.Size(346, 232);
     this.headerPanel3.TabIndex = 9;
     this.headerPanel3.TextColor = System.Drawing.Color.Black;
     this.headerPanel3.TextIndent = 5;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Location = new System.Drawing.Point(1, 54);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(344, 177);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop = false;
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripComboBox1});
     this.toolStrip2.Location = new System.Drawing.Point(1, 23);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(344, 31);
     this.toolStrip2.TabIndex = 0;
     this.toolStrip2.Text = "toolStrip2";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::Parallelity.Properties.Resources.start;
     this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(28, 28);
     this.toolStripButton1.Text = "Rozpocznij zadanie";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 31);
     //
     // headerPanel2
     //
     this.headerPanel2.BorderSize = 1;
     this.headerPanel2.Controls.Add(this.propertyGrid1);
     this.headerPanel2.Dock = System.Windows.Forms.DockStyle.Right;
     this.headerPanel2.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel2.HeaderColor1 = System.Drawing.SystemColors.ActiveCaption;
     this.headerPanel2.HeaderColor2 = System.Drawing.SystemColors.InactiveCaption;
     this.headerPanel2.HeaderFont = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel2.HeaderHeight = 22;
     this.headerPanel2.HeaderText = "Parametry zadania";
     this.headerPanel2.Location = new System.Drawing.Point(520, 24);
     this.headerPanel2.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
     this.headerPanel2.Name = "headerPanel2";
     this.headerPanel2.Size = new System.Drawing.Size(200, 232);
     this.headerPanel2.TabIndex = 5;
     this.headerPanel2.TextColor = System.Drawing.Color.Black;
     this.headerPanel2.TextIndent = 5;
     //
     // propertyGrid1
     //
     this.propertyGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.propertyGrid1.Location = new System.Drawing.Point(1, 23);
     this.propertyGrid1.Name = "propertyGrid1";
     this.propertyGrid1.Size = new System.Drawing.Size(198, 208);
     this.propertyGrid1.TabIndex = 0;
     //
     // headerPanel1
     //
     this.headerPanel1.BorderSize = 1;
     this.headerPanel1.Controls.Add(this.treeView1);
     this.headerPanel1.Controls.Add(this.toolStrip1);
     this.headerPanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.headerPanel1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel1.HeaderColor1 = System.Drawing.SystemColors.ActiveCaption;
     this.headerPanel1.HeaderColor2 = System.Drawing.SystemColors.InactiveCaption;
     this.headerPanel1.HeaderFont = new System.Drawing.Font("Segoe UI", 9F);
     this.headerPanel1.HeaderHeight = 22;
     this.headerPanel1.HeaderText = "Biblioteka zadań";
     this.headerPanel1.Location = new System.Drawing.Point(0, 24);
     this.headerPanel1.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
     this.headerPanel1.Name = "headerPanel1";
     this.headerPanel1.Size = new System.Drawing.Size(164, 232);
     this.headerPanel1.TabIndex = 4;
     this.headerPanel1.TextColor = System.Drawing.Color.Black;
     this.headerPanel1.TextIndent = 5;
     //
     // treeView1
     //
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Location = new System.Drawing.Point(1, 54);
     this.treeView1.Name = "treeView1";
     this.treeView1.Size = new System.Drawing.Size(162, 177);
     this.treeView1.TabIndex = 1;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4});
     this.toolStrip1.Location = new System.Drawing.Point(1, 23);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(162, 31);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = global::Parallelity.Properties.Resources.add;
     this.toolStripButton4.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(28, 28);
     this.toolStripButton4.Text = "Dodaj zadanie";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // logBindingSource
     //
     this.logBindingSource.DataSource = typeof(Parallelity.Logs.Log);
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.dataGridView1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(712, 101);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Logi";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // dataGridView1
     //
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.typeDataGridViewTextBoxColumn,
     this.textDataGridViewTextBoxColumn,
     this.timeDataGridViewTextBoxColumn});
     this.dataGridView1.DataSource = this.logBindingSource;
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(3, 3);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(706, 95);
     this.dataGridView1.TabIndex = 0;
     //
     // typeDataGridViewTextBoxColumn
     //
     this.typeDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.typeDataGridViewTextBoxColumn.DataPropertyName = "type";
     this.typeDataGridViewTextBoxColumn.FillWeight = 15F;
     this.typeDataGridViewTextBoxColumn.HeaderText = "Typ";
     this.typeDataGridViewTextBoxColumn.Name = "typeDataGridViewTextBoxColumn";
     this.typeDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // textDataGridViewTextBoxColumn
     //
     this.textDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.textDataGridViewTextBoxColumn.DataPropertyName = "text";
     this.textDataGridViewTextBoxColumn.FillWeight = 60F;
     this.textDataGridViewTextBoxColumn.HeaderText = "Treść";
     this.textDataGridViewTextBoxColumn.Name = "textDataGridViewTextBoxColumn";
     this.textDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // timeDataGridViewTextBoxColumn
     //
     this.timeDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.timeDataGridViewTextBoxColumn.DataPropertyName = "time";
     dataGridViewCellStyle2.Format = "G";
     dataGridViewCellStyle2.NullValue = null;
     this.timeDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle2;
     this.timeDataGridViewTextBoxColumn.FillWeight = 25F;
     this.timeDataGridViewTextBoxColumn.HeaderText = "Czas";
     this.timeDataGridViewTextBoxColumn.Name = "timeDataGridViewTextBoxColumn";
     this.timeDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.tabControl1.Location = new System.Drawing.Point(0, 261);
     this.tabControl1.Multiline = true;
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(720, 127);
     this.tabControl1.TabIndex = 2;
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.Filter = "Bitmap|*.bmp|Portable Network Graphics|*.png|Joint Photographic Expert Group|*.jp" +
         "eg|Graphics Interchange Format|*.gif";
     //
     // udostępnijToolStripMenuItem
     //
     this.udostępnijToolStripMenuItem.Enabled = false;
     this.udostępnijToolStripMenuItem.Name = "udostępnijToolStripMenuItem";
     this.udostępnijToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.udostępnijToolStripMenuItem.Text = "Udostępnij...";
     this.udostępnijToolStripMenuItem.Click += new System.EventHandler(this.udostępnijToolStripMenuItem_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(720, 410);
     this.Controls.Add(this.headerPanel3);
     this.Controls.Add(this.splitter4);
     this.Controls.Add(this.splitter3);
     this.Controls.Add(this.headerPanel2);
     this.Controls.Add(this.headerPanel1);
     this.Controls.Add(this.splitter2);
     this.Controls.Add(this.tabControl1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainForm";
     this.Text = "Parallelity";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.headerPanel3.ResumeLayout(false);
     this.headerPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.headerPanel2.ResumeLayout(false);
     this.headerPanel1.ResumeLayout(false);
     this.headerPanel1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.logBindingSource)).EndInit();
     this.tabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.tabControl1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.Windows.Forms.ToolStripSeparator toolStripSeparator;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
      System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem7;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem9;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem10;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem11;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem12;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem13;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem14;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem15;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem16;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
      System.Windows.Forms.ToolStripMenuItem resetToolStripMenuItem;
      System.Windows.Forms.ToolStripMenuItem optionsMenuItem;
      System.Windows.Forms.ToolStripMenuItem aboutMenuItem;
      System.Windows.Forms.StatusStrip statusStrip;
      System.Windows.Forms.ToolStripButton openToolStripButton;
      System.Windows.Forms.ToolStripButton saveToolStripButton;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
      System.Windows.Forms.ToolStripButton helpToolStripButton;
      System.Windows.Forms.ToolStripComboBox toolStripComboBox1;
      System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
      System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
      System.Windows.Forms.ToolStripMenuItem clearMenuItem;
      System.Windows.Forms.ToolStripMenuItem resetMenuItem;
      System.Windows.Forms.ToolStripLabel searchLabel;
      System.Windows.Forms.ToolStripMenuItem findMenuItem;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
      System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
      this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
      this.clearMainMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.previewToolStrip = new System.Windows.Forms.ToolStrip();
      this.toolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
      this.toolStripCheckPreviewButton = new System.Windows.Forms.ToolStripButton();
      this.searchToolStrip = new System.Windows.Forms.ToolStrip();
      this.searchTextBox = new ToolStripCustomizer.ToolStripSpringTextBox();
      this.cancelButton = new System.Windows.Forms.ToolStripButton();
      this.mainToolStrip = new System.Windows.Forms.ToolStrip();
      this.newToolStripButton = new System.Windows.Forms.ToolStripSplitButton();
      this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
      this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
      this.colorToolStripButton = new System.Windows.Forms.ToolStripButton();
      this.menuStrip = new System.Windows.Forms.MenuStrip();
      this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.newMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.newFromPresetMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.openMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.saveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.copyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.pasteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
      this.selectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.roundedEdgesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.colorAdjustmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
      this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripContainer = new System.Windows.Forms.ToolStripContainer();
      this.gridView = new System.Windows.Forms.DataGridView();
      this.ColorTableItemColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
      this.ColorValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
      this.ColorPreviewColumn = new System.Windows.Forms.DataGridViewImageColumn();
      this.EditColorColumn = new System.Windows.Forms.DataGridViewButtonColumn();
      this.rowContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.copyPopupItem = new System.Windows.Forms.ToolStripMenuItem();
      this.pastePopupItem = new System.Windows.Forms.ToolStripMenuItem();
      this.selectAllPopupItem = new System.Windows.Forms.ToolStripMenuItem();
      this.fromKnownColorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.alphaMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.screenColorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.colorDialog = new System.Windows.Forms.ColorDialog();
      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
      this.searchWorker = new System.ComponentModel.BackgroundWorker();
      this.miExportColors = new System.Windows.Forms.ToolStripMenuItem();
      toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
      toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
      toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
      toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
      toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem();
      toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
      resetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      optionsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      aboutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      statusStrip = new System.Windows.Forms.StatusStrip();
      openToolStripButton = new System.Windows.Forms.ToolStripButton();
      saveToolStripButton = new System.Windows.Forms.ToolStripButton();
      toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
      toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
      helpToolStripButton = new System.Windows.Forms.ToolStripButton();
      toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
      toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
      toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
      toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
      clearMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      resetMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      searchLabel = new System.Windows.Forms.ToolStripLabel();
      findMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
      toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
      statusStrip.SuspendLayout();
      this.previewToolStrip.SuspendLayout();
      this.searchToolStrip.SuspendLayout();
      this.mainToolStrip.SuspendLayout();
      this.menuStrip.SuspendLayout();
      this.toolStripContainer.BottomToolStripPanel.SuspendLayout();
      this.toolStripContainer.ContentPanel.SuspendLayout();
      this.toolStripContainer.TopToolStripPanel.SuspendLayout();
      this.toolStripContainer.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
      this.rowContextMenu.SuspendLayout();
      this.SuspendLayout();
      // 
      // toolStripSeparator
      // 
      toolStripSeparator.Name = "toolStripSeparator";
      toolStripSeparator.Size = new System.Drawing.Size(161, 6);
      // 
      // toolStripSeparator1
      // 
      toolStripSeparator1.Name = "toolStripSeparator1";
      toolStripSeparator1.Size = new System.Drawing.Size(161, 6);
      // 
      // toolStripSeparator4
      // 
      toolStripSeparator4.Name = "toolStripSeparator4";
      toolStripSeparator4.Size = new System.Drawing.Size(161, 6);
      // 
      // toolStripMenuItem1
      // 
      toolStripMenuItem1.Name = "toolStripMenuItem1";
      toolStripMenuItem1.Size = new System.Drawing.Size(161, 6);
      // 
      // toolStripMenuItem3
      // 
      toolStripMenuItem3.Name = "toolStripMenuItem3";
      toolStripMenuItem3.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem3.Text = "0";
      toolStripMenuItem3.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem4
      // 
      toolStripMenuItem4.Name = "toolStripMenuItem4";
      toolStripMenuItem4.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem4.Text = "20";
      toolStripMenuItem4.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem5
      // 
      toolStripMenuItem5.Name = "toolStripMenuItem5";
      toolStripMenuItem5.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem5.Text = "40";
      toolStripMenuItem5.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem6
      // 
      toolStripMenuItem6.Name = "toolStripMenuItem6";
      toolStripMenuItem6.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem6.Text = "60";
      toolStripMenuItem6.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem7
      // 
      toolStripMenuItem7.Name = "toolStripMenuItem7";
      toolStripMenuItem7.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem7.Text = "80";
      toolStripMenuItem7.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem8
      // 
      toolStripMenuItem8.Name = "toolStripMenuItem8";
      toolStripMenuItem8.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem8.Text = "100";
      toolStripMenuItem8.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem9
      // 
      toolStripMenuItem9.Name = "toolStripMenuItem9";
      toolStripMenuItem9.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem9.Text = "120";
      toolStripMenuItem9.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem10
      // 
      toolStripMenuItem10.Name = "toolStripMenuItem10";
      toolStripMenuItem10.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem10.Text = "140";
      toolStripMenuItem10.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem11
      // 
      toolStripMenuItem11.Name = "toolStripMenuItem11";
      toolStripMenuItem11.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem11.Text = "160";
      toolStripMenuItem11.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem12
      // 
      toolStripMenuItem12.Name = "toolStripMenuItem12";
      toolStripMenuItem12.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem12.Text = "180";
      toolStripMenuItem12.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem13
      // 
      toolStripMenuItem13.Name = "toolStripMenuItem13";
      toolStripMenuItem13.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem13.Text = "200";
      toolStripMenuItem13.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem14
      // 
      toolStripMenuItem14.Name = "toolStripMenuItem14";
      toolStripMenuItem14.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem14.Text = "220";
      toolStripMenuItem14.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem15
      // 
      toolStripMenuItem15.Name = "toolStripMenuItem15";
      toolStripMenuItem15.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem15.Text = "240";
      toolStripMenuItem15.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripMenuItem16
      // 
      toolStripMenuItem16.Name = "toolStripMenuItem16";
      toolStripMenuItem16.Size = new System.Drawing.Size(92, 22);
      toolStripMenuItem16.Text = "255";
      toolStripMenuItem16.Click += new System.EventHandler(this.SetAlphaMenuItemClick);
      // 
      // toolStripSeparator3
      // 
      toolStripSeparator3.Name = "toolStripSeparator3";
      toolStripSeparator3.Size = new System.Drawing.Size(161, 6);
      // 
      // resetToolStripMenuItem
      // 
      resetToolStripMenuItem.Name = "resetToolStripMenuItem";
      resetToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
      resetToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
      resetToolStripMenuItem.Text = "&Reset";
      resetToolStripMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick);
      // 
      // optionsMenuItem
      // 
      optionsMenuItem.Name = "optionsMenuItem";
      optionsMenuItem.Size = new System.Drawing.Size(177, 22);
      optionsMenuItem.Text = "&Options...";
      optionsMenuItem.Click += new System.EventHandler(this.OptionsMenuItemClick);
      // 
      // aboutMenuItem
      // 
      aboutMenuItem.Name = "aboutMenuItem";
      aboutMenuItem.Size = new System.Drawing.Size(116, 22);
      aboutMenuItem.Text = "&About...";
      aboutMenuItem.Click += new System.EventHandler(this.AboutMenuItemClick);
      // 
      // statusStrip
      // 
      statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusLabel});
      statusStrip.Location = new System.Drawing.Point(0, 490);
      statusStrip.Name = "statusStrip";
      statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
      statusStrip.Size = new System.Drawing.Size(597, 22);
      statusStrip.TabIndex = 1;
      // 
      // statusLabel
      // 
      this.statusLabel.Name = "statusLabel";
      this.statusLabel.Size = new System.Drawing.Size(0, 17);
      // 
      // openToolStripButton
      // 
      openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      openToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._58;
      openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      openToolStripButton.Name = "openToolStripButton";
      openToolStripButton.Size = new System.Drawing.Size(23, 22);
      openToolStripButton.Text = "Open";
      openToolStripButton.Click += new System.EventHandler(this.OpenMenuItemClick);
      // 
      // saveToolStripButton
      // 
      saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      saveToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._71;
      saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      saveToolStripButton.Name = "saveToolStripButton";
      saveToolStripButton.Size = new System.Drawing.Size(23, 22);
      saveToolStripButton.Text = "Save As";
      saveToolStripButton.Click += new System.EventHandler(this.SaveMenuItemClick);
      // 
      // toolStripSeparator6
      // 
      toolStripSeparator6.Name = "toolStripSeparator6";
      toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
      // 
      // toolStripSeparator7
      // 
      toolStripSeparator7.Name = "toolStripSeparator7";
      toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
      // 
      // helpToolStripButton
      // 
      helpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      helpToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._151;
      helpToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      helpToolStripButton.Name = "helpToolStripButton";
      helpToolStripButton.Size = new System.Drawing.Size(23, 22);
      helpToolStripButton.Text = "About";
      helpToolStripButton.Click += new System.EventHandler(this.AboutMenuItemClick);
      // 
      // toolStripComboBox1
      // 
      toolStripComboBox1.Name = "toolStripComboBox1";
      toolStripComboBox1.Size = new System.Drawing.Size(121, 23);
      toolStripComboBox1.Text = "Combo Box";
      // 
      // toolStripTextBox1
      // 
      toolStripTextBox1.Name = "toolStripTextBox1";
      toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
      toolStripTextBox1.Text = "Text Box";
      // 
      // toolStripSeparator2
      // 
      toolStripSeparator2.Name = "toolStripSeparator2";
      toolStripSeparator2.Size = new System.Drawing.Size(178, 6);
      // 
      // toolStripMenuItem2
      // 
      toolStripMenuItem2.Checked = true;
      toolStripMenuItem2.CheckState = System.Windows.Forms.CheckState.Checked;
      toolStripMenuItem2.Name = "toolStripMenuItem2";
      toolStripMenuItem2.Size = new System.Drawing.Size(181, 22);
      toolStripMenuItem2.Text = "Checked Item";
      // 
      // clearMenuItem
      // 
      clearMenuItem.Name = "clearMenuItem";
      clearMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
      clearMenuItem.Size = new System.Drawing.Size(164, 22);
      clearMenuItem.Text = "C&lear";
      clearMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick);
      // 
      // resetMenuItem
      // 
      resetMenuItem.Name = "resetMenuItem";
      resetMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
      resetMenuItem.Size = new System.Drawing.Size(164, 22);
      resetMenuItem.Text = "&Reset";
      resetMenuItem.Click += new System.EventHandler(this.ResetMenuItemClick);
      // 
      // searchLabel
      // 
      searchLabel.Name = "searchLabel";
      searchLabel.Size = new System.Drawing.Size(45, 24);
      searchLabel.Text = "Search:";
      // 
      // findMenuItem
      // 
      findMenuItem.Name = "findMenuItem";
      findMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3;
      findMenuItem.Size = new System.Drawing.Size(164, 22);
      findMenuItem.Text = "&Find";
      findMenuItem.Click += new System.EventHandler(this.FindMenuItemClick);
      // 
      // toolStripSeparator8
      // 
      toolStripSeparator8.Name = "toolStripSeparator8";
      toolStripSeparator8.Size = new System.Drawing.Size(161, 6);
      // 
      // toolStripSeparator9
      // 
      toolStripSeparator9.Name = "toolStripSeparator9";
      toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
      // 
      // clearMainMenuItem
      // 
      this.clearMainMenuItem.Enabled = false;
      this.clearMainMenuItem.Name = "clearMainMenuItem";
      this.clearMainMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
      this.clearMainMenuItem.Size = new System.Drawing.Size(164, 22);
      this.clearMainMenuItem.Text = "&Clear";
      this.clearMainMenuItem.Click += new System.EventHandler(this.ClearMenuItemClick);
      // 
      // previewToolStrip
      // 
      this.previewToolStrip.Dock = System.Windows.Forms.DockStyle.None;
      this.previewToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSplitButton,
            this.toolStripCheckPreviewButton});
      this.previewToolStrip.Location = new System.Drawing.Point(3, 0);
      this.previewToolStrip.Name = "previewToolStrip";
      this.previewToolStrip.Size = new System.Drawing.Size(183, 25);
      this.previewToolStrip.TabIndex = 1;
      this.previewToolStrip.Text = "Preview";
      // 
      // toolStripSplitButton
      // 
      this.toolStripSplitButton.AutoToolTip = false;
      this.toolStripSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripComboBox1,
            toolStripTextBox1,
            toolStripSeparator2,
            toolStripMenuItem2});
      this.toolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripSplitButton.Name = "toolStripSplitButton";
      this.toolStripSplitButton.Size = new System.Drawing.Size(64, 22);
      this.toolStripSplitButton.Text = "Preview";
      this.toolStripSplitButton.ButtonClick += new System.EventHandler(this.ToolStripSplitButtonButtonClick);
      // 
      // toolStripCheckPreviewButton
      // 
      this.toolStripCheckPreviewButton.AutoToolTip = false;
      this.toolStripCheckPreviewButton.Checked = true;
      this.toolStripCheckPreviewButton.CheckOnClick = true;
      this.toolStripCheckPreviewButton.CheckState = System.Windows.Forms.CheckState.Checked;
      this.toolStripCheckPreviewButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripCheckPreviewButton.Name = "toolStripCheckPreviewButton";
      this.toolStripCheckPreviewButton.Size = new System.Drawing.Size(107, 22);
      this.toolStripCheckPreviewButton.Text = "Preview (checked)";
      this.toolStripCheckPreviewButton.CheckedChanged += new System.EventHandler(this.ToolStripCheckPreviewButtonCheckedChanged);
      // 
      // searchToolStrip
      // 
      this.searchToolStrip.Dock = System.Windows.Forms.DockStyle.None;
      this.searchToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            searchLabel,
            this.searchTextBox,
            this.cancelButton});
      this.searchToolStrip.Location = new System.Drawing.Point(0, 0);
      this.searchToolStrip.Name = "searchToolStrip";
      this.searchToolStrip.Size = new System.Drawing.Size(597, 27);
      this.searchToolStrip.Stretch = true;
      this.searchToolStrip.TabIndex = 3;
      this.searchToolStrip.Text = "Search";
      // 
      // searchTextBox
      // 
      this.searchTextBox.Margin = new System.Windows.Forms.Padding(1, 2, 1, 2);
      this.searchTextBox.Name = "searchTextBox";
      this.searchTextBox.Size = new System.Drawing.Size(486, 23);
      this.searchTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchTextBoxKeyDown);
      this.searchTextBox.TextChanged += new System.EventHandler(this.SearchTextBoxTextChanged);
      // 
      // cancelButton
      // 
      this.cancelButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
      this.cancelButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.cancelButton.Enabled = false;
      this.cancelButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.cancelButton.Name = "cancelButton";
      this.cancelButton.Size = new System.Drawing.Size(23, 24);
      this.cancelButton.Text = "Clear Search";
      this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick);
      // 
      // mainToolStrip
      // 
      this.mainToolStrip.Dock = System.Windows.Forms.DockStyle.None;
      this.mainToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripButton,
            openToolStripButton,
            saveToolStripButton,
            toolStripSeparator6,
            this.copyToolStripButton,
            this.pasteToolStripButton,
            toolStripSeparator7,
            this.colorToolStripButton,
            toolStripSeparator9,
            helpToolStripButton});
      this.mainToolStrip.Location = new System.Drawing.Point(3, 25);
      this.mainToolStrip.Name = "mainToolStrip";
      this.mainToolStrip.Size = new System.Drawing.Size(215, 25);
      this.mainToolStrip.TabIndex = 0;
      this.mainToolStrip.Text = "Standard";
      // 
      // newToolStripButton
      // 
      this.newToolStripButton.AutoToolTip = false;
      this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.newToolStripButton.Name = "newToolStripButton";
      this.newToolStripButton.Size = new System.Drawing.Size(47, 22);
      this.newToolStripButton.Text = "New";
      this.newToolStripButton.ButtonClick += new System.EventHandler(this.NewMenuItemClick);
      // 
      // copyToolStripButton
      // 
      this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.copyToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._2;
      this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.copyToolStripButton.Name = "copyToolStripButton";
      this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
      this.copyToolStripButton.Text = "Copy";
      this.copyToolStripButton.Click += new System.EventHandler(this.CopyMenuItemClick);
      // 
      // pasteToolStripButton
      // 
      this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.pasteToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._4;
      this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.pasteToolStripButton.Name = "pasteToolStripButton";
      this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
      this.pasteToolStripButton.Text = "Paste";
      this.pasteToolStripButton.Click += new System.EventHandler(this.PasteMenuItemClick);
      // 
      // colorToolStripButton
      // 
      this.colorToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.colorToolStripButton.Image = global::ToolStripCustomizer.Properties.Resources._149;
      this.colorToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.colorToolStripButton.Name = "colorToolStripButton";
      this.colorToolStripButton.Size = new System.Drawing.Size(23, 22);
      this.colorToolStripButton.Text = "Color Adjustment";
      this.colorToolStripButton.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick);
      // 
      // menuStrip
      // 
      this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.editToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.toolsToolStripMenuItem,
            this.helpToolStripMenuItem});
      this.menuStrip.Location = new System.Drawing.Point(0, 0);
      this.menuStrip.Name = "menuStrip";
      this.menuStrip.Size = new System.Drawing.Size(597, 24);
      this.menuStrip.TabIndex = 0;
      this.menuStrip.Text = "Main Menu";
      // 
      // fileToolStripMenuItem
      // 
      this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newMenuItem,
            this.newFromPresetMenuItem,
            this.openMenuItem,
            toolStripSeparator,
            this.saveMenuItem,
            this.miExportColors,
            toolStripSeparator1,
            this.exitMenuItem});
      this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
      this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
      this.fileToolStripMenuItem.Text = "&File";
      // 
      // newMenuItem
      // 
      this.newMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.newMenuItem.Name = "newMenuItem";
      this.newMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
      this.newMenuItem.Size = new System.Drawing.Size(164, 22);
      this.newMenuItem.Text = "&New";
      this.newMenuItem.Click += new System.EventHandler(this.NewMenuItemClick);
      // 
      // newFromPresetMenuItem
      // 
      this.newFromPresetMenuItem.Name = "newFromPresetMenuItem";
      this.newFromPresetMenuItem.Size = new System.Drawing.Size(164, 22);
      this.newFromPresetMenuItem.Text = "New From Preset";
      // 
      // openMenuItem
      // 
      this.openMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.openMenuItem.Name = "openMenuItem";
      this.openMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
      this.openMenuItem.Size = new System.Drawing.Size(164, 22);
      this.openMenuItem.Text = "&Open";
      this.openMenuItem.Click += new System.EventHandler(this.OpenMenuItemClick);
      // 
      // saveMenuItem
      // 
      this.saveMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.saveMenuItem.Name = "saveMenuItem";
      this.saveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
      this.saveMenuItem.Size = new System.Drawing.Size(164, 22);
      this.saveMenuItem.Text = "&Save As";
      this.saveMenuItem.Click += new System.EventHandler(this.SaveMenuItemClick);
      // 
      // exitMenuItem
      // 
      this.exitMenuItem.Name = "exitMenuItem";
      this.exitMenuItem.Size = new System.Drawing.Size(164, 22);
      this.exitMenuItem.Text = "E&xit";
      this.exitMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick);
      // 
      // editToolStripMenuItem
      // 
      this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyMenuItem,
            this.pasteMenuItem,
            this.toolStripSeparator5,
            resetToolStripMenuItem,
            this.clearMainMenuItem,
            toolStripSeparator4,
            this.selectAllMenuItem,
            toolStripSeparator8,
            findMenuItem});
      this.editToolStripMenuItem.Name = "editToolStripMenuItem";
      this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
      this.editToolStripMenuItem.Text = "&Edit";
      // 
      // copyMenuItem
      // 
      this.copyMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.copyMenuItem.Name = "copyMenuItem";
      this.copyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
      this.copyMenuItem.Size = new System.Drawing.Size(164, 22);
      this.copyMenuItem.Text = "&Copy";
      this.copyMenuItem.Click += new System.EventHandler(this.CopyMenuItemClick);
      // 
      // pasteMenuItem
      // 
      this.pasteMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.pasteMenuItem.Name = "pasteMenuItem";
      this.pasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
      this.pasteMenuItem.Size = new System.Drawing.Size(164, 22);
      this.pasteMenuItem.Text = "&Paste";
      this.pasteMenuItem.Click += new System.EventHandler(this.PasteMenuItemClick);
      // 
      // toolStripSeparator5
      // 
      this.toolStripSeparator5.Name = "toolStripSeparator5";
      this.toolStripSeparator5.Size = new System.Drawing.Size(161, 6);
      // 
      // selectAllMenuItem
      // 
      this.selectAllMenuItem.Name = "selectAllMenuItem";
      this.selectAllMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
      this.selectAllMenuItem.Size = new System.Drawing.Size(164, 22);
      this.selectAllMenuItem.Text = "Select &All";
      this.selectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItemClick);
      // 
      // viewToolStripMenuItem
      // 
      this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.roundedEdgesMenuItem});
      this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
      this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.viewToolStripMenuItem.Text = "&View";
      // 
      // roundedEdgesMenuItem
      // 
      this.roundedEdgesMenuItem.Checked = true;
      this.roundedEdgesMenuItem.CheckOnClick = true;
      this.roundedEdgesMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
      this.roundedEdgesMenuItem.Name = "roundedEdgesMenuItem";
      this.roundedEdgesMenuItem.Size = new System.Drawing.Size(156, 22);
      this.roundedEdgesMenuItem.Text = "&Rounded Edges";
      this.roundedEdgesMenuItem.CheckedChanged += new System.EventHandler(this.RoundedEdgesMenuItemCheckedChanged);
      // 
      // toolsToolStripMenuItem
      // 
      this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.colorAdjustmentToolStripMenuItem,
            this.toolStripSeparator10,
            optionsMenuItem});
      this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
      this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
      this.toolsToolStripMenuItem.Text = "&Tools";
      // 
      // colorAdjustmentToolStripMenuItem
      // 
      this.colorAdjustmentToolStripMenuItem.Name = "colorAdjustmentToolStripMenuItem";
      this.colorAdjustmentToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
      this.colorAdjustmentToolStripMenuItem.Text = "&Color Adjustment...";
      this.colorAdjustmentToolStripMenuItem.Click += new System.EventHandler(this.ColorAdjustmentMenuItemClick);
      // 
      // toolStripSeparator10
      // 
      this.toolStripSeparator10.Name = "toolStripSeparator10";
      this.toolStripSeparator10.Size = new System.Drawing.Size(174, 6);
      // 
      // helpToolStripMenuItem
      // 
      this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            aboutMenuItem});
      this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
      this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
      this.helpToolStripMenuItem.Text = "&Help";
      // 
      // toolStripContainer
      // 
      // 
      // toolStripContainer.BottomToolStripPanel
      // 
      this.toolStripContainer.BottomToolStripPanel.Controls.Add(this.searchToolStrip);
      // 
      // toolStripContainer.ContentPanel
      // 
      this.toolStripContainer.ContentPanel.Controls.Add(this.gridView);
      this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(597, 389);
      this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill;
      this.toolStripContainer.Location = new System.Drawing.Point(0, 24);
      this.toolStripContainer.Name = "toolStripContainer";
      this.toolStripContainer.Size = new System.Drawing.Size(597, 466);
      this.toolStripContainer.TabIndex = 2;
      this.toolStripContainer.Text = "toolStripContainer1";
      // 
      // toolStripContainer.TopToolStripPanel
      // 
      this.toolStripContainer.TopToolStripPanel.Controls.Add(this.previewToolStrip);
      this.toolStripContainer.TopToolStripPanel.Controls.Add(this.mainToolStrip);
      // 
      // gridView
      // 
      this.gridView.AllowUserToAddRows = false;
      this.gridView.AllowUserToDeleteRows = false;
      this.gridView.AllowUserToResizeColumns = false;
      this.gridView.AllowUserToResizeRows = false;
      this.gridView.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
      this.gridView.BorderStyle = System.Windows.Forms.BorderStyle.None;
      this.gridView.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
      this.gridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
      this.gridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.ColorTableItemColumn,
            this.ColorValueColumn,
            this.ColorPreviewColumn,
            this.EditColorColumn});
      this.gridView.ContextMenuStrip = this.rowContextMenu;
      this.gridView.Dock = System.Windows.Forms.DockStyle.Fill;
      this.gridView.GridColor = System.Drawing.SystemColors.ActiveCaption;
      this.gridView.Location = new System.Drawing.Point(0, 0);
      this.gridView.Name = "gridView";
      this.gridView.RowHeadersVisible = false;
      this.gridView.RowTemplate.DefaultCellStyle.Padding = new System.Windows.Forms.Padding(3);
      this.gridView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
      this.gridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
      this.gridView.Size = new System.Drawing.Size(597, 389);
      this.gridView.TabIndex = 2;
      this.gridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellContentClick);
      this.gridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridViewCellDoubleClick);
      this.gridView.SelectionChanged += new System.EventHandler(this.GridViewSelectionChanged);
      this.gridView.Enter += new System.EventHandler(this.GridViewEnter);
      this.gridView.Leave += new System.EventHandler(this.GridViewLeave);
      this.gridView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.GridViewMouseDown);
      // 
      // ColorTableItemColumn
      // 
      this.ColorTableItemColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
      this.ColorTableItemColumn.HeaderText = "Color Table Item";
      this.ColorTableItemColumn.Name = "ColorTableItemColumn";
      this.ColorTableItemColumn.ReadOnly = true;
      // 
      // ColorValueColumn
      // 
      this.ColorValueColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
      this.ColorValueColumn.HeaderText = "Color";
      this.ColorValueColumn.Name = "ColorValueColumn";
      this.ColorValueColumn.ReadOnly = true;
      this.ColorValueColumn.Width = 61;
      // 
      // ColorPreviewColumn
      // 
      this.ColorPreviewColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
      this.ColorPreviewColumn.HeaderText = "Preview";
      this.ColorPreviewColumn.Name = "ColorPreviewColumn";
      this.ColorPreviewColumn.ReadOnly = true;
      this.ColorPreviewColumn.Width = 54;
      // 
      // EditColorColumn
      // 
      this.EditColorColumn.HeaderText = "Edit";
      this.EditColorColumn.Name = "EditColorColumn";
      this.EditColorColumn.Width = 50;
      // 
      // rowContextMenu
      // 
      this.rowContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyPopupItem,
            this.pastePopupItem,
            this.selectAllPopupItem,
            toolStripSeparator3,
            this.fromKnownColorMenuItem,
            this.alphaMenuItem,
            this.screenColorMenuItem,
            toolStripMenuItem1,
            resetMenuItem,
            clearMenuItem});
      this.rowContextMenu.Name = "rowContextMenu";
      this.rowContextMenu.Size = new System.Drawing.Size(165, 192);
      this.rowContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.RowContextMenuOpening);
      // 
      // copyPopupItem
      // 
      this.copyPopupItem.Image = ((System.Drawing.Image)(resources.GetObject("copyPopupItem.Image")));
      this.copyPopupItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.copyPopupItem.Name = "copyPopupItem";
      this.copyPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
      this.copyPopupItem.Size = new System.Drawing.Size(164, 22);
      this.copyPopupItem.Text = "&Copy";
      this.copyPopupItem.Click += new System.EventHandler(this.CopyMenuItemClick);
      // 
      // pastePopupItem
      // 
      this.pastePopupItem.Image = ((System.Drawing.Image)(resources.GetObject("pastePopupItem.Image")));
      this.pastePopupItem.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.pastePopupItem.Name = "pastePopupItem";
      this.pastePopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
      this.pastePopupItem.Size = new System.Drawing.Size(164, 22);
      this.pastePopupItem.Text = "&Paste";
      this.pastePopupItem.Click += new System.EventHandler(this.PasteMenuItemClick);
      // 
      // selectAllPopupItem
      // 
      this.selectAllPopupItem.Name = "selectAllPopupItem";
      this.selectAllPopupItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
      this.selectAllPopupItem.Size = new System.Drawing.Size(164, 22);
      this.selectAllPopupItem.Text = "Select &All";
      this.selectAllPopupItem.Click += new System.EventHandler(this.SelectAllMenuItemClick);
      // 
      // fromKnownColorMenuItem
      // 
      this.fromKnownColorMenuItem.Name = "fromKnownColorMenuItem";
      this.fromKnownColorMenuItem.Size = new System.Drawing.Size(164, 22);
      this.fromKnownColorMenuItem.Text = "&System Color";
      // 
      // alphaMenuItem
      // 
      this.alphaMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripMenuItem3,
            toolStripMenuItem4,
            toolStripMenuItem5,
            toolStripMenuItem6,
            toolStripMenuItem7,
            toolStripMenuItem8,
            toolStripMenuItem9,
            toolStripMenuItem10,
            toolStripMenuItem11,
            toolStripMenuItem12,
            toolStripMenuItem13,
            toolStripMenuItem14,
            toolStripMenuItem15,
            toolStripMenuItem16});
      this.alphaMenuItem.Name = "alphaMenuItem";
      this.alphaMenuItem.Size = new System.Drawing.Size(164, 22);
      this.alphaMenuItem.Text = "Alp&ha";
      // 
      // screenColorMenuItem
      // 
      this.screenColorMenuItem.Name = "screenColorMenuItem";
      this.screenColorMenuItem.Size = new System.Drawing.Size(164, 22);
      this.screenColorMenuItem.Text = "Scree&n Color";
      this.screenColorMenuItem.Click += new System.EventHandler(this.screenColorMenuItem_Click);
      // 
      // colorDialog
      // 
      this.colorDialog.FullOpen = true;
      this.colorDialog.SolidColorOnly = true;
      // 
      // openFileDialog
      // 
      this.openFileDialog.Filter = "C# or VB.NET files|*.cs;*.vb|All files|*.*";
      // 
      // saveFileDialog
      // 
      this.saveFileDialog.DefaultExt = "cs";
      this.saveFileDialog.Filter = "C# class|*.cs|VB.NET class|*.vb|All files|*.*";
      // 
      // searchWorker
      // 
      this.searchWorker.WorkerReportsProgress = true;
      this.searchWorker.WorkerSupportsCancellation = true;
      this.searchWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.SearchWorkerDoWork);
      this.searchWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.OnSearchWorkerProgressChanged);
      // 
      // miExportColors
      // 
      this.miExportColors.Name = "miExportColors";
      this.miExportColors.Size = new System.Drawing.Size(164, 22);
      this.miExportColors.Text = "Ex&port Colors";
      this.miExportColors.Click += new System.EventHandler(this.miExportColors_Click);
      // 
      // MainForm
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
      this.ClientSize = new System.Drawing.Size(597, 512);
      this.Controls.Add(this.toolStripContainer);
      this.Controls.Add(this.menuStrip);
      this.Controls.Add(statusStrip);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.MainMenuStrip = this.menuStrip;
      this.MinimumSize = new System.Drawing.Size(350, 350);
      this.Name = "MainForm";
      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
      this.Text = "ToolStrip Customizer for .NET WinForms";
      this.Activated += new System.EventHandler(this.MainFormActivated);
      this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainFormFormClosed);
      this.Load += new System.EventHandler(this.MainFormLoad);
      statusStrip.ResumeLayout(false);
      statusStrip.PerformLayout();
      this.previewToolStrip.ResumeLayout(false);
      this.previewToolStrip.PerformLayout();
      this.searchToolStrip.ResumeLayout(false);
      this.searchToolStrip.PerformLayout();
      this.mainToolStrip.ResumeLayout(false);
      this.mainToolStrip.PerformLayout();
      this.menuStrip.ResumeLayout(false);
      this.menuStrip.PerformLayout();
      this.toolStripContainer.BottomToolStripPanel.ResumeLayout(false);
      this.toolStripContainer.BottomToolStripPanel.PerformLayout();
      this.toolStripContainer.ContentPanel.ResumeLayout(false);
      this.toolStripContainer.TopToolStripPanel.ResumeLayout(false);
      this.toolStripContainer.TopToolStripPanel.PerformLayout();
      this.toolStripContainer.ResumeLayout(false);
      this.toolStripContainer.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
      this.rowContextMenu.ResumeLayout(false);
      this.ResumeLayout(false);
      this.PerformLayout();

        }
Beispiel #28
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tsbtn_Open = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.tstxt_Excel = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.tscbox_Sheet = new System.Windows.Forms.ToolStripComboBox();
     this.WBrowser_Excel = new System.Windows.Forms.WebBrowser();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.tstxt_Start = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.tstxt_End = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.tscbox_Type = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbtn_Confirm = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsbtn_Open,
     this.toolStripSeparator1,
     this.toolStripSeparator4,
     this.toolStripLabel1,
     this.tstxt_Excel,
     this.toolStripSeparator2,
     this.toolStripSeparator7,
     this.toolStripLabel3,
     this.tscbox_Sheet});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(595, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tsbtn_Open
     //
     this.tsbtn_Open.Image = global::FillExcelByIncrementalData.Properties.Resources.open;
     this.tsbtn_Open.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbtn_Open.Name = "tsbtn_Open";
     this.tsbtn_Open.Size = new System.Drawing.Size(105, 22);
     this.tsbtn_Open.Text = "打开Excel文件";
     this.tsbtn_Open.Click += new System.EventHandler(this.tsbtn_Open_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(73, 22);
     this.toolStripLabel1.Text = "Excel路径:";
     //
     // tstxt_Excel
     //
     this.tstxt_Excel.Name = "tstxt_Excel";
     this.tstxt_Excel.Size = new System.Drawing.Size(150, 25);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(92, 22);
     this.toolStripLabel3.Text = "请选择工作表:";
     //
     // tscbox_Sheet
     //
     this.tscbox_Sheet.Name = "tscbox_Sheet";
     this.tscbox_Sheet.Size = new System.Drawing.Size(120, 25);
     this.tscbox_Sheet.SelectedIndexChanged += new System.EventHandler(this.tscbox_Sheet_SelectedIndexChanged);
     //
     // WBrowser_Excel
     //
     this.WBrowser_Excel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.WBrowser_Excel.Location = new System.Drawing.Point(0, 25);
     this.WBrowser_Excel.MinimumSize = new System.Drawing.Size(20, 20);
     this.WBrowser_Excel.Name = "WBrowser_Excel";
     this.WBrowser_Excel.Size = new System.Drawing.Size(595, 356);
     this.WBrowser_Excel.TabIndex = 1;
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel4,
     this.tstxt_Start,
     this.toolStripLabel5,
     this.tstxt_End,
     this.toolStripSeparator5,
     this.toolStripSeparator3,
     this.toolStripLabel6,
     this.tscbox_Type,
     this.toolStripSeparator6,
     this.toolStripSeparator8,
     this.tsbtn_Confirm});
     this.toolStrip2.Location = new System.Drawing.Point(0, 25);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(595, 25);
     this.toolStrip2.TabIndex = 2;
     this.toolStrip2.Text = "toolStrip2";
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(104, 22);
     this.toolStripLabel4.Text = "请输入填充范围:";
     //
     // tstxt_Start
     //
     this.tstxt_Start.Name = "tstxt_Start";
     this.tstxt_Start.Size = new System.Drawing.Size(50, 25);
     this.tstxt_Start.Text = "A1";
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.Name = "toolStripLabel5";
     this.toolStripLabel5.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel5.Text = "到";
     //
     // tstxt_End
     //
     this.tstxt_End.Name = "tstxt_End";
     this.tstxt_End.Size = new System.Drawing.Size(50, 25);
     this.tstxt_End.Text = "A5";
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel6
     //
     this.toolStripLabel6.Name = "toolStripLabel6";
     this.toolStripLabel6.Size = new System.Drawing.Size(104, 22);
     this.toolStripLabel6.Text = "请选择数据类型:";
     //
     // tscbox_Type
     //
     this.tscbox_Type.Items.AddRange(new object[] {
     "数字",
     "工作日",
     "月份",
     "年份"});
     this.tscbox_Type.Name = "tscbox_Type";
     this.tscbox_Type.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // tsbtn_Confirm
     //
     this.tsbtn_Confirm.Image = global::FillExcelByIncrementalData.Properties.Resources.图标__126_;
     this.tsbtn_Confirm.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbtn_Confirm.Name = "tsbtn_Confirm";
     this.tsbtn_Confirm.Size = new System.Drawing.Size(52, 22);
     this.tsbtn_Confirm.Text = "确定";
     this.tsbtn_Confirm.Click += new System.EventHandler(this.tsbtn_Query_Click);
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(595, 381);
     this.Controls.Add(this.toolStrip2);
     this.Controls.Add(this.WBrowser_Excel);
     this.Controls.Add(this.toolStrip1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "自动用递增变化的数据填充Excel";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_Main_FormClosing);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.archivoToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.abrirCarpetaToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3            = new System.Windows.Forms.ToolStripSeparator();
     this.salirToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.visualizaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ajustarToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
     this.verListaToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2            = new System.Windows.Forms.ToolStripSeparator();
     this.presentacionToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripComboBox1             = new System.Windows.Forms.ToolStripComboBox();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.splitContainer1       = new System.Windows.Forms.SplitContainer();
     this.listBox1    = new System.Windows.Forms.ListBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.timer1      = new System.Windows.Forms.Timer(this.components);
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.archivoToolStripMenuItem,
         this.visualizaciónToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(475, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     this.archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.abrirCarpetaToolStripMenuItem,
         this.toolStripSeparator3,
         this.salirToolStripMenuItem
     });
     this.archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     this.archivoToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
     this.archivoToolStripMenuItem.Text = "Archivo";
     //
     // abrirCarpetaToolStripMenuItem
     //
     this.abrirCarpetaToolStripMenuItem.Name   = "abrirCarpetaToolStripMenuItem";
     this.abrirCarpetaToolStripMenuItem.Size   = new System.Drawing.Size(144, 22);
     this.abrirCarpetaToolStripMenuItem.Text   = "Abrir Carpeta";
     this.abrirCarpetaToolStripMenuItem.Click += new System.EventHandler(this.AbrirCarpetaToolStripMenuItemClick);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(141, 6);
     //
     // salirToolStripMenuItem
     //
     this.salirToolStripMenuItem.Name   = "salirToolStripMenuItem";
     this.salirToolStripMenuItem.Size   = new System.Drawing.Size(144, 22);
     this.salirToolStripMenuItem.Text   = "Salir";
     this.salirToolStripMenuItem.Click += new System.EventHandler(this.SalirToolStripMenuItemClick);
     //
     // visualizaciónToolStripMenuItem
     //
     this.visualizaciónToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.ajustarToolStripMenuItem,
         this.toolStripSeparator1,
         this.verListaToolStripMenuItem,
         this.toolStripSeparator2,
         this.presentacionToolStripMenuItem,
         this.toolStripComboBox1
     });
     this.visualizaciónToolStripMenuItem.Name   = "visualizaciónToolStripMenuItem";
     this.visualizaciónToolStripMenuItem.Size   = new System.Drawing.Size(87, 20);
     this.visualizaciónToolStripMenuItem.Text   = "Visualización";
     this.visualizaciónToolStripMenuItem.Click += new System.EventHandler(this.VisualizaciónToolStripMenuItemClick);
     //
     // ajustarToolStripMenuItem
     //
     this.ajustarToolStripMenuItem.Name   = "ajustarToolStripMenuItem";
     this.ajustarToolStripMenuItem.Size   = new System.Drawing.Size(260, 22);
     this.ajustarToolStripMenuItem.Text   = "Ajustar a la ventana";
     this.ajustarToolStripMenuItem.Click += new System.EventHandler(this.AjustarToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(257, 6);
     //
     // verListaToolStripMenuItem
     //
     this.verListaToolStripMenuItem.Name   = "verListaToolStripMenuItem";
     this.verListaToolStripMenuItem.Size   = new System.Drawing.Size(260, 22);
     this.verListaToolStripMenuItem.Text   = "Ver lista de imágenes";
     this.verListaToolStripMenuItem.Click += new System.EventHandler(this.VerListaToolStripMenuItemClick);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(257, 6);
     //
     // presentacionToolStripMenuItem
     //
     this.presentacionToolStripMenuItem.Name   = "presentacionToolStripMenuItem";
     this.presentacionToolStripMenuItem.Size   = new System.Drawing.Size(260, 22);
     this.presentacionToolStripMenuItem.Text   = "Presentacion";
     this.presentacionToolStripMenuItem.Click += new System.EventHandler(this.PresentacionToolStripMenuItemClick);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox1.Name          = "toolStripComboBox1";
     this.toolStripComboBox1.Size          = new System.Drawing.Size(200, 23);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 290);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(475, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(155, 17);
     this.toolStripStatusLabel1.Text = "Ruta completa de la imágen";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 24);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.listBox1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.pictureBox1);
     this.splitContainer1.Size             = new System.Drawing.Size(475, 266);
     this.splitContainer1.SplitterDistance = 101;
     this.splitContainer1.TabIndex         = 2;
     //
     // listBox1
     //
     this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location          = new System.Drawing.Point(0, 0);
     this.listBox1.Name                  = "listBox1";
     this.listBox1.Size                  = new System.Drawing.Size(101, 266);
     this.listBox1.TabIndex              = 0;
     this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1SelectedIndexChanged);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.SystemColors.Control;
     this.pictureBox1.Location  = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(370, 266);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex  = 0;
     this.pictureBox1.TabStop   = false;
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick    += new System.EventHandler(this.Timer1Tick);
     //
     // pictureBox2
     //
     this.pictureBox2.Location = new System.Drawing.Point(0, 0);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(100, 50);
     this.pictureBox2.TabIndex = 0;
     this.pictureBox2.TabStop  = false;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(475, 312);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "MainForm";
     this.Text          = "Imágenes";
     this.Load         += new System.EventHandler(this.MainFormLoad);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(XnatWebBrowserComponentControl));
     this._browser = new System.Windows.Forms.WebBrowser();
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this._statusBar = new System.Windows.Forms.StatusStrip();
     this._browserProgress = new System.Windows.Forms.ToolStripProgressBar();
     this._browserStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this._toolbar = new System.Windows.Forms.ToolStrip();
     this._back = new System.Windows.Forms.ToolStripButton();
     this._forward = new System.Windows.Forms.ToolStripButton();
     this._stop = new System.Windows.Forms.ToolStripButton();
     this._refresh = new System.Windows.Forms.ToolStripButton();
     this._address = new System.Windows.Forms.ToolStripComboBox();
     this._go = new System.Windows.Forms.ToolStripButton();
     this._progressLogo = new System.Windows.Forms.ToolStripLabel();
     this._shortcutToolbar = new System.Windows.Forms.ToolStrip();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this._statusBar.SuspendLayout();
     this._toolbar.SuspendLayout();
     this.SuspendLayout();
     //
     // _browser
     //
     this._browser.Dock = System.Windows.Forms.DockStyle.Fill;
     this._browser.Location = new System.Drawing.Point(0, 0);
     this._browser.MinimumSize = new System.Drawing.Size(20, 20);
     this._browser.Name = "_browser";
     this._browser.Size = new System.Drawing.Size(584, 440);
     this._browser.TabIndex = 0;
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this._statusBar);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this._browser);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(584, 440);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(584, 526);
     this.toolStripContainer1.TabIndex = 1;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._toolbar);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._shortcutToolbar);
     //
     // _statusBar
     //
     this._statusBar.Dock = System.Windows.Forms.DockStyle.None;
     this._statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._browserProgress,
     this._browserStatus});
     this._statusBar.Location = new System.Drawing.Point(0, 0);
     this._statusBar.Name = "_statusBar";
     this._statusBar.Size = new System.Drawing.Size(584, 22);
     this._statusBar.TabIndex = 1;
     this._statusBar.Text = "statusStrip1";
     //
     // _browserProgress
     //
     this._browserProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this._browserProgress.Name = "_browserProgress";
     this._browserProgress.Size = new System.Drawing.Size(100, 16);
     //
     // _browserStatus
     //
     this._browserStatus.Name = "_browserStatus";
     this._browserStatus.Size = new System.Drawing.Size(0, 17);
     //
     // _toolbar
     //
     this._toolbar.Dock = System.Windows.Forms.DockStyle.None;
     this._toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this._toolbar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this._toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._back,
     this._forward,
     this._stop,
     this._refresh,
     this._address,
     this._go,
     this._progressLogo});
     this._toolbar.Location = new System.Drawing.Point(0, 0);
     this._toolbar.Name = "_toolbar";
     this._toolbar.Size = new System.Drawing.Size(584, 39);
     this._toolbar.Stretch = true;
     this._toolbar.TabIndex = 0;
     //
     // _back
     //
     this._back.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._back.Image = ((System.Drawing.Image)(resources.GetObject("_back.Image")));
     this._back.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._back.Name = "_back";
     this._back.Size = new System.Drawing.Size(36, 36);
     this._back.Text = "Back";
     //
     // _forward
     //
     this._forward.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._forward.Image = ((System.Drawing.Image)(resources.GetObject("_forward.Image")));
     this._forward.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._forward.Name = "_forward";
     this._forward.Size = new System.Drawing.Size(36, 36);
     this._forward.Text = "Forward";
     //
     // _stop
     //
     this._stop.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._stop.Image = ((System.Drawing.Image)(resources.GetObject("_stop.Image")));
     this._stop.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._stop.Name = "_stop";
     this._stop.Size = new System.Drawing.Size(36, 36);
     this._stop.Text = "toolStripButton1";
     this._stop.ToolTipText = "Stop";
     //
     // _refresh
     //
     this._refresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._refresh.Image = ((System.Drawing.Image)(resources.GetObject("_refresh.Image")));
     this._refresh.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._refresh.Name = "_refresh";
     this._refresh.Size = new System.Drawing.Size(36, 36);
     this._refresh.Text = "toolStripButton1";
     this._refresh.ToolTipText = "Refresh";
     //
     // _address
     //
     this._address.Name = "_address";
     this._address.Size = new System.Drawing.Size(350, 39);
     this._address.ToolTipText = "Address";
     //
     // _go
     //
     this._go.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._go.Image = ((System.Drawing.Image)(resources.GetObject("_go.Image")));
     this._go.ImageTransparentColor = System.Drawing.Color.Magenta;
     this._go.Name = "_go";
     this._go.Size = new System.Drawing.Size(36, 36);
     this._go.Text = "toolStripButton1";
     this._go.ToolTipText = "Go";
     //
     // _progressLogo
     //
     this._progressLogo.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this._progressLogo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this._progressLogo.Name = "_progressLogo";
     this._progressLogo.Size = new System.Drawing.Size(0, 36);
     //
     // _shortcutToolbar
     //
     this._shortcutToolbar.Dock = System.Windows.Forms.DockStyle.None;
     this._shortcutToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this._shortcutToolbar.Location = new System.Drawing.Point(0, 39);
     this._shortcutToolbar.Name = "_shortcutToolbar";
     this._shortcutToolbar.Size = new System.Drawing.Size(584, 25);
     this._shortcutToolbar.Stretch = true;
     this._shortcutToolbar.TabIndex = 1;
     //
     // XnatWebBrowserComponentControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.toolStripContainer1);
     this.Name = "WebBrowserComponentControl";
     this.Size = new System.Drawing.Size(584, 526);
     this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this._statusBar.ResumeLayout(false);
     this._statusBar.PerformLayout();
     this._toolbar.ResumeLayout(false);
     this._toolbar.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.txtResult = new System.Windows.Forms.TextBox();
     this.txtExp = new System.Windows.Forms.RichTextBox();
     this.menuRichTextBox = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.粘贴剪切板内容ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制计算结果ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.运算符ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.andToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.orToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.xorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.notToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.sgnToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.intToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.absToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
     this.变量ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.函数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmbFunSort = new System.Windows.Forms.ToolStripComboBox();
     this.txtSearchKey = new System.Windows.Forms.ToolStripTextBox();
     this.算式ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btnbtnReciprocal = new System.Windows.Forms.Button();
     this.btnANS = new System.Windows.Forms.Button();
     this.btnE = new System.Windows.Forms.Button();
     this.btnPow = new System.Windows.Forms.Button();
     this.btnPI = new System.Windows.Forms.Button();
     this.btnPercent = new System.Windows.Forms.Button();
     this.btnSqrt = new System.Windows.Forms.Button();
     this.btnEqual = new System.Windows.Forms.Button();
     this.btnPoint = new System.Windows.Forms.Button();
     this.btnC = new System.Windows.Forms.Button();
     this.btnBackspace = new System.Windows.Forms.Button();
     this.btnComma = new System.Windows.Forms.Button();
     this.btn_e_ = new System.Windows.Forms.Button();
     this.btnBIN = new System.Windows.Forms.Button();
     this.btnB = new System.Windows.Forms.Button();
     this.btnHEX = new System.Windows.Forms.Button();
     this.btnToB = new System.Windows.Forms.Button();
     this.btnToH = new System.Windows.Forms.Button();
     this.btnMod = new System.Windows.Forms.Button();
     this.btnSum = new System.Windows.Forms.Button();
     this.bnt_C = new System.Windows.Forms.Button();
     this.btnnCr = new System.Windows.Forms.Button();
     this.btnnAr = new System.Windows.Forms.Button();
     this.btnFactorial = new System.Windows.Forms.Button();
     this.btnDivide = new System.Windows.Forms.Button();
     this.btnMultiply = new System.Windows.Forms.Button();
     this.btnMinus = new System.Windows.Forms.Button();
     this.btnPlus = new System.Windows.Forms.Button();
     this.btnPareR = new System.Windows.Forms.Button();
     this.btnPareL = new System.Windows.Forms.Button();
     this.btnExp = new System.Windows.Forms.Button();
     this.btnLog = new System.Windows.Forms.Button();
     this.btnLn = new System.Windows.Forms.Button();
     this.btnOCT = new System.Windows.Forms.Button();
     this.btnTanh = new System.Windows.Forms.Button();
     this.btnCosh = new System.Windows.Forms.Button();
     this.btnSinh = new System.Windows.Forms.Button();
     this.btnAtan = new System.Windows.Forms.Button();
     this.btnAcos = new System.Windows.Forms.Button();
     this.btnAsin = new System.Windows.Forms.Button();
     this.btnTan = new System.Windows.Forms.Button();
     this.btnCos = new System.Windows.Forms.Button();
     this.btnSin = new System.Windows.Forms.Button();
     this.btnDu = new System.Windows.Forms.Button();
     this.btnToO = new System.Windows.Forms.Button();
     this.btnA = new System.Windows.Forms.Button();
     this.btnDms = new System.Windows.Forms.Button();
     this.btn_E = new System.Windows.Forms.Button();
     this.btnS = new System.Windows.Forms.Button();
     this.btnAverage = new System.Windows.Forms.Button();
     this.btnF = new System.Windows.Forms.Button();
     this.btnToDegree = new System.Windows.Forms.Button();
     this.btnD = new System.Windows.Forms.Button();
     this.btn0 = new System.Windows.Forms.Button();
     this.btn3 = new System.Windows.Forms.Button();
     this.btn2 = new System.Windows.Forms.Button();
     this.btn1 = new System.Windows.Forms.Button();
     this.btn6 = new System.Windows.Forms.Button();
     this.btn5 = new System.Windows.Forms.Button();
     this.btn4 = new System.Windows.Forms.Button();
     this.btn9 = new System.Windows.Forms.Button();
     this.btn8 = new System.Windows.Forms.Button();
     this.btn7 = new System.Windows.Forms.Button();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.帮助ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.注册ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.关于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.科学型ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.科学计数法ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.双括号ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.移动光标ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.功能ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.复制计算结果ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.获取剪切板内容ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.存储计算公式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.存储函数ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.人民币大写ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.人民币阿拉伯数字形式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.单步计算ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.语音ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.语音ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.自然读音ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.输入ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.求和ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.求平均ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.运算符ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.andToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.orToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.notToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.sgnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.intToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.absToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
     this.变量ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.算式ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.单位转换ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.英里公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.海里公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.光年公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.英寸厘米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.平方公里亩ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.亩平方公里ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.亩平方米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.桶立方米ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.千米每小时米每秒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.米每秒千米每小时ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.马赫米每秒ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.NotifyMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.显示计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.关闭计算器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuRichTextBox.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.NotifyMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // txtResult
     //
     this.txtResult.BackColor = System.Drawing.SystemColors.Window;
     this.txtResult.Location = new System.Drawing.Point(12, 80);
     this.txtResult.Name = "txtResult";
     this.txtResult.ReadOnly = true;
     this.txtResult.Size = new System.Drawing.Size(352, 21);
     this.txtResult.TabIndex = 3;
     //
     // txtExp
     //
     this.txtExp.ContextMenuStrip = this.menuRichTextBox;
     this.txtExp.Location = new System.Drawing.Point(12, 42);
     this.txtExp.Multiline = false;
     this.txtExp.Name = "txtExp";
     this.txtExp.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.txtExp.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
     this.txtExp.Size = new System.Drawing.Size(352, 21);
     this.txtExp.TabIndex = 0;
     this.txtExp.Tag = "";
     this.txtExp.Text = "";
     this.txtExp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtExp_KeyDown);
     this.txtExp.MouseDown += new System.Windows.Forms.MouseEventHandler(this.txtExp_MouseDown);
     this.txtExp.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtExp_KeyPress);
     this.txtExp.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtExp_KeyUp);
     this.txtExp.TextChanged += new System.EventHandler(this.txtExp_TextChanged);
     //
     // menuRichTextBox
     //
     this.menuRichTextBox.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.粘贴剪切板内容ToolStripMenuItem,
     this.复制计算结果ToolStripMenuItem1,
     this.toolStripSeparator7,
     this.运算符ToolStripMenuItem1,
     this.变量ToolStripMenuItem1,
     this.函数ToolStripMenuItem,
     this.算式ToolStripMenuItem1});
     this.menuRichTextBox.Name = "menuTextBox";
     this.menuRichTextBox.Size = new System.Drawing.Size(155, 142);
     //
     // 粘贴剪切板内容ToolStripMenuItem
     //
     this.粘贴剪切板内容ToolStripMenuItem.Name = "粘贴剪切板内容ToolStripMenuItem";
     this.粘贴剪切板内容ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.粘贴剪切板内容ToolStripMenuItem.Text = "粘贴剪切板内容";
     this.粘贴剪切板内容ToolStripMenuItem.ToolTipText = "粘贴剪切板内容到算式输入框";
     this.粘贴剪切板内容ToolStripMenuItem.Click += new System.EventHandler(this.粘贴剪切板内容ToolStripMenuItem_Click);
     //
     // 复制计算结果ToolStripMenuItem1
     //
     this.复制计算结果ToolStripMenuItem1.Name = "复制计算结果ToolStripMenuItem1";
     this.复制计算结果ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.复制计算结果ToolStripMenuItem1.Text = "复制计算结果";
     this.复制计算结果ToolStripMenuItem1.ToolTipText = "复制计算结果到剪切板";
     this.复制计算结果ToolStripMenuItem1.Click += new System.EventHandler(this.复制计算结果ToolStripMenuItem1_Click);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(151, 6);
     //
     // 运算符ToolStripMenuItem1
     //
     this.运算符ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.andToolStripMenuItem1,
     this.orToolStripMenuItem1,
     this.xorToolStripMenuItem1,
     this.notToolStripMenuItem1,
     this.toolStripSeparator11,
     this.sgnToolStripMenuItem1,
     this.intToolStripMenuItem1,
     this.absToolStripMenuItem1,
     this.toolStripSeparator12,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5,
     this.toolStripSeparator13,
     this.toolStripMenuItem6});
     this.运算符ToolStripMenuItem1.Name = "运算符ToolStripMenuItem1";
     this.运算符ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.运算符ToolStripMenuItem1.Text = "运算符";
     //
     // andToolStripMenuItem1
     //
     this.andToolStripMenuItem1.Name = "andToolStripMenuItem1";
     this.andToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.andToolStripMenuItem1.Text = "And";
     this.andToolStripMenuItem1.ToolTipText = "按位与";
     this.andToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // orToolStripMenuItem1
     //
     this.orToolStripMenuItem1.Name = "orToolStripMenuItem1";
     this.orToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.orToolStripMenuItem1.Text = "Or";
     this.orToolStripMenuItem1.ToolTipText = "按位或";
     this.orToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // xorToolStripMenuItem1
     //
     this.xorToolStripMenuItem1.Name = "xorToolStripMenuItem1";
     this.xorToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.xorToolStripMenuItem1.Text = "Xor";
     this.xorToolStripMenuItem1.ToolTipText = "按位异或";
     this.xorToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // notToolStripMenuItem1
     //
     this.notToolStripMenuItem1.Name = "notToolStripMenuItem1";
     this.notToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.notToolStripMenuItem1.Text = "Not";
     this.notToolStripMenuItem1.ToolTipText = "按位取反";
     this.notToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator11
     //
     this.toolStripSeparator11.Name = "toolStripSeparator11";
     this.toolStripSeparator11.Size = new System.Drawing.Size(85, 6);
     //
     // sgnToolStripMenuItem1
     //
     this.sgnToolStripMenuItem1.Name = "sgnToolStripMenuItem1";
     this.sgnToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.sgnToolStripMenuItem1.Text = "Sgn";
     this.sgnToolStripMenuItem1.ToolTipText = "取数值的符号";
     this.sgnToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // intToolStripMenuItem1
     //
     this.intToolStripMenuItem1.Name = "intToolStripMenuItem1";
     this.intToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.intToolStripMenuItem1.Text = "Int";
     this.intToolStripMenuItem1.ToolTipText = "取整";
     this.intToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // absToolStripMenuItem1
     //
     this.absToolStripMenuItem1.Name = "absToolStripMenuItem1";
     this.absToolStripMenuItem1.Size = new System.Drawing.Size(88, 22);
     this.absToolStripMenuItem1.Text = "Abs";
     this.absToolStripMenuItem1.ToolTipText = "取绝对值";
     this.absToolStripMenuItem1.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator12
     //
     this.toolStripSeparator12.Name = "toolStripSeparator12";
     this.toolStripSeparator12.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem4.Text = "<<";
     this.toolStripMenuItem4.ToolTipText = "按左位移";
     this.toolStripMenuItem4.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem5.Text = ">>";
     this.toolStripMenuItem5.ToolTipText = "按右位移";
     this.toolStripMenuItem5.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripSeparator13
     //
     this.toolStripSeparator13.Name = "toolStripSeparator13";
     this.toolStripSeparator13.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem6.Text = "=";
     this.toolStripMenuItem6.ToolTipText = "等于号,用于给变量赋值";
     this.toolStripMenuItem6.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // 变量ToolStripMenuItem1
     //
     this.变量ToolStripMenuItem1.Name = "变量ToolStripMenuItem1";
     this.变量ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.变量ToolStripMenuItem1.Text = "变量";
     //
     // 函数ToolStripMenuItem
     //
     this.函数ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cmbFunSort,
     this.txtSearchKey});
     this.函数ToolStripMenuItem.Name = "函数ToolStripMenuItem";
     this.函数ToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
     this.函数ToolStripMenuItem.Text = "函数";
     //
     // cmbFunSort
     //
     this.cmbFunSort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFunSort.Name = "cmbFunSort";
     this.cmbFunSort.Size = new System.Drawing.Size(121, 20);
     this.cmbFunSort.Sorted = true;
     this.cmbFunSort.ToolTipText = "请选择函数类别";
     this.cmbFunSort.SelectedIndexChanged += new System.EventHandler(this.cmbFunSort_SelectedIndexChanged);
     //
     // txtSearchKey
     //
     this.txtSearchKey.BackColor = System.Drawing.SystemColors.Window;
     this.txtSearchKey.Name = "txtSearchKey";
     this.txtSearchKey.Size = new System.Drawing.Size(121, 21);
     this.txtSearchKey.ToolTipText = "请输入搜索关键字";
     this.txtSearchKey.TextChanged += new System.EventHandler(this.toolStripTextBox1_TextChanged);
     //
     // 算式ToolStripMenuItem1
     //
     this.算式ToolStripMenuItem1.Name = "算式ToolStripMenuItem1";
     this.算式ToolStripMenuItem1.Size = new System.Drawing.Size(154, 22);
     this.算式ToolStripMenuItem1.Text = "算式";
     //
     // btnbtnReciprocal
     //
     this.btnbtnReciprocal.Location = new System.Drawing.Point(307, 153);
     this.btnbtnReciprocal.Name = "btnbtnReciprocal";
     this.btnbtnReciprocal.Size = new System.Drawing.Size(45, 45);
     this.btnbtnReciprocal.TabIndex = 68;
     this.btnbtnReciprocal.Tag = "1/";
     this.btnbtnReciprocal.Text = "1/x";
     this.toolTip1.SetToolTip(this.btnbtnReciprocal, "倒数");
     this.btnbtnReciprocal.UseVisualStyleBackColor = true;
     //
     // btnANS
     //
     this.btnANS.Location = new System.Drawing.Point(255, 0);
     this.btnANS.Name = "btnANS";
     this.btnANS.Size = new System.Drawing.Size(45, 45);
     this.btnANS.TabIndex = 67;
     this.btnANS.Tag = "|";
     this.btnANS.Text = "ANS";
     this.toolTip1.SetToolTip(this.btnANS, "输入上次计算结果到算式输入框");
     this.btnANS.UseVisualStyleBackColor = true;
     this.btnANS.Click += new System.EventHandler(this.btnANS_Click);
     //
     // btnE
     //
     this.btnE.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnE.Location = new System.Drawing.Point(51, 153);
     this.btnE.Name = "btnE";
     this.btnE.Size = new System.Drawing.Size(45, 45);
     this.btnE.TabIndex = 66;
     this.btnE.Tag = "E|E";
     this.btnE.Text = "E";
     this.toolTip1.SetToolTip(this.btnE, "科学计数法E");
     this.btnE.UseVisualStyleBackColor = true;
     //
     // btnPow
     //
     this.btnPow.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPow.Location = new System.Drawing.Point(255, 102);
     this.btnPow.Name = "btnPow";
     this.btnPow.Size = new System.Drawing.Size(45, 45);
     this.btnPow.TabIndex = 65;
     this.btnPow.Tag = "^";
     this.btnPow.Text = "x^y";
     this.toolTip1.SetToolTip(this.btnPow, "乘方");
     this.btnPow.UseVisualStyleBackColor = true;
     //
     // btnPI
     //
     this.btnPI.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPI.Location = new System.Drawing.Point(307, 0);
     this.btnPI.Name = "btnPI";
     this.btnPI.Size = new System.Drawing.Size(45, 45);
     this.btnPI.TabIndex = 64;
     this.btnPI.Tag = "pi";
     this.btnPI.Text = "pi";
     this.toolTip1.SetToolTip(this.btnPI, "圆周率");
     this.btnPI.UseVisualStyleBackColor = true;
     //
     // btnPercent
     //
     this.btnPercent.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPercent.Location = new System.Drawing.Point(307, 102);
     this.btnPercent.Name = "btnPercent";
     this.btnPercent.Size = new System.Drawing.Size(45, 45);
     this.btnPercent.TabIndex = 63;
     this.btnPercent.Tag = "%";
     this.btnPercent.Text = "%";
     this.toolTip1.SetToolTip(this.btnPercent, "百分号");
     this.btnPercent.UseVisualStyleBackColor = true;
     //
     // btnSqrt
     //
     this.btnSqrt.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSqrt.Location = new System.Drawing.Point(255, 153);
     this.btnSqrt.Name = "btnSqrt";
     this.btnSqrt.Size = new System.Drawing.Size(45, 45);
     this.btnSqrt.TabIndex = 62;
     this.btnSqrt.Tag = "sqrt";
     this.btnSqrt.Text = "sqrt";
     this.toolTip1.SetToolTip(this.btnSqrt, "例:\r\nsqrt(2)对2开平方\r\nsqrt(2,4)对2开4次方");
     this.btnSqrt.UseVisualStyleBackColor = true;
     //
     // btnEqual
     //
     this.btnEqual.ForeColor = System.Drawing.Color.Red;
     this.btnEqual.Location = new System.Drawing.Point(204, 153);
     this.btnEqual.Name = "btnEqual";
     this.btnEqual.Size = new System.Drawing.Size(45, 45);
     this.btnEqual.TabIndex = 61;
     this.btnEqual.Tag = "|";
     this.btnEqual.Text = "=";
     this.toolTip1.SetToolTip(this.btnEqual, "等于");
     this.btnEqual.UseVisualStyleBackColor = true;
     //
     // btnPoint
     //
     this.btnPoint.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPoint.Location = new System.Drawing.Point(102, 153);
     this.btnPoint.Name = "btnPoint";
     this.btnPoint.Size = new System.Drawing.Size(45, 45);
     this.btnPoint.TabIndex = 60;
     this.btnPoint.Tag = ".|点";
     this.btnPoint.Text = ".";
     this.toolTip1.SetToolTip(this.btnPoint, "小数点");
     this.btnPoint.UseVisualStyleBackColor = true;
     //
     // btnC
     //
     this.btnC.ForeColor = System.Drawing.Color.Red;
     this.btnC.Location = new System.Drawing.Point(204, 51);
     this.btnC.Name = "btnC";
     this.btnC.Size = new System.Drawing.Size(45, 45);
     this.btnC.TabIndex = 59;
     this.btnC.Tag = "|清零";
     this.btnC.Text = "C";
     this.toolTip1.SetToolTip(this.btnC, "清除");
     this.btnC.UseVisualStyleBackColor = true;
     this.btnC.Click += new System.EventHandler(this.btnC_Click);
     //
     // btnBackspace
     //
     this.btnBackspace.ForeColor = System.Drawing.Color.Red;
     this.btnBackspace.Location = new System.Drawing.Point(204, 0);
     this.btnBackspace.Name = "btnBackspace";
     this.btnBackspace.Size = new System.Drawing.Size(45, 45);
     this.btnBackspace.TabIndex = 58;
     this.btnBackspace.Tag = "|";
     this.btnBackspace.Text = "←";
     this.toolTip1.SetToolTip(this.btnBackspace, "退格");
     this.btnBackspace.UseVisualStyleBackColor = true;
     this.btnBackspace.Click += new System.EventHandler(this.btnBackspace_Click);
     //
     // btnComma
     //
     this.btnComma.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnComma.Location = new System.Drawing.Point(204, 102);
     this.btnComma.Name = "btnComma";
     this.btnComma.Size = new System.Drawing.Size(45, 45);
     this.btnComma.TabIndex = 41;
     this.btnComma.Tag = ",";
     this.btnComma.Text = ",";
     this.toolTip1.SetToolTip(this.btnComma, "逗号");
     this.btnComma.UseVisualStyleBackColor = true;
     //
     // btn_e_
     //
     this.btn_e_.Location = new System.Drawing.Point(307, 93);
     this.btn_e_.Name = "btn_e_";
     this.btn_e_.Size = new System.Drawing.Size(45, 25);
     this.btn_e_.TabIndex = 96;
     this.btn_e_.Tag = "e";
     this.btn_e_.Text = "e";
     this.toolTip1.SetToolTip(this.btn_e_, "自然常数e");
     this.btn_e_.UseVisualStyleBackColor = true;
     //
     // btnBIN
     //
     this.btnBIN.Location = new System.Drawing.Point(255, 0);
     this.btnBIN.Name = "btnBIN";
     this.btnBIN.Size = new System.Drawing.Size(45, 25);
     this.btnBIN.TabIndex = 95;
     this.btnBIN.Tag = "BIN";
     this.btnBIN.Text = "BIN";
     this.toolTip1.SetToolTip(this.btnBIN, "二进制转十进制,例:1011BIN");
     this.btnBIN.UseVisualStyleBackColor = true;
     //
     // btnB
     //
     this.btnB.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnB.Location = new System.Drawing.Point(51, 93);
     this.btnB.Name = "btnB";
     this.btnB.Size = new System.Drawing.Size(45, 25);
     this.btnB.TabIndex = 94;
     this.btnB.Tag = "B";
     this.btnB.Text = "B";
     this.toolTip1.SetToolTip(this.btnB, "十六进制B");
     this.btnB.UseVisualStyleBackColor = true;
     //
     // btnHEX
     //
     this.btnHEX.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnHEX.Location = new System.Drawing.Point(255, 62);
     this.btnHEX.Name = "btnHEX";
     this.btnHEX.Size = new System.Drawing.Size(45, 25);
     this.btnHEX.TabIndex = 93;
     this.btnHEX.Tag = "HEX";
     this.btnHEX.Text = "HEX";
     this.toolTip1.SetToolTip(this.btnHEX, "十六进制转十进制,例:B5EF8HEX");
     this.btnHEX.UseVisualStyleBackColor = true;
     //
     // btnToB
     //
     this.btnToB.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToB.Location = new System.Drawing.Point(307, 0);
     this.btnToB.Name = "btnToB";
     this.btnToB.Size = new System.Drawing.Size(45, 25);
     this.btnToB.TabIndex = 92;
     this.btnToB.Tag = "toB";
     this.btnToB.Text = "toB";
     this.toolTip1.SetToolTip(this.btnToB, "十进制转二进制,例:toB(9)");
     this.btnToB.UseVisualStyleBackColor = true;
     //
     // btnToH
     //
     this.btnToH.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToH.Location = new System.Drawing.Point(307, 62);
     this.btnToH.Name = "btnToH";
     this.btnToH.Size = new System.Drawing.Size(45, 25);
     this.btnToH.TabIndex = 91;
     this.btnToH.Tag = "toH";
     this.btnToH.Text = "toH";
     this.toolTip1.SetToolTip(this.btnToH, "十进制转十六进制,例:toH(999)");
     this.btnToH.UseVisualStyleBackColor = true;
     //
     // btnMod
     //
     this.btnMod.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMod.Location = new System.Drawing.Point(256, 93);
     this.btnMod.Name = "btnMod";
     this.btnMod.Size = new System.Drawing.Size(45, 25);
     this.btnMod.TabIndex = 90;
     this.btnMod.Tag = "s";
     this.btnMod.Text = "s";
     this.toolTip1.SetToolTip(this.btnMod, "样本标准方差,例:s(4,5,6)");
     this.btnMod.UseVisualStyleBackColor = true;
     //
     // btnSum
     //
     this.btnSum.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSum.Location = new System.Drawing.Point(204, 93);
     this.btnSum.Name = "btnSum";
     this.btnSum.Size = new System.Drawing.Size(45, 25);
     this.btnSum.TabIndex = 89;
     this.btnSum.Tag = "sum";
     this.btnSum.Text = "sum";
     this.toolTip1.SetToolTip(this.btnSum, "求和,例:sum(-9,5.6*4,2,7)");
     this.btnSum.UseVisualStyleBackColor = true;
     //
     // bnt_C
     //
     this.bnt_C.ForeColor = System.Drawing.SystemColors.ControlText;
     this.bnt_C.Location = new System.Drawing.Point(102, 93);
     this.bnt_C.Name = "bnt_C";
     this.bnt_C.Size = new System.Drawing.Size(45, 25);
     this.bnt_C.TabIndex = 88;
     this.bnt_C.Tag = "C";
     this.bnt_C.Text = "C";
     this.toolTip1.SetToolTip(this.bnt_C, "十六进制C");
     this.bnt_C.UseVisualStyleBackColor = true;
     //
     // btnnCr
     //
     this.btnnCr.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnnCr.Location = new System.Drawing.Point(204, 31);
     this.btnnCr.Name = "btnnCr";
     this.btnnCr.Size = new System.Drawing.Size(45, 25);
     this.btnnCr.TabIndex = 87;
     this.btnnCr.Tag = "nCr";
     this.btnnCr.Text = "nCr";
     this.toolTip1.SetToolTip(this.btnnCr, "组合");
     this.btnnCr.UseVisualStyleBackColor = true;
     //
     // btnnAr
     //
     this.btnnAr.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnnAr.Location = new System.Drawing.Point(204, 0);
     this.btnnAr.Name = "btnnAr";
     this.btnnAr.Size = new System.Drawing.Size(45, 25);
     this.btnnAr.TabIndex = 86;
     this.btnnAr.Tag = "nAr";
     this.btnnAr.Text = "nAr";
     this.toolTip1.SetToolTip(this.btnnAr, "排列");
     this.btnnAr.UseVisualStyleBackColor = true;
     //
     // btnFactorial
     //
     this.btnFactorial.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnFactorial.Location = new System.Drawing.Point(205, 62);
     this.btnFactorial.Name = "btnFactorial";
     this.btnFactorial.Size = new System.Drawing.Size(45, 25);
     this.btnFactorial.TabIndex = 69;
     this.btnFactorial.Tag = "!";
     this.btnFactorial.Text = "n!";
     this.toolTip1.SetToolTip(this.btnFactorial, "阶乘");
     this.btnFactorial.UseVisualStyleBackColor = true;
     //
     // btnDivide
     //
     this.btnDivide.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnDivide.Location = new System.Drawing.Point(153, 153);
     this.btnDivide.Name = "btnDivide";
     this.btnDivide.Size = new System.Drawing.Size(45, 45);
     this.btnDivide.TabIndex = 57;
     this.btnDivide.Tag = "/|除以";
     this.btnDivide.Text = "/";
     this.toolTip1.SetToolTip(this.btnDivide, "除");
     this.btnDivide.UseVisualStyleBackColor = true;
     //
     // btnMultiply
     //
     this.btnMultiply.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMultiply.Location = new System.Drawing.Point(153, 102);
     this.btnMultiply.Name = "btnMultiply";
     this.btnMultiply.Size = new System.Drawing.Size(45, 45);
     this.btnMultiply.TabIndex = 56;
     this.btnMultiply.Tag = "*|乘以";
     this.btnMultiply.Text = "*";
     this.toolTip1.SetToolTip(this.btnMultiply, "乘");
     this.btnMultiply.UseVisualStyleBackColor = true;
     //
     // btnMinus
     //
     this.btnMinus.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnMinus.Location = new System.Drawing.Point(153, 51);
     this.btnMinus.Name = "btnMinus";
     this.btnMinus.Size = new System.Drawing.Size(45, 45);
     this.btnMinus.TabIndex = 55;
     this.btnMinus.Tag = "-|减去";
     this.btnMinus.Text = "-";
     this.toolTip1.SetToolTip(this.btnMinus, "减号或负号");
     this.btnMinus.UseVisualStyleBackColor = true;
     //
     // btnPlus
     //
     this.btnPlus.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPlus.Location = new System.Drawing.Point(153, 0);
     this.btnPlus.Name = "btnPlus";
     this.btnPlus.Size = new System.Drawing.Size(45, 45);
     this.btnPlus.TabIndex = 54;
     this.btnPlus.Tag = "+|加上";
     this.btnPlus.Text = "+";
     this.toolTip1.SetToolTip(this.btnPlus, "加号或正号");
     this.btnPlus.UseVisualStyleBackColor = true;
     //
     // btnPareR
     //
     this.btnPareR.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPareR.Location = new System.Drawing.Point(307, 51);
     this.btnPareR.Name = "btnPareR";
     this.btnPareR.Size = new System.Drawing.Size(45, 45);
     this.btnPareR.TabIndex = 53;
     this.btnPareR.Tag = ")";
     this.btnPareR.Text = ")";
     this.toolTip1.SetToolTip(this.btnPareR, "右括号");
     this.btnPareR.UseVisualStyleBackColor = true;
     //
     // btnPareL
     //
     this.btnPareL.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnPareL.Location = new System.Drawing.Point(255, 51);
     this.btnPareL.Name = "btnPareL";
     this.btnPareL.Size = new System.Drawing.Size(45, 45);
     this.btnPareL.TabIndex = 52;
     this.btnPareL.Tag = "(";
     this.btnPareL.Text = "(";
     this.toolTip1.SetToolTip(this.btnPareL, "左括号");
     this.btnPareL.UseVisualStyleBackColor = true;
     //
     // btnExp
     //
     this.btnExp.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnExp.Location = new System.Drawing.Point(153, 62);
     this.btnExp.Name = "btnExp";
     this.btnExp.Size = new System.Drawing.Size(45, 25);
     this.btnExp.TabIndex = 84;
     this.btnExp.Tag = "Exp";
     this.btnExp.Text = "Exp";
     this.toolTip1.SetToolTip(this.btnExp, "常数e的x次方");
     this.btnExp.UseVisualStyleBackColor = true;
     //
     // btnLog
     //
     this.btnLog.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnLog.Location = new System.Drawing.Point(153, 31);
     this.btnLog.Name = "btnLog";
     this.btnLog.Size = new System.Drawing.Size(45, 25);
     this.btnLog.TabIndex = 83;
     this.btnLog.Tag = "log";
     this.btnLog.Text = "log";
     this.toolTip1.SetToolTip(this.btnLog, "例:\r\nlog(9)对9取对数,底数是10\r\nlog(9,3)对9取对数,底数是3");
     this.btnLog.UseVisualStyleBackColor = true;
     //
     // btnLn
     //
     this.btnLn.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnLn.Location = new System.Drawing.Point(153, 0);
     this.btnLn.Name = "btnLn";
     this.btnLn.Size = new System.Drawing.Size(45, 25);
     this.btnLn.TabIndex = 82;
     this.btnLn.Tag = "ln";
     this.btnLn.Text = "ln";
     this.toolTip1.SetToolTip(this.btnLn, "以e为底数的对数");
     this.btnLn.UseVisualStyleBackColor = true;
     //
     // btnOCT
     //
     this.btnOCT.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnOCT.Location = new System.Drawing.Point(255, 31);
     this.btnOCT.Name = "btnOCT";
     this.btnOCT.Size = new System.Drawing.Size(45, 25);
     this.btnOCT.TabIndex = 80;
     this.btnOCT.Tag = "OCT";
     this.btnOCT.Text = "OCT";
     this.toolTip1.SetToolTip(this.btnOCT, "八进制转十制,例:4576OCT");
     this.btnOCT.UseVisualStyleBackColor = true;
     //
     // btnTanh
     //
     this.btnTanh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnTanh.Location = new System.Drawing.Point(102, 62);
     this.btnTanh.Name = "btnTanh";
     this.btnTanh.Size = new System.Drawing.Size(45, 25);
     this.btnTanh.TabIndex = 78;
     this.btnTanh.Tag = "tanh";
     this.btnTanh.Text = "tanh";
     this.toolTip1.SetToolTip(this.btnTanh, "双曲正切");
     this.btnTanh.UseVisualStyleBackColor = true;
     //
     // btnCosh
     //
     this.btnCosh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCosh.Location = new System.Drawing.Point(51, 62);
     this.btnCosh.Name = "btnCosh";
     this.btnCosh.Size = new System.Drawing.Size(45, 25);
     this.btnCosh.TabIndex = 77;
     this.btnCosh.Tag = "cosh";
     this.btnCosh.Text = "cosh";
     this.toolTip1.SetToolTip(this.btnCosh, "双曲余弦");
     this.btnCosh.UseVisualStyleBackColor = true;
     //
     // btnSinh
     //
     this.btnSinh.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSinh.Location = new System.Drawing.Point(0, 62);
     this.btnSinh.Name = "btnSinh";
     this.btnSinh.Size = new System.Drawing.Size(45, 25);
     this.btnSinh.TabIndex = 76;
     this.btnSinh.Tag = "sinh";
     this.btnSinh.Text = "sinh";
     this.toolTip1.SetToolTip(this.btnSinh, "双曲正弦");
     this.btnSinh.UseVisualStyleBackColor = true;
     //
     // btnAtan
     //
     this.btnAtan.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAtan.Location = new System.Drawing.Point(102, 31);
     this.btnAtan.Name = "btnAtan";
     this.btnAtan.Size = new System.Drawing.Size(45, 25);
     this.btnAtan.TabIndex = 75;
     this.btnAtan.Tag = "atan";
     this.btnAtan.Text = "atan";
     this.toolTip1.SetToolTip(this.btnAtan, "反正切");
     this.btnAtan.UseVisualStyleBackColor = true;
     //
     // btnAcos
     //
     this.btnAcos.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAcos.Location = new System.Drawing.Point(51, 31);
     this.btnAcos.Name = "btnAcos";
     this.btnAcos.Size = new System.Drawing.Size(45, 25);
     this.btnAcos.TabIndex = 74;
     this.btnAcos.Tag = "acos";
     this.btnAcos.Text = "acos";
     this.toolTip1.SetToolTip(this.btnAcos, "反余弦");
     this.btnAcos.UseVisualStyleBackColor = true;
     //
     // btnAsin
     //
     this.btnAsin.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAsin.Location = new System.Drawing.Point(0, 31);
     this.btnAsin.Name = "btnAsin";
     this.btnAsin.Size = new System.Drawing.Size(45, 25);
     this.btnAsin.TabIndex = 73;
     this.btnAsin.Tag = "asin";
     this.btnAsin.Text = "asin";
     this.toolTip1.SetToolTip(this.btnAsin, "反正弦");
     this.btnAsin.UseVisualStyleBackColor = true;
     //
     // btnTan
     //
     this.btnTan.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnTan.Location = new System.Drawing.Point(102, 0);
     this.btnTan.Name = "btnTan";
     this.btnTan.Size = new System.Drawing.Size(45, 25);
     this.btnTan.TabIndex = 72;
     this.btnTan.Tag = "tan";
     this.btnTan.Text = "tan";
     this.toolTip1.SetToolTip(this.btnTan, "正切");
     this.btnTan.UseVisualStyleBackColor = true;
     //
     // btnCos
     //
     this.btnCos.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnCos.Location = new System.Drawing.Point(51, 0);
     this.btnCos.Name = "btnCos";
     this.btnCos.Size = new System.Drawing.Size(45, 25);
     this.btnCos.TabIndex = 71;
     this.btnCos.Tag = "cos";
     this.btnCos.Text = "cos";
     this.toolTip1.SetToolTip(this.btnCos, "余弦");
     this.btnCos.UseVisualStyleBackColor = true;
     //
     // btnSin
     //
     this.btnSin.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnSin.Location = new System.Drawing.Point(0, 0);
     this.btnSin.Name = "btnSin";
     this.btnSin.Size = new System.Drawing.Size(45, 25);
     this.btnSin.TabIndex = 70;
     this.btnSin.Tag = "sin";
     this.btnSin.Text = "sin";
     this.toolTip1.SetToolTip(this.btnSin, "正弦\r\n例:\r\nsin(90度)\r\nsin(2pi)");
     this.btnSin.UseVisualStyleBackColor = true;
     //
     // btnDu
     //
     this.btnDu.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnDu.Location = new System.Drawing.Point(153, 93);
     this.btnDu.Name = "btnDu";
     this.btnDu.Size = new System.Drawing.Size(45, 25);
     this.btnDu.TabIndex = 85;
     this.btnDu.Tag = "度";
     this.btnDu.Text = "度";
     this.toolTip1.SetToolTip(this.btnDu, "角度转弧度,例:sin(30度)\r\n其中\'90度\'表示把角度90转换为弧度数");
     this.btnDu.UseVisualStyleBackColor = true;
     //
     // btnToO
     //
     this.btnToO.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToO.Location = new System.Drawing.Point(307, 31);
     this.btnToO.Name = "btnToO";
     this.btnToO.Size = new System.Drawing.Size(45, 25);
     this.btnToO.TabIndex = 81;
     this.btnToO.Tag = "toO";
     this.btnToO.Text = "toO";
     this.toolTip1.SetToolTip(this.btnToO, "十进制转八进制,例:toO(39)");
     this.btnToO.UseVisualStyleBackColor = true;
     //
     // btnA
     //
     this.btnA.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnA.Location = new System.Drawing.Point(0, 93);
     this.btnA.Name = "btnA";
     this.btnA.Size = new System.Drawing.Size(45, 25);
     this.btnA.TabIndex = 79;
     this.btnA.Tag = "A";
     this.btnA.Text = "A";
     this.toolTip1.SetToolTip(this.btnA, "十六进制A");
     this.btnA.UseVisualStyleBackColor = true;
     //
     // btnDms
     //
     this.btnDms.Location = new System.Drawing.Point(307, 124);
     this.btnDms.Name = "btnDms";
     this.btnDms.Size = new System.Drawing.Size(45, 25);
     this.btnDms.TabIndex = 103;
     this.btnDms.Tag = "dms";
     this.btnDms.Text = "dms";
     this.toolTip1.SetToolTip(this.btnDms, "度分秒转小数形式,例:dms(30,35,59)\r\n小数形式转度分秒,例:dms(30.56)");
     this.btnDms.UseVisualStyleBackColor = true;
     //
     // btn_E
     //
     this.btn_E.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn_E.Location = new System.Drawing.Point(51, 124);
     this.btn_E.Name = "btn_E";
     this.btn_E.Size = new System.Drawing.Size(45, 25);
     this.btn_E.TabIndex = 102;
     this.btn_E.Tag = "E";
     this.btn_E.Text = "E";
     this.toolTip1.SetToolTip(this.btn_E, "十六进制E");
     this.btn_E.UseVisualStyleBackColor = true;
     //
     // btnS
     //
     this.btnS.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnS.Location = new System.Drawing.Point(256, 124);
     this.btnS.Name = "btnS";
     this.btnS.Size = new System.Drawing.Size(45, 25);
     this.btnS.TabIndex = 101;
     this.btnS.Tag = "Mod";
     this.btnS.Text = "Mod";
     this.toolTip1.SetToolTip(this.btnS, "取余,例:6Mod4");
     this.btnS.UseVisualStyleBackColor = true;
     //
     // btnAverage
     //
     this.btnAverage.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnAverage.Location = new System.Drawing.Point(204, 124);
     this.btnAverage.Name = "btnAverage";
     this.btnAverage.Size = new System.Drawing.Size(45, 25);
     this.btnAverage.TabIndex = 100;
     this.btnAverage.Tag = "avg";
     this.btnAverage.Text = "avg";
     this.toolTip1.SetToolTip(this.btnAverage, "求平均,例:avg(-8,6,7,5,8)");
     this.btnAverage.UseVisualStyleBackColor = true;
     //
     // btnF
     //
     this.btnF.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnF.Location = new System.Drawing.Point(102, 124);
     this.btnF.Name = "btnF";
     this.btnF.Size = new System.Drawing.Size(45, 25);
     this.btnF.TabIndex = 99;
     this.btnF.Tag = "F";
     this.btnF.Text = "F";
     this.toolTip1.SetToolTip(this.btnF, "十六进制F");
     this.btnF.UseVisualStyleBackColor = true;
     //
     // btnToDegree
     //
     this.btnToDegree.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnToDegree.Location = new System.Drawing.Point(153, 124);
     this.btnToDegree.Name = "btnToDegree";
     this.btnToDegree.Size = new System.Drawing.Size(45, 25);
     this.btnToDegree.TabIndex = 98;
     this.btnToDegree.Tag = "toDegree";
     this.btnToDegree.Text = "toDgr";
     this.toolTip1.SetToolTip(this.btnToDegree, "弧度转角度,例:toDegree(3.14)");
     this.btnToDegree.UseVisualStyleBackColor = true;
     //
     // btnD
     //
     this.btnD.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btnD.Location = new System.Drawing.Point(0, 124);
     this.btnD.Name = "btnD";
     this.btnD.Size = new System.Drawing.Size(45, 25);
     this.btnD.TabIndex = 97;
     this.btnD.Tag = "D";
     this.btnD.Text = "D";
     this.toolTip1.SetToolTip(this.btnD, "十六进制D");
     this.btnD.UseVisualStyleBackColor = true;
     //
     // btn0
     //
     this.btn0.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn0.Location = new System.Drawing.Point(0, 153);
     this.btn0.Name = "btn0";
     this.btn0.Size = new System.Drawing.Size(45, 45);
     this.btn0.TabIndex = 51;
     this.btn0.Tag = "0|_0";
     this.btn0.Text = "0";
     this.btn0.UseVisualStyleBackColor = true;
     //
     // btn3
     //
     this.btn3.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn3.Location = new System.Drawing.Point(102, 102);
     this.btn3.Name = "btn3";
     this.btn3.Size = new System.Drawing.Size(45, 45);
     this.btn3.TabIndex = 50;
     this.btn3.Tag = "3|_3";
     this.btn3.Text = "3";
     this.btn3.UseVisualStyleBackColor = true;
     //
     // btn2
     //
     this.btn2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn2.Location = new System.Drawing.Point(51, 102);
     this.btn2.Name = "btn2";
     this.btn2.Size = new System.Drawing.Size(45, 45);
     this.btn2.TabIndex = 49;
     this.btn2.Tag = "2|_2";
     this.btn2.Text = "2";
     this.btn2.UseVisualStyleBackColor = true;
     //
     // btn1
     //
     this.btn1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn1.Location = new System.Drawing.Point(0, 102);
     this.btn1.Name = "btn1";
     this.btn1.Size = new System.Drawing.Size(45, 45);
     this.btn1.TabIndex = 48;
     this.btn1.Tag = "1|_1";
     this.btn1.Text = "1";
     this.btn1.UseVisualStyleBackColor = true;
     //
     // btn6
     //
     this.btn6.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn6.Location = new System.Drawing.Point(102, 51);
     this.btn6.Name = "btn6";
     this.btn6.Size = new System.Drawing.Size(45, 45);
     this.btn6.TabIndex = 47;
     this.btn6.Tag = "6|_6";
     this.btn6.Text = "6";
     this.btn6.UseVisualStyleBackColor = true;
     //
     // btn5
     //
     this.btn5.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn5.Location = new System.Drawing.Point(51, 51);
     this.btn5.Name = "btn5";
     this.btn5.Size = new System.Drawing.Size(45, 45);
     this.btn5.TabIndex = 46;
     this.btn5.Tag = "5|_5";
     this.btn5.Text = "5";
     this.btn5.UseVisualStyleBackColor = true;
     //
     // btn4
     //
     this.btn4.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn4.Location = new System.Drawing.Point(0, 51);
     this.btn4.Name = "btn4";
     this.btn4.Size = new System.Drawing.Size(45, 45);
     this.btn4.TabIndex = 45;
     this.btn4.Tag = "4|_4";
     this.btn4.Text = "4";
     this.btn4.UseVisualStyleBackColor = true;
     //
     // btn9
     //
     this.btn9.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn9.Location = new System.Drawing.Point(102, 0);
     this.btn9.Name = "btn9";
     this.btn9.Size = new System.Drawing.Size(45, 45);
     this.btn9.TabIndex = 44;
     this.btn9.Tag = "9|_9";
     this.btn9.Text = "9";
     this.btn9.UseVisualStyleBackColor = true;
     //
     // btn8
     //
     this.btn8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn8.Location = new System.Drawing.Point(51, 0);
     this.btn8.Name = "btn8";
     this.btn8.Size = new System.Drawing.Size(45, 45);
     this.btn8.TabIndex = 43;
     this.btn8.Tag = "8|_8";
     this.btn8.Text = "8";
     this.btn8.UseVisualStyleBackColor = true;
     //
     // btn7
     //
     this.btn7.ForeColor = System.Drawing.SystemColors.ControlText;
     this.btn7.Location = new System.Drawing.Point(0, 0);
     this.btn7.Name = "btn7";
     this.btn7.Size = new System.Drawing.Size(45, 45);
     this.btn7.TabIndex = 42;
     this.btn7.Tag = "7|_7";
     this.btn7.Text = "7";
     this.btn7.UseVisualStyleBackColor = true;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.帮助ToolStripMenuItem,
     this.科学型ToolStripMenuItem,
     this.科学计数法ToolStripMenuItem,
     this.双括号ToolStripMenuItem,
     this.移动光标ToolStripMenuItem,
     this.功能ToolStripMenuItem,
     this.语音ToolStripMenuItem,
     this.输入ToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(376, 24);
     this.menuStrip1.TabIndex = 13;
     this.menuStrip1.Text = "menuStrip1";
     //
     // 帮助ToolStripMenuItem
     //
     this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.帮助ToolStripMenuItem1,
     this.注册ToolStripMenuItem,
     this.关于ToolStripMenuItem});
     this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
     this.帮助ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.帮助ToolStripMenuItem.Text = "帮助";
     //
     // 帮助ToolStripMenuItem1
     //
     this.帮助ToolStripMenuItem1.Name = "帮助ToolStripMenuItem1";
     this.帮助ToolStripMenuItem1.Size = new System.Drawing.Size(94, 22);
     this.帮助ToolStripMenuItem1.Text = "帮助";
     this.帮助ToolStripMenuItem1.Click += new System.EventHandler(this.帮助ToolStripMenuItem1_Click);
     //
     // 注册ToolStripMenuItem
     //
     this.注册ToolStripMenuItem.Name = "注册ToolStripMenuItem";
     this.注册ToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.注册ToolStripMenuItem.Text = "注册";
     this.注册ToolStripMenuItem.Click += new System.EventHandler(this.注册ToolStripMenuItem_Click);
     //
     // 关于ToolStripMenuItem
     //
     this.关于ToolStripMenuItem.Name = "关于ToolStripMenuItem";
     this.关于ToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
     this.关于ToolStripMenuItem.Text = "关于";
     this.关于ToolStripMenuItem.Click += new System.EventHandler(this.关于ToolStripMenuItem_Click);
     //
     // 科学型ToolStripMenuItem
     //
     this.科学型ToolStripMenuItem.Name = "科学型ToolStripMenuItem";
     this.科学型ToolStripMenuItem.Size = new System.Drawing.Size(53, 20);
     this.科学型ToolStripMenuItem.Text = "科学型";
     this.科学型ToolStripMenuItem.Click += new System.EventHandler(this.科学型ToolStripMenuItem_Click);
     //
     // 科学计数法ToolStripMenuItem
     //
     this.科学计数法ToolStripMenuItem.Name = "科学计数法ToolStripMenuItem";
     this.科学计数法ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.科学计数法ToolStripMenuItem.Text = "F-E";
     this.科学计数法ToolStripMenuItem.ToolTipText = "将计算结果转换为科学计数法表示";
     this.科学计数法ToolStripMenuItem.Click += new System.EventHandler(this.科学计数法ToolStripMenuItem_Click);
     //
     // 双括号ToolStripMenuItem
     //
     this.双括号ToolStripMenuItem.Name = "双括号ToolStripMenuItem";
     this.双括号ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.双括号ToolStripMenuItem.Text = "( )";
     this.双括号ToolStripMenuItem.Click += new System.EventHandler(this.双括号ToolStripMenuItem_Click);
     //
     // 移动光标ToolStripMenuItem
     //
     this.移动光标ToolStripMenuItem.Name = "移动光标ToolStripMenuItem";
     this.移动光标ToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
     this.移动光标ToolStripMenuItem.Text = "|←";
     this.移动光标ToolStripMenuItem.Click += new System.EventHandler(this.移动光标ToolStripMenuItem_Click);
     //
     // 功能ToolStripMenuItem
     //
     this.功能ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.复制计算结果ToolStripMenuItem,
     this.获取剪切板内容ToolStripMenuItem,
     this.toolStripSeparator4,
     this.存储计算公式ToolStripMenuItem,
     this.存储函数ToolStripMenuItem,
     this.toolStripSeparator5,
     this.人民币大写ToolStripMenuItem,
     this.人民币阿拉伯数字形式ToolStripMenuItem,
     this.toolStripSeparator10,
     this.单步计算ToolStripMenuItem});
     this.功能ToolStripMenuItem.Name = "功能ToolStripMenuItem";
     this.功能ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.功能ToolStripMenuItem.Text = "功能";
     //
     // 复制计算结果ToolStripMenuItem
     //
     this.复制计算结果ToolStripMenuItem.Name = "复制计算结果ToolStripMenuItem";
     this.复制计算结果ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.复制计算结果ToolStripMenuItem.Text = "复制计算结果";
     this.复制计算结果ToolStripMenuItem.ToolTipText = "复制计算结果到剪切板";
     this.复制计算结果ToolStripMenuItem.Click += new System.EventHandler(this.复制计算结果ToolStripMenuItem_Click);
     //
     // 获取剪切板内容ToolStripMenuItem
     //
     this.获取剪切板内容ToolStripMenuItem.Name = "获取剪切板内容ToolStripMenuItem";
     this.获取剪切板内容ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.获取剪切板内容ToolStripMenuItem.Text = "粘贴剪切板内容";
     this.获取剪切板内容ToolStripMenuItem.ToolTipText = "粘贴剪切板内容到算式输入框";
     this.获取剪切板内容ToolStripMenuItem.Click += new System.EventHandler(this.获取剪切板内容ToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(187, 6);
     //
     // 存储计算公式ToolStripMenuItem
     //
     this.存储计算公式ToolStripMenuItem.Name = "存储计算公式ToolStripMenuItem";
     this.存储计算公式ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.存储计算公式ToolStripMenuItem.Text = "存储算式";
     this.存储计算公式ToolStripMenuItem.ToolTipText = "存储当前算式";
     this.存储计算公式ToolStripMenuItem.Click += new System.EventHandler(this.存储计算公式ToolStripMenuItem_Click);
     //
     // 存储函数ToolStripMenuItem
     //
     this.存储函数ToolStripMenuItem.Name = "存储函数ToolStripMenuItem";
     this.存储函数ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.存储函数ToolStripMenuItem.Text = "自定义函数";
     this.存储函数ToolStripMenuItem.ToolTipText = "打开函数存储与管理对话框";
     this.存储函数ToolStripMenuItem.Click += new System.EventHandler(this.存储函数ToolStripMenuItem_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(187, 6);
     //
     // 人民币大写ToolStripMenuItem
     //
     this.人民币大写ToolStripMenuItem.Name = "人民币大写ToolStripMenuItem";
     this.人民币大写ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.人民币大写ToolStripMenuItem.Text = "人民币大写形式";
     this.人民币大写ToolStripMenuItem.ToolTipText = "将计算结果转换为人民币大写形式";
     this.人民币大写ToolStripMenuItem.Click += new System.EventHandler(this.人民币大写ToolStripMenuItem_Click);
     //
     // 人民币阿拉伯数字形式ToolStripMenuItem
     //
     this.人民币阿拉伯数字形式ToolStripMenuItem.Name = "人民币阿拉伯数字形式ToolStripMenuItem";
     this.人民币阿拉伯数字形式ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.人民币阿拉伯数字形式ToolStripMenuItem.Text = "人民币阿拉伯数字形式";
     this.人民币阿拉伯数字形式ToolStripMenuItem.ToolTipText = "将计算结果转换为人民币阿拉伯数字形式";
     this.人民币阿拉伯数字形式ToolStripMenuItem.Click += new System.EventHandler(this.人民币阿拉伯数字形式ToolStripMenuItem_Click);
     //
     // toolStripSeparator10
     //
     this.toolStripSeparator10.Name = "toolStripSeparator10";
     this.toolStripSeparator10.Size = new System.Drawing.Size(187, 6);
     //
     // 单步计算ToolStripMenuItem
     //
     this.单步计算ToolStripMenuItem.CheckOnClick = true;
     this.单步计算ToolStripMenuItem.Name = "单步计算ToolStripMenuItem";
     this.单步计算ToolStripMenuItem.Size = new System.Drawing.Size(190, 22);
     this.单步计算ToolStripMenuItem.Text = "单步计算";
     this.单步计算ToolStripMenuItem.ToolTipText = "单步计算";
     //
     // 语音ToolStripMenuItem
     //
     this.语音ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.语音ToolStripMenuItem1,
     this.自然读音ToolStripMenuItem});
     this.语音ToolStripMenuItem.Name = "语音ToolStripMenuItem";
     this.语音ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.语音ToolStripMenuItem.Text = "语音";
     //
     // 语音ToolStripMenuItem1
     //
     this.语音ToolStripMenuItem1.Name = "语音ToolStripMenuItem1";
     this.语音ToolStripMenuItem1.Size = new System.Drawing.Size(118, 22);
     this.语音ToolStripMenuItem1.Text = "发音";
     this.语音ToolStripMenuItem1.Click += new System.EventHandler(this.语音ToolStripMenuItem1_Click);
     //
     // 自然读音ToolStripMenuItem
     //
     this.自然读音ToolStripMenuItem.Name = "自然读音ToolStripMenuItem";
     this.自然读音ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.自然读音ToolStripMenuItem.Text = "自然读音";
     this.自然读音ToolStripMenuItem.ToolTipText = "例:111读作一百一十一";
     this.自然读音ToolStripMenuItem.Click += new System.EventHandler(this.自然读音ToolStripMenuItem_Click);
     //
     // 输入ToolStripMenuItem
     //
     this.输入ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.求和ToolStripMenuItem,
     this.求平均ToolStripMenuItem,
     this.运算符ToolStripMenuItem,
     this.变量ToolStripMenuItem,
     this.算式ToolStripMenuItem,
     this.单位转换ToolStripMenuItem});
     this.输入ToolStripMenuItem.Name = "输入ToolStripMenuItem";
     this.输入ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
     this.输入ToolStripMenuItem.Text = "输入";
     //
     // 求和ToolStripMenuItem
     //
     this.求和ToolStripMenuItem.Name = "求和ToolStripMenuItem";
     this.求和ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.求和ToolStripMenuItem.Text = "求和";
     this.求和ToolStripMenuItem.Click += new System.EventHandler(this.求和ToolStripMenuItem_Click);
     //
     // 求平均ToolStripMenuItem
     //
     this.求平均ToolStripMenuItem.Name = "求平均ToolStripMenuItem";
     this.求平均ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.求平均ToolStripMenuItem.Text = "求平均";
     this.求平均ToolStripMenuItem.Click += new System.EventHandler(this.求平均ToolStripMenuItem_Click);
     //
     // 运算符ToolStripMenuItem
     //
     this.运算符ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.andToolStripMenuItem,
     this.orToolStripMenuItem,
     this.xorToolStripMenuItem,
     this.notToolStripMenuItem,
     this.toolStripSeparator8,
     this.sgnToolStripMenuItem,
     this.intToolStripMenuItem,
     this.absToolStripMenuItem,
     this.toolStripSeparator9,
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripSeparator6,
     this.toolStripMenuItem7});
     this.运算符ToolStripMenuItem.Name = "运算符ToolStripMenuItem";
     this.运算符ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.运算符ToolStripMenuItem.Text = "运算符";
     //
     // andToolStripMenuItem
     //
     this.andToolStripMenuItem.Name = "andToolStripMenuItem";
     this.andToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.andToolStripMenuItem.Text = "And";
     this.andToolStripMenuItem.ToolTipText = "按位与";
     this.andToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // orToolStripMenuItem
     //
     this.orToolStripMenuItem.Name = "orToolStripMenuItem";
     this.orToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.orToolStripMenuItem.Text = "Or";
     this.orToolStripMenuItem.ToolTipText = "按位或";
     this.orToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // xorToolStripMenuItem
     //
     this.xorToolStripMenuItem.Name = "xorToolStripMenuItem";
     this.xorToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.xorToolStripMenuItem.Text = "Xor";
     this.xorToolStripMenuItem.ToolTipText = "按位异或";
     this.xorToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // notToolStripMenuItem
     //
     this.notToolStripMenuItem.Name = "notToolStripMenuItem";
     this.notToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.notToolStripMenuItem.Text = "Not";
     this.notToolStripMenuItem.ToolTipText = "按位取反";
     this.notToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(85, 6);
     //
     // sgnToolStripMenuItem
     //
     this.sgnToolStripMenuItem.Name = "sgnToolStripMenuItem";
     this.sgnToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.sgnToolStripMenuItem.Text = "Sgn";
     this.sgnToolStripMenuItem.ToolTipText = "取数值的符号";
     this.sgnToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // intToolStripMenuItem
     //
     this.intToolStripMenuItem.Name = "intToolStripMenuItem";
     this.intToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.intToolStripMenuItem.Text = "Int";
     this.intToolStripMenuItem.ToolTipText = "取整";
     this.intToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // absToolStripMenuItem
     //
     this.absToolStripMenuItem.Name = "absToolStripMenuItem";
     this.absToolStripMenuItem.Size = new System.Drawing.Size(88, 22);
     this.absToolStripMenuItem.Text = "Abs";
     this.absToolStripMenuItem.ToolTipText = "取绝对值";
     this.absToolStripMenuItem.Click += new System.EventHandler(this.OpeMenuItem_Click2);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem2.Text = "<<";
     this.toolStripMenuItem2.ToolTipText = "按左位移";
     this.toolStripMenuItem2.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem3.Text = ">>";
     this.toolStripMenuItem3.ToolTipText = "按右位移";
     this.toolStripMenuItem3.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(85, 6);
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(88, 22);
     this.toolStripMenuItem7.Text = "=";
     this.toolStripMenuItem7.ToolTipText = "等于号,用于给变量赋值";
     this.toolStripMenuItem7.Click += new System.EventHandler(this.OpeMenuItem_Click);
     //
     // 变量ToolStripMenuItem
     //
     this.变量ToolStripMenuItem.Name = "变量ToolStripMenuItem";
     this.变量ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.变量ToolStripMenuItem.Text = "变量";
     this.变量ToolStripMenuItem.ToolTipText = "存储变量:例ax=-5*sqrt(3)\r\n使用变量:例3+2*ax";
     //
     // 算式ToolStripMenuItem
     //
     this.算式ToolStripMenuItem.Name = "算式ToolStripMenuItem";
     this.算式ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.算式ToolStripMenuItem.Text = "算式";
     //
     // 单位转换ToolStripMenuItem
     //
     this.单位转换ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.英里公里ToolStripMenuItem,
     this.海里公里ToolStripMenuItem,
     this.光年公里ToolStripMenuItem,
     this.英寸厘米ToolStripMenuItem,
     this.toolStripSeparator1,
     this.平方公里亩ToolStripMenuItem,
     this.亩平方公里ToolStripMenuItem,
     this.亩平方米ToolStripMenuItem,
     this.toolStripSeparator3,
     this.桶立方米ToolStripMenuItem,
     this.toolStripSeparator2,
     this.千米每小时米每秒ToolStripMenuItem,
     this.米每秒千米每小时ToolStripMenuItem,
     this.马赫米每秒ToolStripMenuItem});
     this.单位转换ToolStripMenuItem.Name = "单位转换ToolStripMenuItem";
     this.单位转换ToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     this.单位转换ToolStripMenuItem.Text = "单位换算";
     //
     // 英里公里ToolStripMenuItem
     //
     this.英里公里ToolStripMenuItem.Name = "英里公里ToolStripMenuItem";
     this.英里公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.英里公里ToolStripMenuItem.Text = "英里->公里";
     this.英里公里ToolStripMenuItem.ToolTipText = "例:\r\nconv(英里,公里,1)\r\nconv(英里,公里,1)*5";
     this.英里公里ToolStripMenuItem.Click += new System.EventHandler(this.英里公里ToolStripMenuItem_Click);
     //
     // 海里公里ToolStripMenuItem
     //
     this.海里公里ToolStripMenuItem.Name = "海里公里ToolStripMenuItem";
     this.海里公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.海里公里ToolStripMenuItem.Text = "海里->公里";
     this.海里公里ToolStripMenuItem.Click += new System.EventHandler(this.海里公里ToolStripMenuItem_Click);
     //
     // 光年公里ToolStripMenuItem
     //
     this.光年公里ToolStripMenuItem.Name = "光年公里ToolStripMenuItem";
     this.光年公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.光年公里ToolStripMenuItem.Text = "光年->公里";
     this.光年公里ToolStripMenuItem.Click += new System.EventHandler(this.光年公里ToolStripMenuItem_Click);
     //
     // 英寸厘米ToolStripMenuItem
     //
     this.英寸厘米ToolStripMenuItem.Name = "英寸厘米ToolStripMenuItem";
     this.英寸厘米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.英寸厘米ToolStripMenuItem.Text = "英寸->厘米";
     this.英寸厘米ToolStripMenuItem.Click += new System.EventHandler(this.英寸厘米ToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(175, 6);
     //
     // 平方公里亩ToolStripMenuItem
     //
     this.平方公里亩ToolStripMenuItem.Name = "平方公里亩ToolStripMenuItem";
     this.平方公里亩ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.平方公里亩ToolStripMenuItem.Text = "平方公里->亩";
     this.平方公里亩ToolStripMenuItem.Click += new System.EventHandler(this.平方公里亩ToolStripMenuItem_Click);
     //
     // 亩平方公里ToolStripMenuItem
     //
     this.亩平方公里ToolStripMenuItem.Name = "亩平方公里ToolStripMenuItem";
     this.亩平方公里ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.亩平方公里ToolStripMenuItem.Text = "亩->平方公里";
     this.亩平方公里ToolStripMenuItem.Click += new System.EventHandler(this.亩平方公里ToolStripMenuItem_Click);
     //
     // 亩平方米ToolStripMenuItem
     //
     this.亩平方米ToolStripMenuItem.Name = "亩平方米ToolStripMenuItem";
     this.亩平方米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.亩平方米ToolStripMenuItem.Text = "亩->平方米";
     this.亩平方米ToolStripMenuItem.Click += new System.EventHandler(this.亩平方米ToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(175, 6);
     //
     // 桶立方米ToolStripMenuItem
     //
     this.桶立方米ToolStripMenuItem.Name = "桶立方米ToolStripMenuItem";
     this.桶立方米ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.桶立方米ToolStripMenuItem.Text = "桶->立方米";
     this.桶立方米ToolStripMenuItem.ToolTipText = "桶:原油数量单位";
     this.桶立方米ToolStripMenuItem.Click += new System.EventHandler(this.桶立方米ToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(175, 6);
     //
     // 千米每小时米每秒ToolStripMenuItem
     //
     this.千米每小时米每秒ToolStripMenuItem.Name = "千米每小时米每秒ToolStripMenuItem";
     this.千米每小时米每秒ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.千米每小时米每秒ToolStripMenuItem.Text = "千米每小时->米每秒";
     this.千米每小时米每秒ToolStripMenuItem.Click += new System.EventHandler(this.千米每小时米每秒ToolStripMenuItem_Click);
     //
     // 米每秒千米每小时ToolStripMenuItem
     //
     this.米每秒千米每小时ToolStripMenuItem.Name = "米每秒千米每小时ToolStripMenuItem";
     this.米每秒千米每小时ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.米每秒千米每小时ToolStripMenuItem.Text = "米每秒->千米每小时";
     this.米每秒千米每小时ToolStripMenuItem.Click += new System.EventHandler(this.米每秒千米每小时ToolStripMenuItem_Click);
     //
     // 马赫米每秒ToolStripMenuItem
     //
     this.马赫米每秒ToolStripMenuItem.Name = "马赫米每秒ToolStripMenuItem";
     this.马赫米每秒ToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.马赫米每秒ToolStripMenuItem.Text = "马赫->米每秒";
     this.马赫米每秒ToolStripMenuItem.ToolTipText = "马赫:速度单位";
     this.马赫米每秒ToolStripMenuItem.Click += new System.EventHandler(this.马赫米每秒ToolStripMenuItem_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnbtnReciprocal);
     this.panel1.Controls.Add(this.btnANS);
     this.panel1.Controls.Add(this.btnE);
     this.panel1.Controls.Add(this.btnPow);
     this.panel1.Controls.Add(this.btnPI);
     this.panel1.Controls.Add(this.btnPercent);
     this.panel1.Controls.Add(this.btnSqrt);
     this.panel1.Controls.Add(this.btnEqual);
     this.panel1.Controls.Add(this.btnPoint);
     this.panel1.Controls.Add(this.btnC);
     this.panel1.Controls.Add(this.btnBackspace);
     this.panel1.Controls.Add(this.btnDivide);
     this.panel1.Controls.Add(this.btnMultiply);
     this.panel1.Controls.Add(this.btnMinus);
     this.panel1.Controls.Add(this.btnPlus);
     this.panel1.Controls.Add(this.btnPareR);
     this.panel1.Controls.Add(this.btnPareL);
     this.panel1.Controls.Add(this.btn0);
     this.panel1.Controls.Add(this.btn3);
     this.panel1.Controls.Add(this.btn2);
     this.panel1.Controls.Add(this.btn1);
     this.panel1.Controls.Add(this.btn6);
     this.panel1.Controls.Add(this.btn5);
     this.panel1.Controls.Add(this.btn4);
     this.panel1.Controls.Add(this.btn9);
     this.panel1.Controls.Add(this.btn8);
     this.panel1.Controls.Add(this.btn7);
     this.panel1.Controls.Add(this.btnComma);
     this.panel1.Location = new System.Drawing.Point(12, 118);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(352, 199);
     this.panel1.TabIndex = 69;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.btnDms);
     this.panel2.Controls.Add(this.btn_E);
     this.panel2.Controls.Add(this.btnS);
     this.panel2.Controls.Add(this.btnAverage);
     this.panel2.Controls.Add(this.btnF);
     this.panel2.Controls.Add(this.btnToDegree);
     this.panel2.Controls.Add(this.btnD);
     this.panel2.Controls.Add(this.btn_e_);
     this.panel2.Controls.Add(this.btnBIN);
     this.panel2.Controls.Add(this.btnB);
     this.panel2.Controls.Add(this.btnHEX);
     this.panel2.Controls.Add(this.btnToB);
     this.panel2.Controls.Add(this.btnToH);
     this.panel2.Controls.Add(this.btnMod);
     this.panel2.Controls.Add(this.btnSum);
     this.panel2.Controls.Add(this.bnt_C);
     this.panel2.Controls.Add(this.btnnCr);
     this.panel2.Controls.Add(this.btnnAr);
     this.panel2.Controls.Add(this.btnDu);
     this.panel2.Controls.Add(this.btnExp);
     this.panel2.Controls.Add(this.btnLog);
     this.panel2.Controls.Add(this.btnLn);
     this.panel2.Controls.Add(this.btnToO);
     this.panel2.Controls.Add(this.btnOCT);
     this.panel2.Controls.Add(this.btnA);
     this.panel2.Controls.Add(this.btnTanh);
     this.panel2.Controls.Add(this.btnCosh);
     this.panel2.Controls.Add(this.btnSinh);
     this.panel2.Controls.Add(this.btnAtan);
     this.panel2.Controls.Add(this.btnAcos);
     this.panel2.Controls.Add(this.btnAsin);
     this.panel2.Controls.Add(this.btnTan);
     this.panel2.Controls.Add(this.btnCos);
     this.panel2.Controls.Add(this.btnSin);
     this.panel2.Controls.Add(this.btnFactorial);
     this.panel2.Location = new System.Drawing.Point(12, 363);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(352, 150);
     this.panel2.TabIndex = 70;
     //
     // notifyIcon1
     //
     this.notifyIcon1.ContextMenuStrip = this.NotifyMenu;
     this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
     this.notifyIcon1.Text = "计算器";
     this.notifyIcon1.Visible = true;
     this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
     //
     // NotifyMenu
     //
     this.NotifyMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.显示计算器ToolStripMenuItem,
     this.关闭计算器ToolStripMenuItem});
     this.NotifyMenu.Name = "NotifyMenu";
     this.NotifyMenu.Size = new System.Drawing.Size(131, 48);
     //
     // 显示计算器ToolStripMenuItem
     //
     this.显示计算器ToolStripMenuItem.Name = "显示计算器ToolStripMenuItem";
     this.显示计算器ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.显示计算器ToolStripMenuItem.Text = "显示计算器";
     this.显示计算器ToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.显示计算器ToolStripMenuItem_MouseDown);
     //
     // 关闭计算器ToolStripMenuItem
     //
     this.关闭计算器ToolStripMenuItem.Name = "关闭计算器ToolStripMenuItem";
     this.关闭计算器ToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
     this.关闭计算器ToolStripMenuItem.Text = "关闭计算器";
     this.关闭计算器ToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.关闭计算器ToolStripMenuItem_MouseDown);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(376, 525);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.txtExp);
     this.Controls.Add(this.txtResult);
     this.Controls.Add(this.menuStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.MaximizeBox = false;
     this.Name = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "计算器";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.menuRichTextBox.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.NotifyMenu.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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(GEToolStrip));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.navigationTextBoxStringCollection = new System.Windows.Forms.AutoCompleteStringCollection();
            this.dropDownSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.screenGrabButton = new System.Windows.Forms.ToolStripButton();
            this.viewInMapsButton = new System.Windows.Forms.ToolStripButton();
            this.navigationTextBox = new System.Windows.Forms.ToolStripTextBox();
            this.submitButton = new System.Windows.Forms.ToolStripButton();
            this.refreshButton = new System.Windows.Forms.ToolStripButton();
            this.navigationSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.viewDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.skyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sunMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.historyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.optionsDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.imperialUnitsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.controlsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.statusBarMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.gridMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.overviewMapMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.scaleLegendMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.atmosphereMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fadeInOutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mouseNavigationMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.layersDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.bordersMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.buildingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.buildingsGreyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.roadsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.terrainMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.treesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.imageryDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
            this.earthMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.marsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.moonMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.languageSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.languageComboBox = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripItemAlignment = System.Windows.Forms.ToolStripItemAlignment.Left;
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "go");
            this.imageList1.Images.SetKeyName(1, "refresh");
            this.imageList1.Images.SetKeyName(2, "jpg");
            this.imageList1.Images.SetKeyName(3, "map");
            // 
            // dropDownSeparator
            // 
            this.dropDownSeparator.Name = "dropDownSeparator";
            this.dropDownSeparator.Size = new System.Drawing.Size(6, 6);
            // 
            // screenGrabButton
            // 
            this.screenGrabButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.screenGrabButton.ImageKey = "jpg";
            this.screenGrabButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.screenGrabButton.Name = "screenGrabButton";
            this.screenGrabButton.Size = new System.Drawing.Size(23, 20);
            this.screenGrabButton.Tag = "SCREENGRAB";
            this.screenGrabButton.Text = "PrtScr";
            this.screenGrabButton.ToolTipText = "Screen Grab";
            this.screenGrabButton.Click += new System.EventHandler(this.ScreenGrabButton_Click);
            // 
            // viewInMapsButton
            // 
            this.viewInMapsButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.viewInMapsButton.ImageKey = "map";
            this.viewInMapsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.viewInMapsButton.Name = "viewInMapsButton";
            this.viewInMapsButton.Size = new System.Drawing.Size(23, 20);
            this.viewInMapsButton.Tag = "VIEWMAP";
            this.viewInMapsButton.Text = "View Map";
            this.viewInMapsButton.ToolTipText = "View in Google Maps";
            this.viewInMapsButton.Click += new System.EventHandler(this.ViewInMapsButton_Click);
            // 
            // navigationTextBox
            // 
            this.navigationTextBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
            this.navigationTextBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
            this.navigationTextBox.AutoCompleteCustomSource = this.navigationTextBoxStringCollection;
            this.navigationTextBox.AutoSize = false;
            this.navigationTextBox.Name = "navigationTextBox";
            this.navigationTextBox.Size = new System.Drawing.Size(100, 21);
            this.navigationTextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(this.NavigationTextBox_KeyUp);
            // 
            // submitButton
            // 
            this.submitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.submitButton.ImageKey = "go";
            this.submitButton.Name = "submitButton";
            this.submitButton.Size = new System.Drawing.Size(23, 20);
            this.submitButton.ToolTipText = "Go!";
            this.submitButton.Click += new System.EventHandler(this.NavigationButton_Click);
            // 
            // refreshButton
            // 
            this.refreshButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.refreshButton.ImageKey = "refresh";
            this.refreshButton.Name = "refreshButton";
            this.refreshButton.Size = new System.Drawing.Size(23, 20);
            this.refreshButton.Tag = "REFRESH";
            this.refreshButton.Text = "refresh";
            this.refreshButton.ToolTipText = "Refresh the plugin";
            this.refreshButton.Click += new System.EventHandler(this.RefreshButton_Click);
            // 
            // navigationSeparator
            // 
            this.navigationSeparator.Name = "navigationSeparator";
            this.navigationSeparator.Size = new System.Drawing.Size(6, 6);
            // 
            // viewDropDownButton
            // 
            this.viewDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.viewDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.skyMenuItem,
            this.sunMenuItem,
            this.historyMenuItem});
            this.viewDropDownButton.Name = "viewDropDownButton";
            this.viewDropDownButton.Size = new System.Drawing.Size(42, 17);
            this.viewDropDownButton.Tag = "VIEW";
            this.viewDropDownButton.Text = "View";
            this.viewDropDownButton.ToolTipText = "Change the View settings";
            // 
            // skyMenuItem
            // 
            this.skyMenuItem.CheckOnClick = true;
            this.skyMenuItem.Name = "skyMenuItem";
            this.skyMenuItem.Size = new System.Drawing.Size(170, 22);
            this.skyMenuItem.Tag = "SKY";
            this.skyMenuItem.Text = "Sky Mode";
            this.skyMenuItem.ToolTipText = "Toggle Sky and Earth mode";
            this.skyMenuItem.Click += new System.EventHandler(this.ViewItem_Clicked);
            // 
            // sunMenuItem
            // 
            this.sunMenuItem.CheckOnClick = true;
            this.sunMenuItem.Name = "sunMenuItem";
            this.sunMenuItem.Size = new System.Drawing.Size(170, 22);
            this.sunMenuItem.Tag = "SUN";
            this.sunMenuItem.Text = "Sun";
            this.sunMenuItem.ToolTipText = "Toggle the sun visibility";
            this.sunMenuItem.Click += new System.EventHandler(this.ViewItem_Clicked);
            // 
            // historyMenuItem
            // 
            this.historyMenuItem.CheckOnClick = true;
            this.historyMenuItem.Name = "historyMenuItem";
            this.historyMenuItem.Size = new System.Drawing.Size(170, 22);
            this.historyMenuItem.Tag = "HISTORY";
            this.historyMenuItem.Text = "Historical imagery";
            this.historyMenuItem.ToolTipText = "Toggle the historical imagery";
            this.historyMenuItem.Click += new System.EventHandler(this.ViewItem_Clicked);
            // 
            // optionsDropDownButton
            // 
            this.optionsDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.optionsDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.imperialUnitsMenuItem,
            this.controlsMenuItem,
            this.statusBarMenuItem,
            this.gridMenuItem,
            this.overviewMapMenuItem,
            this.scaleLegendMenuItem,
            this.atmosphereMenuItem,
            this.fadeInOutMenuItem,
            this.mouseNavigationMenuItem});
            this.optionsDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.optionsDropDownButton.Name = "optionsDropDownButton";
            this.optionsDropDownButton.Size = new System.Drawing.Size(57, 17);
            this.optionsDropDownButton.Tag = "OPTIONS";
            this.optionsDropDownButton.Text = "Options";
            this.optionsDropDownButton.ToolTipText = "Toggle the various options";
            // 
            // imperialUnitsMenuItem
            // 
            this.imperialUnitsMenuItem.CheckOnClick = true;
            this.imperialUnitsMenuItem.Name = "imperialUnitsMenuItem";
            this.imperialUnitsMenuItem.Size = new System.Drawing.Size(169, 22);
            this.imperialUnitsMenuItem.Tag = "IMPERIAL";
            this.imperialUnitsMenuItem.Text = "Imperial Units";
            this.imperialUnitsMenuItem.ToolTipText = "Use imperial units for the plugin";
            this.imperialUnitsMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // controlsMenuItem
            // 
            this.controlsMenuItem.CheckOnClick = true;
            this.controlsMenuItem.Name = "controlsMenuItem";
            this.controlsMenuItem.Size = new System.Drawing.Size(169, 22);
            this.controlsMenuItem.Tag = "CONTROLS";
            this.controlsMenuItem.Text = "Controls";
            this.controlsMenuItem.ToolTipText = "Toggle the controls visibility";
            this.controlsMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // statusBarMenuItem
            // 
            this.statusBarMenuItem.CheckOnClick = true;
            this.statusBarMenuItem.Name = "statusBarMenuItem";
            this.statusBarMenuItem.Size = new System.Drawing.Size(169, 22);
            this.statusBarMenuItem.Tag = "STATUS";
            this.statusBarMenuItem.Text = "Status bar";
            this.statusBarMenuItem.ToolTipText = "Toggle the Status bar visibility";
            this.statusBarMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // gridMenuItem
            // 
            this.gridMenuItem.CheckOnClick = true;
            this.gridMenuItem.Name = "gridMenuItem";
            this.gridMenuItem.Size = new System.Drawing.Size(169, 22);
            this.gridMenuItem.Tag = "GRID";
            this.gridMenuItem.Text = "Grid";
            this.gridMenuItem.ToolTipText = "Toggle the Grid visibility";
            this.gridMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // overviewMapMenuItem
            // 
            this.overviewMapMenuItem.CheckOnClick = true;
            this.overviewMapMenuItem.Name = "overviewMapMenuItem";
            this.overviewMapMenuItem.Size = new System.Drawing.Size(169, 22);
            this.overviewMapMenuItem.Tag = "OVERVIEW";
            this.overviewMapMenuItem.Text = "Overview map";
            this.overviewMapMenuItem.ToolTipText = "Toggle the Overview map visibility";
            this.overviewMapMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // scaleLegendMenuItem
            // 
            this.scaleLegendMenuItem.CheckOnClick = true;
            this.scaleLegendMenuItem.Name = "scaleLegendMenuItem";
            this.scaleLegendMenuItem.Size = new System.Drawing.Size(169, 22);
            this.scaleLegendMenuItem.Tag = "SCALE";
            this.scaleLegendMenuItem.Text = "Scale legend";
            this.scaleLegendMenuItem.ToolTipText = "Toggle the Scale legend visibility";
            this.scaleLegendMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // atmosphereMenuItem
            // 
            this.atmosphereMenuItem.Checked = true;
            this.atmosphereMenuItem.CheckOnClick = true;
            this.atmosphereMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.atmosphereMenuItem.Name = "atmosphereMenuItem";
            this.atmosphereMenuItem.Size = new System.Drawing.Size(169, 22);
            this.atmosphereMenuItem.Tag = "ATMOSPHERE";
            this.atmosphereMenuItem.Text = "Atmosphere";
            this.atmosphereMenuItem.ToolTipText = "Toggle the Atmosphere visibility";
            this.atmosphereMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // fadeInOutMenuItem
            // 
            this.fadeInOutMenuItem.Checked = true;
            this.fadeInOutMenuItem.CheckOnClick = true;
            this.fadeInOutMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.fadeInOutMenuItem.Name = "fadeInOutMenuItem";
            this.fadeInOutMenuItem.Size = new System.Drawing.Size(169, 22);
            this.fadeInOutMenuItem.Tag = "FADEINOUT";
            this.fadeInOutMenuItem.Text = "Animate features";
            this.fadeInOutMenuItem.ToolTipText = "Animate new features with a slight change of scale";
            this.fadeInOutMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // mouseNavigationMenuItem
            // 
            this.mouseNavigationMenuItem.Checked = true;
            this.mouseNavigationMenuItem.CheckOnClick = true;
            this.mouseNavigationMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.mouseNavigationMenuItem.Name = "mouseNavigationMenuItem";
            this.mouseNavigationMenuItem.Size = new System.Drawing.Size(169, 22);
            this.mouseNavigationMenuItem.Tag = "MOUSE";
            this.mouseNavigationMenuItem.Text = "Mouse navigation";
            this.mouseNavigationMenuItem.ToolTipText = "Toggle Mouse navigation enabled";
            this.mouseNavigationMenuItem.Click += new System.EventHandler(this.OptionsItem_Clicked);
            // 
            // layersDropDownButton
            // 
            this.layersDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.layersDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bordersMenuItem,
            this.buildingsMenuItem,
            this.buildingsGreyMenuItem,
            this.roadsMenuItem,
            this.terrainMenuItem,
            this.treesMenuItem});
            this.layersDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.layersDropDownButton.Name = "layersDropDownButton";
            this.layersDropDownButton.Size = new System.Drawing.Size(52, 17);
            this.layersDropDownButton.Tag = "LAYERS";
            this.layersDropDownButton.Text = "Layers";
            this.layersDropDownButton.ToolTipText = "Toggle the in-built layers";
            // 
            // bordersMenuItem
            // 
            this.bordersMenuItem.CheckOnClick = true;
            this.bordersMenuItem.Name = "bordersMenuItem";
            this.bordersMenuItem.Size = new System.Drawing.Size(168, 22);
            this.bordersMenuItem.Text = "Borders";
            this.bordersMenuItem.Tag = Layer.Borders;
            this.bordersMenuItem.ToolTipText = "Toggle the Borders layer";
            this.bordersMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // buildingsMenuItem
            // 
            this.buildingsMenuItem.CheckOnClick = true;
            this.buildingsMenuItem.Name = "buildingsMenuItem";
            this.buildingsMenuItem.Size = new System.Drawing.Size(168, 22);
            this.buildingsMenuItem.Text = "Buildings";
            this.buildingsMenuItem.Tag = Layer.Buildings;
            this.buildingsMenuItem.ToolTipText = "Toggle the Low Resolution Buildings layer";
            this.buildingsMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // buildingsGreyMenuItem
            // 
            this.buildingsGreyMenuItem.CheckOnClick = true;
            this.buildingsGreyMenuItem.Name = "buildingsGreyMenuItem";
            this.buildingsGreyMenuItem.Size = new System.Drawing.Size(168, 22);
            this.buildingsGreyMenuItem.Text = "Buildings Low-res";
            this.buildingsGreyMenuItem.Tag = Layer.BuildingsLowRes;
            this.buildingsGreyMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // roadsMenuItem
            // 
            this.roadsMenuItem.CheckOnClick = true;
            this.roadsMenuItem.Name = "roadsMenuItem";
            this.roadsMenuItem.Size = new System.Drawing.Size(168, 22);
            this.roadsMenuItem.Text = "Roads";
            this.roadsMenuItem.Tag = Layer.Roads;
            this.roadsMenuItem.ToolTipText = "Toggle the Roads layer";
            this.roadsMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // terrainMenuItem
            // 
            this.terrainMenuItem.Checked = true;
            this.terrainMenuItem.CheckOnClick = true;
            this.terrainMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.terrainMenuItem.Name = "terrainMenuItem";
            this.terrainMenuItem.Size = new System.Drawing.Size(168, 22);
            this.terrainMenuItem.Text = "Terrain";
            this.terrainMenuItem.Tag = Layer.Terrain;
            this.terrainMenuItem.ToolTipText = "Toggle the Terrain layer";
            this.terrainMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // treesMenuItem
            // 
            this.treesMenuItem.CheckOnClick = true;
            this.treesMenuItem.Name = "treesMenuItem";
            this.treesMenuItem.Size = new System.Drawing.Size(168, 22);
            this.treesMenuItem.Text = "Trees";
            this.treesMenuItem.Tag = Layer.Trees;
            this.treesMenuItem.ToolTipText = "Toggle the Trees layer";
            this.treesMenuItem.Click += new System.EventHandler(this.LayersItem_Clicked);
            // 
            // imageryDropDownButton
            // 
            this.imageryDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.imageryDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.earthMenuItem,
            this.marsMenuItem,
            this.moonMenuItem});
            this.imageryDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.imageryDropDownButton.Name = "imageryDropDownButton";
            this.imageryDropDownButton.Size = new System.Drawing.Size(42, 17);
            this.imageryDropDownButton.Tag = "IMAGERY";
            this.imageryDropDownButton.Text = "Imagery";
            this.imageryDropDownButton.ToolTipText = "Change the Imagery database settings";
            // 
            // earthMenuItem
            // 
            this.earthMenuItem.Checked = true;
            this.earthMenuItem.CheckOnClick = true;
            this.earthMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.earthMenuItem.Enabled = false;
            this.earthMenuItem.Name = "earthMenuItem";
            this.earthMenuItem.Size = new System.Drawing.Size(106, 22);
            this.earthMenuItem.Tag = FC.GEPluginCtrls.ImageryBase.Earth;
            this.earthMenuItem.Text = "Earth";
            this.earthMenuItem.ToolTipText = "Use the Earth imagery";
            this.earthMenuItem.Click += new System.EventHandler(this.ImageryItem_Clicked);
            // 
            // marsMenuItem
            // 
            this.marsMenuItem.CheckOnClick = true;
            this.marsMenuItem.Name = "marsMenuItem";
            this.marsMenuItem.Size = new System.Drawing.Size(106, 22);
            this.marsMenuItem.Tag = FC.GEPluginCtrls.ImageryBase.Mars;
            this.marsMenuItem.Text = "Mars";
            this.marsMenuItem.ToolTipText = "Use the Mars imagery";
            this.marsMenuItem.Click += new System.EventHandler(this.ImageryItem_Clicked);
            // 
            // moonMenuItem
            // 
            this.moonMenuItem.CheckOnClick = true;
            this.moonMenuItem.Name = "moonMenuItem";
            this.moonMenuItem.Size = new System.Drawing.Size(106, 22);
            this.moonMenuItem.Tag = FC.GEPluginCtrls.ImageryBase.Moon;
            this.moonMenuItem.Text = "Moon";
            this.moonMenuItem.ToolTipText = "Use the Moon imagery";
            this.moonMenuItem.Click += new System.EventHandler(this.ImageryItem_Clicked);
            // 
            // languageSeparator
            // 
            this.languageSeparator.Name = "languageSeparator";
            this.languageSeparator.Size = new System.Drawing.Size(6, 6);
            // 
            // languageComboBox
            // 
            this.languageComboBox.DropDownHeight = 250;
            this.languageComboBox.IntegralHeight = false;
            this.languageComboBox.Name = "languageComboBox";
            this.languageComboBox.Size = new System.Drawing.Size(106, 23);
            this.languageComboBox.SelectedIndexChanged += new System.EventHandler(this.LanguageComboBox_SelectedIndexChanged);
            // 
            // GEToolStrip
            // 
            this.ImageList = this.imageList1;
            this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.navigationTextBox,
            this.submitButton,
            this.refreshButton,
            this.navigationSeparator,
            this.viewDropDownButton,
            this.optionsDropDownButton,
            this.layersDropDownButton,
            this.imageryDropDownButton,
            this.dropDownSeparator,
            this.screenGrabButton,
            this.viewInMapsButton,
            this.languageSeparator,
            this.languageComboBox});

            this.Layout += new System.Windows.Forms.LayoutEventHandler(this.GEToolStrip_Layout);
            this.ResumeLayout(false);

        }
 private void InitializeComponent()
 {
     this.ToolBar1    = new System.Windows.Forms.ToolStrip();
     this.TBS1        = new System.Windows.Forms.ToolStripSeparator();
     this.cbType      = new System.Windows.Forms.ToolStripComboBox();
     this.cloudViewer = new GKWordsCloudPlugin.WordsCloud.CloudViewer();
     this.ToolBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // ToolBar1
     //
     this.ToolBar1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.TBS1,
         this.cbType
     });
     this.ToolBar1.Location = new System.Drawing.Point(10, 10);
     this.ToolBar1.Name     = "ToolBar1";
     this.ToolBar1.Size     = new System.Drawing.Size(780, 25);
     this.ToolBar1.TabIndex = 2;
     //
     // TBS1
     //
     this.TBS1.Name = "TBS1";
     this.TBS1.Size = new System.Drawing.Size(6, 25);
     //
     // cbType
     //
     this.cbType.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbType.Name                  = "cbType";
     this.cbType.Size                  = new System.Drawing.Size(262, 25);
     this.cbType.SelectedIndexChanged += new System.EventHandler(this.cbType_SelectedIndexChanged);
     //
     // cloudViewer
     //
     this.cloudViewer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cloudViewer.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.cloudViewer.Location    = new System.Drawing.Point(10, 35);
     this.cloudViewer.MaxFontSize = 40;
     this.cloudViewer.MinFontSize = 4;
     this.cloudViewer.Name        = "cloudViewer";
     this.cloudViewer.Palette     = new System.Drawing.Color[] {
         System.Drawing.Color.DarkRed,
         System.Drawing.Color.DarkBlue,
         System.Drawing.Color.DarkGreen,
         System.Drawing.Color.Navy,
         System.Drawing.Color.DarkCyan,
         System.Drawing.Color.DarkOrange,
         System.Drawing.Color.DarkGoldenrod,
         System.Drawing.Color.DarkKhaki,
         System.Drawing.Color.Blue,
         System.Drawing.Color.Red,
         System.Drawing.Color.Green
     };
     this.cloudViewer.Size          = new System.Drawing.Size(780, 555);
     this.cloudViewer.TabIndex      = 3;
     this.cloudViewer.WeightedWords = null;
     //
     // WordsCloudWidget
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 600);
     this.Controls.Add(this.cloudViewer);
     this.Controls.Add(this.ToolBar1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "WordsCloudWidget";
     this.Padding         = new System.Windows.Forms.Padding(10);
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "WordsCloudWidget";
     this.TopMost         = true;
     this.Closed         += new System.EventHandler(this.CalcWidget_Closed);
     this.Load           += new System.EventHandler(this.CalcWidget_Load);
     this.ToolBar1.ResumeLayout(false);
     this.ToolBar1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #34
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNomenclature));
     this.panel1                = new System.Windows.Forms.Panel();
     this.button1               = new System.Windows.Forms.Button();
     this.buttonClose           = new System.Windows.Forms.Button();
     this.panel2                = new System.Windows.Forms.Panel();
     this.toolStrip1            = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1      = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2      = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3      = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2   = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4      = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5      = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6      = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3   = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton7      = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4   = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
     this.изПрайслистаКонтрагентаToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.изТабличногоФайлаExcelToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1  = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10   = new System.Windows.Forms.ToolStripButton();
     this.panel3                          = new System.Windows.Forms.Panel();
     this.listView1                       = new System.Windows.Forms.ListView();
     this.columnHeader1                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6                   = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1               = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.папкиToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.создатьПапкуToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьПапкуToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьПапкуToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1              = new System.Windows.Forms.ToolStripSeparator();
     this.создатьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1             = new System.Windows.Forms.ToolStripSeparator();
     this.загрузитьНаименованияТоваровToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.изПрайслистовКонтрагентовToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.изТабличногоФайлаExcelToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2             = new System.Windows.Forms.ToolStripSeparator();
     this.выбратьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.toolTip1   = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 347);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(756, 45);
     this.panel1.TabIndex = 1;
     //
     // button1
     //
     this.button1.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Image      = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location   = new System.Drawing.Point(586, 10);
     this.button1.Name       = "button1";
     this.button1.Size       = new System.Drawing.Size(75, 23);
     this.button1.TabIndex   = 1;
     this.button1.Text       = "Выбрать";
     this.button1.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click  += new System.EventHandler(this.Button1Click);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(669, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.toolStrip1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(756, 25);
     this.panel2.TabIndex = 2;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator2,
         this.toolStripButton4,
         this.toolStripButton5,
         this.toolStripButton6,
         this.toolStripSeparator3,
         this.toolStripButton7,
         this.toolStripSeparator4,
         this.toolStripSplitButton1,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(756, 25);
     this.toolStrip1.TabIndex    = 18;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton2.Text   = "Изменить";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name   = "toolStripButton4";
     this.toolStripButton4.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton4.Text   = "Создать папку";
     this.toolStripButton4.Click += new System.EventHandler(this.ToolStripButton4Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name   = "toolStripButton5";
     this.toolStripButton5.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton5.Text   = "Редактировать папку";
     this.toolStripButton5.Click += new System.EventHandler(this.ToolStripButton5Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name   = "toolStripButton6";
     this.toolStripButton6.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton6.Text   = "Удалить папку";
     this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name   = "toolStripButton7";
     this.toolStripButton7.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton7.Text   = "Способ отображения.";
     this.toolStripButton7.Click += new System.EventHandler(this.ToolStripButton7Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripSplitButton1
     //
     this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.изПрайслистаКонтрагентаToolStripMenuItem,
         this.изТабличногоФайлаExcelToolStripMenuItem1
     });
     this.toolStripSplitButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripSplitButton1.Image")));
     this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripSplitButton1.Name = "toolStripSplitButton1";
     this.toolStripSplitButton1.Size = new System.Drawing.Size(175, 20);
     this.toolStripSplitButton1.Text = "Загрузить номенклатуру";
     //
     // изПрайслистаКонтрагентаToolStripMenuItem
     //
     this.изПрайслистаКонтрагентаToolStripMenuItem.Name   = "изПрайслистаКонтрагентаToolStripMenuItem";
     this.изПрайслистаКонтрагентаToolStripMenuItem.Size   = new System.Drawing.Size(231, 22);
     this.изПрайслистаКонтрагентаToolStripMenuItem.Text   = "из прайс-листа контрагента.";
     this.изПрайслистаКонтрагентаToolStripMenuItem.Click += new System.EventHandler(this.ИзПрайслистаКонтрагентаToolStripMenuItemClick);
     //
     // изТабличногоФайлаExcelToolStripMenuItem1
     //
     this.изТабличногоФайлаExcelToolStripMenuItem1.Name   = "изТабличногоФайлаExcelToolStripMenuItem1";
     this.изТабличногоФайлаExcelToolStripMenuItem1.Size   = new System.Drawing.Size(231, 22);
     this.изТабличногоФайлаExcelToolStripMenuItem1.Text   = "из табличного файла Excel.";
     this.изТабличногоФайлаExcelToolStripMenuItem1.Click += new System.EventHandler(this.ИзТабличногоФайлаExcelToolStripMenuItem1Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 23);
     this.toolStripComboBox1.Text      = "Введите данные для поиска";
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 20);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 20);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.listView1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(756, 322);
     this.panel3.TabIndex = 3;
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 0);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(756, 322);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 6;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.ListView1SelectedIndexChanged);
     this.listView1.DoubleClick          += new System.EventHandler(this.ListView1DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Наименование";
     this.columnHeader2.Width = 400;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "";
     this.columnHeader3.Width = 50;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "№";
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "Ед. изм.";
     this.columnHeader5.Width = 0;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "Цена:";
     this.columnHeader6.Width = 0;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.папкиToolStripMenuItem,
         this.toolStripMenuItem1,
         this.создатьЗаписьToolStripMenuItem,
         this.изменитьЗаписьToolStripMenuItem,
         this.удалитьЗаписьToolStripMenuItem,
         this.toolStripSeparator1,
         this.загрузитьНаименованияТоваровToolStripMenuItem,
         this.toolStripMenuItem2,
         this.выбратьЗаписьToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(211, 154);
     //
     // папкиToolStripMenuItem
     //
     this.папкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьПапкуToolStripMenuItem,
         this.изменитьПапкуToolStripMenuItem,
         this.удалитьПапкуToolStripMenuItem
     });
     this.папкиToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("папкиToolStripMenuItem.Image")));
     this.папкиToolStripMenuItem.Name  = "папкиToolStripMenuItem";
     this.папкиToolStripMenuItem.Size  = new System.Drawing.Size(210, 22);
     this.папкиToolStripMenuItem.Text  = "Папки:";
     //
     // создатьПапкуToolStripMenuItem
     //
     this.создатьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьПапкуToolStripMenuItem.Image")));
     this.создатьПапкуToolStripMenuItem.Name   = "создатьПапкуToolStripMenuItem";
     this.создатьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.создатьПапкуToolStripMenuItem.Text   = "Создать папку.";
     this.создатьПапкуToolStripMenuItem.Click += new System.EventHandler(this.СоздатьПапкуToolStripMenuItemClick);
     //
     // изменитьПапкуToolStripMenuItem
     //
     this.изменитьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьПапкуToolStripMenuItem.Image")));
     this.изменитьПапкуToolStripMenuItem.Name   = "изменитьПапкуToolStripMenuItem";
     this.изменитьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.изменитьПапкуToolStripMenuItem.Text   = "Изменить папку.";
     this.изменитьПапкуToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьПапкуToolStripMenuItemClick);
     //
     // удалитьПапкуToolStripMenuItem
     //
     this.удалитьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьПапкуToolStripMenuItem.Image")));
     this.удалитьПапкуToolStripMenuItem.Name   = "удалитьПапкуToolStripMenuItem";
     this.удалитьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.удалитьПапкуToolStripMenuItem.Text   = "Удалить папку.";
     this.удалитьПапкуToolStripMenuItem.Click += new System.EventHandler(this.УдалитьПапкуToolStripMenuItemClick);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(207, 6);
     //
     // создатьЗаписьToolStripMenuItem
     //
     this.создатьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьЗаписьToolStripMenuItem.Image")));
     this.создатьЗаписьToolStripMenuItem.Name   = "создатьЗаписьToolStripMenuItem";
     this.создатьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(210, 22);
     this.создатьЗаписьToolStripMenuItem.Text   = "Создать запись.";
     this.создатьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.СоздатьЗаписьToolStripMenuItemClick);
     //
     // изменитьЗаписьToolStripMenuItem
     //
     this.изменитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьЗаписьToolStripMenuItem.Image")));
     this.изменитьЗаписьToolStripMenuItem.Name   = "изменитьЗаписьToolStripMenuItem";
     this.изменитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(210, 22);
     this.изменитьЗаписьToolStripMenuItem.Text   = "Изменить запись.";
     this.изменитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьЗаписьToolStripMenuItemClick);
     //
     // удалитьЗаписьToolStripMenuItem
     //
     this.удалитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьЗаписьToolStripMenuItem.Image")));
     this.удалитьЗаписьToolStripMenuItem.Name   = "удалитьЗаписьToolStripMenuItem";
     this.удалитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(210, 22);
     this.удалитьЗаписьToolStripMenuItem.Text   = "Удалить запись.";
     this.удалитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.УдалитьЗаписьToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(207, 6);
     //
     // загрузитьНаименованияТоваровToolStripMenuItem
     //
     this.загрузитьНаименованияТоваровToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.изПрайслистовКонтрагентовToolStripMenuItem,
         this.изТабличногоФайлаExcelToolStripMenuItem
     });
     this.загрузитьНаименованияТоваровToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("загрузитьНаименованияТоваровToolStripMenuItem.Image")));
     this.загрузитьНаименованияТоваровToolStripMenuItem.Name  = "загрузитьНаименованияТоваровToolStripMenuItem";
     this.загрузитьНаименованияТоваровToolStripMenuItem.Size  = new System.Drawing.Size(210, 22);
     this.загрузитьНаименованияТоваровToolStripMenuItem.Text  = "Загрузить номенклатуру";
     //
     // изПрайслистовКонтрагентовToolStripMenuItem
     //
     this.изПрайслистовКонтрагентовToolStripMenuItem.Name   = "изПрайслистовКонтрагентовToolStripMenuItem";
     this.изПрайслистовКонтрагентовToolStripMenuItem.Size   = new System.Drawing.Size(245, 22);
     this.изПрайслистовКонтрагентовToolStripMenuItem.Text   = "из прайс-листов контрагентов.";
     this.изПрайслистовКонтрагентовToolStripMenuItem.Click += new System.EventHandler(this.ИзПрайслистовКонтрагентовToolStripMenuItemClick);
     //
     // изТабличногоФайлаExcelToolStripMenuItem
     //
     this.изТабличногоФайлаExcelToolStripMenuItem.Name   = "изТабличногоФайлаExcelToolStripMenuItem";
     this.изТабличногоФайлаExcelToolStripMenuItem.Size   = new System.Drawing.Size(245, 22);
     this.изТабличногоФайлаExcelToolStripMenuItem.Text   = "из табличного файла excel.";
     this.изТабличногоФайлаExcelToolStripMenuItem.Click += new System.EventHandler(this.ИзТабличногоФайлаExcelToolStripMenuItemClick);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name    = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size    = new System.Drawing.Size(207, 6);
     this.toolStripMenuItem2.Visible = false;
     //
     // выбратьЗаписьToolStripMenuItem
     //
     this.выбратьЗаписьToolStripMenuItem.Name    = "выбратьЗаписьToolStripMenuItem";
     this.выбратьЗаписьToolStripMenuItem.Size    = new System.Drawing.Size(210, 22);
     this.выбратьЗаписьToolStripMenuItem.Text    = "Выбрать запись.";
     this.выбратьЗаписьToolStripMenuItem.Visible = false;
     this.выбратьЗаписьToolStripMenuItem.Click  += new System.EventHandler(this.ВыбратьЗаписьToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder.png");
     this.imageList1.Images.SetKeyName(1, "page.png");
     //
     // FormNomenclature
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(756, 392);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "FormNomenclature";
     this.Text        = "Номенклатура";
     this.Activated  += new System.EventHandler(this.FormNomenclatureActivated);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormNomenclatureFormClosed);
     this.Load       += new System.EventHandler(this.FormNomenclatureLoad);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(ColourBMD));
     this.dgBMDReportSheet = new System.Windows.Forms.DataGridView();
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.tsRecords = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.mnuSaveCensusColumnLayout = new System.Windows.Forms.ToolStripButton();
     this.mnuResetCensusColumns = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.printPreviewToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.mnuExportToExcel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.cbBMDSearchProvider = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.cbRegion = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.cbFilter = new System.Windows.Forms.ToolStripComboBox();
     this.printDocument = new System.Drawing.Printing.PrintDocument();
     this.printDialog = new System.Windows.Forms.PrintDialog();
     this.printPreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mnuViewFacts = new System.Windows.Forms.ToolStripMenuItem();
     this.IndividualID = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Forenames = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Surname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Relation = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.RelationToRoot = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Birth = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BaptChri = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Marriage1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Marriage2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Marriage3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Death = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CremBuri = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BirthDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DeathDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FirstMarriage = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SecondMarriage = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ThirdMarriage = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BirthLocation = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DeathLocation = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ahnentafel = new System.Windows.Forms.DataGridViewTextBoxColumn();
     ((System.ComponentModel.ISupportInitialize)(this.dgBMDReportSheet)).BeginInit();
     this.statusStrip.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // dgBMDReportSheet
     //
     this.dgBMDReportSheet.AllowUserToAddRows = false;
     this.dgBMDReportSheet.AllowUserToDeleteRows = false;
     this.dgBMDReportSheet.AllowUserToOrderColumns = true;
     this.dgBMDReportSheet.AllowUserToResizeRows = false;
     this.dgBMDReportSheet.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dgBMDReportSheet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgBMDReportSheet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.IndividualID,
     this.Forenames,
     this.Surname,
     this.Relation,
     this.RelationToRoot,
     this.Birth,
     this.BaptChri,
     this.Marriage1,
     this.Marriage2,
     this.Marriage3,
     this.Death,
     this.CremBuri,
     this.BirthDate,
     this.DeathDate,
     this.FirstMarriage,
     this.SecondMarriage,
     this.ThirdMarriage,
     this.BirthLocation,
     this.DeathLocation,
     this.Ahnentafel});
     this.dgBMDReportSheet.Location = new System.Drawing.Point(0, 28);
     this.dgBMDReportSheet.MultiSelect = false;
     this.dgBMDReportSheet.Name = "dgBMDReportSheet";
     this.dgBMDReportSheet.ReadOnly = true;
     this.dgBMDReportSheet.RowHeadersWidth = 20;
     this.dgBMDReportSheet.Size = new System.Drawing.Size(1038, 530);
     this.dgBMDReportSheet.TabIndex = 1;
     this.dgBMDReportSheet.CellContextMenuStripNeeded += new System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler(this.DgBMDReportSheet_CellContextMenuStripNeeded);
     this.dgBMDReportSheet.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.DgReportSheet_CellDoubleClick);
     this.dgBMDReportSheet.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.DgReportSheet_CellFormatting);
     //
     // statusStrip
     //
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsRecords});
     this.statusStrip.Location = new System.Drawing.Point(0, 561);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.Size = new System.Drawing.Size(1038, 22);
     this.statusStrip.TabIndex = 2;
     this.statusStrip.Text = "statusStrip1";
     //
     // tsRecords
     //
     this.tsRecords.Name = "tsRecords";
     this.tsRecords.Size = new System.Drawing.Size(118, 17);
     this.tsRecords.Text = "toolStripStatusLabel1";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuSaveCensusColumnLayout,
     this.mnuResetCensusColumns,
     this.toolStripSeparator3,
     this.printToolStripButton,
     this.printPreviewToolStripButton,
     this.toolStripSeparator1,
     this.mnuExportToExcel,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.cbBMDSearchProvider,
     this.toolStripLabel3,
     this.cbRegion,
     this.toolStripLabel2,
     this.cbFilter});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1038, 25);
     this.toolStrip1.TabIndex = 3;
     this.toolStrip1.Text = "toolStrip1";
     //
     // mnuSaveCensusColumnLayout
     //
     this.mnuSaveCensusColumnLayout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.mnuSaveCensusColumnLayout.Image = ((System.Drawing.Image)(resources.GetObject("mnuSaveCensusColumnLayout.Image")));
     this.mnuSaveCensusColumnLayout.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.mnuSaveCensusColumnLayout.Name = "mnuSaveCensusColumnLayout";
     this.mnuSaveCensusColumnLayout.Size = new System.Drawing.Size(23, 22);
     this.mnuSaveCensusColumnLayout.Text = "Save Census Column Sort Order";
     this.mnuSaveCensusColumnLayout.Click += new System.EventHandler(this.MnuSaveCensusColumnLayout_Click);
     //
     // mnuResetCensusColumns
     //
     this.mnuResetCensusColumns.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.mnuResetCensusColumns.Image = ((System.Drawing.Image)(resources.GetObject("mnuResetCensusColumns.Image")));
     this.mnuResetCensusColumns.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.mnuResetCensusColumns.Name = "mnuResetCensusColumns";
     this.mnuResetCensusColumns.Size = new System.Drawing.Size(23, 22);
     this.mnuResetCensusColumns.Text = "Reset Census Column Sort Order to Default";
     this.mnuResetCensusColumns.Click += new System.EventHandler(this.MnuResetCensusColumns_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // printToolStripButton
     //
     this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
     this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printToolStripButton.Name = "printToolStripButton";
     this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.printToolStripButton.Text = "&Print";
     this.printToolStripButton.Click += new System.EventHandler(this.PrintToolStripButton_Click);
     //
     // printPreviewToolStripButton
     //
     this.printPreviewToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.printPreviewToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printPreviewToolStripButton.Image")));
     this.printPreviewToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printPreviewToolStripButton.Name = "printPreviewToolStripButton";
     this.printPreviewToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.printPreviewToolStripButton.Text = "Print Preview...";
     this.printPreviewToolStripButton.Click += new System.EventHandler(this.PrintPreviewToolStripButton_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // mnuExportToExcel
     //
     this.mnuExportToExcel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.mnuExportToExcel.Image = ((System.Drawing.Image)(resources.GetObject("mnuExportToExcel.Image")));
     this.mnuExportToExcel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.mnuExportToExcel.Name = "mnuExportToExcel";
     this.mnuExportToExcel.Size = new System.Drawing.Size(23, 22);
     this.mnuExportToExcel.Text = "Export to Excel";
     this.mnuExportToExcel.Click += new System.EventHandler(this.MnuExportToExcel_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(106, 22);
     this.toolStripLabel1.Text = "BMD Search using:";
     //
     // cbBMDSearchProvider
     //
     this.cbBMDSearchProvider.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBMDSearchProvider.Items.AddRange(new object[] {
     "Ancestry",
     "Find My Past",
     "FreeBMD",
     "FamilySearch",
     "Scotlands People"});
     this.cbBMDSearchProvider.Name = "cbBMDSearchProvider";
     this.cbBMDSearchProvider.Size = new System.Drawing.Size(121, 25);
     this.cbBMDSearchProvider.SelectedIndexChanged += new System.EventHandler(this.CbCensusSearchProvider_SelectedIndexChanged);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(47, 22);
     this.toolStripLabel3.Text = "Region:";
     //
     // cbRegion
     //
     this.cbRegion.AutoCompleteCustomSource.AddRange(new string[] {
     ".com",
     ".co.uk",
     ".ca",
     ".com.au"});
     this.cbRegion.Items.AddRange(new object[] {
     ".com",
     ".co.uk",
     ".ca",
     ".com.au"});
     this.cbRegion.Name = "cbRegion";
     this.cbRegion.Size = new System.Drawing.Size(121, 25);
     this.cbRegion.Text = ".co.uk";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(39, 22);
     this.toolStripLabel2.Text = "Filter :";
     //
     // cbFilter
     //
     this.cbFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbFilter.DropDownWidth = 220;
     this.cbFilter.Items.AddRange(new object[] {
     "All Individuals",
     "None Found (All Red)",
     "All Found (All Green)",
     "All Open Ended Date Range (Orange Red)",
     "All Very Wide Date Range (Light Red)",
     "All Wide Date Range (Orange)",
     "All Narrow Date Range (Yellow)",
     "All Just Year Date (Yellow Green)",
     "All Approx Date Range (Light Green)",
     "Some Missing (Some Red)",
     "Some Found (Some Green)",
     "Some Open Ended Date Range (Orange Red)",
     "Some Very Wide Date Range (Light Red)",
     "Some Wide Date Range (Orange)",
     "Some Narrow Date Range (Yellow)",
     "Some Just Year Date (Yellow Green)",
     "Some Approx Date Range (Light Green)",
     "Of Marrying Age no partner (Pink)",
     "No Partner shared fact/children (Coral)",
     "Partner but no marriage (Red Brown)"});
     this.cbFilter.Name = "cbFilter";
     this.cbFilter.Size = new System.Drawing.Size(235, 25);
     this.cbFilter.SelectedIndexChanged += new System.EventHandler(this.CbFilter_SelectedIndexChanged);
     //
     // printDialog
     //
     this.printDialog.AllowSelection = true;
     this.printDialog.AllowSomePages = true;
     this.printDialog.Document = this.printDocument;
     this.printDialog.UseEXDialog = true;
     //
     // printPreviewDialog
     //
     this.printPreviewDialog.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.printPreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog.ClientSize = new System.Drawing.Size(400, 300);
     this.printPreviewDialog.Document = this.printDocument;
     this.printPreviewDialog.Enabled = true;
     this.printPreviewDialog.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog.Icon")));
     this.printPreviewDialog.Name = "printPreviewDialog";
     this.printPreviewDialog.Visible = false;
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mnuViewFacts});
     this.contextMenuStrip.Name = "contextMenuStrip";
     this.contextMenuStrip.Size = new System.Drawing.Size(190, 26);
     //
     // mnuViewFacts
     //
     this.mnuViewFacts.Name = "mnuViewFacts";
     this.mnuViewFacts.Size = new System.Drawing.Size(189, 22);
     this.mnuViewFacts.Text = "View Individuals Facts";
     this.mnuViewFacts.Click += new System.EventHandler(this.MnuViewFacts_Click);
     //
     // IndividualID
     //
     this.IndividualID.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.IndividualID.DataPropertyName = "IndividualID";
     this.IndividualID.HeaderText = "Ind. ID";
     this.IndividualID.MinimumWidth = 50;
     this.IndividualID.Name = "IndividualID";
     this.IndividualID.ReadOnly = true;
     this.IndividualID.Width = 50;
     //
     // Forenames
     //
     this.Forenames.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Forenames.DataPropertyName = "Forenames";
     this.Forenames.HeaderText = "Forenames";
     this.Forenames.MinimumWidth = 100;
     this.Forenames.Name = "Forenames";
     this.Forenames.ReadOnly = true;
     //
     // Surname
     //
     this.Surname.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Surname.DataPropertyName = "Surname";
     this.Surname.HeaderText = "Surname";
     this.Surname.MinimumWidth = 75;
     this.Surname.Name = "Surname";
     this.Surname.ReadOnly = true;
     this.Surname.Width = 75;
     //
     // Relation
     //
     this.Relation.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Relation.DataPropertyName = "Relation";
     this.Relation.HeaderText = "Relation";
     this.Relation.MinimumWidth = 105;
     this.Relation.Name = "Relation";
     this.Relation.ReadOnly = true;
     this.Relation.Width = 105;
     //
     // RelationToRoot
     //
     this.RelationToRoot.DataPropertyName = "RelationToRoot";
     this.RelationToRoot.HeaderText = "Relation To Root";
     this.RelationToRoot.MinimumWidth = 100;
     this.RelationToRoot.Name = "RelationToRoot";
     this.RelationToRoot.ReadOnly = true;
     this.RelationToRoot.Width = 150;
     //
     // Birth
     //
     this.Birth.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Birth.DataPropertyName = "Birth";
     this.Birth.HeaderText = "Birth";
     this.Birth.MinimumWidth = 60;
     this.Birth.Name = "Birth";
     this.Birth.ReadOnly = true;
     this.Birth.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Birth.Width = 60;
     //
     // BaptChri
     //
     this.BaptChri.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.BaptChri.DataPropertyName = "BaptChri";
     this.BaptChri.HeaderText = "Baptism Christening";
     this.BaptChri.MinimumWidth = 62;
     this.BaptChri.Name = "BaptChri";
     this.BaptChri.ReadOnly = true;
     this.BaptChri.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.BaptChri.Width = 62;
     //
     // Marriage1
     //
     this.Marriage1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Marriage1.DataPropertyName = "Marriage1";
     this.Marriage1.HeaderText = "Marriage No. 1";
     this.Marriage1.MinimumWidth = 60;
     this.Marriage1.Name = "Marriage1";
     this.Marriage1.ReadOnly = true;
     this.Marriage1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Marriage1.Width = 60;
     //
     // Marriage2
     //
     this.Marriage2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Marriage2.DataPropertyName = "Marriage2";
     this.Marriage2.HeaderText = "Marriage No. 2";
     this.Marriage2.MinimumWidth = 60;
     this.Marriage2.Name = "Marriage2";
     this.Marriage2.ReadOnly = true;
     this.Marriage2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Marriage2.Width = 60;
     //
     // Marriage3
     //
     this.Marriage3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Marriage3.DataPropertyName = "Marriage3";
     this.Marriage3.HeaderText = "Marriage No. 3";
     this.Marriage3.MinimumWidth = 60;
     this.Marriage3.Name = "Marriage3";
     this.Marriage3.ReadOnly = true;
     this.Marriage3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Marriage3.Width = 60;
     //
     // Death
     //
     this.Death.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.Death.DataPropertyName = "Death";
     this.Death.HeaderText = "Death";
     this.Death.MinimumWidth = 60;
     this.Death.Name = "Death";
     this.Death.ReadOnly = true;
     this.Death.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.Death.Width = 60;
     //
     // CremBuri
     //
     this.CremBuri.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.CremBuri.DataPropertyName = "CremBuri";
     this.CremBuri.HeaderText = "Burial Cremation";
     this.CremBuri.MinimumWidth = 60;
     this.CremBuri.Name = "CremBuri";
     this.CremBuri.ReadOnly = true;
     this.CremBuri.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.CremBuri.Width = 60;
     //
     // BirthDate
     //
     this.BirthDate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.BirthDate.DataPropertyName = "BirthDate";
     this.BirthDate.HeaderText = "Birth Date";
     this.BirthDate.MinimumWidth = 50;
     this.BirthDate.Name = "BirthDate";
     this.BirthDate.ReadOnly = true;
     this.BirthDate.Width = 150;
     //
     // DeathDate
     //
     this.DeathDate.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.DeathDate.DataPropertyName = "DeathDate";
     this.DeathDate.HeaderText = "Death Date";
     this.DeathDate.MinimumWidth = 50;
     this.DeathDate.Name = "DeathDate";
     this.DeathDate.ReadOnly = true;
     this.DeathDate.Width = 150;
     //
     // FirstMarriage
     //
     this.FirstMarriage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.FirstMarriage.DataPropertyName = "FirstMarriage";
     this.FirstMarriage.HeaderText = "First Marriage";
     this.FirstMarriage.MinimumWidth = 100;
     this.FirstMarriage.Name = "FirstMarriage";
     this.FirstMarriage.ReadOnly = true;
     //
     // SecondMarriage
     //
     this.SecondMarriage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.SecondMarriage.DataPropertyName = "SecondMarriage";
     this.SecondMarriage.HeaderText = "Second Marriage";
     this.SecondMarriage.MinimumWidth = 100;
     this.SecondMarriage.Name = "SecondMarriage";
     this.SecondMarriage.ReadOnly = true;
     //
     // ThirdMarriage
     //
     this.ThirdMarriage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.ThirdMarriage.DataPropertyName = "ThirdMarriage";
     this.ThirdMarriage.HeaderText = "Third Marriage";
     this.ThirdMarriage.MinimumWidth = 100;
     this.ThirdMarriage.Name = "ThirdMarriage";
     this.ThirdMarriage.ReadOnly = true;
     //
     // BirthLocation
     //
     this.BirthLocation.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.BirthLocation.DataPropertyName = "BirthLocation";
     this.BirthLocation.HeaderText = "Birth Location";
     this.BirthLocation.MinimumWidth = 120;
     this.BirthLocation.Name = "BirthLocation";
     this.BirthLocation.ReadOnly = true;
     this.BirthLocation.Width = 120;
     //
     // DeathLocation
     //
     this.DeathLocation.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.DeathLocation.DataPropertyName = "DeathLocation";
     this.DeathLocation.HeaderText = "Death Location";
     this.DeathLocation.MinimumWidth = 120;
     this.DeathLocation.Name = "DeathLocation";
     this.DeathLocation.ReadOnly = true;
     this.DeathLocation.Width = 120;
     //
     // Ahnentafel
     //
     this.Ahnentafel.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
     this.Ahnentafel.DataPropertyName = "Ahnentafel";
     this.Ahnentafel.HeaderText = "Ahnentafel";
     this.Ahnentafel.MinimumWidth = 20;
     this.Ahnentafel.Name = "Ahnentafel";
     this.Ahnentafel.ReadOnly = true;
     this.Ahnentafel.Width = 83;
     //
     // ColourBMD
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1038, 583);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.statusStrip);
     this.Controls.Add(this.dgBMDReportSheet);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "ColourBMD";
     this.Text = "Colour BMD Report Result";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ColourBMD_FormClosed);
     this.Load += new System.EventHandler(this.ColourBMD_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgBMDReportSheet)).EndInit();
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.ToolStrip                 m_toolStrip;
     System.Windows.Forms.ToolStripButton           m_tsbAddRow;
     System.Windows.Forms.ToolStripButton           m_tsbImportData;
     System.Windows.Forms.ToolStripButton           m_tsbAdjustColumns;
     System.Windows.Forms.ToolStripButton           m_tsbOptions;
     System.Windows.Forms.ToolStripButton           m_tsbHelp;
     System.Windows.Forms.ToolStripComboBox         m_tscbSessions;
     System.Windows.Forms.StatusStrip               m_statuStrip;
     System.Windows.Forms.ColumnHeader              m_colSession;
     System.Windows.Forms.ColumnHeader              m_colSubHeading;
     System.Windows.Forms.ColumnHeader              m_colLabel;
     System.Windows.Forms.ColumnHeader              m_colTRLabel;
     System.Windows.Forms.ColumnHeader              m_colPrice;
     System.Windows.Forms.ColumnHeader              m_colCurrency;
     System.Windows.Forms.ColumnHeader              m_colIncoterm;
     System.Windows.Forms.ColumnHeader              m_colPlace;
     System.Windows.Forms.ColumnHeader              m_colTime;
     System.Windows.Forms.ColumnHeader              m_colUnit;
     System.Windows.Forms.ColumnHeader              m_colOrigin;
     System.Windows.Forms.ColumnHeader              m_colPruductNber;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TRSpotViewer));
     this.m_tsbDeleteRow      = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.m_slRowCount        = new System.Windows.Forms.ToolStripStatusLabel();
     this.m_lvData            = new System.Windows.Forms.ListView();
     m_toolStrip        = new System.Windows.Forms.ToolStrip();
     m_tsbAddRow        = new System.Windows.Forms.ToolStripButton();
     m_tsbImportData    = new System.Windows.Forms.ToolStripButton();
     m_tsbAdjustColumns = new System.Windows.Forms.ToolStripButton();
     m_tsbOptions       = new System.Windows.Forms.ToolStripButton();
     m_tsbHelp          = new System.Windows.Forms.ToolStripButton();
     m_tscbSessions     = new System.Windows.Forms.ToolStripComboBox();
     m_statuStrip       = new System.Windows.Forms.StatusStrip();
     m_colSession       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colSubHeading    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colLabel         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colTRLabel       = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colPrice         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colCurrency      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colIncoterm      = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colPlace         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colTime          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colUnit          = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colOrigin        = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_colPruductNber   = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     m_toolStrip.SuspendLayout();
     m_statuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // m_toolStrip
     //
     m_toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         m_tsbAddRow,
         this.m_tsbDeleteRow,
         this.toolStripSeparator1,
         m_tsbImportData,
         this.toolStripSeparator3,
         m_tsbAdjustColumns,
         m_tsbOptions,
         m_tsbHelp,
         m_tscbSessions
     });
     m_toolStrip.Location = new System.Drawing.Point(0, 0);
     m_toolStrip.Name     = "m_toolStrip";
     m_toolStrip.Size     = new System.Drawing.Size(798, 25);
     m_toolStrip.TabIndex = 0;
     //
     // m_tsbAddRow
     //
     m_tsbAddRow.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbAddRow.Enabled               = false;
     m_tsbAddRow.Image                 = global::DGD.HubGovernor.Properties.Resources.new_row_16;
     m_tsbAddRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbAddRow.Name = "m_tsbAddRow";
     m_tsbAddRow.Size = new System.Drawing.Size(23, 22);
     m_tsbAddRow.Text = "Nouvelle donnée...";
     //
     // m_tsbDeleteRow
     //
     this.m_tsbDeleteRow.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.m_tsbDeleteRow.Enabled               = false;
     this.m_tsbDeleteRow.Image                 = global::DGD.HubGovernor.Properties.Resources.delete_16;
     this.m_tsbDeleteRow.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.m_tsbDeleteRow.Name = "m_tsbDeleteRow";
     this.m_tsbDeleteRow.Size = new System.Drawing.Size(23, 22);
     this.m_tsbDeleteRow.Text = "Supprimer les données sélectionnées...";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // m_tsbImportData
     //
     m_tsbImportData.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbImportData.Image                 = global::DGD.HubGovernor.Properties.Resources.import_16;
     m_tsbImportData.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbImportData.Name   = "m_tsbImportData";
     m_tsbImportData.Size   = new System.Drawing.Size(23, 22);
     m_tsbImportData.Text   = "Importer...";
     m_tsbImportData.Click += new System.EventHandler(this.ImportData_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // m_tsbAdjustColumns
     //
     m_tsbAdjustColumns.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbAdjustColumns.Image                 = global::DGD.HubGovernor.Properties.Resources.auto_size_columns_16;
     m_tsbAdjustColumns.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbAdjustColumns.Name = "m_tsbAdjustColumns";
     m_tsbAdjustColumns.Size = new System.Drawing.Size(23, 22);
     m_tsbAdjustColumns.Text = "Ajuster les colonnes";
     //
     // m_tsbOptions
     //
     m_tsbOptions.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbOptions.Enabled               = false;
     m_tsbOptions.Image                 = global::DGD.HubGovernor.Properties.Resources.option_16;
     m_tsbOptions.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbOptions.Name = "m_tsbOptions";
     m_tsbOptions.Size = new System.Drawing.Size(23, 22);
     m_tsbOptions.Text = "Options...";
     //
     // m_tsbHelp
     //
     m_tsbHelp.Alignment             = System.Windows.Forms.ToolStripItemAlignment.Right;
     m_tsbHelp.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     m_tsbHelp.Image                 = global::DGD.HubGovernor.Properties.Resources.help_16;
     m_tsbHelp.ImageTransparentColor = System.Drawing.Color.Magenta;
     m_tsbHelp.Name = "m_tsbHelp";
     m_tsbHelp.Size = new System.Drawing.Size(23, 22);
     m_tsbHelp.Text = "toolStripButton5";
     //
     // m_tscbSessions
     //
     m_tscbSessions.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     m_tscbSessions.IntegralHeight = false;
     m_tscbSessions.Name           = "m_tscbSessions";
     m_tscbSessions.Size           = new System.Drawing.Size(121, 25);
     m_tscbSessions.Sorted         = true;
     //
     // m_statuStrip
     //
     m_statuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.m_slRowCount
     });
     m_statuStrip.Location = new System.Drawing.Point(0, 301);
     m_statuStrip.Name     = "m_statuStrip";
     m_statuStrip.Size     = new System.Drawing.Size(798, 22);
     m_statuStrip.TabIndex = 2;
     //
     // m_slRowCount
     //
     this.m_slRowCount.BackColor    = System.Drawing.Color.Transparent;
     this.m_slRowCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.m_slRowCount.Name         = "m_slRowCount";
     this.m_slRowCount.Size         = new System.Drawing.Size(112, 17);
     this.m_slRowCount.Text         = "0 enregistrement(s )";
     this.m_slRowCount.TextAlign    = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_colSession
     //
     m_colSession.Tag   = ColumnDataType_t.Integer;
     m_colSession.Text  = "N° Session";
     m_colSession.Width = 86;
     //
     // m_colSubHeading
     //
     m_colSubHeading.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colSubHeading.Text = "SPT10";
     //
     // m_colLabel
     //
     m_colLabel.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colLabel.Text = "Libellé";
     //
     // m_colTRLabel
     //
     m_colTRLabel.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colTRLabel.Text = "Libellé TR";
     //
     // m_colPrice
     //
     m_colPrice.Tag  = easyLib.DB.ColumnDataType_t.Float;
     m_colPrice.Text = "Prix";
     //
     // m_colCurrency
     //
     m_colCurrency.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colCurrency.Text = "Monnaie";
     //
     // m_colIncoterm
     //
     m_colIncoterm.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colIncoterm.Text = "Incoterm";
     //
     // m_colPlace
     //
     m_colPlace.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colPlace.Text = "Lieu";
     //
     // m_colTime
     //
     m_colTime.Tag  = easyLib.DB.ColumnDataType_t.Time;
     m_colTime.Text = "Date";
     //
     // m_colUnit
     //
     m_colUnit.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colUnit.Text = "Unité";
     //
     // m_colOrigin
     //
     m_colOrigin.Tag  = easyLib.DB.ColumnDataType_t.Text;
     m_colOrigin.Text = "Origine";
     //
     // m_colPruductNber
     //
     m_colPruductNber.Text = "N° Produit";
     //
     // m_lvData
     //
     this.m_lvData.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         m_colSession,
         m_colSubHeading,
         m_colLabel,
         m_colTRLabel,
         m_colPrice,
         m_colCurrency,
         m_colIncoterm,
         m_colPlace,
         m_colTime,
         m_colUnit,
         m_colOrigin,
         m_colPruductNber
     });
     this.m_lvData.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_lvData.FullRowSelect = true;
     this.m_lvData.GridLines     = true;
     this.m_lvData.HideSelection = false;
     this.m_lvData.Location      = new System.Drawing.Point(0, 25);
     this.m_lvData.Name          = "m_lvData";
     this.m_lvData.Size          = new System.Drawing.Size(798, 276);
     this.m_lvData.TabIndex      = 3;
     this.m_lvData.UseCompatibleStateImageBehavior = false;
     this.m_lvData.View         = System.Windows.Forms.View.Details;
     this.m_lvData.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.View_ColumnClick);
     //
     // TRSpotViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Window;
     this.ClientSize          = new System.Drawing.Size(798, 323);
     this.Controls.Add(this.m_lvData);
     this.Controls.Add(m_statuStrip);
     this.Controls.Add(m_toolStrip);
     this.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name        = "TRSpotViewer";
     this.Text        = "Valeurs Spots (TR)";
     m_toolStrip.ResumeLayout(false);
     m_toolStrip.PerformLayout();
     m_statuStrip.ResumeLayout(false);
     m_statuStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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(WordProcessor));
            this.mainMenu = 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.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.printToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.printPreviewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.windowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.statusBar = new System.Windows.Forms.StatusStrip();
            this.standardToolbar = new System.Windows.Forms.ToolStrip();
            this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.copyToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.pasteToolStripButton = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
            this.undoToolStripSplitButton = new System.Windows.Forms.ToolStripButton();
            this.redoToolStripSplitButton = new System.Windows.Forms.ToolStripButton();
            this.menuAndToolbarContainer = new System.Windows.Forms.ToolStripContainer();
            this.formattingToolbar = new System.Windows.Forms.ToolStrip();
            this.toolStripComboBoxFont = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripComboBoxFontSize = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBold = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonItalic = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonUnderline = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBullet = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonSetBackgroundColor = new System.Windows.Forms.ToolStripButton();
            this.openDocumentDialog = new System.Windows.Forms.OpenFileDialog();
            this.colorDialogEditorColor = new System.Windows.Forms.ColorDialog();
            this.toolStripButtonSetFontColor = new System.Windows.Forms.ToolStripButton();
            this.mainMenu.SuspendLayout();
            this.standardToolbar.SuspendLayout();
            this.menuAndToolbarContainer.TopToolStripPanel.SuspendLayout();
            this.menuAndToolbarContainer.SuspendLayout();
            this.formattingToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // mainMenu
            // 
            this.mainMenu.Dock = System.Windows.Forms.DockStyle.None;
            this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.editToolStripMenuItem,
            this.windowToolStripMenuItem});
            this.mainMenu.Location = new System.Drawing.Point(0, 0);
            this.mainMenu.MdiWindowListItem = this.windowToolStripMenuItem;
            this.mainMenu.Name = "mainMenu";
            this.mainMenu.Size = new System.Drawing.Size(792, 24);
            this.mainMenu.TabIndex = 1;
            this.mainMenu.Text = "Main menu";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.closeToolStripMenuItem,
            this.toolStripSeparator,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.toolStripSeparator1,
            this.printToolStripMenuItem,
            this.printPreviewToolStripMenuItem,
            this.toolStripSeparator2,
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripMenuItem.Image")));
            this.newToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
            this.newToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.newToolStripMenuItem.Text = "&New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.NewDocument);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripMenuItem.Image")));
            this.openToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            this.openToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.openToolStripMenuItem.Text = "&Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.OpenDocument);
            // 
            // closeToolStripMenuItem
            // 
            this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
            this.closeToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.closeToolStripMenuItem.Text = "&Close";
            this.closeToolStripMenuItem.Click += new System.EventHandler(this.CloseDocument);
            // 
            // toolStripSeparator
            // 
            this.toolStripSeparator.Name = "toolStripSeparator";
            this.toolStripSeparator.Size = new System.Drawing.Size(148, 6);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripMenuItem.Image")));
            this.saveToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.saveToolStripMenuItem.Text = "&Save";
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.SaveDocument);
            // 
            // saveAsToolStripMenuItem
            // 
            this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
            this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.saveAsToolStripMenuItem.Text = "Save &As";
            this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.SaveDocumentAs);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(148, 6);
            // 
            // printToolStripMenuItem
            // 
            this.printToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripMenuItem.Image")));
            this.printToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.printToolStripMenuItem.Name = "printToolStripMenuItem";
            this.printToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
            this.printToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.printToolStripMenuItem.Text = "&Print";
            this.printToolStripMenuItem.Visible = false;
            this.printToolStripMenuItem.Click += new System.EventHandler(this.PrintDocument);
            // 
            // printPreviewToolStripMenuItem
            // 
            this.printPreviewToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("printPreviewToolStripMenuItem.Image")));
            this.printPreviewToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.printPreviewToolStripMenuItem.Name = "printPreviewToolStripMenuItem";
            this.printPreviewToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.printPreviewToolStripMenuItem.Text = "Print Pre&view";
            this.printPreviewToolStripMenuItem.Visible = false;
            this.printPreviewToolStripMenuItem.Click += new System.EventHandler(this.PrintPreviewDocument);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(148, 6);
            this.toolStripSeparator2.Visible = false;
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
            this.exitToolStripMenuItem.Text = "E&xit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitApplication);
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.undoToolStripMenuItem,
            this.redoToolStripMenuItem,
            this.toolStripSeparator3,
            this.cutToolStripMenuItem,
            this.copyToolStripMenuItem,
            this.pasteToolStripMenuItem,
            this.toolStripSeparator4,
            this.selectAllToolStripMenuItem});
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.editToolStripMenuItem.Text = "&Edit";
            // 
            // undoToolStripMenuItem
            // 
            this.undoToolStripMenuItem.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Undo;
            this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
            this.undoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
            this.undoToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.undoToolStripMenuItem.Text = "&Undo";
            this.undoToolStripMenuItem.Click += new System.EventHandler(this.UndoAction);
            // 
            // redoToolStripMenuItem
            // 
            this.redoToolStripMenuItem.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Redo;
            this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
            this.redoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
            this.redoToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.redoToolStripMenuItem.Text = "&Redo";
            this.redoToolStripMenuItem.Click += new System.EventHandler(this.RedoAction);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(164, 6);
            // 
            // cutToolStripMenuItem
            // 
            this.cutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripMenuItem.Image")));
            this.cutToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
            this.cutToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
            this.cutToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.cutToolStripMenuItem.Text = "Cu&t";
            this.cutToolStripMenuItem.Click += new System.EventHandler(this.CutText);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripMenuItem.Image")));
            this.copyToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.copyToolStripMenuItem.Text = "&Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.CopyText);
            // 
            // pasteToolStripMenuItem
            // 
            this.pasteToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripMenuItem.Image")));
            this.pasteToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
            this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
            this.pasteToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.pasteToolStripMenuItem.Text = "&Paste";
            this.pasteToolStripMenuItem.Click += new System.EventHandler(this.PasteText);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(164, 6);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.selectAllToolStripMenuItem.Text = "Select &All";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.SelectAllText);
            // 
            // windowToolStripMenuItem
            // 
            this.windowToolStripMenuItem.Name = "windowToolStripMenuItem";
            this.windowToolStripMenuItem.Size = new System.Drawing.Size(57, 20);
            this.windowToolStripMenuItem.Text = "&Window";
            // 
            // statusBar
            // 
            this.statusBar.Location = new System.Drawing.Point(0, 444);
            this.statusBar.Name = "statusBar";
            this.statusBar.Size = new System.Drawing.Size(792, 22);
            this.statusBar.TabIndex = 3;
            this.statusBar.Text = "Status bar";
            // 
            // standardToolbar
            // 
            this.standardToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.standardToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripButton,
            this.openToolStripButton,
            this.saveToolStripButton,
            this.printToolStripButton,
            this.toolStripSeparator7,
            this.cutToolStripButton,
            this.copyToolStripButton,
            this.pasteToolStripButton,
            this.toolStripSeparator8,
            this.undoToolStripSplitButton,
            this.redoToolStripSplitButton});
            this.standardToolbar.Location = new System.Drawing.Point(0, 24);
            this.standardToolbar.Name = "standardToolbar";
            this.standardToolbar.Size = new System.Drawing.Size(792, 25);
            this.standardToolbar.Stretch = true;
            this.standardToolbar.TabIndex = 6;
            this.standardToolbar.Text = "Standard toolbar";
            // 
            // newToolStripButton
            // 
            this.newToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
            this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.newToolStripButton.Name = "newToolStripButton";
            this.newToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.newToolStripButton.Text = "&New";
            this.newToolStripButton.Click += new System.EventHandler(this.NewDocument);
            // 
            // openToolStripButton
            // 
            this.openToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
            this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.openToolStripButton.Name = "openToolStripButton";
            this.openToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.openToolStripButton.Text = "&Open";
            this.openToolStripButton.Click += new System.EventHandler(this.OpenDocument);
            // 
            // saveToolStripButton
            // 
            this.saveToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
            this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.saveToolStripButton.Name = "saveToolStripButton";
            this.saveToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.saveToolStripButton.Text = "&Save";
            this.saveToolStripButton.Click += new System.EventHandler(this.SaveDocument);
            // 
            // printToolStripButton
            // 
            this.printToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
            this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.printToolStripButton.Name = "printToolStripButton";
            this.printToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.printToolStripButton.Text = "&Print";
            this.printToolStripButton.Click += new System.EventHandler(this.PrintDocument);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
            // 
            // cutToolStripButton
            // 
            this.cutToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.cutToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("cutToolStripButton.Image")));
            this.cutToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.cutToolStripButton.Name = "cutToolStripButton";
            this.cutToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.cutToolStripButton.Text = "C&ut";
            this.cutToolStripButton.Click += new System.EventHandler(this.CutText);
            // 
            // copyToolStripButton
            // 
            this.copyToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.copyToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("copyToolStripButton.Image")));
            this.copyToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.copyToolStripButton.Name = "copyToolStripButton";
            this.copyToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.copyToolStripButton.Text = "&Copy";
            this.copyToolStripButton.Click += new System.EventHandler(this.CopyText);
            // 
            // pasteToolStripButton
            // 
            this.pasteToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.pasteToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteToolStripButton.Image")));
            this.pasteToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.pasteToolStripButton.Name = "pasteToolStripButton";
            this.pasteToolStripButton.Size = new System.Drawing.Size(23, 22);
            this.pasteToolStripButton.Text = "&Paste";
            this.pasteToolStripButton.Click += new System.EventHandler(this.PasteText);
            // 
            // toolStripSeparator8
            // 
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
            // 
            // undoToolStripSplitButton
            // 
            this.undoToolStripSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.undoToolStripSplitButton.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Undo;
            this.undoToolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.undoToolStripSplitButton.Name = "undoToolStripSplitButton";
            this.undoToolStripSplitButton.Size = new System.Drawing.Size(23, 22);
            this.undoToolStripSplitButton.Text = "Undo";
            this.undoToolStripSplitButton.MouseEnter += new System.EventHandler(this.UndoToolStripSplitButton_MouseEnter);
            this.undoToolStripSplitButton.Click += new System.EventHandler(this.UndoAction);
            // 
            // redoToolStripSplitButton
            // 
            this.redoToolStripSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.redoToolStripSplitButton.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Redo;
            this.redoToolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.redoToolStripSplitButton.Name = "redoToolStripSplitButton";
            this.redoToolStripSplitButton.Size = new System.Drawing.Size(23, 22);
            this.redoToolStripSplitButton.Text = "Redo";
            this.redoToolStripSplitButton.MouseEnter += new System.EventHandler(this.RedoToolStripSplitButton_MouseEnter);
            this.redoToolStripSplitButton.Click += new System.EventHandler(this.RedoAction);
            // 
            // menuAndToolbarContainer
            // 
            this.menuAndToolbarContainer.BottomToolStripPanelVisible = false;
            // 
            // menuAndToolbarContainer.ContentPanel
            // 
            this.menuAndToolbarContainer.ContentPanel.Size = new System.Drawing.Size(792, 0);
            this.menuAndToolbarContainer.Dock = System.Windows.Forms.DockStyle.Top;
            this.menuAndToolbarContainer.LeftToolStripPanelVisible = false;
            this.menuAndToolbarContainer.Location = new System.Drawing.Point(0, 0);
            this.menuAndToolbarContainer.Name = "menuAndToolbarContainer";
            this.menuAndToolbarContainer.RightToolStripPanelVisible = false;
            this.menuAndToolbarContainer.Size = new System.Drawing.Size(792, 74);
            this.menuAndToolbarContainer.TabIndex = 7;
            this.menuAndToolbarContainer.Text = "toolStripContainer1";
            // 
            // menuAndToolbarContainer.TopToolStripPanel
            // 
            this.menuAndToolbarContainer.TopToolStripPanel.Controls.Add(this.mainMenu);
            this.menuAndToolbarContainer.TopToolStripPanel.Controls.Add(this.standardToolbar);
            this.menuAndToolbarContainer.TopToolStripPanel.Controls.Add(this.formattingToolbar);
            // 
            // formattingToolbar
            // 
            this.formattingToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.formattingToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripComboBoxFont,
            this.toolStripComboBoxFontSize,
            this.toolStripSeparator10,
            this.toolStripButtonBold,
            this.toolStripButtonItalic,
            this.toolStripButtonUnderline,
            this.toolStripSeparator6,
            this.toolStripButtonBullet,
            this.toolStripSeparator5,
            this.toolStripButtonSetFontColor,
            this.toolStripButtonSetBackgroundColor});
            this.formattingToolbar.Location = new System.Drawing.Point(0, 49);
            this.formattingToolbar.Name = "formattingToolbar";
            this.formattingToolbar.Size = new System.Drawing.Size(792, 25);
            this.formattingToolbar.Stretch = true;
            this.formattingToolbar.TabIndex = 9;
            this.formattingToolbar.Text = "Formatting toolbar";
            // 
            // toolStripComboBoxFont
            // 
            this.toolStripComboBoxFont.Name = "toolStripComboBoxFont";
            this.toolStripComboBoxFont.Size = new System.Drawing.Size(121, 25);
            this.toolStripComboBoxFont.Text = "Microsoft Sans Serif";
            this.toolStripComboBoxFont.SelectedIndexChanged += new System.EventHandler(this.ToolStripComboBoxFont_SelectedIndexChanged);
            // 
            // toolStripComboBoxFontSize
            // 
            this.toolStripComboBoxFontSize.Items.AddRange(new object[] {
            "8",
            "9",
            "10",
            "11",
            "12",
            "14",
            "16",
            "18",
            "20",
            "22",
            "24",
            "26",
            "28",
            "36",
            "48",
            "72"});
            this.toolStripComboBoxFontSize.Name = "toolStripComboBoxFontSize";
            this.toolStripComboBoxFontSize.Size = new System.Drawing.Size(75, 25);
            this.toolStripComboBoxFontSize.Text = "8.25";
            this.toolStripComboBoxFontSize.SelectedIndexChanged += new System.EventHandler(this.ToolStripComboBoxFontSize_SelectedIndexChanged);
            // 
            // toolStripSeparator10
            // 
            this.toolStripSeparator10.Name = "toolStripSeparator10";
            this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonBold
            // 
            this.toolStripButtonBold.CheckOnClick = true;
            this.toolStripButtonBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBold.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Bold;
            this.toolStripButtonBold.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBold.Name = "toolStripButtonBold";
            this.toolStripButtonBold.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonBold.Text = "Bold";
            this.toolStripButtonBold.Click += new System.EventHandler(this.ToolStripButtonBold_Click);
            // 
            // toolStripButtonItalic
            // 
            this.toolStripButtonItalic.CheckOnClick = true;
            this.toolStripButtonItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonItalic.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Italic;
            this.toolStripButtonItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonItalic.Name = "toolStripButtonItalic";
            this.toolStripButtonItalic.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonItalic.Text = "Italic";
            this.toolStripButtonItalic.Click += new System.EventHandler(this.ToolStripButtonItalic_Click);
            // 
            // toolStripButtonUnderline
            // 
            this.toolStripButtonUnderline.CheckOnClick = true;
            this.toolStripButtonUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonUnderline.Image = global::IntermediateCSharp.Lesson09.Properties.Resources.Underline;
            this.toolStripButtonUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonUnderline.Name = "toolStripButtonUnderline";
            this.toolStripButtonUnderline.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonUnderline.Text = "Underlined";
            this.toolStripButtonUnderline.Click += new System.EventHandler(this.ToolStripButtonUnderline_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonBullet
            // 
            this.toolStripButtonBullet.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.toolStripButtonBullet.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonBullet.Image")));
            this.toolStripButtonBullet.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBullet.Name = "toolStripButtonBullet";
            this.toolStripButtonBullet.Size = new System.Drawing.Size(49, 22);
            this.toolStripButtonBullet.Text = "Bulleted";
            this.toolStripButtonBullet.Click += new System.EventHandler(this.ToolStripButtonBullet_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonSetBackgroundColor
            // 
            this.toolStripButtonSetBackgroundColor.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonSetBackgroundColor.Image")));
            this.toolStripButtonSetBackgroundColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonSetBackgroundColor.Name = "toolStripButtonSetBackgroundColor";
            this.toolStripButtonSetBackgroundColor.Size = new System.Drawing.Size(128, 22);
            this.toolStripButtonSetBackgroundColor.Text = "Set background color";
            this.toolStripButtonSetBackgroundColor.Click += new System.EventHandler(this.ToolStripButtonSetBackgroundColor_Click);
            // 
            // openDocumentDialog
            // 
            this.openDocumentDialog.DefaultExt = "rtf";
            this.openDocumentDialog.Filter = "Rich Text Format (*.rtf)|*.rtf|Text Files (*.txt)|*.txt|Unicode Text Files (*.txt" +
                ")|*.txt";
            this.openDocumentDialog.Title = "Open document";
            // 
            // colorDialogEditorColor
            // 
            this.colorDialogEditorColor.AnyColor = true;
            this.colorDialogEditorColor.Color = System.Drawing.Color.White;
            this.colorDialogEditorColor.FullOpen = true;
            this.colorDialogEditorColor.ShowHelp = true;
            // 
            // toolStripButtonSetFontColor
            // 
            this.toolStripButtonSetFontColor.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonSetFontColor.Image")));
            this.toolStripButtonSetFontColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonSetFontColor.Name = "toolStripButtonSetFontColor";
            this.toolStripButtonSetFontColor.Size = new System.Drawing.Size(92, 22);
            this.toolStripButtonSetFontColor.Text = "Set font color";
            this.toolStripButtonSetFontColor.Click += new System.EventHandler(this.ToolStripButtonSetFontColor_Click);
            // 
            // WordProcessorMainGui
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(792, 466);
            this.Controls.Add(this.menuAndToolbarContainer);
            this.Controls.Add(this.statusBar);
            this.IsMdiContainer = true;
            this.MainMenuStrip = this.mainMenu;
            this.Name = "WordProcessorMainGui";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Word Processor";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.Load += new System.EventHandler(this.OnWordProcessorLoad);
            this.mainMenu.ResumeLayout(false);
            this.mainMenu.PerformLayout();
            this.standardToolbar.ResumeLayout(false);
            this.standardToolbar.PerformLayout();
            this.menuAndToolbarContainer.TopToolStripPanel.ResumeLayout(false);
            this.menuAndToolbarContainer.TopToolStripPanel.PerformLayout();
            this.menuAndToolbarContainer.ResumeLayout(false);
            this.menuAndToolbarContainer.PerformLayout();
            this.formattingToolbar.ResumeLayout(false);
            this.formattingToolbar.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #38
0
 /// <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(GEToolStrip));
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.dropDownSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.screenGrabButton  = new System.Windows.Forms.ToolStripButton();
     this.viewInMapsButton  = new System.Windows.Forms.ToolStripButton();
     this.navigationTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.navigationTextBoxStringCollection = new System.Windows.Forms.AutoCompleteStringCollection();
     this.submitButton            = new System.Windows.Forms.ToolStripButton();
     this.refreshButton           = new System.Windows.Forms.ToolStripButton();
     this.navigationSeparator     = new System.Windows.Forms.ToolStripSeparator();
     this.viewDropDownButton      = new System.Windows.Forms.ToolStripDropDownButton();
     this.skyMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.sunMenuItem             = new System.Windows.Forms.ToolStripMenuItem();
     this.historyMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsDropDownButton   = new System.Windows.Forms.ToolStripDropDownButton();
     this.imperialUnitsMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.fadeInOutMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.controlsMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.statusBarMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.gridMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.overviewMapMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.scaleLegendMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.atmosphereMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.mouseNavigationMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.layersDropDownButton    = new System.Windows.Forms.ToolStripDropDownButton();
     this.bordersMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.buildingsMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.buildingsGreyMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.roadsMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.terrainMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.imageryDropDownButton   = new System.Windows.Forms.ToolStripDropDownButton();
     this.earthMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     this.marsMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.moonMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
     this.languageSeparator       = new System.Windows.Forms.ToolStripSeparator();
     this.languageComboBox        = new System.Windows.Forms.ToolStripComboBox();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "go");
     this.imageList1.Images.SetKeyName(1, "refresh");
     this.imageList1.Images.SetKeyName(2, "jpg");
     this.imageList1.Images.SetKeyName(3, "map");
     //
     // dropDownSeparator
     //
     this.dropDownSeparator.Name = "dropDownSeparator";
     this.dropDownSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // screenGrabButton
     //
     this.screenGrabButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.screenGrabButton.ImageKey              = "jpg";
     this.screenGrabButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.screenGrabButton.Name        = "screenGrabButton";
     this.screenGrabButton.Size        = new System.Drawing.Size(23, 20);
     this.screenGrabButton.Tag         = "SCREENGRAB";
     this.screenGrabButton.Text        = "PrtScr";
     this.screenGrabButton.ToolTipText = "Screen Grab";
     this.screenGrabButton.Click      += new System.EventHandler(this.ScreenGrabButton_Click);
     //
     // viewInMapsButton
     //
     this.viewInMapsButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.viewInMapsButton.ImageKey              = "map";
     this.viewInMapsButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.viewInMapsButton.Name        = "viewInMapsButton";
     this.viewInMapsButton.Size        = new System.Drawing.Size(23, 20);
     this.viewInMapsButton.Tag         = "VIEWMAP";
     this.viewInMapsButton.Text        = "View Map";
     this.viewInMapsButton.ToolTipText = "View in Google Maps";
     this.viewInMapsButton.Click      += new System.EventHandler(this.ViewInMapsButton_Click);
     //
     // navigationTextBox
     //
     this.navigationTextBox.AutoSize                 = false;
     this.navigationTextBox.AutoCompleteMode         = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.navigationTextBox.AutoCompleteSource       = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.navigationTextBox.AutoCompleteCustomSource = navigationTextBoxStringCollection;
     this.navigationTextBox.Name        = "navigationTextBox";
     this.navigationTextBox.Size        = new System.Drawing.Size(100, 21);
     this.navigationTextBox.Tag         = "NAVIGATION";
     this.navigationTextBox.ToolTipText = "Enter a location or the url of a kml\\kmz file";
     this.navigationTextBox.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.NavigationTextBox_KeyUp);
     //
     // submitButton
     //
     this.submitButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.submitButton.ImageKey              = "go";
     this.submitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.submitButton.Name        = "submitButton";
     this.submitButton.Size        = new System.Drawing.Size(23, 20);
     this.submitButton.ToolTipText = "Go!";
     this.submitButton.Click      += new System.EventHandler(this.NavigationButton_Click);
     //
     // refreshButton
     //
     this.refreshButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.refreshButton.ImageKey     = "refresh";
     this.refreshButton.Name         = "refreshButton";
     this.refreshButton.Size         = new System.Drawing.Size(23, 20);
     this.refreshButton.Tag          = "REFRESH";
     this.refreshButton.Text         = "refresh";
     this.refreshButton.ToolTipText  = "Refresh the plugin";
     this.refreshButton.Click       += new System.EventHandler(this.RefreshButton_Click);
     //
     // navigationSeparator
     //
     this.navigationSeparator.Name = "navigationSeparator";
     this.navigationSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // viewDropDownButton
     //
     this.viewDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.viewDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.skyMenuItem,
         this.sunMenuItem,
         this.historyMenuItem
     });
     this.viewDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.viewDropDownButton.Name        = "viewDropDownButton";
     this.viewDropDownButton.Size        = new System.Drawing.Size(42, 17);
     this.viewDropDownButton.Tag         = "VIEW";
     this.viewDropDownButton.Text        = "View";
     this.viewDropDownButton.ToolTipText = "Change the View settings";
     //
     // skyMenuItem
     //
     this.skyMenuItem.CheckOnClick = true;
     this.skyMenuItem.Name         = "skyMenuItem";
     this.skyMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.skyMenuItem.Tag          = "SKY";
     this.skyMenuItem.Text         = "Sky Mode";
     this.skyMenuItem.ToolTipText  = "Toggle Sky and Earth mode";
     this.skyMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // sunMenuItem
     //
     this.sunMenuItem.CheckOnClick = true;
     this.sunMenuItem.Name         = "sunMenuItem";
     this.sunMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.sunMenuItem.Tag          = "SUN";
     this.sunMenuItem.Text         = "Sun";
     this.sunMenuItem.ToolTipText  = "Toggle the sun visiblity";
     this.sunMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // historyMenuItem
     //
     this.historyMenuItem.CheckOnClick = true;
     this.historyMenuItem.Name         = "historyMenuItem";
     this.historyMenuItem.Size         = new System.Drawing.Size(126, 22);
     this.historyMenuItem.Tag          = "HISTORY";
     this.historyMenuItem.Text         = "Historical imagery";
     this.historyMenuItem.ToolTipText  = "Toggle the historical imagery";
     this.historyMenuItem.Click       += new System.EventHandler(this.ViewItem_Clicked);
     //
     // optionsDropDownButton
     //
     this.optionsDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.optionsDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.imperialUnitsMenuItem,
         this.controlsMenuItem,
         this.statusBarMenuItem,
         this.gridMenuItem,
         this.overviewMapMenuItem,
         this.scaleLegendMenuItem,
         this.atmosphereMenuItem,
         this.fadeInOutMenuItem,
         this.mouseNavigationMenuItem
     });
     this.optionsDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.optionsDropDownButton.Name        = "optionsDropDownButton";
     this.optionsDropDownButton.Size        = new System.Drawing.Size(57, 17);
     this.optionsDropDownButton.Tag         = "OPTIONS";
     this.optionsDropDownButton.Text        = "Options";
     this.optionsDropDownButton.ToolTipText = "Toggle the various options";
     //
     // controlsMenuItem
     //
     this.controlsMenuItem.CheckOnClick = true;
     this.controlsMenuItem.Name         = "controlsMenuItem";
     this.controlsMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.controlsMenuItem.Tag          = "CONTROLS";
     this.controlsMenuItem.Text         = "Controls";
     this.controlsMenuItem.ToolTipText  = "Toggle the controls visiblity";
     this.controlsMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // statusBarMenuItem
     //
     this.statusBarMenuItem.CheckOnClick = true;
     this.statusBarMenuItem.Name         = "statusBarMenuItem";
     this.statusBarMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.statusBarMenuItem.Tag          = "STATUS";
     this.statusBarMenuItem.Text         = "Status bar";
     this.statusBarMenuItem.ToolTipText  = "Toggle the Status bar visiblity";
     this.statusBarMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // gridMenuItem
     //
     this.gridMenuItem.CheckOnClick = true;
     this.gridMenuItem.Name         = "gridMenuItem";
     this.gridMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.gridMenuItem.Tag          = "GRID";
     this.gridMenuItem.Text         = "Grid";
     this.gridMenuItem.ToolTipText  = "Toggle the Grid visiblity";
     this.gridMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // overviewMapMenuItem
     //
     this.overviewMapMenuItem.CheckOnClick = true;
     this.overviewMapMenuItem.Name         = "overviewMapMenuItem";
     this.overviewMapMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.overviewMapMenuItem.Tag          = "OVERVIEW";
     this.overviewMapMenuItem.Text         = "Overview map";
     this.overviewMapMenuItem.ToolTipText  = "Toggle the Overview map visiblity";
     this.overviewMapMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // scaleLegendMenuItem
     //
     this.scaleLegendMenuItem.CheckOnClick = true;
     this.scaleLegendMenuItem.Name         = "scaleLegendMenuItem";
     this.scaleLegendMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.scaleLegendMenuItem.Tag          = "SCALE";
     this.scaleLegendMenuItem.Text         = "Scale legend";
     this.scaleLegendMenuItem.ToolTipText  = "Toggle the Scale legend visiblity";
     this.scaleLegendMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // atmosphereMenuItem
     //
     this.atmosphereMenuItem.Checked      = true;
     this.atmosphereMenuItem.CheckOnClick = true;
     this.atmosphereMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.atmosphereMenuItem.Name         = "atmosphereMenuItem";
     this.atmosphereMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.atmosphereMenuItem.Tag          = "ATMOSPHERE";
     this.atmosphereMenuItem.Text         = "Atmosphere";
     this.atmosphereMenuItem.ToolTipText  = "Toggle the Atmosphere visiblity";
     this.atmosphereMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // mouseNavigationMenuItem
     //
     this.mouseNavigationMenuItem.Checked      = true;
     this.mouseNavigationMenuItem.CheckOnClick = true;
     this.mouseNavigationMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mouseNavigationMenuItem.Name         = "mouseNavigationMenuItem";
     this.mouseNavigationMenuItem.Size         = new System.Drawing.Size(169, 22);
     this.mouseNavigationMenuItem.Tag          = "MOUSE";
     this.mouseNavigationMenuItem.Text         = "Mouse navigation";
     this.mouseNavigationMenuItem.ToolTipText  = "Toggle Mouse navigation enabled";
     this.mouseNavigationMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // imperialMenuItem
     //
     this.imperialUnitsMenuItem.Checked      = false;
     this.imperialUnitsMenuItem.CheckOnClick = true;
     this.imperialUnitsMenuItem.CheckState   = System.Windows.Forms.CheckState.Unchecked;
     this.imperialUnitsMenuItem.Name         = "imperialMenuItem";
     this.imperialUnitsMenuItem.Tag          = "IMPERIAL";
     this.imperialUnitsMenuItem.Text         = "Imperial Units";
     this.imperialUnitsMenuItem.ToolTipText  = "Use imperial units for the plugin";
     this.imperialUnitsMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // fadeInOutMenuItem
     //
     this.fadeInOutMenuItem.Checked      = true;
     this.fadeInOutMenuItem.CheckOnClick = true;
     this.fadeInOutMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.fadeInOutMenuItem.Name         = "fadeInOutMenuItem";
     this.fadeInOutMenuItem.Tag          = "FADEINOUT";
     this.fadeInOutMenuItem.Text         = "Animate features";
     this.fadeInOutMenuItem.ToolTipText  = "Animate new features with a slight change of scale";
     this.fadeInOutMenuItem.Click       += new System.EventHandler(this.OptionsItem_Clicked);
     //
     // layersDropDownButton
     //
     this.layersDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.layersDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.bordersMenuItem,
         this.buildingsMenuItem,
         this.buildingsGreyMenuItem,
         this.roadsMenuItem,
         this.terrainMenuItem
     });
     this.layersDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.layersDropDownButton.Name        = "layersDropDownButton";
     this.layersDropDownButton.Size        = new System.Drawing.Size(52, 17);
     this.layersDropDownButton.Tag         = "LAYERS";
     this.layersDropDownButton.Text        = "Layers";
     this.layersDropDownButton.ToolTipText = "Toggle the in-built layers";
     //
     // bordersMenuItem
     //
     this.bordersMenuItem.CheckOnClick = true;
     this.bordersMenuItem.Name         = "bordersMenuItem";
     this.bordersMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.bordersMenuItem.Tag          = "BORDERS";
     this.bordersMenuItem.Text         = "Borders";
     this.bordersMenuItem.ToolTipText  = "Toggle the Borders layer";
     this.bordersMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // buildingsMenuItem
     //
     this.buildingsMenuItem.CheckOnClick = true;
     this.buildingsMenuItem.Name         = "buildingsMenuItem";
     this.buildingsMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.buildingsMenuItem.Tag          = "BUILDINGS";
     this.buildingsMenuItem.Text         = "Buildings";
     this.buildingsMenuItem.ToolTipText  = "Toggle the Low Resolution Buildings layer";
     this.buildingsMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // buildingsGreyMenuItem
     //
     this.buildingsGreyMenuItem.CheckOnClick = true;
     this.buildingsGreyMenuItem.Name         = "buildingsGreyMenuItem";
     this.buildingsGreyMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.buildingsGreyMenuItem.Tag          = "BUILDINGS_GREY_LOW_RES";
     this.buildingsGreyMenuItem.Text         = "Buildings Low-res";
     this.buildingsGreyMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // roadsMenuItem
     //
     this.roadsMenuItem.CheckOnClick = true;
     this.roadsMenuItem.Name         = "roadsMenuItem";
     this.roadsMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.roadsMenuItem.Tag          = "ROADS";
     this.roadsMenuItem.Text         = "Roads";
     this.roadsMenuItem.ToolTipText  = "Toggle the Roads layer";
     this.roadsMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // terrainMenuItem
     //
     this.terrainMenuItem.Checked      = true;
     this.terrainMenuItem.CheckOnClick = true;
     this.terrainMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.terrainMenuItem.Name         = "terrainMenuItem";
     this.terrainMenuItem.Size         = new System.Drawing.Size(168, 22);
     this.terrainMenuItem.Tag          = "TERRAIN";
     this.terrainMenuItem.Text         = "Terrain";
     this.terrainMenuItem.ToolTipText  = "Toggle the Terrain layer";
     this.terrainMenuItem.Click       += new System.EventHandler(this.LayersItem_Clicked);
     //
     // imageryDropDownButton
     //
     this.imageryDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.imageryDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.earthMenuItem,
         this.marsMenuItem,
         this.moonMenuItem
     });
     this.imageryDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.imageryDropDownButton.Name        = "imageryDropDownButton";
     this.imageryDropDownButton.Size        = new System.Drawing.Size(42, 17);
     this.imageryDropDownButton.Tag         = "IMAGERY";
     this.imageryDropDownButton.Text        = "Imagery";
     this.imageryDropDownButton.ToolTipText = "Change the Imagery database settings";
     //
     // earthMenuItem
     //
     this.earthMenuItem.Checked      = true;
     this.earthMenuItem.CheckOnClick = true;
     this.earthMenuItem.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.earthMenuItem.Enabled      = false;
     this.earthMenuItem.Name         = "earthMenuItem";
     this.earthMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.earthMenuItem.Tag          = ImageryBase.Earth;
     this.earthMenuItem.Text         = "Earth";
     this.earthMenuItem.ToolTipText  = "Use the Earth imagery";
     this.earthMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // marsMenuItem
     //
     this.marsMenuItem.CheckOnClick = true;
     this.marsMenuItem.Name         = "marsMenuItem";
     this.marsMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.marsMenuItem.Tag          = ImageryBase.Mars;
     this.marsMenuItem.Text         = "Mars";
     this.marsMenuItem.ToolTipText  = "Use the Mars imagery";
     this.marsMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // moonMenuItem
     //
     this.moonMenuItem.CheckOnClick = true;
     this.moonMenuItem.Name         = "moonMenuItem";
     this.moonMenuItem.Size         = new System.Drawing.Size(106, 22);
     this.moonMenuItem.Tag          = ImageryBase.Moon;
     this.moonMenuItem.Text         = "Moon";
     this.moonMenuItem.ToolTipText  = "Use the Moon imagery";
     this.moonMenuItem.Click       += new System.EventHandler(this.ImageryItem_Clicked);
     //
     // languageSeparator
     //
     this.languageSeparator.Name = "languageSeparator";
     this.languageSeparator.Size = new System.Drawing.Size(6, 6);
     //
     // languageComboBox
     //
     this.languageComboBox.Text                  = "language";
     this.languageComboBox.Name                  = "languageComboBox";
     this.moonMenuItem.ToolTipText               = "Change the plugin language";
     this.languageComboBox.AutoSize              = true;
     this.languageComboBox.DropDownHeight        = 250;
     this.languageComboBox.Size                  = new System.Drawing.Size(106, 22);
     this.languageComboBox.SelectedIndexChanged += new System.EventHandler(LanguageComboBox_SelectedIndexChanged);
     //
     // GEToolStrip
     //
     this.ImageList = this.imageList1;
     this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.navigationTextBox,
         this.submitButton,
         this.refreshButton,
         this.navigationSeparator,
         this.viewDropDownButton,
         this.optionsDropDownButton,
         this.layersDropDownButton,
         this.imageryDropDownButton,
         this.dropDownSeparator,
         this.screenGrabButton,
         this.viewInMapsButton,
         this.languageSeparator,
         this.languageComboBox
     });
     this.Layout += new System.Windows.Forms.LayoutEventHandler(this.GEToolStrip_Layout);
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup4 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup5 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("");
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("");
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[] {
     "",
     "",
     "",
     "",
     "",
     "",
     ""}, -1);
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("");
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
     this.sCIAToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.wwwdlubalczToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rESTARTToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sAVEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cLOSEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sCIAToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.wwwdlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.applicationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.choosenProcessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.eXAMPLEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.menu1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.form3CloseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.form3ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.showForm4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.showForm5ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showForm6ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showForm6ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.form7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showForm7ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.form8ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showForm8ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.formToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.formToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.form11ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.formToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.forToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.forToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
     this.form15ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showToolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.label3 = new System.Windows.Forms.Label();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
     this.button4 = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.AliceBlue;
     this.button2.Font = new System.Drawing.Font("Arial Black", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.button2.ForeColor = System.Drawing.Color.MediumBlue;
     this.button2.Location = new System.Drawing.Point(12, 119);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(159, 75);
     this.button2.TabIndex = 0;
     this.button2.Text = "System Message";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.button1.Font = new System.Drawing.Font("Arial Black", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.button1.Location = new System.Drawing.Point(12, 38);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(159, 75);
     this.button1.TabIndex = 1;
     this.button1.Text = "System Control";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripMenuItem1,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5,
     this.showForm6ToolStripMenuItem,
     this.form7ToolStripMenuItem,
     this.form8ToolStripMenuItem,
     this.formToolStripMenuItem,
     this.formToolStripMenuItem1,
     this.form11ToolStripMenuItem,
     this.formToolStripMenuItem2,
     this.forToolStripMenuItem,
     this.forToolStripMenuItem1,
     this.form15ToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(877, 24);
     this.menuStrip1.TabIndex = 4;
     this.menuStrip1.Text = "menuStrip1";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem9,
     this.rESTARTToolStripMenuItem,
     this.sAVEToolStripMenuItem,
     this.cLOSEToolStripMenuItem,
     this.eXAMPLEToolStripMenuItem});
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(48, 20);
     this.toolStripMenuItem2.Text = "Form1";
     //
     // toolStripMenuItem9
     //
     this.toolStripMenuItem9.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sCIAToolStripMenuItem,
     this.wwwdlubalczToolStripMenuItem});
     this.toolStripMenuItem9.Name = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size = new System.Drawing.Size(125, 22);
     this.toolStripMenuItem9.Text = "START";
     this.toolStripMenuItem9.Click += new System.EventHandler(this.toolStripMenuItem9_Click);
     //
     // sCIAToolStripMenuItem
     //
     this.sCIAToolStripMenuItem.Name = "sCIAToolStripMenuItem";
     this.sCIAToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.sCIAToolStripMenuItem.Text = "SCIA";
     this.sCIAToolStripMenuItem.Click += new System.EventHandler(this.sCIAToolStripMenuItem_Click);
     //
     // wwwdlubalczToolStripMenuItem
     //
     this.wwwdlubalczToolStripMenuItem.Name = "wwwdlubalczToolStripMenuItem";
     this.wwwdlubalczToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.wwwdlubalczToolStripMenuItem.Text = "www.dlubal.cz";
     this.wwwdlubalczToolStripMenuItem.Click += new System.EventHandler(this.wwwdlubalczToolStripMenuItem_Click);
     //
     // rESTARTToolStripMenuItem
     //
     this.rESTARTToolStripMenuItem.Name = "rESTARTToolStripMenuItem";
     this.rESTARTToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.rESTARTToolStripMenuItem.Text = "RESTART";
     this.rESTARTToolStripMenuItem.Click += new System.EventHandler(this.rESTARTToolStripMenuItem_Click);
     //
     // sAVEToolStripMenuItem
     //
     this.sAVEToolStripMenuItem.Name = "sAVEToolStripMenuItem";
     this.sAVEToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.sAVEToolStripMenuItem.Text = "SAVE";
     //
     // cLOSEToolStripMenuItem
     //
     this.cLOSEToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sCIAToolStripMenuItem1,
     this.wwwdlToolStripMenuItem,
     this.applicationToolStripMenuItem,
     this.choosenProcessToolStripMenuItem});
     this.cLOSEToolStripMenuItem.Name = "cLOSEToolStripMenuItem";
     this.cLOSEToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.cLOSEToolStripMenuItem.Text = "CLOSE";
     this.cLOSEToolStripMenuItem.Click += new System.EventHandler(this.cLOSEToolStripMenuItem_Click);
     //
     // sCIAToolStripMenuItem1
     //
     this.sCIAToolStripMenuItem1.Name = "sCIAToolStripMenuItem1";
     this.sCIAToolStripMenuItem1.Size = new System.Drawing.Size(156, 22);
     this.sCIAToolStripMenuItem1.Text = "SCIA";
     this.sCIAToolStripMenuItem1.Click += new System.EventHandler(this.sCIAToolStripMenuItem1_Click);
     //
     // wwwdlToolStripMenuItem
     //
     this.wwwdlToolStripMenuItem.Name = "wwwdlToolStripMenuItem";
     this.wwwdlToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.wwwdlToolStripMenuItem.Text = "www.dlubal.cz";
     this.wwwdlToolStripMenuItem.Click += new System.EventHandler(this.wwwdlToolStripMenuItem_Click);
     //
     // applicationToolStripMenuItem
     //
     this.applicationToolStripMenuItem.Name = "applicationToolStripMenuItem";
     this.applicationToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.applicationToolStripMenuItem.Text = "Main application";
     //
     // choosenProcessToolStripMenuItem
     //
     this.choosenProcessToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripComboBox1});
     this.choosenProcessToolStripMenuItem.Name = "choosenProcessToolStripMenuItem";
     this.choosenProcessToolStripMenuItem.Size = new System.Drawing.Size(156, 22);
     this.choosenProcessToolStripMenuItem.Text = "Choosen process";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 21);
     this.toolStripComboBox1.ToolTipText = "Select process which will be terminated.";
     this.toolStripComboBox1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox1_SelectedIndexChanged);
     //
     // eXAMPLEToolStripMenuItem
     //
     this.eXAMPLEToolStripMenuItem.Name = "eXAMPLEToolStripMenuItem";
     this.eXAMPLEToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.eXAMPLEToolStripMenuItem.Text = "EXAMPLE";
     this.eXAMPLEToolStripMenuItem.Click += new System.EventHandler(this.eXAMPLEToolStripMenuItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem});
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(48, 20);
     this.toolStripMenuItem3.Text = "Form2";
     //
     // showToolStripMenuItem
     //
     this.showToolStripMenuItem.Name = "showToolStripMenuItem";
     this.showToolStripMenuItem.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem.Text = "Show";
     this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Checked = true;
     this.toolStripMenuItem1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menu1ToolStripMenuItem,
     this.form3CloseToolStripMenuItem,
     this.form3ExitToolStripMenuItem});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(48, 20);
     this.toolStripMenuItem1.Text = "Form3";
     //
     // menu1ToolStripMenuItem
     //
     this.menu1ToolStripMenuItem.Name = "menu1ToolStripMenuItem";
     this.menu1ToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
     this.menu1ToolStripMenuItem.Text = "Form3 Show";
     this.menu1ToolStripMenuItem.Click += new System.EventHandler(this.menu1ToolStripMenuItem_Click);
     //
     // form3CloseToolStripMenuItem
     //
     this.form3CloseToolStripMenuItem.Name = "form3CloseToolStripMenuItem";
     this.form3CloseToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
     this.form3CloseToolStripMenuItem.Text = "Form3 Restart";
     this.form3CloseToolStripMenuItem.Click += new System.EventHandler(this.form3CloseToolStripMenuItem_Click);
     //
     // form3ExitToolStripMenuItem
     //
     this.form3ExitToolStripMenuItem.Name = "form3ExitToolStripMenuItem";
     this.form3ExitToolStripMenuItem.Size = new System.Drawing.Size(140, 22);
     this.form3ExitToolStripMenuItem.Text = "Form3 Exit";
     this.form3ExitToolStripMenuItem.Click += new System.EventHandler(this.form3ExitToolStripMenuItem_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripSeparator1,
     this.showForm4ToolStripMenuItem});
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(48, 20);
     this.toolStripMenuItem4.Text = "Form4";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(130, 6);
     //
     // showForm4ToolStripMenuItem
     //
     this.showForm4ToolStripMenuItem.Name = "showForm4ToolStripMenuItem";
     this.showForm4ToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.showForm4ToolStripMenuItem.Text = "Show Form4";
     this.showForm4ToolStripMenuItem.Click += new System.EventHandler(this.showForm4ToolStripMenuItem_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showForm5ToolStripMenuItem});
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(48, 20);
     this.toolStripMenuItem5.Text = "Form5";
     //
     // showForm5ToolStripMenuItem
     //
     this.showForm5ToolStripMenuItem.Name = "showForm5ToolStripMenuItem";
     this.showForm5ToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.showForm5ToolStripMenuItem.Text = "Show Form5";
     this.showForm5ToolStripMenuItem.Click += new System.EventHandler(this.showForm5ToolStripMenuItem_Click);
     //
     // showForm6ToolStripMenuItem
     //
     this.showForm6ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showForm6ToolStripMenuItem1});
     this.showForm6ToolStripMenuItem.Name = "showForm6ToolStripMenuItem";
     this.showForm6ToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.showForm6ToolStripMenuItem.Text = "Form6";
     this.showForm6ToolStripMenuItem.Click += new System.EventHandler(this.showForm6ToolStripMenuItem_Click);
     //
     // showForm6ToolStripMenuItem1
     //
     this.showForm6ToolStripMenuItem1.Name = "showForm6ToolStripMenuItem1";
     this.showForm6ToolStripMenuItem1.Size = new System.Drawing.Size(133, 22);
     this.showForm6ToolStripMenuItem1.Text = "Show Form6";
     this.showForm6ToolStripMenuItem1.Click += new System.EventHandler(this.showForm6ToolStripMenuItem1_Click);
     //
     // form7ToolStripMenuItem
     //
     this.form7ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showForm7ToolStripMenuItem});
     this.form7ToolStripMenuItem.Name = "form7ToolStripMenuItem";
     this.form7ToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.form7ToolStripMenuItem.Text = "Form7";
     //
     // showForm7ToolStripMenuItem
     //
     this.showForm7ToolStripMenuItem.Name = "showForm7ToolStripMenuItem";
     this.showForm7ToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.showForm7ToolStripMenuItem.Text = "Show Form7";
     this.showForm7ToolStripMenuItem.Click += new System.EventHandler(this.showForm7ToolStripMenuItem_Click);
     //
     // form8ToolStripMenuItem
     //
     this.form8ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showForm8ToolStripMenuItem});
     this.form8ToolStripMenuItem.Name = "form8ToolStripMenuItem";
     this.form8ToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.form8ToolStripMenuItem.Text = "Form8";
     //
     // showForm8ToolStripMenuItem
     //
     this.showForm8ToolStripMenuItem.Name = "showForm8ToolStripMenuItem";
     this.showForm8ToolStripMenuItem.Size = new System.Drawing.Size(133, 22);
     this.showForm8ToolStripMenuItem.Text = "Show Form8";
     this.showForm8ToolStripMenuItem.Click += new System.EventHandler(this.showForm8ToolStripMenuItem_Click);
     //
     // formToolStripMenuItem
     //
     this.formToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem1});
     this.formToolStripMenuItem.Name = "formToolStripMenuItem";
     this.formToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.formToolStripMenuItem.Text = "Form9";
     //
     // showToolStripMenuItem1
     //
     this.showToolStripMenuItem1.Name = "showToolStripMenuItem1";
     this.showToolStripMenuItem1.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem1.Text = "Show";
     this.showToolStripMenuItem1.Click += new System.EventHandler(this.showToolStripMenuItem1_Click);
     //
     // formToolStripMenuItem1
     //
     this.formToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem2});
     this.formToolStripMenuItem1.Name = "formToolStripMenuItem1";
     this.formToolStripMenuItem1.Size = new System.Drawing.Size(54, 20);
     this.formToolStripMenuItem1.Text = "Form10";
     //
     // showToolStripMenuItem2
     //
     this.showToolStripMenuItem2.Name = "showToolStripMenuItem2";
     this.showToolStripMenuItem2.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem2.Text = "Show";
     this.showToolStripMenuItem2.Click += new System.EventHandler(this.showToolStripMenuItem2_Click);
     //
     // form11ToolStripMenuItem
     //
     this.form11ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem3});
     this.form11ToolStripMenuItem.Name = "form11ToolStripMenuItem";
     this.form11ToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.form11ToolStripMenuItem.Text = "Form11";
     //
     // showToolStripMenuItem3
     //
     this.showToolStripMenuItem3.Name = "showToolStripMenuItem3";
     this.showToolStripMenuItem3.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem3.Text = "Show";
     this.showToolStripMenuItem3.Click += new System.EventHandler(this.showToolStripMenuItem3_Click);
     //
     // formToolStripMenuItem2
     //
     this.formToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem4});
     this.formToolStripMenuItem2.Name = "formToolStripMenuItem2";
     this.formToolStripMenuItem2.Size = new System.Drawing.Size(54, 20);
     this.formToolStripMenuItem2.Text = "Form12";
     //
     // showToolStripMenuItem4
     //
     this.showToolStripMenuItem4.Name = "showToolStripMenuItem4";
     this.showToolStripMenuItem4.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem4.Text = "Show";
     this.showToolStripMenuItem4.Click += new System.EventHandler(this.showToolStripMenuItem4_Click);
     //
     // forToolStripMenuItem
     //
     this.forToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem5});
     this.forToolStripMenuItem.Name = "forToolStripMenuItem";
     this.forToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.forToolStripMenuItem.Text = "Form13";
     //
     // showToolStripMenuItem5
     //
     this.showToolStripMenuItem5.Name = "showToolStripMenuItem5";
     this.showToolStripMenuItem5.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem5.Text = "Show";
     this.showToolStripMenuItem5.Click += new System.EventHandler(this.showToolStripMenuItem5_Click);
     //
     // forToolStripMenuItem1
     //
     this.forToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem6});
     this.forToolStripMenuItem1.Name = "forToolStripMenuItem1";
     this.forToolStripMenuItem1.Size = new System.Drawing.Size(54, 20);
     this.forToolStripMenuItem1.Text = "Form14";
     //
     // showToolStripMenuItem6
     //
     this.showToolStripMenuItem6.Name = "showToolStripMenuItem6";
     this.showToolStripMenuItem6.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem6.Text = "Show";
     this.showToolStripMenuItem6.Click += new System.EventHandler(this.showToolStripMenuItem6_Click);
     //
     // form15ToolStripMenuItem
     //
     this.form15ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showToolStripMenuItem7});
     this.form15ToolStripMenuItem.Name = "form15ToolStripMenuItem";
     this.form15ToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.form15ToolStripMenuItem.Text = "Form15";
     //
     // showToolStripMenuItem7
     //
     this.showToolStripMenuItem7.Name = "showToolStripMenuItem7";
     this.showToolStripMenuItem7.Size = new System.Drawing.Size(101, 22);
     this.showToolStripMenuItem7.Text = "Show";
     this.showToolStripMenuItem7.Click += new System.EventHandler(this.showToolStripMenuItem7_Click);
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Font = new System.Drawing.Font("Garamond", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.maskedTextBox1.ImeMode = System.Windows.Forms.ImeMode.On;
     this.maskedTextBox1.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Insert;
     this.maskedTextBox1.Location = new System.Drawing.Point(523, 64);
     this.maskedTextBox1.Mask = "00/00/0000 90:00";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.Size = new System.Drawing.Size(168, 20);
     this.maskedTextBox1.TabIndex = 8;
     this.maskedTextBox1.ValidatingType = typeof(System.DateTime);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(523, 38);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(168, 20);
     this.textBox1.TabIndex = 9;
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(523, 90);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.Size = new System.Drawing.Size(168, 291);
     this.richTextBox1.TabIndex = 10;
     this.richTextBox1.Text = "line 1\nline 2\nline 3";
     this.richTextBox1.Visible = false;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem6,
     this.toolStripMenuItem7,
     this.toolStripMenuItem8});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(81, 70);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new System.Drawing.Size(80, 22);
     this.toolStripMenuItem6.Text = "1";
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(80, 22);
     this.toolStripMenuItem7.Text = "2";
     //
     // toolStripMenuItem8
     //
     this.toolStripMenuItem8.Name = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size = new System.Drawing.Size(80, 22);
     this.toolStripMenuItem8.Text = "3";
     //
     // treeView1
     //
     this.treeView1.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuBar;
     this.treeView1.AllowDrop = true;
     this.treeView1.CheckBoxes = true;
     this.treeView1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.treeView1.ForeColor = System.Drawing.Color.Purple;
     this.treeView1.FullRowSelect = true;
     this.treeView1.Location = new System.Drawing.Point(697, 38);
     this.treeView1.Name = "treeView1";
     this.treeView1.ShowNodeToolTips = true;
     this.treeView1.Size = new System.Drawing.Size(168, 435);
     this.treeView1.TabIndex = 13;
     //
     // listView1
     //
     this.listView1.BackColor = System.Drawing.Color.Bisque;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     listViewGroup1.Header = "ListViewGroup";
     listViewGroup1.Name = "listViewGroup1";
     listViewGroup2.Header = "ListViewGroup";
     listViewGroup2.Name = "listViewGroup2";
     listViewGroup3.Header = "ListViewGroup";
     listViewGroup3.Name = "listViewGroup3";
     listViewGroup4.Header = "ListViewGroup";
     listViewGroup4.Name = "listViewGroup4";
     listViewGroup5.Header = "ListViewGroup";
     listViewGroup5.Name = "listViewGroup5";
     this.listView1.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
     listViewGroup1,
     listViewGroup2,
     listViewGroup3,
     listViewGroup4,
     listViewGroup5});
     this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4});
     this.listView1.Location = new System.Drawing.Point(349, 38);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(168, 435);
     this.listView1.TabIndex = 15;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.label3.Location = new System.Drawing.Point(32, 313);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(99, 13);
     this.label3.TabIndex = 18;
     this.label3.Text = "Run Adobe Reader";
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
     //
     // notifyIcon1
     //
     this.notifyIcon1.Text = "notifyIcon1";
     this.notifyIcon1.Visible = true;
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(523, 416);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(168, 23);
     this.button4.TabIndex = 19;
     this.button4.Text = "button4 Load text from txt";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(523, 445);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(168, 23);
     this.button5.TabIndex = 20;
     this.button5.Text = "button5 Load processes";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // button3
     //
     this.button3.Image = global::CENEX.Properties.Resources.images;
     this.button3.Location = new System.Drawing.Point(53, 240);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(60, 60);
     this.button3.TabIndex = 17;
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(523, 387);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(168, 23);
     this.button6.TabIndex = 21;
     this.button6.Text = "Button TLT";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.ClientSize = new System.Drawing.Size(877, 480);
     this.Controls.Add(this.button6);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.maskedTextBox1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.treeView1);
     this.Controls.Add(this.richTextBox1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.button2);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Form1";
     this.Text = "Form1";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(Frm_Sis_Principal));
     this.tabPrincipal = new System.Windows.Forms.TabControl();
     this.stbPrincipal = new System.Windows.Forms.StatusStrip();
     this.lblVersion = new System.Windows.Forms.ToolStripStatusLabel();
     this.lblUsuario = new System.Windows.Forms.ToolStripStatusLabel();
     this.MenuSis = new System.Windows.Forms.MenuStrip();
     this.archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bCambiarContraseña = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.bCerrarSesion = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.cboCliente = new System.Windows.Forms.ToolStripComboBox();
     this.ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bAcercade = new System.Windows.Forms.ToolStripMenuItem();
     this.Img = new System.Windows.Forms.ImageList(this.components);
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panMenu = new System.Windows.Forms.Panel();
     this.TreOpc = new System.Windows.Forms.TreeView();
     this.picLogo = new System.Windows.Forms.PictureBox();
     this.bSalir = new System.Windows.Forms.ToolStripMenuItem();
     this.stbPrincipal.SuspendLayout();
     this.MenuSis.SuspendLayout();
     this.panMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
     this.SuspendLayout();
     //
     // tabPrincipal
     //
     this.tabPrincipal.Location = new System.Drawing.Point(391, 115);
     this.tabPrincipal.Name = "tabPrincipal";
     this.tabPrincipal.SelectedIndex = 0;
     this.tabPrincipal.Size = new System.Drawing.Size(401, 128);
     this.tabPrincipal.TabIndex = 668;
     this.tabPrincipal.Visible = false;
     //
     // stbPrincipal
     //
     this.stbPrincipal.AutoSize = false;
     this.stbPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.lblVersion,
     this.lblUsuario});
     this.stbPrincipal.Location = new System.Drawing.Point(0, 533);
     this.stbPrincipal.Name = "stbPrincipal";
     this.stbPrincipal.Size = new System.Drawing.Size(782, 23);
     this.stbPrincipal.TabIndex = 670;
     //
     // lblVersion
     //
     this.lblVersion.AutoSize = false;
     this.lblVersion.BackColor = System.Drawing.SystemColors.Control;
     this.lblVersion.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.lblVersion.Name = "lblVersion";
     this.lblVersion.Size = new System.Drawing.Size(150, 18);
     //
     // lblUsuario
     //
     this.lblUsuario.AutoSize = false;
     this.lblUsuario.BackColor = System.Drawing.SystemColors.Control;
     this.lblUsuario.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
                 | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
     this.lblUsuario.Name = "lblUsuario";
     this.lblUsuario.Size = new System.Drawing.Size(250, 18);
     //
     // MenuSis
     //
     this.MenuSis.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.archivoToolStripMenuItem,
     this.bMenu,
     this.cboCliente,
     this.ayudaToolStripMenuItem});
     this.MenuSis.Location = new System.Drawing.Point(0, 0);
     this.MenuSis.Name = "MenuSis";
     this.MenuSis.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.MenuSis.Size = new System.Drawing.Size(782, 27);
     this.MenuSis.TabIndex = 671;
     this.MenuSis.Text = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     this.archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bCambiarContraseña,
     this.toolStripSeparator2,
     this.bCerrarSesion,
     this.toolStripSeparator1,
     this.bSalir});
     this.archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     this.archivoToolStripMenuItem.Size = new System.Drawing.Size(60, 23);
     this.archivoToolStripMenuItem.Text = "&Archivo";
     //
     // bCambiarContraseña
     //
     this.bCambiarContraseña.Name = "bCambiarContraseña";
     this.bCambiarContraseña.Size = new System.Drawing.Size(189, 28);
     this.bCambiarContraseña.Text = "Cambiar Contraseña";
     this.bCambiarContraseña.Click += new System.EventHandler(this.bCambiarContraseña_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(186, 6);
     //
     // bCerrarSesion
     //
     this.bCerrarSesion.Name = "bCerrarSesion";
     this.bCerrarSesion.Size = new System.Drawing.Size(189, 28);
     this.bCerrarSesion.Text = "&Cerrar Sesión";
     this.bCerrarSesion.Click += new System.EventHandler(this.bCerrarSesion_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(186, 6);
     //
     // bMenu
     //
     this.bMenu.Name = "bMenu";
     this.bMenu.ShortcutKeys = System.Windows.Forms.Keys.F8;
     this.bMenu.Size = new System.Drawing.Size(92, 23);
     this.bMenu.Text = "&Ocultar Menú";
     this.bMenu.Click += new System.EventHandler(this.bMenu_Click);
     //
     // cboCliente
     //
     this.cboCliente.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboCliente.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.cboCliente.Name = "cboCliente";
     this.cboCliente.Size = new System.Drawing.Size(121, 23);
     this.cboCliente.ToolTipText = "Seleccione Cliente";
     this.cboCliente.SelectedIndexChanged += new System.EventHandler(this.cboCliente_SelectedIndexChanged);
     //
     // ayudaToolStripMenuItem
     //
     this.ayudaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bAcercade});
     this.ayudaToolStripMenuItem.Name = "ayudaToolStripMenuItem";
     this.ayudaToolStripMenuItem.Size = new System.Drawing.Size(53, 23);
     this.ayudaToolStripMenuItem.Text = "A&yuda";
     //
     // bAcercade
     //
     this.bAcercade.Name = "bAcercade";
     this.bAcercade.Size = new System.Drawing.Size(138, 22);
     this.bAcercade.Text = "Acerca &de ...";
     this.bAcercade.Click += new System.EventHandler(this.bAcercade_Click);
     //
     // Img
     //
     this.Img.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Img.ImageStream")));
     this.Img.TransparentColor = System.Drawing.Color.Transparent;
     this.Img.Images.SetKeyName(0, "folder.gif");
     this.Img.Images.SetKeyName(1, "field.gif");
     //
     // splitter1
     //
     this.splitter1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitter1.Location = new System.Drawing.Point(259, 27);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(1, 506);
     this.splitter1.TabIndex = 673;
     this.splitter1.TabStop = false;
     //
     // panMenu
     //
     this.panMenu.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panMenu.Controls.Add(this.TreOpc);
     this.panMenu.Controls.Add(this.picLogo);
     this.panMenu.Dock = System.Windows.Forms.DockStyle.Left;
     this.panMenu.Location = new System.Drawing.Point(0, 27);
     this.panMenu.Name = "panMenu";
     this.panMenu.Size = new System.Drawing.Size(259, 506);
     this.panMenu.TabIndex = 674;
     //
     // TreOpc
     //
     this.TreOpc.BackColor = System.Drawing.Color.WhiteSmoke;
     this.TreOpc.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.TreOpc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TreOpc.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TreOpc.ImageIndex = 0;
     this.TreOpc.ImageList = this.Img;
     this.TreOpc.Location = new System.Drawing.Point(0, 77);
     this.TreOpc.Name = "TreOpc";
     this.TreOpc.SelectedImageIndex = 0;
     this.TreOpc.Size = new System.Drawing.Size(255, 425);
     this.TreOpc.TabIndex = 673;
     this.TreOpc.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.TreOpc_AfterSelect);
     this.TreOpc.DoubleClick += new System.EventHandler(this.TreOpc_DoubleClick);
     this.TreOpc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.TreOpc_KeyPress);
     //
     // picLogo
     //
     this.picLogo.BackColor = System.Drawing.Color.White;
     this.picLogo.Dock = System.Windows.Forms.DockStyle.Top;
     this.picLogo.InitialImage = ((System.Drawing.Image)(resources.GetObject("picLogo.InitialImage")));
     this.picLogo.Location = new System.Drawing.Point(0, 0);
     this.picLogo.Name = "picLogo";
     this.picLogo.Size = new System.Drawing.Size(255, 77);
     this.picLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picLogo.TabIndex = 674;
     this.picLogo.TabStop = false;
     //
     // bSalir
     //
     this.bSalir.Image = global::SisCtd.Properties.Resources.Toolbar_Close;
     this.bSalir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.bSalir.Name = "bSalir";
     this.bSalir.ShortcutKeys = System.Windows.Forms.Keys.F12;
     this.bSalir.Size = new System.Drawing.Size(189, 28);
     this.bSalir.Text = "Salir";
     this.bSalir.Click += new System.EventHandler(this.bSalir_Click);
     //
     // Frm_Sis_Principal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.LightSlateGray;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(782, 556);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.tabPrincipal);
     this.Controls.Add(this.panMenu);
     this.Controls.Add(this.MenuSis);
     this.Controls.Add(this.stbPrincipal);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "Frm_Sis_Principal";
     this.Text = "SisCtd - Control de Tramite Documentario";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Frm_Sis_Principal_Load);
     this.stbPrincipal.ResumeLayout(false);
     this.stbPrincipal.PerformLayout();
     this.MenuSis.ResumeLayout(false);
     this.MenuSis.PerformLayout();
     this.panMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToOrderColumns = true;
     this.dataGridView1.AllowUserToResizeRows = false;
     this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Control;
     this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView1.Location = new System.Drawing.Point(0, 28);
     this.dataGridView1.Margin = new System.Windows.Forms.Padding(0);
     this.dataGridView1.MultiSelect = false;
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Consolas", 8F);
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dataGridView1.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Consolas", 8F);
     this.dataGridView1.RowTemplate.Height = 18;
     this.dataGridView1.Size = new System.Drawing.Size(890, 232);
     this.dataGridView1.TabIndex = 2;
     this.dataGridView1.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_CellMouseClick);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.toolStripSeparator1,
     this.toolStripLabel2,
     this.toolStripTextBox1,
     this.toolStripLabel4,
     this.toolStripComboBox2,
     this.toolStripLabel3,
     this.toolStripComboBox1});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(890, 28);
     this.toolStrip1.TabIndex = 5;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 25);
     this.toolStripLabel1.Text = "Filter";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 28);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(85, 25);
     this.toolStripLabel2.Text = "Symbol Name:";
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.BackColor = System.Drawing.SystemColors.Window;
     this.toolStripTextBox1.Margin = new System.Windows.Forms.Padding(1, 3, 1, 2);
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
     this.toolStripTextBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(47, 25);
     this.toolStripLabel4.Text = "Length:";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "<Any>",
     "1-Byte",
     "2-Word",
     "4-Integer",
     "8-Long"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(75, 28);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(76, 25);
     this.toolStripLabel3.Text = "Section Kind:";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "<Any>",
     "Text",
     "BSS",
     "ROData"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(75, 28);
     this.toolStripComboBox1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox1_SelectedIndexChanged);
     //
     // SymbolView
     //
     this.ClientSize = new System.Drawing.Size(890, 260);
     this.CloseButton = false;
     this.CloseButtonVisible = false;
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.toolStrip1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "SymbolView";
     this.TabText = "Symbols";
     this.Text = "Symbols";
     this.Load += new System.EventHandler(this.SymbolView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #42
0
 /// <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(ValidFrm));
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     this.tab                         = new System.Windows.Forms.TabControl();
     this.dB                          = new Exam.DB();
     this.studTab                     = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel4           = new System.Windows.Forms.TableLayoutPanel();
     this.toolStrip5                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2             = new System.Windows.Forms.ToolStripLabel();
     this.scoreBox                    = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip4                  = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel5             = new System.Windows.Forms.ToolStripLabel();
     this.CorrectBox                  = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip3                  = new System.Windows.Forms.ToolStrip();
     this.resultlbl                   = new System.Windows.Forms.ToolStripLabel();
     this.verBox                      = new System.Windows.Forms.ToolStripTextBox();
     this.validator                   = new System.Windows.Forms.ToolStripButton();
     this.toolStrip2                  = new System.Windows.Forms.ToolStrip();
     this.carnelbl                    = new System.Windows.Forms.ToolStripLabel();
     this.carneBox                    = new System.Windows.Forms.ToolStripComboBox();
     this.picBox                      = new System.Windows.Forms.PictureBox();
     this.stuListDGV                  = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stuListBS                   = new System.Windows.Forms.BindingSource(this.components);
     this.studentDataGridView         = new System.Windows.Forms.DataGridView();
     this.QRCode                      = new System.Windows.Forms.DataGridViewImageColumn();
     this.StudentID                   = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Correct                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Error                       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9  = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.studentBS                   = new System.Windows.Forms.BindingSource(this.components);
     this.toolStrip1                  = new System.Windows.Forms.ToolStrip();
     this.namelbl                     = new System.Windows.Forms.ToolStripLabel();
     this.nameBox                     = new System.Windows.Forms.ToolStripTextBox();
     this.surnamelbl                  = new System.Windows.Forms.ToolStripLabel();
     this.surnameBox                  = new System.Windows.Forms.ToolStripTextBox();
     this.ucScan                      = new VTools.ucScanner();
     this.TLP                         = new System.Windows.Forms.TableLayoutPanel();
     this.toolStripSeparator5         = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1             = new System.Windows.Forms.ToolStripLabel();
     this.tab.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dB)).BeginInit();
     this.studTab.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.toolStrip5.SuspendLayout();
     this.toolStrip4.SuspendLayout();
     this.toolStrip3.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListDGV)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListBS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentDataGridView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBS)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.TLP.SuspendLayout();
     this.SuspendLayout();
     //
     // tab
     //
     this.tab.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.TLP.SetColumnSpan(this.tab, 2);
     this.tab.Controls.Add(this.studTab);
     this.tab.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tab.Font          = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tab.Location      = new System.Drawing.Point(3, 89);
     this.tab.Margin        = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tab.Multiline     = true;
     this.tab.Name          = "tab";
     this.tab.SelectedIndex = 0;
     this.tab.Size          = new System.Drawing.Size(1288, 647);
     this.tab.TabIndex      = 0;
     //
     // dB
     //
     this.dB.DataSetName             = "DB";
     this.dB.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // studTab
     //
     this.studTab.BackColor = System.Drawing.Color.Gray;
     this.studTab.Controls.Add(this.tableLayoutPanel4);
     this.studTab.Location = new System.Drawing.Point(4, 33);
     this.studTab.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studTab.Name     = "studTab";
     this.studTab.Padding  = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studTab.Size     = new System.Drawing.Size(1280, 610);
     this.studTab.TabIndex = 3;
     this.studTab.Text     = "Estudiante";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(34)))), ((int)(((byte)(34)))), ((int)(((byte)(34)))));
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.40502F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 83.59498F));
     this.tableLayoutPanel4.Controls.Add(this.toolStrip5, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip4, 0, 2);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip3, 1, 2);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip2, 0, 0);
     this.tableLayoutPanel4.Controls.Add(this.picBox, 0, 3);
     this.tableLayoutPanel4.Controls.Add(this.stuListDGV, 0, 5);
     this.tableLayoutPanel4.Controls.Add(this.studentDataGridView, 1, 3);
     this.tableLayoutPanel4.Controls.Add(this.toolStrip1, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.ucScan, 1, 6);
     this.tableLayoutPanel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(3, 4);
     this.tableLayoutPanel4.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.tableLayoutPanel4.Name     = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 7;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 9.302325F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 7.807309F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.970099F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 19.60133F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.803987F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 37.04319F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 8.305648F));
     this.tableLayoutPanel4.Size     = new System.Drawing.Size(1274, 602);
     this.tableLayoutPanel4.TabIndex = 0;
     //
     // toolStrip5
     //
     this.toolStrip5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip5.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip5.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip5.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel2,
         this.scoreBox
     });
     this.toolStrip5.Location = new System.Drawing.Point(0, 56);
     this.toolStrip5.Name     = "toolStrip5";
     this.toolStrip5.Size     = new System.Drawing.Size(208, 47);
     this.toolStrip5.TabIndex = 7;
     this.toolStrip5.Text     = "toolStrip5";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripLabel2.ForeColor = System.Drawing.Color.Cyan;
     this.toolStripLabel2.Name      = "toolStripLabel2";
     this.toolStripLabel2.Size      = new System.Drawing.Size(52, 44);
     this.toolStripLabel2.Text      = "NOTA";
     //
     // scoreBox
     //
     this.scoreBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.scoreBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.scoreBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.scoreBox.Margin           = new System.Windows.Forms.Padding(47, 0, 1, 0);
     this.scoreBox.Name             = "scoreBox";
     this.scoreBox.ReadOnly         = true;
     this.scoreBox.Size             = new System.Drawing.Size(70, 47);
     this.scoreBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStrip4
     //
     this.toolStrip4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip4.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip4.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel5,
         this.CorrectBox
     });
     this.toolStrip4.Location = new System.Drawing.Point(0, 103);
     this.toolStrip4.Name     = "toolStrip4";
     this.toolStrip4.Size     = new System.Drawing.Size(208, 54);
     this.toolStrip4.TabIndex = 6;
     this.toolStrip4.Text     = "toolStrip4";
     //
     // toolStripLabel5
     //
     this.toolStripLabel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStripLabel5.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripLabel5.ForeColor = System.Drawing.Color.DarkOrange;
     this.toolStripLabel5.Name      = "toolStripLabel5";
     this.toolStripLabel5.Size      = new System.Drawing.Size(98, 51);
     this.toolStripLabel5.Text      = "CORRECTAS";
     //
     // CorrectBox
     //
     this.CorrectBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.CorrectBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CorrectBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.CorrectBox.Name             = "CorrectBox";
     this.CorrectBox.ReadOnly         = true;
     this.CorrectBox.Size             = new System.Drawing.Size(70, 54);
     this.CorrectBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStrip3
     //
     this.toolStrip3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip3.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip3.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.resultlbl,
         this.verBox,
         this.validator
     });
     this.toolStrip3.Location = new System.Drawing.Point(208, 103);
     this.toolStrip3.Name     = "toolStrip3";
     this.toolStrip3.Size     = new System.Drawing.Size(1066, 54);
     this.toolStrip3.TabIndex = 4;
     this.toolStrip3.Text     = "toolStrip3";
     //
     // resultlbl
     //
     this.resultlbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.resultlbl.ForeColor = System.Drawing.Color.DarkOrange;
     this.resultlbl.Name      = "resultlbl";
     this.resultlbl.Size      = new System.Drawing.Size(93, 51);
     this.resultlbl.Text      = "RESPUESTA";
     //
     // verBox
     //
     this.verBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.verBox.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.verBox.ForeColor = System.Drawing.Color.LemonChiffon;
     this.verBox.Name      = "verBox";
     this.verBox.Size      = new System.Drawing.Size(800, 54);
     //
     // validator
     //
     this.validator.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.validator.Font                  = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.validator.ForeColor             = System.Drawing.Color.Gold;
     this.validator.Image                 = ((System.Drawing.Image)(resources.GetObject("validator.Image")));
     this.validator.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.validator.Name                  = "validator";
     this.validator.Size                  = new System.Drawing.Size(79, 51);
     this.validator.Text                  = "VALIDAR";
     this.validator.Click                += new System.EventHandler(this.validator_Click);
     //
     // toolStrip2
     //
     this.toolStrip2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip2.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.carnelbl,
         this.carneBox
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 0);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(208, 56);
     this.toolStrip2.TabIndex = 3;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // carnelbl
     //
     this.carnelbl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.carnelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.carnelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.carnelbl.Name      = "carnelbl";
     this.carnelbl.Size      = new System.Drawing.Size(61, 53);
     this.carnelbl.Text      = "CARNÉ";
     //
     // carneBox
     //
     this.carneBox.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.carneBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.carneBox.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.carneBox.Font         = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.carneBox.ForeColor    = System.Drawing.Color.LemonChiffon;
     this.carneBox.Name         = "carneBox";
     this.carneBox.Size         = new System.Drawing.Size(130, 56);
     this.carneBox.TextChanged += new System.EventHandler(this.carneBox_TextChanged);
     //
     // picBox
     //
     this.picBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.picBox.Location = new System.Drawing.Point(3, 161);
     this.picBox.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.picBox.Name     = "picBox";
     this.tableLayoutPanel4.SetRowSpan(this.picBox, 2);
     this.picBox.Size     = new System.Drawing.Size(202, 163);
     this.picBox.TabIndex = 2;
     this.picBox.TabStop  = false;
     //
     // stuListDGV
     //
     this.stuListDGV.AutoGenerateColumns           = false;
     this.stuListDGV.BackgroundColor               = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     dataGridViewCellStyle1.Alignment              = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle1.Font                   = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor              = System.Drawing.Color.LemonChiffon;
     dataGridViewCellStyle1.SelectionBackColor     = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor     = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode               = System.Windows.Forms.DataGridViewTriState.True;
     this.stuListDGV.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.stuListDGV.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.stuListDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.dataGridViewTextBoxColumn37,
         this.dataGridViewTextBoxColumn36,
         this.dataGridViewTextBoxColumn38,
         this.dataGridViewTextBoxColumn39,
         this.dataGridViewTextBoxColumn32
     });
     this.stuListDGV.DataSource = this.stuListBS;
     this.stuListDGV.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.stuListDGV.EnableHeadersVisualStyles = false;
     this.stuListDGV.Location          = new System.Drawing.Point(3, 332);
     this.stuListDGV.Margin            = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.stuListDGV.Name              = "stuListDGV";
     this.stuListDGV.RowHeadersVisible = false;
     this.tableLayoutPanel4.SetRowSpan(this.stuListDGV, 2);
     this.stuListDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.stuListDGV.Size          = new System.Drawing.Size(202, 266);
     this.stuListDGV.TabIndex      = 0;
     //
     // dataGridViewTextBoxColumn37
     //
     this.dataGridViewTextBoxColumn37.DataPropertyName = "StudentID";
     this.dataGridViewTextBoxColumn37.HeaderText       = "ID";
     this.dataGridViewTextBoxColumn37.Name             = "dataGridViewTextBoxColumn37";
     //
     // dataGridViewTextBoxColumn36
     //
     this.dataGridViewTextBoxColumn36.DataPropertyName = "Section";
     this.dataGridViewTextBoxColumn36.HeaderText       = "S";
     this.dataGridViewTextBoxColumn36.Name             = "dataGridViewTextBoxColumn36";
     //
     // dataGridViewTextBoxColumn38
     //
     this.dataGridViewTextBoxColumn38.DataPropertyName = "LastNames";
     this.dataGridViewTextBoxColumn38.HeaderText       = "Apellidos";
     this.dataGridViewTextBoxColumn38.Name             = "dataGridViewTextBoxColumn38";
     //
     // dataGridViewTextBoxColumn39
     //
     this.dataGridViewTextBoxColumn39.DataPropertyName = "FirstNames";
     this.dataGridViewTextBoxColumn39.HeaderText       = "Nombres";
     this.dataGridViewTextBoxColumn39.Name             = "dataGridViewTextBoxColumn39";
     //
     // dataGridViewTextBoxColumn32
     //
     this.dataGridViewTextBoxColumn32.DataPropertyName = "Class";
     this.dataGridViewTextBoxColumn32.HeaderText       = "Class";
     this.dataGridViewTextBoxColumn32.Name             = "dataGridViewTextBoxColumn32";
     this.dataGridViewTextBoxColumn32.Visible          = false;
     //
     // stuListBS
     //
     this.stuListBS.DataMember = "StuList";
     this.stuListBS.DataSource = this.dB;
     //
     // studentDataGridView
     //
     this.studentDataGridView.AllowUserToAddRows    = false;
     this.studentDataGridView.AllowUserToDeleteRows = false;
     this.studentDataGridView.AutoGenerateColumns   = false;
     this.studentDataGridView.BackgroundColor       = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.Alignment          = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle2.Font               = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor          = System.Drawing.Color.LemonChiffon;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode           = System.Windows.Forms.DataGridViewTriState.True;
     this.studentDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.studentDataGridView.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.studentDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.QRCode,
         this.StudentID,
         this.dataGridViewTextBoxColumn13,
         this.dataGridViewTextBoxColumn14,
         this.dataGridViewTextBoxColumn15,
         this.Correct,
         this.Error,
         this.dataGridViewTextBoxColumn20,
         this.dataGridViewTextBoxColumn17,
         this.dataGridViewTextBoxColumn40,
         this.dataGridViewTextBoxColumn9
     });
     this.studentDataGridView.DataSource                = this.studentBS;
     dataGridViewCellStyle6.Alignment                   = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle6.BackColor                   = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Font                        = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor                   = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle6.SelectionBackColor          = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor          = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle6.WrapMode                    = System.Windows.Forms.DataGridViewTriState.False;
     this.studentDataGridView.DefaultCellStyle          = dataGridViewCellStyle6;
     this.studentDataGridView.Dock                      = System.Windows.Forms.DockStyle.Fill;
     this.studentDataGridView.EnableHeadersVisualStyles = false;
     this.studentDataGridView.Location                  = new System.Drawing.Point(211, 161);
     this.studentDataGridView.Margin                    = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.studentDataGridView.MultiSelect               = false;
     this.studentDataGridView.Name                      = "studentDataGridView";
     this.studentDataGridView.ReadOnly                  = true;
     this.tableLayoutPanel4.SetRowSpan(this.studentDataGridView, 3);
     this.studentDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.studentDataGridView.Size          = new System.Drawing.Size(1060, 386);
     this.studentDataGridView.TabIndex      = 0;
     //
     // QRCode
     //
     this.QRCode.DataPropertyName = "QRCode";
     this.QRCode.HeaderText       = "QRCode";
     this.QRCode.Name             = "QRCode";
     this.QRCode.ReadOnly         = true;
     //
     // StudentID
     //
     this.StudentID.DataPropertyName  = "StudentID";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.StudentID.DefaultCellStyle  = dataGridViewCellStyle3;
     this.StudentID.HeaderText        = "Carné";
     this.StudentID.Name     = "StudentID";
     this.StudentID.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn13
     //
     this.dataGridViewTextBoxColumn13.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn13.DataPropertyName = "Name";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn13.DefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewTextBoxColumn13.HeaderText       = "Nombres";
     this.dataGridViewTextBoxColumn13.Name             = "dataGridViewTextBoxColumn13";
     this.dataGridViewTextBoxColumn13.ReadOnly         = true;
     this.dataGridViewTextBoxColumn13.Width            = 103;
     //
     // dataGridViewTextBoxColumn14
     //
     this.dataGridViewTextBoxColumn14.AutoSizeMode     = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.dataGridViewTextBoxColumn14.DataPropertyName = "Surname";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle5;
     this.dataGridViewTextBoxColumn14.HeaderText       = "Apellidos";
     this.dataGridViewTextBoxColumn14.Name             = "dataGridViewTextBoxColumn14";
     this.dataGridViewTextBoxColumn14.ReadOnly         = true;
     this.dataGridViewTextBoxColumn14.Width            = 104;
     //
     // dataGridViewTextBoxColumn15
     //
     this.dataGridViewTextBoxColumn15.DataPropertyName = "Score";
     this.dataGridViewTextBoxColumn15.HeaderText       = "Nota";
     this.dataGridViewTextBoxColumn15.Name             = "dataGridViewTextBoxColumn15";
     this.dataGridViewTextBoxColumn15.ReadOnly         = true;
     //
     // Correct
     //
     this.Correct.DataPropertyName = "Correct";
     this.Correct.HeaderText       = "Correctas";
     this.Correct.Name             = "Correct";
     this.Correct.ReadOnly         = true;
     //
     // Error
     //
     this.Error.DataPropertyName = "Error";
     this.Error.HeaderText       = "Error en";
     this.Error.Name             = "Error";
     this.Error.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn20
     //
     this.dataGridViewTextBoxColumn20.DataPropertyName = "LProvided";
     this.dataGridViewTextBoxColumn20.HeaderText       = "Respuesta";
     this.dataGridViewTextBoxColumn20.Name             = "dataGridViewTextBoxColumn20";
     this.dataGridViewTextBoxColumn20.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn17
     //
     this.dataGridViewTextBoxColumn17.DataPropertyName = "Obs";
     this.dataGridViewTextBoxColumn17.HeaderText       = "Obs";
     this.dataGridViewTextBoxColumn17.Name             = "dataGridViewTextBoxColumn17";
     this.dataGridViewTextBoxColumn17.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn40
     //
     this.dataGridViewTextBoxColumn40.DataPropertyName = "GUID";
     this.dataGridViewTextBoxColumn40.HeaderText       = "GUID";
     this.dataGridViewTextBoxColumn40.Name             = "dataGridViewTextBoxColumn40";
     this.dataGridViewTextBoxColumn40.ReadOnly         = true;
     //
     // dataGridViewTextBoxColumn9
     //
     this.dataGridViewTextBoxColumn9.DataPropertyName = "EID";
     this.dataGridViewTextBoxColumn9.HeaderText       = "EID";
     this.dataGridViewTextBoxColumn9.Name             = "dataGridViewTextBoxColumn9";
     this.dataGridViewTextBoxColumn9.ReadOnly         = true;
     //
     // studentBS
     //
     this.studentBS.DataMember = "Student";
     this.studentBS.DataSource = this.dB;
     this.studentBS.Filter     = "";
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.toolStrip1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.namelbl,
         this.nameBox,
         this.surnamelbl,
         this.surnameBox
     });
     this.toolStrip1.Location = new System.Drawing.Point(208, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(1066, 56);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // namelbl
     //
     this.namelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.namelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.namelbl.Name      = "namelbl";
     this.namelbl.Size      = new System.Drawing.Size(86, 53);
     this.namelbl.Text      = "NOMBRES";
     //
     // nameBox
     //
     this.nameBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.nameBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nameBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.nameBox.Name             = "nameBox";
     this.nameBox.ReadOnly         = true;
     this.nameBox.Size             = new System.Drawing.Size(400, 56);
     this.nameBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // surnamelbl
     //
     this.surnamelbl.Font      = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.surnamelbl.ForeColor = System.Drawing.Color.GreenYellow;
     this.surnamelbl.Name      = "surnamelbl";
     this.surnamelbl.Size      = new System.Drawing.Size(91, 53);
     this.surnamelbl.Text      = "APELLIDOS";
     //
     // surnameBox
     //
     this.surnameBox.BackColor        = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
     this.surnameBox.Font             = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.surnameBox.ForeColor        = System.Drawing.Color.LemonChiffon;
     this.surnameBox.Name             = "surnameBox";
     this.surnameBox.ReadOnly         = true;
     this.surnameBox.Size             = new System.Drawing.Size(400, 56);
     this.surnameBox.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // ucScan
     //
     this.ucScan.BaudRate      = 9600;
     this.ucScan.ComPort       = "4";
     this.ucScan.DataBits      = 8;
     this.ucScan.DelayTimeFile = 500;
     this.ucScan.DelayTimeMsg  = 50;
     this.ucScan.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.ucScan.Location      = new System.Drawing.Point(212, 556);
     this.ucScan.Margin        = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.ucScan.MaxLength     = 8;
     this.ucScan.Name          = "ucScan";
     this.ucScan.Result        = "";
     this.ucScan.SendContent   = null;
     this.ucScan.Size          = new System.Drawing.Size(1058, 41);
     this.ucScan.Status        = "";
     this.ucScan.TabIndex      = 5;
     //
     // TLP
     //
     this.TLP.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.TLP.ColumnCount = 2;
     this.TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 56.8779F));
     this.TLP.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 43.1221F));
     this.TLP.Controls.Add(this.tab, 0, 2);
     this.TLP.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.TLP.Location = new System.Drawing.Point(0, 0);
     this.TLP.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.TLP.Name     = "TLP";
     this.TLP.RowCount = 3;
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 6.739811F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 93.26019F));
     this.TLP.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.TLP.Size     = new System.Drawing.Size(1294, 740);
     this.TLP.TabIndex = 0;
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 39);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(86, 56);
     this.toolStripLabel1.Text = "toolStripLabel1";
     //
     // ValidFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.Gray;
     this.ClientSize          = new System.Drawing.Size(1294, 740);
     this.Controls.Add(this.TLP);
     this.Font   = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name   = "ValidFrm";
     this.Text   = "Generador de Exámenes del  Departamento de Física - Universidad Simón Bolívar    " +
                   "                                            Contacto: Fulvio Farina / fulviofari" +
                   "*****@*****.**";
     this.Load += new System.EventHandler(this.form_Load);
     this.tab.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dB)).EndInit();
     this.studTab.ResumeLayout(false);
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     this.toolStrip5.ResumeLayout(false);
     this.toolStrip5.PerformLayout();
     this.toolStrip4.ResumeLayout(false);
     this.toolStrip4.PerformLayout();
     this.toolStrip3.ResumeLayout(false);
     this.toolStrip3.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListDGV)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.stuListBS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentDataGridView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.studentBS)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.TLP.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <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(Form1));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sourceFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mapObjectBrowserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.buildToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compileAndCopyToMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compileAndSaveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compileAndSaveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.libraryServerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createAccountToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.manageAccountToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uploadLibraryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.downloadLibraryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.searchDefinitionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changeLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.checkForUpdatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changeToAnotherVersionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reportErrorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.projectView = new Galaxy_Editor_2.TreeViewDragDrop();
     this.projectViewImageList = new System.Windows.Forms.ImageList(this.components);
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.objectBrowserSplitContainer = new System.Windows.Forms.SplitContainer();
     this.tabStrip = new FarsiLibrary.Win.FATabStrip();
     this.ObjectBrowserPanel = new System.Windows.Forms.Panel();
     this.ObjectBrowserList = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.ObjectBrowserCatagory = new System.Windows.Forms.ToolStripComboBox();
     this.TBRefreshObjectList = new System.Windows.Forms.ToolStripButton();
     this.label1 = new System.Windows.Forms.Label();
     this.messageView = new Galaxy_Editor_2.TreeViewDragDrop();
     this.messageViewImageList = new System.Windows.Forms.ImageList(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.CBShowWarnings = new System.Windows.Forms.CheckBox();
     this.CBShowErrors = new System.Windows.Forms.CheckBox();
     this.projectViewMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.newFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newDialogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openInExploreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.activateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.projectViewProjectMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.newProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.compilerStatusText = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.TBNewProject = new System.Windows.Forms.ToolStripButton();
     this.TBNewFile = new System.Windows.Forms.ToolStripButton();
     this.TBNewFolder = new System.Windows.Forms.ToolStripButton();
     this.TBDelete = new System.Windows.Forms.ToolStripButton();
     this.TBSave = new System.Windows.Forms.ToolStripButton();
     this.TBSaveAll = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.TBCut = new System.Windows.Forms.ToolStripButton();
     this.TBCopy = new System.Windows.Forms.ToolStripButton();
     this.TBPaste = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.TBUndo = new System.Windows.Forms.ToolStripButton();
     this.TBRedo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.TBRun = new System.Windows.Forms.ToolStripSplitButton();
     this.runToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.buildOnlyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.TBFind = new System.Windows.Forms.ToolStripButton();
     this.editorRightClick = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.RightClickCut = new System.Windows.Forms.ToolStripMenuItem();
     this.RightClickCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.RightClickPaste = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.rightClickFind = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.TSInsertConstructor = new System.Windows.Forms.ToolStripMenuItem();
     this.ObjectBrowserTooltip = new System.Windows.Forms.ToolTip(this.components);
     this.PBGurilande = new System.Windows.Forms.PictureBox();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.objectBrowserSplitContainer)).BeginInit();
     this.objectBrowserSplitContainer.Panel1.SuspendLayout();
     this.objectBrowserSplitContainer.Panel2.SuspendLayout();
     this.objectBrowserSplitContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabStrip)).BeginInit();
     this.ObjectBrowserPanel.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.projectViewMenu.SuspendLayout();
     this.projectViewProjectMenu.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.editorRightClick.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PBGurilande)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.buildToolStripMenuItem,
     this.settingsToolStripMenuItem,
     this.libraryServerToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(819, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAllToolStripMenuItem,
     this.closeProjectToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectToolStripMenuItem,
     this.sourceFileToolStripMenuItem});
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
     this.newToolStripMenuItem.Text = "New";
     //
     // projectToolStripMenuItem
     //
     this.projectToolStripMenuItem.Name = "projectToolStripMenuItem";
     this.projectToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
     this.projectToolStripMenuItem.Text = "Project";
     this.projectToolStripMenuItem.Click += new System.EventHandler(this.projectToolStripMenuItem_Click);
     //
     // sourceFileToolStripMenuItem
     //
     this.sourceFileToolStripMenuItem.Name = "sourceFileToolStripMenuItem";
     this.sourceFileToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
     this.sourceFileToolStripMenuItem.Text = "Source file";
     this.sourceFileToolStripMenuItem.Click += new System.EventHandler(this.sourceFileToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.saveToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
     this.saveToolStripMenuItem.Text = "Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAllToolStripMenuItem
     //
     this.saveAllToolStripMenuItem.Name = "saveAllToolStripMenuItem";
     this.saveAllToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
                 | System.Windows.Forms.Keys.S)));
     this.saveAllToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
     this.saveAllToolStripMenuItem.Text = "Save All";
     this.saveAllToolStripMenuItem.Click += new System.EventHandler(this.saveAllToolStripMenuItem_Click);
     //
     // closeProjectToolStripMenuItem
     //
     this.closeProjectToolStripMenuItem.Enabled = false;
     this.closeProjectToolStripMenuItem.Name = "closeProjectToolStripMenuItem";
     this.closeProjectToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
     this.closeProjectToolStripMenuItem.Text = "Close project";
     this.closeProjectToolStripMenuItem.Click += new System.EventHandler(this.closeProjectToolStripMenuItem_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.mapObjectBrowserToolStripMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "View";
     //
     // mapObjectBrowserToolStripMenuItem
     //
     this.mapObjectBrowserToolStripMenuItem.Checked = true;
     this.mapObjectBrowserToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.mapObjectBrowserToolStripMenuItem.Name = "mapObjectBrowserToolStripMenuItem";
     this.mapObjectBrowserToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
     this.mapObjectBrowserToolStripMenuItem.Text = "Map Object Browser";
     this.mapObjectBrowserToolStripMenuItem.Click += new System.EventHandler(this.mapObjectBrowserToolStripMenuItem_Click);
     //
     // buildToolStripMenuItem
     //
     this.buildToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.compileAndCopyToMapToolStripMenuItem,
     this.compileAndSaveToolStripMenuItem,
     this.compileAndSaveAsToolStripMenuItem,
     this.compileToolStripMenuItem});
     this.buildToolStripMenuItem.Name = "buildToolStripMenuItem";
     this.buildToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
     this.buildToolStripMenuItem.Text = "Build";
     //
     // compileAndCopyToMapToolStripMenuItem
     //
     this.compileAndCopyToMapToolStripMenuItem.Enabled = false;
     this.compileAndCopyToMapToolStripMenuItem.Name = "compileAndCopyToMapToolStripMenuItem";
     this.compileAndCopyToMapToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F9)));
     this.compileAndCopyToMapToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
     this.compileAndCopyToMapToolStripMenuItem.Text = "Compile and run";
     this.compileAndCopyToMapToolStripMenuItem.Click += new System.EventHandler(this.compileAndCopyToMapToolStripMenuItem_Click);
     //
     // compileAndSaveToolStripMenuItem
     //
     this.compileAndSaveToolStripMenuItem.Enabled = false;
     this.compileAndSaveToolStripMenuItem.Name = "compileAndSaveToolStripMenuItem";
     this.compileAndSaveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F9)));
     this.compileAndSaveToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
     this.compileAndSaveToolStripMenuItem.Text = "Compile and save";
     this.compileAndSaveToolStripMenuItem.Click += new System.EventHandler(this.compileAndSaveToolStripMenuItem_Click);
     //
     // compileAndSaveAsToolStripMenuItem
     //
     this.compileAndSaveAsToolStripMenuItem.Enabled = false;
     this.compileAndSaveAsToolStripMenuItem.Name = "compileAndSaveAsToolStripMenuItem";
     this.compileAndSaveAsToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
     this.compileAndSaveAsToolStripMenuItem.Text = "Compile and save as";
     this.compileAndSaveAsToolStripMenuItem.Click += new System.EventHandler(this.compileAndSaveAsToolStripMenuItem_Click);
     //
     // compileToolStripMenuItem
     //
     this.compileToolStripMenuItem.Enabled = false;
     this.compileToolStripMenuItem.Name = "compileToolStripMenuItem";
     this.compileToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F9;
     this.compileToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
     this.compileToolStripMenuItem.Text = "Compile";
     this.compileToolStripMenuItem.Click += new System.EventHandler(this.compileToolStripMenuItem_Click);
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.projectSettingsToolStripMenuItem,
     this.optionsToolStripMenuItem1});
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
     this.settingsToolStripMenuItem.Text = "Settings";
     //
     // projectSettingsToolStripMenuItem
     //
     this.projectSettingsToolStripMenuItem.Enabled = false;
     this.projectSettingsToolStripMenuItem.Name = "projectSettingsToolStripMenuItem";
     this.projectSettingsToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.projectSettingsToolStripMenuItem.Text = "Project settings";
     this.projectSettingsToolStripMenuItem.Click += new System.EventHandler(this.projectSettingsToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem1
     //
     this.optionsToolStripMenuItem1.Name = "optionsToolStripMenuItem1";
     this.optionsToolStripMenuItem1.Size = new System.Drawing.Size(155, 22);
     this.optionsToolStripMenuItem1.Text = "Options";
     this.optionsToolStripMenuItem1.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
     //
     // libraryServerToolStripMenuItem
     //
     this.libraryServerToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.createAccountToolStripMenuItem,
     this.manageAccountToolStripMenuItem,
     this.uploadLibraryToolStripMenuItem,
     this.downloadLibraryToolStripMenuItem});
     this.libraryServerToolStripMenuItem.Name = "libraryServerToolStripMenuItem";
     this.libraryServerToolStripMenuItem.Size = new System.Drawing.Size(90, 20);
     this.libraryServerToolStripMenuItem.Text = "Library Server";
     //
     // createAccountToolStripMenuItem
     //
     this.createAccountToolStripMenuItem.Name = "createAccountToolStripMenuItem";
     this.createAccountToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.createAccountToolStripMenuItem.Text = "Create Account";
     this.createAccountToolStripMenuItem.Click += new System.EventHandler(this.createAccountToolStripMenuItem_Click);
     //
     // manageAccountToolStripMenuItem
     //
     this.manageAccountToolStripMenuItem.Name = "manageAccountToolStripMenuItem";
     this.manageAccountToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.manageAccountToolStripMenuItem.Text = "Manage Account";
     this.manageAccountToolStripMenuItem.Click += new System.EventHandler(this.manageAccountToolStripMenuItem_Click);
     //
     // uploadLibraryToolStripMenuItem
     //
     this.uploadLibraryToolStripMenuItem.Name = "uploadLibraryToolStripMenuItem";
     this.uploadLibraryToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.uploadLibraryToolStripMenuItem.Text = "Upload Library";
     this.uploadLibraryToolStripMenuItem.Click += new System.EventHandler(this.uploadLibraryToolStripMenuItem_Click);
     //
     // downloadLibraryToolStripMenuItem
     //
     this.downloadLibraryToolStripMenuItem.Name = "downloadLibraryToolStripMenuItem";
     this.downloadLibraryToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
     this.downloadLibraryToolStripMenuItem.Text = "Download Library";
     this.downloadLibraryToolStripMenuItem.Click += new System.EventHandler(this.downloadLibraryToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem1,
     this.searchDefinitionsToolStripMenuItem,
     this.changeLogToolStripMenuItem,
     this.checkForUpdatesToolStripMenuItem,
     this.changeToAnotherVersionToolStripMenuItem,
     this.reportErrorToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // aboutToolStripMenuItem1
     //
     this.aboutToolStripMenuItem1.Name = "aboutToolStripMenuItem1";
     this.aboutToolStripMenuItem1.Size = new System.Drawing.Size(214, 22);
     this.aboutToolStripMenuItem1.Text = "About";
     this.aboutToolStripMenuItem1.Click += new System.EventHandler(this.aboutToolStripMenuItem1_Click);
     //
     // searchDefinitionsToolStripMenuItem
     //
     this.searchDefinitionsToolStripMenuItem.Name = "searchDefinitionsToolStripMenuItem";
     this.searchDefinitionsToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.searchDefinitionsToolStripMenuItem.Text = "Search definitions";
     this.searchDefinitionsToolStripMenuItem.Click += new System.EventHandler(this.searchDefinitionsToolStripMenuItem_Click);
     //
     // changeLogToolStripMenuItem
     //
     this.changeLogToolStripMenuItem.Name = "changeLogToolStripMenuItem";
     this.changeLogToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.changeLogToolStripMenuItem.Text = "Change Log";
     this.changeLogToolStripMenuItem.Click += new System.EventHandler(this.changeLogToolStripMenuItem_Click);
     //
     // checkForUpdatesToolStripMenuItem
     //
     this.checkForUpdatesToolStripMenuItem.Name = "checkForUpdatesToolStripMenuItem";
     this.checkForUpdatesToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.checkForUpdatesToolStripMenuItem.Text = "Check for updates";
     this.checkForUpdatesToolStripMenuItem.Click += new System.EventHandler(this.checkForUpdatesToolStripMenuItem_Click);
     //
     // changeToAnotherVersionToolStripMenuItem
     //
     this.changeToAnotherVersionToolStripMenuItem.Name = "changeToAnotherVersionToolStripMenuItem";
     this.changeToAnotherVersionToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.changeToAnotherVersionToolStripMenuItem.Text = "Change to another version";
     this.changeToAnotherVersionToolStripMenuItem.Click += new System.EventHandler(this.changeToAnotherVersionToolStripMenuItem_Click);
     //
     // reportErrorToolStripMenuItem
     //
     this.reportErrorToolStripMenuItem.Name = "reportErrorToolStripMenuItem";
     this.reportErrorToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
     this.reportErrorToolStripMenuItem.Text = "Report Error";
     this.reportErrorToolStripMenuItem.Click += new System.EventHandler(this.reportErrorToolStripMenuItem_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainer1.Location = new System.Drawing.Point(0, 49);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.projectView);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.Size = new System.Drawing.Size(819, 390);
     this.splitContainer1.SplitterDistance = 198;
     this.splitContainer1.TabIndex = 1;
     //
     // projectView
     //
     this.projectView.AllowDrop = true;
     this.projectView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.projectView.DragCursor = null;
     this.projectView.DragCursorType = Galaxy_Editor_2.DragCursorType.None;
     this.projectView.DragImageIndex = 0;
     this.projectView.DragMode = System.Windows.Forms.DragDropEffects.Move;
     this.projectView.DragNodeFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.projectView.DragNodeOpacity = 0.3D;
     this.projectView.DragOverNodeBackColor = System.Drawing.SystemColors.Highlight;
     this.projectView.DragOverNodeForeColor = System.Drawing.SystemColors.HighlightText;
     this.projectView.ImageIndex = 0;
     this.projectView.ImageList = this.projectViewImageList;
     this.projectView.Location = new System.Drawing.Point(0, 0);
     this.projectView.Name = "projectView";
     this.projectView.SelectedImageIndex = 0;
     this.projectView.Size = new System.Drawing.Size(198, 390);
     this.projectView.TabIndex = 0;
     this.projectView.DragStart += new Galaxy_Editor_2.DragItemEventHandler(this.projectView_DragStart);
     this.projectView.DragComplete += new Galaxy_Editor_2.DragCompleteEventHandler(this.projectView_DragComplete);
     this.projectView.DragCompleteValid += new Galaxy_Editor_2.DragCompletionValidEventHandler(this.projectView_DragCompleteValid);
     this.projectView.BeforeLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.projectView_BeforeLabelEdit);
     this.projectView.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.projectView_AfterLabelEdit);
     this.projectView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.projectView_AfterCollapse);
     this.projectView.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.projectView_AfterExpand);
     this.projectView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.projectView_AfterSelect);
     this.projectView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.projectView_KeyDown);
     this.projectView.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.projectView_KeyPress);
     this.projectView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.projectView_MouseDoubleClick);
     this.projectView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.projectView_MouseDown);
     //
     // projectViewImageList
     //
     this.projectViewImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("projectViewImageList.ImageStream")));
     this.projectViewImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.projectViewImageList.Images.SetKeyName(0, "icon.ico");
     this.projectViewImageList.Images.SetKeyName(1, "Folder.png");
     this.projectViewImageList.Images.SetKeyName(2, "GalaxyFileV3-16.png");
     this.projectViewImageList.Images.SetKeyName(3, "XMLIcon.ico");
     this.projectViewImageList.Images.SetKeyName(4, "");
     this.projectViewImageList.Images.SetKeyName(5, "DialogIcon.png");
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.objectBrowserSplitContainer);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.messageView);
     this.splitContainer2.Panel2.Controls.Add(this.panel1);
     this.splitContainer2.Size = new System.Drawing.Size(617, 390);
     this.splitContainer2.SplitterDistance = 264;
     this.splitContainer2.TabIndex = 0;
     //
     // objectBrowserSplitContainer
     //
     this.objectBrowserSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     this.objectBrowserSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.objectBrowserSplitContainer.Location = new System.Drawing.Point(0, 0);
     this.objectBrowserSplitContainer.Name = "objectBrowserSplitContainer";
     //
     // objectBrowserSplitContainer.Panel1
     //
     this.objectBrowserSplitContainer.Panel1.Controls.Add(this.tabStrip);
     //
     // objectBrowserSplitContainer.Panel2
     //
     this.objectBrowserSplitContainer.Panel2.Controls.Add(this.ObjectBrowserPanel);
     this.objectBrowserSplitContainer.Size = new System.Drawing.Size(617, 264);
     this.objectBrowserSplitContainer.SplitterDistance = 377;
     this.objectBrowserSplitContainer.TabIndex = 1;
     //
     // tabStrip
     //
     this.tabStrip.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabStrip.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.tabStrip.Location = new System.Drawing.Point(0, 0);
     this.tabStrip.Name = "tabStrip";
     this.tabStrip.Size = new System.Drawing.Size(377, 264);
     this.tabStrip.TabIndex = 0;
     this.tabStrip.TabStripItemClosing += new FarsiLibrary.Win.TabStripItemClosingHandler(this.tabStrip_TabStripItemClosing);
     this.tabStrip.TabStripItemSelectionChanged += new FarsiLibrary.Win.TabStripItemChangedHandler(this.tabStrip_TabStripItemSelectionChanged);
     //
     // ObjectBrowserPanel
     //
     this.ObjectBrowserPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ObjectBrowserPanel.Controls.Add(this.ObjectBrowserList);
     this.ObjectBrowserPanel.Controls.Add(this.toolStrip2);
     this.ObjectBrowserPanel.Controls.Add(this.label1);
     this.ObjectBrowserPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ObjectBrowserPanel.Location = new System.Drawing.Point(0, 0);
     this.ObjectBrowserPanel.Name = "ObjectBrowserPanel";
     this.ObjectBrowserPanel.Size = new System.Drawing.Size(236, 264);
     this.ObjectBrowserPanel.TabIndex = 3;
     //
     // ObjectBrowserList
     //
     this.ObjectBrowserList.BackgroundImage = global::Galaxy_Editor_2.Properties.Resources.Snowman;
     this.ObjectBrowserList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.ObjectBrowserList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ObjectBrowserList.Location = new System.Drawing.Point(0, 38);
     this.ObjectBrowserList.MultiSelect = false;
     this.ObjectBrowserList.Name = "ObjectBrowserList";
     this.ObjectBrowserList.Size = new System.Drawing.Size(234, 224);
     this.ObjectBrowserList.TabIndex = 3;
     this.ObjectBrowserList.UseCompatibleStateImageBehavior = false;
     this.ObjectBrowserList.View = System.Windows.Forms.View.Details;
     this.ObjectBrowserList.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.ObjectBrowserList_MouseDoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Name";
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "ID";
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ObjectBrowserCatagory,
     this.TBRefreshObjectList});
     this.toolStrip2.Location = new System.Drawing.Point(0, 13);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(234, 25);
     this.toolStrip2.TabIndex = 0;
     this.toolStrip2.Text = "toolStrip2";
     //
     // ObjectBrowserCatagory
     //
     this.ObjectBrowserCatagory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ObjectBrowserCatagory.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.ObjectBrowserCatagory.Name = "ObjectBrowserCatagory";
     this.ObjectBrowserCatagory.Size = new System.Drawing.Size(121, 25);
     this.ObjectBrowserCatagory.SelectedIndexChanged += new System.EventHandler(this.ObjectBrowserCatagory_SelectedIndexChanged);
     //
     // TBRefreshObjectList
     //
     this.TBRefreshObjectList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBRefreshObjectList.Image = ((System.Drawing.Image)(resources.GetObject("TBRefreshObjectList.Image")));
     this.TBRefreshObjectList.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBRefreshObjectList.Name = "TBRefreshObjectList";
     this.TBRefreshObjectList.Size = new System.Drawing.Size(23, 22);
     this.TBRefreshObjectList.Text = "toolStripButton1";
     this.TBRefreshObjectList.ToolTipText = "Refresh list";
     this.TBRefreshObjectList.Click += new System.EventHandler(this.TBRefreshObjectList_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.SystemColors.Control;
     this.label1.Dock = System.Windows.Forms.DockStyle.Top;
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(102, 13);
     this.label1.TabIndex = 2;
     this.label1.Text = "Map Object browser";
     //
     // messageView
     //
     this.messageView.AllowDrop = true;
     this.messageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.messageView.DragCursor = null;
     this.messageView.DragCursorType = Galaxy_Editor_2.DragCursorType.None;
     this.messageView.DragImageIndex = 0;
     this.messageView.DragMode = System.Windows.Forms.DragDropEffects.Move;
     this.messageView.DragNodeFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.messageView.DragNodeOpacity = 0.3D;
     this.messageView.DragOverNodeBackColor = System.Drawing.SystemColors.Highlight;
     this.messageView.DragOverNodeForeColor = System.Drawing.SystemColors.HighlightText;
     this.messageView.ImageIndex = 0;
     this.messageView.ImageList = this.messageViewImageList;
     this.messageView.Location = new System.Drawing.Point(0, 28);
     this.messageView.Name = "messageView";
     this.messageView.SelectedImageIndex = 0;
     this.messageView.Size = new System.Drawing.Size(617, 94);
     this.messageView.TabIndex = 0;
     this.messageView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.messageView_MouseDoubleClick);
     //
     // messageViewImageList
     //
     this.messageViewImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("messageViewImageList.ImageStream")));
     this.messageViewImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.messageViewImageList.Images.SetKeyName(0, "Error.bmp");
     this.messageViewImageList.Images.SetKeyName(1, "Warning.bmp");
     //
     // panel1
     //
     this.panel1.Controls.Add(this.CBShowWarnings);
     this.panel1.Controls.Add(this.CBShowErrors);
     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(617, 28);
     this.panel1.TabIndex = 1;
     //
     // CBShowWarnings
     //
     this.CBShowWarnings.AutoSize = true;
     this.CBShowWarnings.Location = new System.Drawing.Point(92, 3);
     this.CBShowWarnings.Name = "CBShowWarnings";
     this.CBShowWarnings.Size = new System.Drawing.Size(101, 17);
     this.CBShowWarnings.TabIndex = 3;
     this.CBShowWarnings.Text = "Show Warnings";
     this.CBShowWarnings.UseVisualStyleBackColor = true;
     this.CBShowWarnings.CheckedChanged += new System.EventHandler(this.CBShowWarnings_CheckedChanged);
     //
     // CBShowErrors
     //
     this.CBShowErrors.AutoSize = true;
     this.CBShowErrors.Location = new System.Drawing.Point(3, 3);
     this.CBShowErrors.Name = "CBShowErrors";
     this.CBShowErrors.Size = new System.Drawing.Size(83, 17);
     this.CBShowErrors.TabIndex = 2;
     this.CBShowErrors.Text = "Show Errors";
     this.CBShowErrors.UseVisualStyleBackColor = true;
     this.CBShowErrors.CheckedChanged += new System.EventHandler(this.CBShowErrors_CheckedChanged);
     //
     // projectViewMenu
     //
     this.projectViewMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newFileToolStripMenuItem,
     this.newDialogToolStripMenuItem,
     this.newFolderToolStripMenuItem,
     this.removeToolStripMenuItem,
     this.renameToolStripMenuItem,
     this.openInExploreToolStripMenuItem,
     this.activateToolStripMenuItem});
     this.projectViewMenu.Name = "projectViewMenu";
     this.projectViewMenu.Size = new System.Drawing.Size(162, 158);
     //
     // newFileToolStripMenuItem
     //
     this.newFileToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newFileToolStripMenuItem.Image")));
     this.newFileToolStripMenuItem.Name = "newFileToolStripMenuItem";
     this.newFileToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.newFileToolStripMenuItem.Text = "New File";
     this.newFileToolStripMenuItem.Click += new System.EventHandler(this.newFileToolStripMenuItem_Click);
     //
     // newDialogToolStripMenuItem
     //
     this.newDialogToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newDialogToolStripMenuItem.Image")));
     this.newDialogToolStripMenuItem.Name = "newDialogToolStripMenuItem";
     this.newDialogToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.newDialogToolStripMenuItem.Text = "New Dialog";
     this.newDialogToolStripMenuItem.Click += new System.EventHandler(this.newDialogToolStripMenuItem_Click);
     //
     // newFolderToolStripMenuItem
     //
     this.newFolderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newFolderToolStripMenuItem.Image")));
     this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
     this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.newFolderToolStripMenuItem.Text = "New Folder";
     this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("removeToolStripMenuItem.Image")));
     this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.ShortcutKeyDisplayString = "Del";
     this.removeToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.removeToolStripMenuItem.Text = "Remove";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
     //
     // renameToolStripMenuItem
     //
     this.renameToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("renameToolStripMenuItem.Image")));
     this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
     this.renameToolStripMenuItem.ShortcutKeyDisplayString = "F2";
     this.renameToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.renameToolStripMenuItem.Text = "Rename";
     this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
     //
     // openInExploreToolStripMenuItem
     //
     this.openInExploreToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openInExploreToolStripMenuItem.Image")));
     this.openInExploreToolStripMenuItem.Name = "openInExploreToolStripMenuItem";
     this.openInExploreToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.openInExploreToolStripMenuItem.Text = "Open in explorer";
     this.openInExploreToolStripMenuItem.Click += new System.EventHandler(this.openInExploreToolStripMenuItem_Click);
     //
     // activateToolStripMenuItem
     //
     this.activateToolStripMenuItem.Checked = true;
     this.activateToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.activateToolStripMenuItem.Name = "activateToolStripMenuItem";
     this.activateToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
     this.activateToolStripMenuItem.Text = "Enabled";
     this.activateToolStripMenuItem.Click += new System.EventHandler(this.activateToolStripMenuItem_Click);
     //
     // projectViewProjectMenu
     //
     this.projectViewProjectMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newProjectToolStripMenuItem,
     this.deleteProjectToolStripMenuItem});
     this.projectViewProjectMenu.Name = "projectViewProjectMenu";
     this.projectViewProjectMenu.Size = new System.Drawing.Size(172, 48);
     //
     // newProjectToolStripMenuItem
     //
     this.newProjectToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newProjectToolStripMenuItem.Image")));
     this.newProjectToolStripMenuItem.Name = "newProjectToolStripMenuItem";
     this.newProjectToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
     this.newProjectToolStripMenuItem.Text = "New project";
     this.newProjectToolStripMenuItem.Click += new System.EventHandler(this.newProjectToolStripMenuItem_Click);
     //
     // deleteProjectToolStripMenuItem
     //
     this.deleteProjectToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteProjectToolStripMenuItem.Image")));
     this.deleteProjectToolStripMenuItem.Name = "deleteProjectToolStripMenuItem";
     this.deleteProjectToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
     this.deleteProjectToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
     this.deleteProjectToolStripMenuItem.Text = "Delete project";
     this.deleteProjectToolStripMenuItem.Click += new System.EventHandler(this.deleteProjectToolStripMenuItem_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.compilerStatusText});
     this.statusStrip1.Location = new System.Drawing.Point(0, 439);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(819, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text = "statusStrip1";
     //
     // compilerStatusText
     //
     this.compilerStatusText.Name = "compilerStatusText";
     this.compilerStatusText.Size = new System.Drawing.Size(39, 17);
     this.compilerStatusText.Text = "Ready";
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TBNewProject,
     this.TBNewFile,
     this.TBNewFolder,
     this.TBDelete,
     this.TBSave,
     this.TBSaveAll,
     this.toolStripSeparator3,
     this.TBCut,
     this.TBCopy,
     this.TBPaste,
     this.toolStripSeparator2,
     this.TBUndo,
     this.TBRedo,
     this.toolStripSeparator1,
     this.TBRun,
     this.toolStripSeparator4,
     this.TBFind});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(819, 25);
     this.toolStrip1.TabIndex = 3;
     this.toolStrip1.Text = "toolStrip1";
     //
     // TBNewProject
     //
     this.TBNewProject.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBNewProject.Image = ((System.Drawing.Image)(resources.GetObject("TBNewProject.Image")));
     this.TBNewProject.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBNewProject.Name = "TBNewProject";
     this.TBNewProject.Size = new System.Drawing.Size(23, 22);
     this.TBNewProject.Text = "toolStripButton1";
     this.TBNewProject.ToolTipText = "New Project";
     this.TBNewProject.Click += new System.EventHandler(this.projectToolStripMenuItem_Click);
     //
     // TBNewFile
     //
     this.TBNewFile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBNewFile.Enabled = false;
     this.TBNewFile.Image = ((System.Drawing.Image)(resources.GetObject("TBNewFile.Image")));
     this.TBNewFile.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBNewFile.Name = "TBNewFile";
     this.TBNewFile.Size = new System.Drawing.Size(23, 22);
     this.TBNewFile.Text = "toolStripButton3";
     this.TBNewFile.ToolTipText = "New File";
     this.TBNewFile.Click += new System.EventHandler(this.sourceFileToolStripMenuItem_Click);
     //
     // TBNewFolder
     //
     this.TBNewFolder.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBNewFolder.Enabled = false;
     this.TBNewFolder.Image = ((System.Drawing.Image)(resources.GetObject("TBNewFolder.Image")));
     this.TBNewFolder.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBNewFolder.Name = "TBNewFolder";
     this.TBNewFolder.Size = new System.Drawing.Size(23, 22);
     this.TBNewFolder.Text = "toolStripButton6";
     this.TBNewFolder.ToolTipText = "New Folder";
     this.TBNewFolder.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
     //
     // TBDelete
     //
     this.TBDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBDelete.Image = ((System.Drawing.Image)(resources.GetObject("TBDelete.Image")));
     this.TBDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBDelete.Name = "TBDelete";
     this.TBDelete.Size = new System.Drawing.Size(23, 22);
     this.TBDelete.Text = "Delete (Del)";
     this.TBDelete.Click += new System.EventHandler(this.TBDelete_Click);
     //
     // TBSave
     //
     this.TBSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBSave.Enabled = false;
     this.TBSave.Image = ((System.Drawing.Image)(resources.GetObject("TBSave.Image")));
     this.TBSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBSave.Name = "TBSave";
     this.TBSave.Size = new System.Drawing.Size(23, 22);
     this.TBSave.Text = "toolStripButton2";
     this.TBSave.ToolTipText = "Save (Ctrl+S)";
     this.TBSave.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // TBSaveAll
     //
     this.TBSaveAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBSaveAll.Enabled = false;
     this.TBSaveAll.Image = ((System.Drawing.Image)(resources.GetObject("TBSaveAll.Image")));
     this.TBSaveAll.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBSaveAll.Name = "TBSaveAll";
     this.TBSaveAll.Size = new System.Drawing.Size(23, 22);
     this.TBSaveAll.Text = "toolStripButton1";
     this.TBSaveAll.ToolTipText = "Save All (Ctrl+Shift+S)";
     this.TBSaveAll.Click += new System.EventHandler(this.saveAllToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // TBCut
     //
     this.TBCut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBCut.Enabled = false;
     this.TBCut.Image = ((System.Drawing.Image)(resources.GetObject("TBCut.Image")));
     this.TBCut.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBCut.Name = "TBCut";
     this.TBCut.Size = new System.Drawing.Size(23, 22);
     this.TBCut.Text = "toolStripButton1";
     this.TBCut.ToolTipText = "Cut (Ctrl+X)";
     this.TBCut.Click += new System.EventHandler(this.TBCut_Click);
     //
     // TBCopy
     //
     this.TBCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBCopy.Enabled = false;
     this.TBCopy.Image = ((System.Drawing.Image)(resources.GetObject("TBCopy.Image")));
     this.TBCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBCopy.Name = "TBCopy";
     this.TBCopy.Size = new System.Drawing.Size(23, 22);
     this.TBCopy.Text = "toolStripButton1";
     this.TBCopy.ToolTipText = "Copy (Ctrl+C)";
     this.TBCopy.Click += new System.EventHandler(this.TBCopy_Click);
     //
     // TBPaste
     //
     this.TBPaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBPaste.Enabled = false;
     this.TBPaste.Image = ((System.Drawing.Image)(resources.GetObject("TBPaste.Image")));
     this.TBPaste.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBPaste.Name = "TBPaste";
     this.TBPaste.Size = new System.Drawing.Size(23, 22);
     this.TBPaste.Text = "toolStripButton2";
     this.TBPaste.ToolTipText = "Paste (Ctrl+V)";
     this.TBPaste.Click += new System.EventHandler(this.TBPaste_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // TBUndo
     //
     this.TBUndo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBUndo.Enabled = false;
     this.TBUndo.Image = ((System.Drawing.Image)(resources.GetObject("TBUndo.Image")));
     this.TBUndo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBUndo.Name = "TBUndo";
     this.TBUndo.Size = new System.Drawing.Size(23, 22);
     this.TBUndo.Text = "toolStripButton5";
     this.TBUndo.ToolTipText = "Undo (Ctrl+Z)";
     this.TBUndo.Click += new System.EventHandler(this.TBUndo_Click);
     //
     // TBRedo
     //
     this.TBRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBRedo.Enabled = false;
     this.TBRedo.Image = ((System.Drawing.Image)(resources.GetObject("TBRedo.Image")));
     this.TBRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBRedo.Name = "TBRedo";
     this.TBRedo.Size = new System.Drawing.Size(23, 22);
     this.TBRedo.Text = "toolStripButton4";
     this.TBRedo.ToolTipText = "Redo (Ctrl+Y)";
     this.TBRedo.Click += new System.EventHandler(this.TBRedo_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // TBRun
     //
     this.TBRun.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBRun.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runToolStripMenuItem,
     this.buildOnlyToolStripMenuItem,
     this.saveToolStripMenuItem1,
     this.saveAsToolStripMenuItem});
     this.TBRun.Enabled = false;
     this.TBRun.Image = ((System.Drawing.Image)(resources.GetObject("TBRun.Image")));
     this.TBRun.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBRun.Name = "TBRun";
     this.TBRun.Size = new System.Drawing.Size(32, 22);
     this.TBRun.Text = "toolStripSplitButton1";
     this.TBRun.ToolTipText = "Run the map in Starcraft II";
     this.TBRun.ButtonClick += new System.EventHandler(this.compileAndCopyToMapToolStripMenuItem_Click);
     //
     // runToolStripMenuItem
     //
     this.runToolStripMenuItem.Name = "runToolStripMenuItem";
     this.runToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F9)));
     this.runToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.runToolStripMenuItem.Text = "Run";
     this.runToolStripMenuItem.ToolTipText = "Run the map in Starcraft II";
     this.runToolStripMenuItem.Click += new System.EventHandler(this.compileAndCopyToMapToolStripMenuItem_Click);
     //
     // buildOnlyToolStripMenuItem
     //
     this.buildOnlyToolStripMenuItem.Name = "buildOnlyToolStripMenuItem";
     this.buildOnlyToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F9;
     this.buildOnlyToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.buildOnlyToolStripMenuItem.Text = "Build only";
     this.buildOnlyToolStripMenuItem.ToolTipText = "Only Generate Galaxy Script";
     this.buildOnlyToolStripMenuItem.Click += new System.EventHandler(this.compileToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem1
     //
     this.saveToolStripMenuItem1.Name = "saveToolStripMenuItem1";
     this.saveToolStripMenuItem1.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.F9)));
     this.saveToolStripMenuItem1.Size = new System.Drawing.Size(149, 22);
     this.saveToolStripMenuItem1.Text = "Save";
     this.saveToolStripMenuItem1.ToolTipText = "Save the script to your map (for publishing)";
     this.saveToolStripMenuItem1.Click += new System.EventHandler(this.compileAndSaveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(149, 22);
     this.saveAsToolStripMenuItem.Text = "Save As";
     this.saveAsToolStripMenuItem.ToolTipText = "Save the script to your map (for publishing)";
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.compileAndSaveAsToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // TBFind
     //
     this.TBFind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.TBFind.Enabled = false;
     this.TBFind.Image = ((System.Drawing.Image)(resources.GetObject("TBFind.Image")));
     this.TBFind.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.TBFind.Name = "TBFind";
     this.TBFind.Size = new System.Drawing.Size(23, 22);
     this.TBFind.Text = "toolStripButton1";
     this.TBFind.ToolTipText = "Find (Ctrl+F)";
     this.TBFind.Click += new System.EventHandler(this.TBFind_Click);
     //
     // editorRightClick
     //
     this.editorRightClick.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.RightClickCut,
     this.RightClickCopy,
     this.RightClickPaste,
     this.toolStripSeparator5,
     this.rightClickFind,
     this.toolStripSeparator6,
     this.toolStripMenuItem1});
     this.editorRightClick.Name = "editorRightClick";
     this.editorRightClick.Size = new System.Drawing.Size(184, 126);
     //
     // RightClickCut
     //
     this.RightClickCut.Image = global::Galaxy_Editor_2.Properties.Resources.CutHS;
     this.RightClickCut.Name = "RightClickCut";
     this.RightClickCut.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X)));
     this.RightClickCut.Size = new System.Drawing.Size(183, 22);
     this.RightClickCut.Text = "Cut";
     this.RightClickCut.Click += new System.EventHandler(this.TBCut_Click);
     //
     // RightClickCopy
     //
     this.RightClickCopy.Image = global::Galaxy_Editor_2.Properties.Resources.CopyHS;
     this.RightClickCopy.Name = "RightClickCopy";
     this.RightClickCopy.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.RightClickCopy.Size = new System.Drawing.Size(183, 22);
     this.RightClickCopy.Text = "Copy";
     this.RightClickCopy.Click += new System.EventHandler(this.TBCopy_Click);
     //
     // RightClickPaste
     //
     this.RightClickPaste.Image = global::Galaxy_Editor_2.Properties.Resources.PasteHS;
     this.RightClickPaste.Name = "RightClickPaste";
     this.RightClickPaste.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
     this.RightClickPaste.Size = new System.Drawing.Size(183, 22);
     this.RightClickPaste.Text = "Paste";
     this.RightClickPaste.Click += new System.EventHandler(this.TBPaste_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(180, 6);
     //
     // rightClickFind
     //
     this.rightClickFind.Image = ((System.Drawing.Image)(resources.GetObject("rightClickFind.Image")));
     this.rightClickFind.Name = "rightClickFind";
     this.rightClickFind.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
     this.rightClickFind.Size = new System.Drawing.Size(183, 22);
     this.rightClickFind.Text = "Find/Replace";
     this.rightClickFind.Click += new System.EventHandler(this.TBFind_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(180, 6);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.TSInsertConstructor});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(183, 22);
     this.toolStripMenuItem1.Text = "Insert";
     //
     // TSInsertConstructor
     //
     this.TSInsertConstructor.Name = "TSInsertConstructor";
     this.TSInsertConstructor.Size = new System.Drawing.Size(137, 22);
     this.TSInsertConstructor.Text = "Constructor";
     this.TSInsertConstructor.Click += new System.EventHandler(this.TSInsertConstructor_Click);
     //
     // PBGurilande
     //
     this.PBGurilande.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PBGurilande.BackgroundImage")));
     this.PBGurilande.Location = new System.Drawing.Point(322, 2);
     this.PBGurilande.Name = "PBGurilande";
     this.PBGurilande.Size = new System.Drawing.Size(496, 19);
     this.PBGurilande.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.PBGurilande.TabIndex = 4;
     this.PBGurilande.TabStop = false;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(819, 461);
     this.Controls.Add(this.PBGurilande);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.menuStrip1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Form1";
     this.Text = "Galaxy++ editor by Beier";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.Load += new System.EventHandler(this.Form1_Load);
     this.Shown += new System.EventHandler(this.Form1_Shown);
     this.ResizeEnd += new System.EventHandler(this.Form1_ResizeEnd);
     this.Resize += new System.EventHandler(this.Form1_Resize);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.objectBrowserSplitContainer.Panel1.ResumeLayout(false);
     this.objectBrowserSplitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.objectBrowserSplitContainer)).EndInit();
     this.objectBrowserSplitContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabStrip)).EndInit();
     this.ObjectBrowserPanel.ResumeLayout(false);
     this.ObjectBrowserPanel.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.projectViewMenu.ResumeLayout(false);
     this.projectViewProjectMenu.ResumeLayout(false);
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.editorRightClick.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.PBGurilande)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this.designPresenter = new Dataweb.NShape.WinFormsUI.DesignPresenter();
     this.designController = new Dataweb.NShape.Controllers.DesignController();
     this.toolStrip2 = new System.Windows.Forms.ToolStrip();
     this.designsComboBox = new System.Windows.Forms.ToolStripComboBox();
     this.activateButton = new System.Windows.Forms.ToolStripButton();
     this.designsSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.newDesignButton = new System.Windows.Forms.ToolStripButton();
     this.deleteDesignButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.createStyleButton = new System.Windows.Forms.ToolStripButton();
     this.deleteStyleButton = new System.Windows.Forms.ToolStripButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.closeButton = new System.Windows.Forms.Button();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this.designPresenter);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(661, 372);
     this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer1.Name = "toolStripContainer1";
     this.toolStripContainer1.Size = new System.Drawing.Size(661, 397);
     this.toolStripContainer1.TabIndex = 7;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip2);
     //
     // designPresenter
     //
     this.designPresenter.DesignController = this.designController;
     this.designPresenter.Dock = System.Windows.Forms.DockStyle.Fill;
     this.designPresenter.FocusBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(220)))));
     this.designPresenter.FocusedItemColor = System.Drawing.Color.Beige;
     this.designPresenter.HighlightedItemColor = System.Drawing.SystemColors.ControlLightLight;
     this.designPresenter.HighlightItems = true;
     this.designPresenter.InactiveItemBackgroundColor = System.Drawing.SystemColors.Control;
     this.designPresenter.InactiveItemBorderColor = System.Drawing.SystemColors.Window;
     this.designPresenter.InactiveItemTextColor = System.Drawing.SystemColors.ControlDarkDark;
     this.designPresenter.Location = new System.Drawing.Point(0, 0);
     this.designPresenter.Name = "designPresenter";
     this.designPresenter.SelectedDesign = null;
     this.designPresenter.SelectedItemColor = System.Drawing.SystemColors.Window;
     this.designPresenter.SelectedItemTextColor = System.Drawing.SystemColors.ControlText;
     this.designPresenter.SelectedStyleCategory = Dataweb.NShape.StyleCategory.CapStyle;
     this.designPresenter.Size = new System.Drawing.Size(661, 372);
     this.designPresenter.TabIndex = 0;
     //
     // designController
     //
     this.designController.Project = null;
     //
     // toolStrip2
     //
     this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.designsComboBox,
     this.activateButton,
     this.designsSeparator,
     this.newDesignButton,
     this.deleteDesignButton,
     this.toolStripSeparator1,
     this.createStyleButton,
     this.deleteStyleButton});
     this.toolStrip2.Location = new System.Drawing.Point(3, 0);
     this.toolStrip2.Name = "toolStrip2";
     this.toolStrip2.Size = new System.Drawing.Size(544, 25);
     this.toolStrip2.TabIndex = 1;
     //
     // designsComboBox
     //
     this.designsComboBox.Name = "designsComboBox";
     this.designsComboBox.Size = new System.Drawing.Size(121, 25);
     this.designsComboBox.SelectedIndexChanged += new System.EventHandler(this.designsComboBox_SelectedIndexChanged);
     //
     // activateButton
     //
     this.activateButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.activateButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.ActivateDesign;
     this.activateButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.activateButton.Name = "activateButton";
     this.activateButton.Size = new System.Drawing.Size(23, 22);
     this.activateButton.Text = "Activate";
     this.activateButton.Click += new System.EventHandler(this.activateButton_Click);
     //
     // designsSeparator
     //
     this.designsSeparator.Name = "designsSeparator";
     this.designsSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // newDesignButton
     //
     this.newDesignButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.NewItemsBtn;
     this.newDesignButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.newDesignButton.Name = "newDesignButton";
     this.newDesignButton.Size = new System.Drawing.Size(99, 22);
     this.newDesignButton.Text = "New Design...";
     this.newDesignButton.Click += new System.EventHandler(this.newDesignButton_Click);
     //
     // deleteDesignButton
     //
     this.deleteDesignButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.DeleteBtn;
     this.deleteDesignButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteDesignButton.Name = "deleteDesignButton";
     this.deleteDesignButton.Size = new System.Drawing.Size(99, 22);
     this.deleteDesignButton.Text = "Delete Design";
     this.deleteDesignButton.Click += new System.EventHandler(this.deleteDesignButton_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // createStyleButton
     //
     this.createStyleButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.NewBtn;
     this.createStyleButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.createStyleButton.Name = "createStyleButton";
     this.createStyleButton.Size = new System.Drawing.Size(88, 22);
     this.createStyleButton.Text = "New Style...";
     this.createStyleButton.Click += new System.EventHandler(this.newStyleButton_Click);
     //
     // deleteStyleButton
     //
     this.deleteStyleButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.DeleteBtn;
     this.deleteStyleButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteStyleButton.Name = "deleteStyleButton";
     this.deleteStyleButton.Size = new System.Drawing.Size(88, 22);
     this.deleteStyleButton.Text = "Delete Style";
     this.deleteStyleButton.Click += new System.EventHandler(this.deleteStyleButton_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.closeButton);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 397);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(661, 35);
     this.panel1.TabIndex = 7;
     //
     // closeButton
     //
     this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.closeButton.Location = new System.Drawing.Point(574, 6);
     this.closeButton.Name = "closeButton";
     this.closeButton.Size = new System.Drawing.Size(75, 23);
     this.closeButton.TabIndex = 1;
     this.closeButton.Text = "Close";
     this.closeButton.UseVisualStyleBackColor = true;
     this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
     //
     // DesignEditorDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.closeButton;
     this.ClientSize = new System.Drawing.Size(661, 432);
     this.Controls.Add(this.toolStripContainer1);
     this.Controls.Add(this.panel1);
     this.DoubleBuffered = true;
     this.Name = "DesignEditorDialog";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Design Editor";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DesignEditorDialog_FormClosed);
     this.toolStripContainer1.ContentPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer1.TopToolStripPanel.PerformLayout();
     this.toolStripContainer1.ResumeLayout(false);
     this.toolStripContainer1.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #45
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InterjectionsForm));
     this.toolTip1          = new System.Windows.Forms.ToolTip(this.components);
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.создатьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2             = new System.Windows.Forms.ToolStripSeparator();
     this.выбратьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1          = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1  = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10   = new System.Windows.Forms.ToolStripButton();
     this.listView1           = new System.Windows.Forms.ListView();
     this.columnHeader1       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4       = new System.Windows.Forms.ColumnHeader();
     this.panel1       = new System.Windows.Forms.Panel();
     this.buttonReturn = new System.Windows.Forms.Button();
     this.buttonClose  = new System.Windows.Forms.Button();
     this.contextMenuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder.png");
     this.imageList1.Images.SetKeyName(1, "page.png");
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьЗаписьToolStripMenuItem,
         this.изменитьЗаписьToolStripMenuItem,
         this.удалитьЗаписьToolStripMenuItem,
         this.toolStripMenuItem2,
         this.выбратьЗаписьToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(172, 120);
     //
     // создатьЗаписьToolStripMenuItem
     //
     this.создатьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьЗаписьToolStripMenuItem.Image")));
     this.создатьЗаписьToolStripMenuItem.Name   = "создатьЗаписьToolStripMenuItem";
     this.создатьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.создатьЗаписьToolStripMenuItem.Text   = "Создать запись.";
     this.создатьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.СоздатьЗаписьToolStripMenuItemClick);
     //
     // изменитьЗаписьToolStripMenuItem
     //
     this.изменитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьЗаписьToolStripMenuItem.Image")));
     this.изменитьЗаписьToolStripMenuItem.Name   = "изменитьЗаписьToolStripMenuItem";
     this.изменитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.изменитьЗаписьToolStripMenuItem.Text   = "Изменить запись.";
     this.изменитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьЗаписьToolStripMenuItemClick);
     //
     // удалитьЗаписьToolStripMenuItem
     //
     this.удалитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьЗаписьToolStripMenuItem.Image")));
     this.удалитьЗаписьToolStripMenuItem.Name   = "удалитьЗаписьToolStripMenuItem";
     this.удалитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.удалитьЗаписьToolStripMenuItem.Text   = "Удалить запись.";
     this.удалитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.УдалитьЗаписьToolStripMenuItemClick);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name    = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size    = new System.Drawing.Size(168, 6);
     this.toolStripMenuItem2.Visible = false;
     //
     // выбратьЗаписьToolStripMenuItem
     //
     this.выбратьЗаписьToolStripMenuItem.Name    = "выбратьЗаписьToolStripMenuItem";
     this.выбратьЗаписьToolStripMenuItem.Size    = new System.Drawing.Size(171, 22);
     this.выбратьЗаписьToolStripMenuItem.Text    = "Выбрать запись.";
     this.выбратьЗаписьToolStripMenuItem.Visible = false;
     this.выбратьЗаписьToolStripMenuItem.Click  += new System.EventHandler(this.ВыбратьЗаписьToolStripMenuItemClick);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(609, 25);
     this.toolStrip1.TabIndex    = 31;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text   = "Изменить";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 25);
     this.toolStripComboBox1.Text      = "Введите данные для поиска";
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 22);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 22);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 25);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(609, 341);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 46;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Междометие";
     this.columnHeader2.Width = 250;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Перевод";
     this.columnHeader3.Width = 250;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "№";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.buttonReturn);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 366);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(609, 45);
     this.panel1.TabIndex = 45;
     //
     // buttonReturn
     //
     this.buttonReturn.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonReturn.Image      = ((System.Drawing.Image)(resources.GetObject("buttonReturn.Image")));
     this.buttonReturn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonReturn.Location   = new System.Drawing.Point(441, 10);
     this.buttonReturn.Name       = "buttonReturn";
     this.buttonReturn.Size       = new System.Drawing.Size(75, 23);
     this.buttonReturn.TabIndex   = 1;
     this.buttonReturn.Text       = "Выбрать";
     this.buttonReturn.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonReturn.UseVisualStyleBackColor = true;
     this.buttonReturn.Visible = false;
     this.buttonReturn.Click  += new System.EventHandler(this.ButtonReturnClick);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(522, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // InterjectionsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(609, 411);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolStrip1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "InterjectionsForm";
     this.Text  = "Междометия";
     this.Load += new System.EventHandler(this.InterjectionsFormLoad);
     this.contextMenuStrip1.ResumeLayout(false);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #46
0
 private void InitializeComponent()
 {
     this.grpSummary    = new System.Windows.Forms.GroupBox();
     this.lvSummary     = new System.Windows.Forms.ListView();
     this.ColumnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.ColumnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.ColumnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.ColumnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.Panel1        = new System.Windows.Forms.Panel();
     this.ToolBar1      = new System.Windows.Forms.ToolStrip();
     this.TBS1          = new System.Windows.Forms.ToolStripSeparator();
     this.cbType        = new System.Windows.Forms.ToolStripComboBox();
     this.TBS2          = new System.Windows.Forms.ToolStripSeparator();
     this.tbExcelExport = new System.Windows.Forms.ToolStripButton();
     this.grpSummary.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.ToolBar1.SuspendLayout();
     this.SuspendLayout();
     //
     // grpSummary
     //
     this.grpSummary.Controls.Add(this.lvSummary);
     this.grpSummary.Dock     = System.Windows.Forms.DockStyle.Top;
     this.grpSummary.Location = new System.Drawing.Point(0, 0);
     this.grpSummary.Name     = "grpSummary";
     this.grpSummary.Size     = new System.Drawing.Size(893, 280);
     this.grpSummary.TabIndex = 0;
     this.grpSummary.TabStop  = false;
     this.grpSummary.Text     = "grpSummary";
     //
     // lvSummary
     //
     this.lvSummary.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.ColumnHeader1,
         this.ColumnHeader2,
         this.ColumnHeader3,
         this.ColumnHeader4
     });
     this.lvSummary.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.lvSummary.FullRowSelect = true;
     this.lvSummary.Location      = new System.Drawing.Point(3, 20);
     this.lvSummary.Name          = "lvSummary";
     this.lvSummary.Size          = new System.Drawing.Size(887, 244);
     this.lvSummary.TabIndex      = 0;
     this.lvSummary.UseCompatibleStateImageBehavior = false;
     this.lvSummary.View = System.Windows.Forms.View.Details;
     //
     // ColumnHeader1
     //
     this.ColumnHeader1.Text  = "ColumnHeader1";
     this.ColumnHeader1.Width = 300;
     //
     // ColumnHeader2
     //
     this.ColumnHeader2.Text  = "ColumnHeader2";
     this.ColumnHeader2.Width = 100;
     //
     // ColumnHeader3
     //
     this.ColumnHeader3.Text  = "ColumnHeader3";
     this.ColumnHeader3.Width = 100;
     //
     // ColumnHeader4
     //
     this.ColumnHeader4.Text  = "ColumnHeader4";
     this.ColumnHeader4.Width = 100;
     //
     // Panel1
     //
     this.Panel1.Controls.Add(this.ToolBar1);
     this.Panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.Panel1.Location = new System.Drawing.Point(0, 267);
     this.Panel1.Name     = "Panel1";
     this.Panel1.Size     = new System.Drawing.Size(893, 307);
     this.Panel1.TabIndex = 2;
     //
     // ToolBar1
     //
     this.ToolBar1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.TBS1,
         this.cbType,
         this.TBS2,
         this.tbExcelExport
     });
     this.ToolBar1.Location = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name     = "ToolBar1";
     this.ToolBar1.Size     = new System.Drawing.Size(893, 28);
     this.ToolBar1.TabIndex = 0;
     //
     // TBS1
     //
     this.TBS1.Name = "TBS1";
     this.TBS1.Size = new System.Drawing.Size(6, 28);
     //
     // cbType
     //
     this.cbType.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbType.Name                  = "cbType";
     this.cbType.Size                  = new System.Drawing.Size(326, 28);
     this.cbType.SelectedIndexChanged += new System.EventHandler(this.cbType_SelectedIndexChanged);
     //
     // TBS2
     //
     this.TBS2.Name = "TBS2";
     this.TBS2.Size = new System.Drawing.Size(6, 28);
     //
     // tbExcelExport
     //
     this.tbExcelExport.Name   = "tbExcelExport";
     this.tbExcelExport.Size   = new System.Drawing.Size(23, 25);
     this.tbExcelExport.Click += new System.EventHandler(this.tbExcelExport_Click);
     //
     // StatisticsWin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.ClientSize          = new System.Drawing.Size(893, 574);
     this.Controls.Add(this.Panel1);
     this.Controls.Add(this.grpSummary);
     this.Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.KeyPreview    = true;
     this.Name          = "StatisticsWin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "StatisticsWin";
     this.Load         += new System.EventHandler(this.StatisticsWin_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.StatisticsWin_KeyDown);
     this.grpSummary.ResumeLayout(false);
     this.Panel1.ResumeLayout(false);
     this.Panel1.PerformLayout();
     this.ToolBar1.ResumeLayout(false);
     this.ToolBar1.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #47
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PracticeForm));
     this.toolStrip1                      = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton7                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton8                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1              = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10               = new System.Windows.Forms.ToolStripButton();
     this.contextMenuStrip1               = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.папкиToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.создатьПапкуToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьПапкуToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьПапкуToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1              = new System.Windows.Forms.ToolStripSeparator();
     this.создатьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1             = new System.Windows.Forms.ToolStripSeparator();
     this.выполнитьТестToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1                      = new System.Windows.Forms.ImageList(this.components);
     this.toolTip1      = new System.Windows.Forms.ToolTip(this.components);
     this.panel1        = new System.Windows.Forms.Panel();
     this.buttonClose   = new System.Windows.Forms.Button();
     this.listView1     = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
     this.toolStrip1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator2,
         this.toolStripButton4,
         this.toolStripButton5,
         this.toolStripButton6,
         this.toolStripSeparator3,
         this.toolStripButton7,
         this.toolStripSeparator4,
         this.toolStripButton8,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(671, 25);
     this.toolStrip1.TabIndex    = 19;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text   = "Изменить";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name   = "toolStripButton4";
     this.toolStripButton4.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text   = "Создать папку";
     this.toolStripButton4.Click += new System.EventHandler(this.ToolStripButton4Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name   = "toolStripButton5";
     this.toolStripButton5.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text   = "Редактировать папку";
     this.toolStripButton5.Click += new System.EventHandler(this.ToolStripButton5Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name   = "toolStripButton6";
     this.toolStripButton6.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text   = "Удалить папку";
     this.toolStripButton6.Click += new System.EventHandler(this.ToolStripButton6Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name   = "toolStripButton7";
     this.toolStripButton7.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text   = "Способ отображения.";
     this.toolStripButton7.Click += new System.EventHandler(this.ToolStripButton7Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton8
     //
     this.toolStripButton8.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton8.Image")));
     this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton8.Name   = "toolStripButton8";
     this.toolStripButton8.Size   = new System.Drawing.Size(114, 22);
     this.toolStripButton8.Text   = "Выполнить тест";
     this.toolStripButton8.Click += new System.EventHandler(this.ToolStripButton8Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 25);
     this.toolStripComboBox1.Text      = "Введите данные для поиска";
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 22);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 22);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.папкиToolStripMenuItem,
         this.toolStripMenuItem1,
         this.создатьЗаписьToolStripMenuItem,
         this.изменитьЗаписьToolStripMenuItem,
         this.удалитьЗаписьToolStripMenuItem,
         this.toolStripSeparator1,
         this.выполнитьТестToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(162, 148);
     //
     // папкиToolStripMenuItem
     //
     this.папкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьПапкуToolStripMenuItem,
         this.изменитьПапкуToolStripMenuItem,
         this.удалитьПапкуToolStripMenuItem
     });
     this.папкиToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("папкиToolStripMenuItem.Image")));
     this.папкиToolStripMenuItem.Name  = "папкиToolStripMenuItem";
     this.папкиToolStripMenuItem.Size  = new System.Drawing.Size(161, 22);
     this.папкиToolStripMenuItem.Text  = "Папки:";
     //
     // создатьПапкуToolStripMenuItem
     //
     this.создатьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьПапкуToolStripMenuItem.Image")));
     this.создатьПапкуToolStripMenuItem.Name   = "создатьПапкуToolStripMenuItem";
     this.создатьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.создатьПапкуToolStripMenuItem.Text   = "Создать папку.";
     this.создатьПапкуToolStripMenuItem.Click += new System.EventHandler(this.СоздатьПапкуToolStripMenuItemClick);
     //
     // изменитьПапкуToolStripMenuItem
     //
     this.изменитьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьПапкуToolStripMenuItem.Image")));
     this.изменитьПапкуToolStripMenuItem.Name   = "изменитьПапкуToolStripMenuItem";
     this.изменитьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.изменитьПапкуToolStripMenuItem.Text   = "Изменить папку.";
     this.изменитьПапкуToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьПапкуToolStripMenuItemClick);
     //
     // удалитьПапкуToolStripMenuItem
     //
     this.удалитьПапкуToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьПапкуToolStripMenuItem.Image")));
     this.удалитьПапкуToolStripMenuItem.Name   = "удалитьПапкуToolStripMenuItem";
     this.удалитьПапкуToolStripMenuItem.Size   = new System.Drawing.Size(166, 22);
     this.удалитьПапкуToolStripMenuItem.Text   = "Удалить папку.";
     this.удалитьПапкуToolStripMenuItem.Click += new System.EventHandler(this.УдалитьПапкуToolStripMenuItemClick);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(158, 6);
     //
     // создатьЗаписьToolStripMenuItem
     //
     this.создатьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьЗаписьToolStripMenuItem.Image")));
     this.создатьЗаписьToolStripMenuItem.Name   = "создатьЗаписьToolStripMenuItem";
     this.создатьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(161, 22);
     this.создатьЗаписьToolStripMenuItem.Text   = "Создать тест.";
     this.создатьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.СоздатьЗаписьToolStripMenuItemClick);
     //
     // изменитьЗаписьToolStripMenuItem
     //
     this.изменитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьЗаписьToolStripMenuItem.Image")));
     this.изменитьЗаписьToolStripMenuItem.Name   = "изменитьЗаписьToolStripMenuItem";
     this.изменитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(161, 22);
     this.изменитьЗаписьToolStripMenuItem.Text   = "Изменить тест.";
     this.изменитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьЗаписьToolStripMenuItemClick);
     //
     // удалитьЗаписьToolStripMenuItem
     //
     this.удалитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьЗаписьToolStripMenuItem.Image")));
     this.удалитьЗаписьToolStripMenuItem.Name   = "удалитьЗаписьToolStripMenuItem";
     this.удалитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(161, 22);
     this.удалитьЗаписьToolStripMenuItem.Text   = "Удалить тест.";
     this.удалитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.УдалитьЗаписьToolStripMenuItemClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(158, 6);
     //
     // выполнитьТестToolStripMenuItem
     //
     this.выполнитьТестToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("выполнитьТестToolStripMenuItem.Image")));
     this.выполнитьТестToolStripMenuItem.Name   = "выполнитьТестToolStripMenuItem";
     this.выполнитьТестToolStripMenuItem.Size   = new System.Drawing.Size(161, 22);
     this.выполнитьТестToolStripMenuItem.Text   = "Выполнить тест";
     this.выполнитьТестToolStripMenuItem.Click += new System.EventHandler(this.ВыполнитьТестToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder.png");
     this.imageList1.Images.SetKeyName(1, "page.png");
     //
     // panel1
     //
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 347);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(671, 45);
     this.panel1.TabIndex = 20;
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(584, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 25);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(671, 322);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 21;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.ListView1SelectedIndexChanged);
     this.listView1.DoubleClick          += new System.EventHandler(this.ListView1DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Наименование";
     this.columnHeader2.Width = 400;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "";
     this.columnHeader3.Width = 50;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "№";
     //
     // columnHeader5
     //
     this.columnHeader5.Text  = "Ед. изм.";
     this.columnHeader5.Width = 0;
     //
     // columnHeader6
     //
     this.columnHeader6.Text  = "Цена:";
     this.columnHeader6.Width = 0;
     //
     // PracticeForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(671, 392);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolStrip1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "PracticeForm";
     this.Text        = "Тестирование знаний английского языка";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.PracticeFormFormClosed);
     this.Load       += new System.EventHandler(this.PracticeFormLoad);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #48
0
 /// <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(MainView));
     WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
     WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openNewPluginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.openListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.reloadXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.recentFilelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteNewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertSubrecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editSelectedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editHeaderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addMasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandCollapseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.expandBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.collapseBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findInRecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.searchAdvancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.hexModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useNewSubrecordEditorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.lookupFormidsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.uTF8ModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.useWindowsClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.noWindowsSoundsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetDockingWindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.eSMFilterSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.compressionSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.resetSettingsToDefaultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.czechToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.frenchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.germanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.italianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spanishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.russianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.polishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsFilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.internalizeStringReferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.extractInternalStringsToTableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyReferencedStringsFromMastersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanUnusedStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createStubsForMissingStringsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.importStringsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.spellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sanitizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stripEDIDsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findDuplicatedFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.dumpEDIDListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cleanEspToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.findNonconformingRecordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.generateLLXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.makeEsmToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.martigensToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createRecordStructureXmlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.mergeRecordsXMLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reorderSubrecordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newFormIDNoReferenceUpdateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reduceFormVersionsTo40ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.scriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.globalScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.selectionScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editScriptsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.endScriptsToolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.consoleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.outputWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.OpenModDialog = new System.Windows.Forms.OpenFileDialog();
     this.SaveModDialog = new System.Windows.Forms.SaveFileDialog();
     this.SaveEdidListDialog = new System.Windows.Forms.SaveFileDialog();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusProgressBar = new System.Windows.Forms.ToolStripProgressBar();
     this.toolStripStopProgress = new System.Windows.Forms.ToolStripStatusLabel();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.toolStripIncrFind = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrFindCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindText = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripIncrFindTypeFilter = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindType = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripIncrFindMatch = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindExact = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrFindWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrFindStatus = new System.Windows.Forms.ToolStripLabel();
     this.toolStripIncrInvalidRec = new System.Windows.Forms.ToolStrip();
     this.toolStripIncrInvalidRecCancel = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecText = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecNext = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecPrev = new System.Windows.Forms.ToolStripButton();
     this.toolStripIncrInvalidRecRestart = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecWrapAround = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripIncrInvalidRecStatus = new System.Windows.Forms.ToolStripLabel();
     this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
     this.defaultGameSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.toolStripIncrFind.SuspendLayout();
     this.toolStripIncrInvalidRec.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.optionsToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.spellsToolStripMenuItem,
     this.scriptsToolStripMenuItem});
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.openNewPluginToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.closeToolStripMenuItem,
     this.closeAllToolStripMenuItem,
     this.toolStripSeparator2,
     this.openListToolStripMenuItem,
     this.saveListToolStripMenuItem,
     this.toolStripSeparator3,
     this.reloadXmlToolStripMenuItem,
     this.toolStripMenuItem1,
     this.recentFilelToolStripMenuItem,
     this.toolStripSeparator1,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     resources.ApplyResources(this.fileToolStripMenuItem, "fileToolStripMenuItem");
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     resources.ApplyResources(this.newToolStripMenuItem, "newToolStripMenuItem");
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // openNewPluginToolStripMenuItem
     //
     this.openNewPluginToolStripMenuItem.Name = "openNewPluginToolStripMenuItem";
     resources.ApplyResources(this.openNewPluginToolStripMenuItem, "openNewPluginToolStripMenuItem");
     this.openNewPluginToolStripMenuItem.Click += new System.EventHandler(this.openNewPluginToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     resources.ApplyResources(this.saveToolStripMenuItem, "saveToolStripMenuItem");
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     resources.ApplyResources(this.saveAsToolStripMenuItem, "saveAsToolStripMenuItem");
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     resources.ApplyResources(this.closeToolStripMenuItem, "closeToolStripMenuItem");
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // closeAllToolStripMenuItem
     //
     this.closeAllToolStripMenuItem.Name = "closeAllToolStripMenuItem";
     resources.ApplyResources(this.closeAllToolStripMenuItem, "closeAllToolStripMenuItem");
     this.closeAllToolStripMenuItem.Click += new System.EventHandler(this.closeAllToolStripMenuItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
     //
     // openListToolStripMenuItem
     //
     this.openListToolStripMenuItem.Name = "openListToolStripMenuItem";
     resources.ApplyResources(this.openListToolStripMenuItem, "openListToolStripMenuItem");
     this.openListToolStripMenuItem.Click += new System.EventHandler(this.openListToolStripMenuItem_Click);
     //
     // saveListToolStripMenuItem
     //
     this.saveListToolStripMenuItem.Name = "saveListToolStripMenuItem";
     resources.ApplyResources(this.saveListToolStripMenuItem, "saveListToolStripMenuItem");
     this.saveListToolStripMenuItem.Click += new System.EventHandler(this.saveListToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
     //
     // reloadXmlToolStripMenuItem
     //
     this.reloadXmlToolStripMenuItem.Name = "reloadXmlToolStripMenuItem";
     resources.ApplyResources(this.reloadXmlToolStripMenuItem, "reloadXmlToolStripMenuItem");
     this.reloadXmlToolStripMenuItem.Click += new System.EventHandler(this.reloadXmlToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
     //
     // recentFilelToolStripMenuItem
     //
     this.recentFilelToolStripMenuItem.Name = "recentFilelToolStripMenuItem";
     resources.ApplyResources(this.recentFilelToolStripMenuItem, "recentFilelToolStripMenuItem");
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.cutToolStripMenuItem,
     this.copyToolStripMenuItem,
     this.pasteToolStripMenuItem,
     this.pasteNewToolStripMenuItem,
     this.deleteToolStripMenuItem,
     this.insertGroupToolStripMenuItem,
     this.insertRecordToolStripMenuItem,
     this.insertSubrecordToolStripMenuItem,
     this.editSelectedToolStripMenuItem,
     this.editHeaderToolStripMenuItem,
     this.addMasterToolStripMenuItem,
     this.expandCollapseToolStripMenuItem,
     this.findInRecordsToolStripMenuItem,
     this.findToolStripMenuItem,
     this.searchToolStripMenuItem,
     this.searchAdvancedToolStripMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     resources.ApplyResources(this.editToolStripMenuItem, "editToolStripMenuItem");
     this.editToolStripMenuItem.DropDownOpening += new System.EventHandler(this.editToolStripMenuItem_DropDownOpening);
     //
     // cutToolStripMenuItem
     //
     resources.ApplyResources(this.cutToolStripMenuItem, "cutToolStripMenuItem");
     this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
     this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
     //
     // copyToolStripMenuItem
     //
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // pasteToolStripMenuItem
     //
     resources.ApplyResources(this.pasteToolStripMenuItem, "pasteToolStripMenuItem");
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // pasteNewToolStripMenuItem
     //
     resources.ApplyResources(this.pasteNewToolStripMenuItem, "pasteNewToolStripMenuItem");
     this.pasteNewToolStripMenuItem.Name = "pasteNewToolStripMenuItem";
     this.pasteNewToolStripMenuItem.Click += new System.EventHandler(this.pasteNewToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // insertGroupToolStripMenuItem
     //
     resources.ApplyResources(this.insertGroupToolStripMenuItem, "insertGroupToolStripMenuItem");
     this.insertGroupToolStripMenuItem.Name = "insertGroupToolStripMenuItem";
     this.insertGroupToolStripMenuItem.Click += new System.EventHandler(this.insertGroupToolStripMenuItem3_Click);
     //
     // insertRecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertRecordToolStripMenuItem, "insertRecordToolStripMenuItem");
     this.insertRecordToolStripMenuItem.Name = "insertRecordToolStripMenuItem";
     this.insertRecordToolStripMenuItem.Click += new System.EventHandler(this.insertRecordToolStripMenuItem_Click);
     //
     // insertSubrecordToolStripMenuItem
     //
     resources.ApplyResources(this.insertSubrecordToolStripMenuItem, "insertSubrecordToolStripMenuItem");
     this.insertSubrecordToolStripMenuItem.Name = "insertSubrecordToolStripMenuItem";
     this.insertSubrecordToolStripMenuItem.Click += new System.EventHandler(this.insertSubrecordToolStripMenuItem_Click);
     //
     // editSelectedToolStripMenuItem
     //
     this.editSelectedToolStripMenuItem.Name = "editSelectedToolStripMenuItem";
     resources.ApplyResources(this.editSelectedToolStripMenuItem, "editSelectedToolStripMenuItem");
     this.editSelectedToolStripMenuItem.Click += new System.EventHandler(this.editSelectedToolStripMenuItem_Click);
     //
     // editHeaderToolStripMenuItem
     //
     this.editHeaderToolStripMenuItem.Name = "editHeaderToolStripMenuItem";
     resources.ApplyResources(this.editHeaderToolStripMenuItem, "editHeaderToolStripMenuItem");
     this.editHeaderToolStripMenuItem.Click += new System.EventHandler(this.editHeaderToolStripMenuItem_Click);
     //
     // addMasterToolStripMenuItem
     //
     this.addMasterToolStripMenuItem.Name = "addMasterToolStripMenuItem";
     resources.ApplyResources(this.addMasterToolStripMenuItem, "addMasterToolStripMenuItem");
     this.addMasterToolStripMenuItem.Click += new System.EventHandler(this.addMasterToolStripMenuItem_Click);
     //
     // expandCollapseToolStripMenuItem
     //
     this.expandCollapseToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.expandAllToolStripMenuItem,
     this.collapseAllToolStripMenuItem,
     this.expandBranchToolStripMenuItem,
     this.collapseBranchToolStripMenuItem});
     this.expandCollapseToolStripMenuItem.Name = "expandCollapseToolStripMenuItem";
     resources.ApplyResources(this.expandCollapseToolStripMenuItem, "expandCollapseToolStripMenuItem");
     //
     // expandAllToolStripMenuItem
     //
     this.expandAllToolStripMenuItem.Name = "expandAllToolStripMenuItem";
     resources.ApplyResources(this.expandAllToolStripMenuItem, "expandAllToolStripMenuItem");
     this.expandAllToolStripMenuItem.Click += new System.EventHandler(this.expandAllToolStripMenuItem_Click);
     //
     // collapseAllToolStripMenuItem
     //
     this.collapseAllToolStripMenuItem.Name = "collapseAllToolStripMenuItem";
     resources.ApplyResources(this.collapseAllToolStripMenuItem, "collapseAllToolStripMenuItem");
     this.collapseAllToolStripMenuItem.Click += new System.EventHandler(this.collapseAllToolStripMenuItem_Click);
     //
     // expandBranchToolStripMenuItem
     //
     this.expandBranchToolStripMenuItem.Name = "expandBranchToolStripMenuItem";
     resources.ApplyResources(this.expandBranchToolStripMenuItem, "expandBranchToolStripMenuItem");
     this.expandBranchToolStripMenuItem.Click += new System.EventHandler(this.expandBranchToolStripMenuItem_Click);
     //
     // collapseBranchToolStripMenuItem
     //
     this.collapseBranchToolStripMenuItem.Name = "collapseBranchToolStripMenuItem";
     resources.ApplyResources(this.collapseBranchToolStripMenuItem, "collapseBranchToolStripMenuItem");
     this.collapseBranchToolStripMenuItem.Click += new System.EventHandler(this.collapseBranchToolStripMenuItem_Click);
     //
     // findInRecordsToolStripMenuItem
     //
     this.findInRecordsToolStripMenuItem.Name = "findInRecordsToolStripMenuItem";
     resources.ApplyResources(this.findInRecordsToolStripMenuItem, "findInRecordsToolStripMenuItem");
     this.findInRecordsToolStripMenuItem.Click += new System.EventHandler(this.findInRecordsToolStripMenuItem_Click);
     //
     // findToolStripMenuItem
     //
     this.findToolStripMenuItem.Name = "findToolStripMenuItem";
     resources.ApplyResources(this.findToolStripMenuItem, "findToolStripMenuItem");
     this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
     //
     // searchToolStripMenuItem
     //
     this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
     resources.ApplyResources(this.searchToolStripMenuItem, "searchToolStripMenuItem");
     this.searchToolStripMenuItem.Click += new System.EventHandler(this.searchToolStripMenuItem_Click);
     //
     // searchAdvancedToolStripMenuItem
     //
     this.searchAdvancedToolStripMenuItem.Name = "searchAdvancedToolStripMenuItem";
     resources.ApplyResources(this.searchAdvancedToolStripMenuItem, "searchAdvancedToolStripMenuItem");
     this.searchAdvancedToolStripMenuItem.Click += new System.EventHandler(this.searchAdvancedToolStripMenuItem_Click);
     //
     // optionsToolStripMenuItem
     //
     this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.hexModeToolStripMenuItem,
     this.useNewSubrecordEditorToolStripMenuItem,
     this.lookupFormidsToolStripMenuItem,
     this.uTF8ModeToolStripMenuItem,
     this.useWindowsClipboardToolStripMenuItem,
     this.noWindowsSoundsToolStripMenuItem,
     this.resetDockingWindowsToolStripMenuItem,
     this.eSMFilterSettingsToolStripMenuItem,
     this.compressionSettingsToolStripMenuItem,
     this.resetSettingsToDefaultsToolStripMenuItem,
     this.defaultGameSettingsToolStripMenuItem});
     this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
     resources.ApplyResources(this.optionsToolStripMenuItem, "optionsToolStripMenuItem");
     //
     // hexModeToolStripMenuItem
     //
     this.hexModeToolStripMenuItem.Checked = true;
     this.hexModeToolStripMenuItem.CheckOnClick = true;
     this.hexModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.hexModeToolStripMenuItem.Name = "hexModeToolStripMenuItem";
     resources.ApplyResources(this.hexModeToolStripMenuItem, "hexModeToolStripMenuItem");
     this.hexModeToolStripMenuItem.Click += new System.EventHandler(this.hexModeToolStripMenuItem_Click);
     //
     // useNewSubrecordEditorToolStripMenuItem
     //
     this.useNewSubrecordEditorToolStripMenuItem.Checked = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckOnClick = true;
     this.useNewSubrecordEditorToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.useNewSubrecordEditorToolStripMenuItem.Name = "useNewSubrecordEditorToolStripMenuItem";
     resources.ApplyResources(this.useNewSubrecordEditorToolStripMenuItem, "useNewSubrecordEditorToolStripMenuItem");
     this.useNewSubrecordEditorToolStripMenuItem.Click += new System.EventHandler(this.useNewSubrecordEditorToolStripMenuItem_Click);
     //
     // lookupFormidsToolStripMenuItem
     //
     this.lookupFormidsToolStripMenuItem.Checked = true;
     this.lookupFormidsToolStripMenuItem.CheckOnClick = true;
     this.lookupFormidsToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.lookupFormidsToolStripMenuItem.Name = "lookupFormidsToolStripMenuItem";
     resources.ApplyResources(this.lookupFormidsToolStripMenuItem, "lookupFormidsToolStripMenuItem");
     this.lookupFormidsToolStripMenuItem.Click += new System.EventHandler(this.lookupFormidsToolStripMenuItem_Click);
     //
     // uTF8ModeToolStripMenuItem
     //
     this.uTF8ModeToolStripMenuItem.Checked = true;
     this.uTF8ModeToolStripMenuItem.CheckOnClick = true;
     this.uTF8ModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.uTF8ModeToolStripMenuItem.Name = "uTF8ModeToolStripMenuItem";
     resources.ApplyResources(this.uTF8ModeToolStripMenuItem, "uTF8ModeToolStripMenuItem");
     this.uTF8ModeToolStripMenuItem.Click += new System.EventHandler(this.uTF8ModeToolStripMenuItem_Click);
     //
     // useWindowsClipboardToolStripMenuItem
     //
     this.useWindowsClipboardToolStripMenuItem.Name = "useWindowsClipboardToolStripMenuItem";
     resources.ApplyResources(this.useWindowsClipboardToolStripMenuItem, "useWindowsClipboardToolStripMenuItem");
     this.useWindowsClipboardToolStripMenuItem.Click += new System.EventHandler(this.useWindowsClipboardToolStripMenuItem_Click);
     //
     // noWindowsSoundsToolStripMenuItem
     //
     this.noWindowsSoundsToolStripMenuItem.Name = "noWindowsSoundsToolStripMenuItem";
     resources.ApplyResources(this.noWindowsSoundsToolStripMenuItem, "noWindowsSoundsToolStripMenuItem");
     this.noWindowsSoundsToolStripMenuItem.Click += new System.EventHandler(this.noWindowsSoundsToolStripMenuItem_Click);
     //
     // resetDockingWindowsToolStripMenuItem
     //
     this.resetDockingWindowsToolStripMenuItem.Name = "resetDockingWindowsToolStripMenuItem";
     resources.ApplyResources(this.resetDockingWindowsToolStripMenuItem, "resetDockingWindowsToolStripMenuItem");
     this.resetDockingWindowsToolStripMenuItem.Click += new System.EventHandler(this.resetDockingWindowsToolStripMenuItem_Click);
     //
     // eSMFilterSettingsToolStripMenuItem
     //
     this.eSMFilterSettingsToolStripMenuItem.Name = "eSMFilterSettingsToolStripMenuItem";
     resources.ApplyResources(this.eSMFilterSettingsToolStripMenuItem, "eSMFilterSettingsToolStripMenuItem");
     this.eSMFilterSettingsToolStripMenuItem.Click += new System.EventHandler(this.eSMFilterSettingsToolStripMenuItem_Click);
     //
     // compressionSettingsToolStripMenuItem
     //
     this.compressionSettingsToolStripMenuItem.Name = "compressionSettingsToolStripMenuItem";
     resources.ApplyResources(this.compressionSettingsToolStripMenuItem, "compressionSettingsToolStripMenuItem");
     this.compressionSettingsToolStripMenuItem.Click += new System.EventHandler(this.compressionSettingsToolStripMenuItem_Click);
     //
     // resetSettingsToDefaultsToolStripMenuItem
     //
     this.resetSettingsToDefaultsToolStripMenuItem.Name = "resetSettingsToDefaultsToolStripMenuItem";
     resources.ApplyResources(this.resetSettingsToDefaultsToolStripMenuItem, "resetSettingsToDefaultsToolStripMenuItem");
     this.resetSettingsToDefaultsToolStripMenuItem.Click += new System.EventHandler(this.resetSettingsToDefaultsToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.languageToolStripMenuItem,
     this.editStringsToolStripMenuItem,
     this.saveStringsFilesToolStripMenuItem,
     this.saveStringsToolStripMenuItem,
     this.reloadStringsToolStripMenuItem,
     this.toolStripMenuItem2,
     this.internalizeStringReferencesToolStripMenuItem,
     this.extractInternalStringsToTableToolStripMenuItem,
     this.copyReferencedStringsFromMastersToolStripMenuItem,
     this.cleanUnusedStringsToolStripMenuItem,
     this.createStubsForMissingStringsToolStripMenuItem,
     this.exportStringsToFileToolStripMenuItem,
     this.importStringsToFileToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     resources.ApplyResources(this.toolsToolStripMenuItem, "toolsToolStripMenuItem");
     this.toolsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.toolsToolStripMenuItem_DropDownOpening);
     //
     // languageToolStripMenuItem
     //
     this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.englishToolStripMenuItem,
     this.czechToolStripMenuItem,
     this.frenchToolStripMenuItem,
     this.germanToolStripMenuItem,
     this.italianToolStripMenuItem,
     this.spanishToolStripMenuItem,
     this.russianToolStripMenuItem,
     this.polishToolStripMenuItem});
     this.languageToolStripMenuItem.Name = "languageToolStripMenuItem";
     resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
     this.languageToolStripMenuItem.DropDownOpening += new System.EventHandler(this.languageToolStripMenuItem_DropDownOpening);
     this.languageToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.languageToolStripMenuItem_DropDownItemClicked);
     //
     // englishToolStripMenuItem
     //
     this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
     resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
     //
     // czechToolStripMenuItem
     //
     this.czechToolStripMenuItem.Name = "czechToolStripMenuItem";
     resources.ApplyResources(this.czechToolStripMenuItem, "czechToolStripMenuItem");
     //
     // frenchToolStripMenuItem
     //
     this.frenchToolStripMenuItem.Name = "frenchToolStripMenuItem";
     resources.ApplyResources(this.frenchToolStripMenuItem, "frenchToolStripMenuItem");
     //
     // germanToolStripMenuItem
     //
     this.germanToolStripMenuItem.Name = "germanToolStripMenuItem";
     resources.ApplyResources(this.germanToolStripMenuItem, "germanToolStripMenuItem");
     //
     // italianToolStripMenuItem
     //
     this.italianToolStripMenuItem.Name = "italianToolStripMenuItem";
     resources.ApplyResources(this.italianToolStripMenuItem, "italianToolStripMenuItem");
     //
     // spanishToolStripMenuItem
     //
     this.spanishToolStripMenuItem.Name = "spanishToolStripMenuItem";
     resources.ApplyResources(this.spanishToolStripMenuItem, "spanishToolStripMenuItem");
     //
     // russianToolStripMenuItem
     //
     this.russianToolStripMenuItem.Name = "russianToolStripMenuItem";
     resources.ApplyResources(this.russianToolStripMenuItem, "russianToolStripMenuItem");
     //
     // polishToolStripMenuItem
     //
     this.polishToolStripMenuItem.Name = "polishToolStripMenuItem";
     resources.ApplyResources(this.polishToolStripMenuItem, "polishToolStripMenuItem");
     //
     // editStringsToolStripMenuItem
     //
     this.editStringsToolStripMenuItem.Name = "editStringsToolStripMenuItem";
     resources.ApplyResources(this.editStringsToolStripMenuItem, "editStringsToolStripMenuItem");
     this.editStringsToolStripMenuItem.Click += new System.EventHandler(this.editStringsToolStripMenuItem_Click);
     //
     // saveStringsFilesToolStripMenuItem
     //
     this.saveStringsFilesToolStripMenuItem.Name = "saveStringsFilesToolStripMenuItem";
     resources.ApplyResources(this.saveStringsFilesToolStripMenuItem, "saveStringsFilesToolStripMenuItem");
     this.saveStringsFilesToolStripMenuItem.Click += new System.EventHandler(this.saveStringsFilesToolStripMenuItem_Click);
     //
     // saveStringsToolStripMenuItem
     //
     this.saveStringsToolStripMenuItem.Name = "saveStringsToolStripMenuItem";
     resources.ApplyResources(this.saveStringsToolStripMenuItem, "saveStringsToolStripMenuItem");
     this.saveStringsToolStripMenuItem.Click += new System.EventHandler(this.saveStringsToolStripMenuItem_Click);
     //
     // reloadStringsToolStripMenuItem
     //
     this.reloadStringsToolStripMenuItem.Name = "reloadStringsToolStripMenuItem";
     resources.ApplyResources(this.reloadStringsToolStripMenuItem, "reloadStringsToolStripMenuItem");
     this.reloadStringsToolStripMenuItem.Click += new System.EventHandler(this.reloadStringsToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     resources.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
     //
     // internalizeStringReferencesToolStripMenuItem
     //
     this.internalizeStringReferencesToolStripMenuItem.Name = "internalizeStringReferencesToolStripMenuItem";
     resources.ApplyResources(this.internalizeStringReferencesToolStripMenuItem, "internalizeStringReferencesToolStripMenuItem");
     this.internalizeStringReferencesToolStripMenuItem.Click += new System.EventHandler(this.internalizeStringReferencesToolStripMenuItem_Click);
     //
     // extractInternalStringsToTableToolStripMenuItem
     //
     this.extractInternalStringsToTableToolStripMenuItem.Name = "extractInternalStringsToTableToolStripMenuItem";
     resources.ApplyResources(this.extractInternalStringsToTableToolStripMenuItem, "extractInternalStringsToTableToolStripMenuItem");
     this.extractInternalStringsToTableToolStripMenuItem.Click += new System.EventHandler(this.extractInternalStringsToTableToolStripMenuItem_Click);
     //
     // copyReferencedStringsFromMastersToolStripMenuItem
     //
     this.copyReferencedStringsFromMastersToolStripMenuItem.Name = "copyReferencedStringsFromMastersToolStripMenuItem";
     resources.ApplyResources(this.copyReferencedStringsFromMastersToolStripMenuItem, "copyReferencedStringsFromMastersToolStripMenuItem");
     this.copyReferencedStringsFromMastersToolStripMenuItem.Click += new System.EventHandler(this.copyReferencedStringsFromMastersToolStripMenuItem_Click);
     //
     // cleanUnusedStringsToolStripMenuItem
     //
     this.cleanUnusedStringsToolStripMenuItem.Name = "cleanUnusedStringsToolStripMenuItem";
     resources.ApplyResources(this.cleanUnusedStringsToolStripMenuItem, "cleanUnusedStringsToolStripMenuItem");
     this.cleanUnusedStringsToolStripMenuItem.Click += new System.EventHandler(this.cleanUnusedStringsToolStripMenuItem_Click);
     //
     // createStubsForMissingStringsToolStripMenuItem
     //
     this.createStubsForMissingStringsToolStripMenuItem.Name = "createStubsForMissingStringsToolStripMenuItem";
     resources.ApplyResources(this.createStubsForMissingStringsToolStripMenuItem, "createStubsForMissingStringsToolStripMenuItem");
     this.createStubsForMissingStringsToolStripMenuItem.Click += new System.EventHandler(this.createStubsForMissingStringsToolStripMenuItem_Click);
     //
     // exportStringsToFileToolStripMenuItem
     //
     this.exportStringsToFileToolStripMenuItem.Name = "exportStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.exportStringsToFileToolStripMenuItem, "exportStringsToFileToolStripMenuItem");
     this.exportStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.exportStringsToFileToolStripMenuItem_Click);
     //
     // importStringsToFileToolStripMenuItem
     //
     this.importStringsToFileToolStripMenuItem.Name = "importStringsToFileToolStripMenuItem";
     resources.ApplyResources(this.importStringsToFileToolStripMenuItem, "importStringsToFileToolStripMenuItem");
     this.importStringsToFileToolStripMenuItem.Click += new System.EventHandler(this.importStringsToFileToolStripMenuItem_Click);
     //
     // spellsToolStripMenuItem
     //
     this.spellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sanitizeToolStripMenuItem,
     this.stripEDIDsToolStripMenuItem,
     this.findDuplicatedFormIDToolStripMenuItem,
     this.dumpEDIDListToolStripMenuItem,
     this.cleanEspToolStripMenuItem,
     this.findNonconformingRecordToolStripMenuItem,
     this.generateLLXmlToolStripMenuItem,
     this.makeEsmToolStripMenuItem,
     this.martigensToolStripMenuItem,
     this.createRecordStructureXmlToolStripMenuItem,
     this.mergeRecordsXMLToolStripMenuItem,
     this.reorderSubrecordsToolStripMenuItem,
     this.newFormIDToolStripMenuItem,
     this.newFormIDNoReferenceUpdateToolStripMenuItem,
     this.reduceFormVersionsTo40ToolStripMenuItem});
     this.spellsToolStripMenuItem.Name = "spellsToolStripMenuItem";
     resources.ApplyResources(this.spellsToolStripMenuItem, "spellsToolStripMenuItem");
     //
     // sanitizeToolStripMenuItem
     //
     this.sanitizeToolStripMenuItem.AutoToolTip = true;
     this.sanitizeToolStripMenuItem.Name = "sanitizeToolStripMenuItem";
     resources.ApplyResources(this.sanitizeToolStripMenuItem, "sanitizeToolStripMenuItem");
     this.sanitizeToolStripMenuItem.Click += new System.EventHandler(this.sanitizeToolStripMenuItem_Click);
     //
     // stripEDIDsToolStripMenuItem
     //
     this.stripEDIDsToolStripMenuItem.Name = "stripEDIDsToolStripMenuItem";
     resources.ApplyResources(this.stripEDIDsToolStripMenuItem, "stripEDIDsToolStripMenuItem");
     this.stripEDIDsToolStripMenuItem.Click += new System.EventHandler(this.stripEDIDsToolStripMenuItem_Click);
     //
     // findDuplicatedFormIDToolStripMenuItem
     //
     this.findDuplicatedFormIDToolStripMenuItem.AutoToolTip = true;
     this.findDuplicatedFormIDToolStripMenuItem.Name = "findDuplicatedFormIDToolStripMenuItem";
     resources.ApplyResources(this.findDuplicatedFormIDToolStripMenuItem, "findDuplicatedFormIDToolStripMenuItem");
     this.findDuplicatedFormIDToolStripMenuItem.Click += new System.EventHandler(this.findDuplicatedFormIDToolStripMenuItem_Click);
     //
     // dumpEDIDListToolStripMenuItem
     //
     this.dumpEDIDListToolStripMenuItem.Name = "dumpEDIDListToolStripMenuItem";
     resources.ApplyResources(this.dumpEDIDListToolStripMenuItem, "dumpEDIDListToolStripMenuItem");
     this.dumpEDIDListToolStripMenuItem.Click += new System.EventHandler(this.dumpEDIDListToolStripMenuItem_Click);
     //
     // cleanEspToolStripMenuItem
     //
     this.cleanEspToolStripMenuItem.Name = "cleanEspToolStripMenuItem";
     resources.ApplyResources(this.cleanEspToolStripMenuItem, "cleanEspToolStripMenuItem");
     this.cleanEspToolStripMenuItem.Click += new System.EventHandler(this.cleanEspToolStripMenuItem_Click);
     //
     // findNonconformingRecordToolStripMenuItem
     //
     this.findNonconformingRecordToolStripMenuItem.Name = "findNonconformingRecordToolStripMenuItem";
     resources.ApplyResources(this.findNonconformingRecordToolStripMenuItem, "findNonconformingRecordToolStripMenuItem");
     this.findNonconformingRecordToolStripMenuItem.Click += new System.EventHandler(this.findNonconformingRecordToolStripMenuItem_Click);
     //
     // generateLLXmlToolStripMenuItem
     //
     this.generateLLXmlToolStripMenuItem.Name = "generateLLXmlToolStripMenuItem";
     resources.ApplyResources(this.generateLLXmlToolStripMenuItem, "generateLLXmlToolStripMenuItem");
     this.generateLLXmlToolStripMenuItem.Click += new System.EventHandler(this.generateLLXmlToolStripMenuItem_Click);
     //
     // makeEsmToolStripMenuItem
     //
     this.makeEsmToolStripMenuItem.AutoToolTip = true;
     this.makeEsmToolStripMenuItem.Name = "makeEsmToolStripMenuItem";
     resources.ApplyResources(this.makeEsmToolStripMenuItem, "makeEsmToolStripMenuItem");
     this.makeEsmToolStripMenuItem.Click += new System.EventHandler(this.makeEsmToolStripMenuItem_Click);
     //
     // martigensToolStripMenuItem
     //
     this.martigensToolStripMenuItem.Name = "martigensToolStripMenuItem";
     resources.ApplyResources(this.martigensToolStripMenuItem, "martigensToolStripMenuItem");
     this.martigensToolStripMenuItem.Click += new System.EventHandler(this.martigensToolStripMenuItem_Click);
     //
     // createRecordStructureXmlToolStripMenuItem
     //
     this.createRecordStructureXmlToolStripMenuItem.Name = "createRecordStructureXmlToolStripMenuItem";
     resources.ApplyResources(this.createRecordStructureXmlToolStripMenuItem, "createRecordStructureXmlToolStripMenuItem");
     this.createRecordStructureXmlToolStripMenuItem.Click += new System.EventHandler(this.createRecordStructureXmlToolStripMenuItem_Click);
     //
     // mergeRecordsXMLToolStripMenuItem
     //
     this.mergeRecordsXMLToolStripMenuItem.Name = "mergeRecordsXMLToolStripMenuItem";
     resources.ApplyResources(this.mergeRecordsXMLToolStripMenuItem, "mergeRecordsXMLToolStripMenuItem");
     this.mergeRecordsXMLToolStripMenuItem.Click += new System.EventHandler(this.mergeRecordsXMLToolStripMenuItem_Click);
     //
     // reorderSubrecordsToolStripMenuItem
     //
     this.reorderSubrecordsToolStripMenuItem.Name = "reorderSubrecordsToolStripMenuItem";
     resources.ApplyResources(this.reorderSubrecordsToolStripMenuItem, "reorderSubrecordsToolStripMenuItem");
     this.reorderSubrecordsToolStripMenuItem.Click += new System.EventHandler(this.reorderSubrecordsToolStripMenuItem_Click);
     //
     // newFormIDToolStripMenuItem
     //
     this.newFormIDToolStripMenuItem.AutoToolTip = true;
     this.newFormIDToolStripMenuItem.Name = "newFormIDToolStripMenuItem";
     resources.ApplyResources(this.newFormIDToolStripMenuItem, "newFormIDToolStripMenuItem");
     this.newFormIDToolStripMenuItem.Click += new System.EventHandler(this.newFormIDToolStripMenuItem_Click);
     //
     // newFormIDNoReferenceUpdateToolStripMenuItem
     //
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Name = "newFormIDNoReferenceUpdateToolStripMenuItem";
     resources.ApplyResources(this.newFormIDNoReferenceUpdateToolStripMenuItem, "newFormIDNoReferenceUpdateToolStripMenuItem");
     this.newFormIDNoReferenceUpdateToolStripMenuItem.Click += new System.EventHandler(this.newFormIDNoReferenceUpdateToolStripMenuItem_Click);
     //
     // reduceFormVersionsTo40ToolStripMenuItem
     //
     resources.ApplyResources(this.reduceFormVersionsTo40ToolStripMenuItem, "reduceFormVersionsTo40ToolStripMenuItem");
     this.reduceFormVersionsTo40ToolStripMenuItem.Name = "reduceFormVersionsTo40ToolStripMenuItem";
     this.reduceFormVersionsTo40ToolStripMenuItem.Click += new System.EventHandler(this.reduceFormVersionTo40ToolStripMenuItem_Click);
     //
     // scriptsToolStripMenuItem
     //
     this.scriptsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.globalScriptsToolStripMenuItem,
     this.selectionScriptsToolStripMenuItem,
     this.editScriptsToolStripMenuItem,
     this.endScriptsToolStripSeparator,
     this.consoleToolStripMenuItem,
     this.outputWindowToolStripMenuItem,
     this.reloadToolStripMenuItem});
     this.scriptsToolStripMenuItem.Name = "scriptsToolStripMenuItem";
     resources.ApplyResources(this.scriptsToolStripMenuItem, "scriptsToolStripMenuItem");
     this.scriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.scriptsToolStripMenuItem_DropDownOpening);
     //
     // globalScriptsToolStripMenuItem
     //
     this.globalScriptsToolStripMenuItem.Name = "globalScriptsToolStripMenuItem";
     resources.ApplyResources(this.globalScriptsToolStripMenuItem, "globalScriptsToolStripMenuItem");
     this.globalScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.globalScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // selectionScriptsToolStripMenuItem
     //
     this.selectionScriptsToolStripMenuItem.Name = "selectionScriptsToolStripMenuItem";
     resources.ApplyResources(this.selectionScriptsToolStripMenuItem, "selectionScriptsToolStripMenuItem");
     this.selectionScriptsToolStripMenuItem.DropDownOpening += new System.EventHandler(this.selectionScriptsToolStripMenuItem_DropDownOpening);
     this.selectionScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.selectionScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // editScriptsToolStripMenuItem
     //
     this.editScriptsToolStripMenuItem.Name = "editScriptsToolStripMenuItem";
     resources.ApplyResources(this.editScriptsToolStripMenuItem, "editScriptsToolStripMenuItem");
     this.editScriptsToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.editScriptsToolStripMenuItem_DropDownItemClicked);
     //
     // endScriptsToolStripSeparator
     //
     this.endScriptsToolStripSeparator.Name = "endScriptsToolStripSeparator";
     resources.ApplyResources(this.endScriptsToolStripSeparator, "endScriptsToolStripSeparator");
     //
     // consoleToolStripMenuItem
     //
     this.consoleToolStripMenuItem.Name = "consoleToolStripMenuItem";
     resources.ApplyResources(this.consoleToolStripMenuItem, "consoleToolStripMenuItem");
     this.consoleToolStripMenuItem.Click += new System.EventHandler(this.consoleToolStripMenuItem_Click);
     //
     // outputWindowToolStripMenuItem
     //
     this.outputWindowToolStripMenuItem.Name = "outputWindowToolStripMenuItem";
     resources.ApplyResources(this.outputWindowToolStripMenuItem, "outputWindowToolStripMenuItem");
     this.outputWindowToolStripMenuItem.Click += new System.EventHandler(this.outputWindowToolStripMenuItem_Click);
     //
     // reloadToolStripMenuItem
     //
     this.reloadToolStripMenuItem.Name = "reloadToolStripMenuItem";
     resources.ApplyResources(this.reloadToolStripMenuItem, "reloadToolStripMenuItem");
     this.reloadToolStripMenuItem.Click += new System.EventHandler(this.reloadToolStripMenuItem_Click);
     //
     // OpenModDialog
     //
     resources.ApplyResources(this.OpenModDialog, "OpenModDialog");
     this.OpenModDialog.Multiselect = true;
     this.OpenModDialog.RestoreDirectory = true;
     //
     // SaveModDialog
     //
     this.SaveModDialog.DefaultExt = "esp";
     resources.ApplyResources(this.SaveModDialog, "SaveModDialog");
     this.SaveModDialog.RestoreDirectory = true;
     //
     // SaveEdidListDialog
     //
     this.SaveEdidListDialog.DefaultExt = "txt";
     resources.ApplyResources(this.SaveEdidListDialog, "SaveEdidListDialog");
     this.SaveEdidListDialog.RestoreDirectory = true;
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripStatusLabel,
     this.toolStripStatusProgressBar,
     this.toolStripStopProgress});
     resources.ApplyResources(this.statusStrip1, "statusStrip1");
     this.statusStrip1.Name = "statusStrip1";
     //
     // toolStripStatusLabel
     //
     this.toolStripStatusLabel.Name = "toolStripStatusLabel";
     resources.ApplyResources(this.toolStripStatusLabel, "toolStripStatusLabel");
     this.toolStripStatusLabel.Spring = true;
     //
     // toolStripStatusProgressBar
     //
     this.toolStripStatusProgressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStatusProgressBar.Name = "toolStripStatusProgressBar";
     resources.ApplyResources(this.toolStripStatusProgressBar, "toolStripStatusProgressBar");
     //
     // toolStripStopProgress
     //
     this.toolStripStopProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripStopProgress.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripStopProgress.Image = global::TESVSnip.Properties.Resources.agt_stop;
     resources.ApplyResources(this.toolStripStopProgress, "toolStripStopProgress");
     this.toolStripStopProgress.Name = "toolStripStopProgress";
     this.toolStripStopProgress.Click += new System.EventHandler(this.toolStripStopProgress_Click);
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
     //
     // columnHeader1
     //
     resources.ApplyResources(this.columnHeader1, "columnHeader1");
     //
     // columnHeader2
     //
     resources.ApplyResources(this.columnHeader2, "columnHeader2");
     //
     // toolStripIncrFind
     //
     resources.ApplyResources(this.toolStripIncrFind, "toolStripIncrFind");
     this.toolStripIncrFind.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrFind.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrFindCancel,
     this.toolStripIncrFindText,
     this.toolStripIncrFindTypeFilter,
     this.toolStripIncrFindNext,
     this.toolStripIncrFindPrev,
     this.toolStripIncrFindRestart,
     this.toolStripIncrFindType,
     this.toolStripIncrFindMatch,
     this.toolStripIncrFindExact,
     this.toolStripIncrFindWrapAround,
     this.toolStripSeparator7,
     this.toolStripIncrFindStatus});
     this.toolStripIncrFind.Name = "toolStripIncrFind";
     this.toolStripIncrFind.TabStop = true;
     this.toolStripIncrFind.VisibleChanged += new System.EventHandler(this.toolStripIncrFind_VisibleChanged);
     //
     // toolStripIncrFindCancel
     //
     this.toolStripIncrFindCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrFindCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrFindCancel, "toolStripIncrFindCancel");
     this.toolStripIncrFindCancel.Name = "toolStripIncrFindCancel";
     this.toolStripIncrFindCancel.Click += new System.EventHandler(this.toolStripIncrFindCancel_Click);
     //
     // toolStripIncrFindText
     //
     this.toolStripIncrFindText.AcceptsReturn = true;
     this.toolStripIncrFindText.Name = "toolStripIncrFindText";
     this.toolStripIncrFindText.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindText, "toolStripIncrFindText");
     this.toolStripIncrFindText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripIncrFindText_KeyDown);
     this.toolStripIncrFindText.TextChanged += new System.EventHandler(this.toolStripIncrFindText_TextChanged);
     //
     // toolStripIncrFindTypeFilter
     //
     this.toolStripIncrFindTypeFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindTypeFilter.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindTypeFilter.Items"),
     resources.GetString("toolStripIncrFindTypeFilter.Items1")});
     this.toolStripIncrFindTypeFilter.Name = "toolStripIncrFindTypeFilter";
     this.toolStripIncrFindTypeFilter.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindTypeFilter, "toolStripIncrFindTypeFilter");
     this.toolStripIncrFindTypeFilter.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_SelectedIndexChanged);
     this.toolStripIncrFindTypeFilter.VisibleChanged += new System.EventHandler(this.toolStripIncrFindTypeFilter_VisibleChanged);
     //
     // toolStripIncrFindNext
     //
     this.toolStripIncrFindNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrFindNext, "toolStripIncrFindNext");
     this.toolStripIncrFindNext.Name = "toolStripIncrFindNext";
     this.toolStripIncrFindNext.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindNext.Click += new System.EventHandler(this.toolStripIncrFindNext_Click);
     //
     // toolStripIncrFindPrev
     //
     this.toolStripIncrFindPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrFindPrev, "toolStripIncrFindPrev");
     this.toolStripIncrFindPrev.Name = "toolStripIncrFindPrev";
     this.toolStripIncrFindPrev.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.toolStripIncrFindPrev.Click += new System.EventHandler(this.toolStripIncrFindPrev_Click);
     //
     // toolStripIncrFindRestart
     //
     this.toolStripIncrFindRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrFindRestart, "toolStripIncrFindRestart");
     this.toolStripIncrFindRestart.Name = "toolStripIncrFindRestart";
     this.toolStripIncrFindRestart.Click += new System.EventHandler(this.toolStripIncrFindRestart_Click);
     //
     // toolStripIncrFindType
     //
     this.toolStripIncrFindType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripIncrFindType.Items.AddRange(new object[] {
     resources.GetString("toolStripIncrFindType.Items"),
     resources.GetString("toolStripIncrFindType.Items1")});
     this.toolStripIncrFindType.Name = "toolStripIncrFindType";
     resources.ApplyResources(this.toolStripIncrFindType, "toolStripIncrFindType");
     this.toolStripIncrFindType.SelectedIndexChanged += new System.EventHandler(this.toolStripIncrFindType_SelectedIndexChanged);
     //
     // toolStripIncrFindMatch
     //
     this.toolStripIncrFindMatch.CheckOnClick = true;
     this.toolStripIncrFindMatch.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindMatch, "toolStripIncrFindMatch");
     this.toolStripIncrFindMatch.Name = "toolStripIncrFindMatch";
     this.toolStripIncrFindMatch.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindExact
     //
     this.toolStripIncrFindExact.CheckOnClick = true;
     this.toolStripIncrFindExact.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindExact, "toolStripIncrFindExact");
     this.toolStripIncrFindExact.Name = "toolStripIncrFindExact";
     this.toolStripIncrFindExact.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripIncrFindWrapAround
     //
     this.toolStripIncrFindWrapAround.CheckOnClick = true;
     this.toolStripIncrFindWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrFindWrapAround, "toolStripIncrFindWrapAround");
     this.toolStripIncrFindWrapAround.Name = "toolStripIncrFindWrapAround";
     this.toolStripIncrFindWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripSeparator7, "toolStripSeparator7");
     //
     // toolStripIncrFindStatus
     //
     this.toolStripIncrFindStatus.ForeColor = System.Drawing.Color.Maroon;
     this.toolStripIncrFindStatus.Name = "toolStripIncrFindStatus";
     this.toolStripIncrFindStatus.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     resources.ApplyResources(this.toolStripIncrFindStatus, "toolStripIncrFindStatus");
     //
     // toolStripIncrInvalidRec
     //
     resources.ApplyResources(this.toolStripIncrInvalidRec, "toolStripIncrInvalidRec");
     this.toolStripIncrInvalidRec.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripIncrInvalidRec.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripIncrInvalidRecCancel,
     this.toolStripIncrInvalidRecText,
     this.toolStripSeparator6,
     this.toolStripIncrInvalidRecNext,
     this.toolStripIncrInvalidRecPrev,
     this.toolStripIncrInvalidRecRestart,
     this.toolStripSeparator4,
     this.toolStripIncrInvalidRecWrapAround,
     this.toolStripSeparator5,
     this.toolStripIncrInvalidRecStatus});
     this.toolStripIncrInvalidRec.Name = "toolStripIncrInvalidRec";
     this.toolStripIncrInvalidRec.TabStop = true;
     this.toolStripIncrInvalidRec.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripIncrInvalidRec_ItemClicked);
     this.toolStripIncrInvalidRec.VisibleChanged += new System.EventHandler(this.toolStripIncrInvalidRec_VisibleChanged);
     //
     // toolStripIncrInvalidRecCancel
     //
     this.toolStripIncrInvalidRecCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripIncrInvalidRecCancel.Image = global::TESVSnip.Properties.Resources.delete;
     resources.ApplyResources(this.toolStripIncrInvalidRecCancel, "toolStripIncrInvalidRecCancel");
     this.toolStripIncrInvalidRecCancel.Name = "toolStripIncrInvalidRecCancel";
     this.toolStripIncrInvalidRecCancel.Click += new System.EventHandler(this.toolStripIncrInvalidRecCancel_Click);
     //
     // toolStripIncrInvalidRecText
     //
     this.toolStripIncrInvalidRecText.Name = "toolStripIncrInvalidRecText";
     resources.ApplyResources(this.toolStripIncrInvalidRecText, "toolStripIncrInvalidRecText");
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     resources.ApplyResources(this.toolStripSeparator6, "toolStripSeparator6");
     //
     // toolStripIncrInvalidRecNext
     //
     this.toolStripIncrInvalidRecNext.Image = global::TESVSnip.Properties.Resources.down;
     resources.ApplyResources(this.toolStripIncrInvalidRecNext, "toolStripIncrInvalidRecNext");
     this.toolStripIncrInvalidRecNext.Name = "toolStripIncrInvalidRecNext";
     this.toolStripIncrInvalidRecNext.Click += new System.EventHandler(this.toolStripIncrInvalidRecNext_Click);
     //
     // toolStripIncrInvalidRecPrev
     //
     this.toolStripIncrInvalidRecPrev.Image = global::TESVSnip.Properties.Resources.up;
     resources.ApplyResources(this.toolStripIncrInvalidRecPrev, "toolStripIncrInvalidRecPrev");
     this.toolStripIncrInvalidRecPrev.Name = "toolStripIncrInvalidRecPrev";
     this.toolStripIncrInvalidRecPrev.Click += new System.EventHandler(this.toolStripIncrInvalidRecPrev_Click);
     //
     // toolStripIncrInvalidRecRestart
     //
     this.toolStripIncrInvalidRecRestart.Image = global::TESVSnip.Properties.Resources.quick_restart;
     resources.ApplyResources(this.toolStripIncrInvalidRecRestart, "toolStripIncrInvalidRecRestart");
     this.toolStripIncrInvalidRecRestart.Name = "toolStripIncrInvalidRecRestart";
     this.toolStripIncrInvalidRecRestart.Click += new System.EventHandler(this.toolStripIncrInvalidRecRestart_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     resources.ApplyResources(this.toolStripSeparator4, "toolStripSeparator4");
     //
     // toolStripIncrInvalidRecWrapAround
     //
     this.toolStripIncrInvalidRecWrapAround.CheckOnClick = true;
     this.toolStripIncrInvalidRecWrapAround.Image = global::TESVSnip.Properties.Resources.emptybox;
     resources.ApplyResources(this.toolStripIncrInvalidRecWrapAround, "toolStripIncrInvalidRecWrapAround");
     this.toolStripIncrInvalidRecWrapAround.Name = "toolStripIncrInvalidRecWrapAround";
     this.toolStripIncrInvalidRecWrapAround.CheckStateChanged += new System.EventHandler(this.toolStripCheck_CheckStateChanged);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     resources.ApplyResources(this.toolStripSeparator5, "toolStripSeparator5");
     //
     // toolStripIncrInvalidRecStatus
     //
     this.toolStripIncrInvalidRecStatus.ForeColor = System.Drawing.Color.DarkRed;
     this.toolStripIncrInvalidRecStatus.Name = "toolStripIncrInvalidRecStatus";
     resources.ApplyResources(this.toolStripIncrInvalidRecStatus, "toolStripIncrInvalidRecStatus");
     //
     // dockPanel
     //
     this.dockPanel.ActiveAutoHideContent = null;
     resources.ApplyResources(this.dockPanel, "dockPanel");
     this.dockPanel.DockBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.dockPanel.DockBottomPortion = 150D;
     this.dockPanel.DockLeftPortion = 200D;
     this.dockPanel.DockRightPortion = 200D;
     this.dockPanel.DockTopPortion = 150D;
     this.dockPanel.Name = "dockPanel";
     this.dockPanel.RightToLeftLayout = true;
     dockPanelGradient1.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient1.StartColor = System.Drawing.SystemColors.ControlLight;
     autoHideStripSkin1.DockStripGradient = dockPanelGradient1;
     tabGradient1.EndColor = System.Drawing.SystemColors.Control;
     tabGradient1.StartColor = System.Drawing.SystemColors.Control;
     tabGradient1.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     autoHideStripSkin1.TabGradient = tabGradient1;
     autoHideStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     dockPanelSkin1.AutoHideStripSkin = autoHideStripSkin1;
     tabGradient2.EndColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.StartColor = System.Drawing.SystemColors.ControlLightLight;
     tabGradient2.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.ActiveTabGradient = tabGradient2;
     dockPanelGradient2.EndColor = System.Drawing.SystemColors.Control;
     dockPanelGradient2.StartColor = System.Drawing.SystemColors.Control;
     dockPaneStripGradient1.DockStripGradient = dockPanelGradient2;
     tabGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     tabGradient3.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripGradient1.InactiveTabGradient = tabGradient3;
     dockPaneStripSkin1.DocumentGradient = dockPaneStripGradient1;
     dockPaneStripSkin1.TextFont = new System.Drawing.Font("Segoe UI", 9F);
     tabGradient4.EndColor = System.Drawing.SystemColors.ActiveCaption;
     tabGradient4.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient4.StartColor = System.Drawing.SystemColors.GradientActiveCaption;
     tabGradient4.TextColor = System.Drawing.SystemColors.ActiveCaptionText;
     dockPaneStripToolWindowGradient1.ActiveCaptionGradient = tabGradient4;
     tabGradient5.EndColor = System.Drawing.SystemColors.Control;
     tabGradient5.StartColor = System.Drawing.SystemColors.Control;
     tabGradient5.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.ActiveTabGradient = tabGradient5;
     dockPanelGradient3.EndColor = System.Drawing.SystemColors.ControlLight;
     dockPanelGradient3.StartColor = System.Drawing.SystemColors.ControlLight;
     dockPaneStripToolWindowGradient1.DockStripGradient = dockPanelGradient3;
     tabGradient6.EndColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     tabGradient6.StartColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tabGradient6.TextColor = System.Drawing.SystemColors.ControlText;
     dockPaneStripToolWindowGradient1.InactiveCaptionGradient = tabGradient6;
     tabGradient7.EndColor = System.Drawing.Color.Transparent;
     tabGradient7.StartColor = System.Drawing.Color.Transparent;
     tabGradient7.TextColor = System.Drawing.SystemColors.ControlDarkDark;
     dockPaneStripToolWindowGradient1.InactiveTabGradient = tabGradient7;
     dockPaneStripSkin1.ToolWindowGradient = dockPaneStripToolWindowGradient1;
     dockPanelSkin1.DockPaneStripSkin = dockPaneStripSkin1;
     this.dockPanel.Skin = dockPanelSkin1;
     //
     // defaultGameSettingsToolStripMenuItem
     //
     this.defaultGameSettingsToolStripMenuItem.Name = "defaultGameSettingsToolStripMenuItem";
     resources.ApplyResources(this.defaultGameSettingsToolStripMenuItem, "defaultGameSettingsToolStripMenuItem");
     //
     // MainView
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.dockPanel);
     this.Controls.Add(this.toolStripIncrFind);
     this.Controls.Add(this.toolStripIncrInvalidRec);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.menuStrip1);
     this.IsMdiContainer = true;
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "MainView";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TESsnip_FormClosing);
     this.Load += new System.EventHandler(this.MainView_Load);
     this.Shown += new System.EventHandler(this.MainView_Shown);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.toolStripIncrFind.ResumeLayout(false);
     this.toolStripIncrFind.PerformLayout();
     this.toolStripIncrInvalidRec.ResumeLayout(false);
     this.toolStripIncrInvalidRec.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.formatCsharpButton             = new System.Windows.Forms.ToolStrip();
     this.sortButton                     = new System.Windows.Forms.ToolStripButton();
     this.sortDelegateButton             = new System.Windows.Forms.ToolStripButton();
     this.sort_proper                    = new System.Windows.Forms.ToolStripButton();
     this.sortFunctionButton             = new System.Windows.Forms.ToolStripButton();
     this.menuItemToCodeButton           = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
     this.addPrivateButton               = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2            = new System.Windows.Forms.ToolStripSeparator();
     this.exeButton                      = new System.Windows.Forms.ToolStripButton();
     this.codePreviewButton              = new System.Windows.Forms.ToolStripButton();
     this.toolStrip2                     = new System.Windows.Forms.ToolStrip();
     this.parameterButton                = new System.Windows.Forms.ToolStripSplitButton();
     this.toFloatToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.javaFieldButton1               = new System.Windows.Forms.ToolStripSplitButton();
     this.提取字段名ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.标准化字段名ToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.排序字段ToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.JavaStaticKotlinButton         = new System.Windows.Forms.ToolStripButton();
     this.fileButton                     = new System.Windows.Forms.ToolStripSplitButton();
     this.changeHTMLCSSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.排序indexhtmlToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator5            = new System.Windows.Forms.ToolStripSeparator();
     this.cleanJavaFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.除文件空行ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.压缩目录下Kotlin文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.压缩安卓项目ToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.压缩子目录ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3            = new System.Windows.Forms.ToolStripSeparator();
     this.制目录结构ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.制目录文件结构ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4            = new System.Windows.Forms.ToolStripSeparator();
     this.合并KT文件ToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
     this.compileStripButton             = new System.Windows.Forms.ToolStripButton();
     this.logButton                      = new System.Windows.Forms.ToolStripSplitButton();
     this.log文件ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.trackerToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.tracker文件ToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.sqlStripButton                 = new System.Windows.Forms.ToolStripButton();
     this.stringBuilderButton            = new System.Windows.Forms.ToolStripButton();
     this.toolStrip3                     = new System.Windows.Forms.ToolStrip();
     this.toolStripComboBox1             = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripComboBox2             = new System.Windows.Forms.ToolStripComboBox();
     this.replaceButton                  = new System.Windows.Forms.ToolStripSplitButton();
     this.替换文件中ToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.从配置文件替换ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.保留正则表达式ToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.模板数组ToolStripMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainer1                = new System.Windows.Forms.SplitContainer();
     this.textBox1         = new System.Windows.Forms.TextBox();
     this.textBox2         = new System.Windows.Forms.TextBox();
     this.toolStrip4       = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.formatCsharpButton.SuspendLayout();
     this.toolStrip2.SuspendLayout();
     this.toolStrip3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.toolStrip4.SuspendLayout();
     this.SuspendLayout();
     //
     // formatCsharpButton
     //
     this.formatCsharpButton.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sortButton,
         this.sortDelegateButton,
         this.sort_proper,
         this.sortFunctionButton,
         this.menuItemToCodeButton,
         this.toolStripSeparator1,
         this.addPrivateButton,
         this.toolStripSeparator2,
         this.exeButton,
         this.codePreviewButton
     });
     this.formatCsharpButton.Location     = new System.Drawing.Point(0, 25);
     this.formatCsharpButton.Name         = "formatCsharpButton";
     this.formatCsharpButton.Size         = new System.Drawing.Size(719, 25);
     this.formatCsharpButton.TabIndex     = 0;
     this.formatCsharpButton.Text         = "toolStrip1";
     this.formatCsharpButton.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ToolStrip1ItemClicked);
     //
     // sortButton
     //
     this.sortButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.sortButton.Image                 = ((System.Drawing.Image)(resources.GetObject("sortButton.Image")));
     this.sortButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.sortButton.Name   = "sortButton";
     this.sortButton.Size   = new System.Drawing.Size(36, 22);
     this.sortButton.Text   = "Sort";
     this.sortButton.Click += new System.EventHandler(this.SortButtonClick);
     //
     // sortDelegateButton
     //
     this.sortDelegateButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.sortDelegateButton.Image                 = ((System.Drawing.Image)(resources.GetObject("sortDelegateButton.Image")));
     this.sortDelegateButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.sortDelegateButton.Name   = "sortDelegateButton";
     this.sortDelegateButton.Size   = new System.Drawing.Size(92, 22);
     this.sortDelegateButton.Text   = "Sort Delegate";
     this.sortDelegateButton.Click += new System.EventHandler(this.SortDelegateButtonClick);
     //
     // sort_proper
     //
     this.sort_proper.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.sort_proper.Image                 = ((System.Drawing.Image)(resources.GetObject("sort_proper.Image")));
     this.sort_proper.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.sort_proper.Name   = "sort_proper";
     this.sort_proper.Size   = new System.Drawing.Size(60, 22);
     this.sort_proper.Text   = "Sort Pro";
     this.sort_proper.Click += new System.EventHandler(this.Sort_properClick);
     //
     // sortFunctionButton
     //
     this.sortFunctionButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.sortFunctionButton.Image                 = ((System.Drawing.Image)(resources.GetObject("sortFunctionButton.Image")));
     this.sortFunctionButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.sortFunctionButton.Name   = "sortFunctionButton";
     this.sortFunctionButton.Size   = new System.Drawing.Size(60, 22);
     this.sortFunctionButton.Text   = "Sort Fun";
     this.sortFunctionButton.Click += new System.EventHandler(this.SortFunctionButtonClick);
     //
     // menuItemToCodeButton
     //
     this.menuItemToCodeButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.menuItemToCodeButton.Image                 = ((System.Drawing.Image)(resources.GetObject("menuItemToCodeButton.Image")));
     this.menuItemToCodeButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.menuItemToCodeButton.Name   = "menuItemToCodeButton";
     this.menuItemToCodeButton.Size   = new System.Drawing.Size(75, 22);
     this.menuItemToCodeButton.Text   = "Menu Item";
     this.menuItemToCodeButton.Click += new System.EventHandler(this.MenuItemToCodeButtonClick);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // addPrivateButton
     //
     this.addPrivateButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.addPrivateButton.Image                 = ((System.Drawing.Image)(resources.GetObject("addPrivateButton.Image")));
     this.addPrivateButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.addPrivateButton.Name   = "addPrivateButton";
     this.addPrivateButton.Size   = new System.Drawing.Size(79, 22);
     this.addPrivateButton.Text   = "Add Private";
     this.addPrivateButton.Click += new System.EventHandler(this.AddPrivateButtonClick);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // exeButton
     //
     this.exeButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.exeButton.Image                 = ((System.Drawing.Image)(resources.GetObject("exeButton.Image")));
     this.exeButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.exeButton.Name   = "exeButton";
     this.exeButton.Size   = new System.Drawing.Size(34, 22);
     this.exeButton.Text   = "EXE";
     this.exeButton.Click += new System.EventHandler(this.ExeButtonClick);
     //
     // codePreviewButton
     //
     this.codePreviewButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.codePreviewButton.Image                 = ((System.Drawing.Image)(resources.GetObject("codePreviewButton.Image")));
     this.codePreviewButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.codePreviewButton.Name   = "codePreviewButton";
     this.codePreviewButton.Size   = new System.Drawing.Size(43, 22);
     this.codePreviewButton.Text   = "Code";
     this.codePreviewButton.Click += new System.EventHandler(this.CodePreviewButtonClick);
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.parameterButton,
         this.javaFieldButton1,
         this.JavaStaticKotlinButton,
         this.fileButton,
         this.compileStripButton,
         this.logButton,
         this.sqlStripButton,
         this.stringBuilderButton
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 50);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(719, 25);
     this.toolStrip2.TabIndex = 1;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // parameterButton
     //
     this.parameterButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.parameterButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toFloatToolStripMenuItem
     });
     this.parameterButton.Image = ((System.Drawing.Image)(resources.GetObject("parameterButton.Image")));
     this.parameterButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.parameterButton.Name         = "parameterButton";
     this.parameterButton.Size         = new System.Drawing.Size(113, 22);
     this.parameterButton.Text         = "Java Parameter";
     this.parameterButton.ButtonClick += new System.EventHandler(this.ParameterButtonClick);
     //
     // toFloatToolStripMenuItem
     //
     this.toFloatToolStripMenuItem.Name   = "toFloatToolStripMenuItem";
     this.toFloatToolStripMenuItem.Size   = new System.Drawing.Size(127, 22);
     this.toFloatToolStripMenuItem.Text   = ".toFloat()";
     this.toFloatToolStripMenuItem.Click += new System.EventHandler(this.ToFloatToolStripMenuItemClick);
     //
     // javaFieldButton1
     //
     this.javaFieldButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.javaFieldButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.提取字段名ToolStripMenuItem,
         this.标准化字段名ToolStripMenuItem,
         this.排序字段ToolStripMenuItem
     });
     this.javaFieldButton1.Image = ((System.Drawing.Image)(resources.GetObject("javaFieldButton1.Image")));
     this.javaFieldButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.javaFieldButton1.Name         = "javaFieldButton1";
     this.javaFieldButton1.Size         = new System.Drawing.Size(80, 22);
     this.javaFieldButton1.Text         = "Java Field";
     this.javaFieldButton1.ButtonClick += new System.EventHandler(this.JavaFieldButton1Click);
     //
     // 提取字段名ToolStripMenuItem
     //
     this.提取字段名ToolStripMenuItem.Name   = "提取字段名ToolStripMenuItem";
     this.提取字段名ToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.提取字段名ToolStripMenuItem.Text   = "提取字段名";
     this.提取字段名ToolStripMenuItem.Click += new System.EventHandler(this.提取字段名ToolStripMenuItemClick);
     //
     // 标准化字段名ToolStripMenuItem
     //
     this.标准化字段名ToolStripMenuItem.Name   = "标准化字段名ToolStripMenuItem";
     this.标准化字段名ToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.标准化字段名ToolStripMenuItem.Text   = "标准化字段名";
     this.标准化字段名ToolStripMenuItem.Click += new System.EventHandler(this.标准化字段名ToolStripMenuItemClick);
     //
     // 排序字段ToolStripMenuItem
     //
     this.排序字段ToolStripMenuItem.Name   = "排序字段ToolStripMenuItem";
     this.排序字段ToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.排序字段ToolStripMenuItem.Text   = "排序字段";
     this.排序字段ToolStripMenuItem.Click += new System.EventHandler(this.排序字段ToolStripMenuItemClick);
     //
     // JavaStaticKotlinButton
     //
     this.JavaStaticKotlinButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.JavaStaticKotlinButton.Image                 = ((System.Drawing.Image)(resources.GetObject("JavaStaticKotlinButton.Image")));
     this.JavaStaticKotlinButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.JavaStaticKotlinButton.Name   = "JavaStaticKotlinButton";
     this.JavaStaticKotlinButton.Size   = new System.Drawing.Size(80, 22);
     this.JavaStaticKotlinButton.Text   = "Static Const";
     this.JavaStaticKotlinButton.Click += new System.EventHandler(this.JavaStaticKotlinButtonClick);
     //
     // fileButton
     //
     this.fileButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.fileButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.changeHTMLCSSToolStripMenuItem,
         this.排序indexhtmlToolStripMenuItem,
         this.toolStripSeparator5,
         this.cleanJavaFileToolStripMenuItem,
         this.除文件空行ToolStripMenuItem,
         this.压缩目录下Kotlin文件ToolStripMenuItem,
         this.压缩安卓项目ToolStripMenuItem,
         this.压缩子目录ToolStripMenuItem,
         this.toolStripSeparator3,
         this.制目录结构ToolStripMenuItem,
         this.制目录文件结构ToolStripMenuItem,
         this.toolStripSeparator4,
         this.合并KT文件ToolStripMenuItem
     });
     this.fileButton.Image = ((System.Drawing.Image)(resources.GetObject("fileButton.Image")));
     this.fileButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.fileButton.Name         = "fileButton";
     this.fileButton.Size         = new System.Drawing.Size(48, 22);
     this.fileButton.Text         = "文件";
     this.fileButton.ButtonClick += new System.EventHandler(this.FileButtonButtonClick);
     //
     // changeHTMLCSSToolStripMenuItem
     //
     this.changeHTMLCSSToolStripMenuItem.Name   = "changeHTMLCSSToolStripMenuItem";
     this.changeHTMLCSSToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.changeHTMLCSSToolStripMenuItem.Text   = "Change HTML CSS";
     this.changeHTMLCSSToolStripMenuItem.Click += new System.EventHandler(this.ChangeHTMLCSSToolStripMenuItemClick);
     //
     // 排序indexhtmlToolStripMenuItem
     //
     this.排序indexhtmlToolStripMenuItem.Name   = "排序indexhtmlToolStripMenuItem";
     this.排序indexhtmlToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.排序indexhtmlToolStripMenuItem.Text   = "排序index.html";
     this.排序indexhtmlToolStripMenuItem.Click += new System.EventHandler(this.排序indexhtmlToolStripMenuItemClick);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(190, 6);
     //
     // cleanJavaFileToolStripMenuItem
     //
     this.cleanJavaFileToolStripMenuItem.Name   = "cleanJavaFileToolStripMenuItem";
     this.cleanJavaFileToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.cleanJavaFileToolStripMenuItem.Text   = "Clean Java File";
     this.cleanJavaFileToolStripMenuItem.Click += new System.EventHandler(this.CleanJavaFileToolStripMenuItemClick);
     //
     // 删除文件空行ToolStripMenuItem
     //
     this.除文件空行ToolStripMenuItem.Name   = "删除文件空行ToolStripMenuItem";
     this.除文件空行ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.除文件空行ToolStripMenuItem.Text   = "删除文件空行";
     this.除文件空行ToolStripMenuItem.Click += new System.EventHandler(this.除文件空行ToolStripMenuItemClick);
     //
     // 压缩目录下Kotlin文件ToolStripMenuItem
     //
     this.压缩目录下Kotlin文件ToolStripMenuItem.Name   = "压缩目录下Kotlin文件ToolStripMenuItem";
     this.压缩目录下Kotlin文件ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.压缩目录下Kotlin文件ToolStripMenuItem.Text   = "压缩目录下Kotlin文件";
     this.压缩目录下Kotlin文件ToolStripMenuItem.Click += new System.EventHandler(this.压缩目录下Kotlin文件ToolStripMenuItemClick);
     //
     // 压缩安卓项目ToolStripMenuItem
     //
     this.压缩安卓项目ToolStripMenuItem.Name   = "压缩安卓项目ToolStripMenuItem";
     this.压缩安卓项目ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.压缩安卓项目ToolStripMenuItem.Text   = "压缩安卓项目";
     this.压缩安卓项目ToolStripMenuItem.Click += new System.EventHandler(this.压缩安卓项目ToolStripMenuItemClick);
     //
     // 压缩子目录ToolStripMenuItem
     //
     this.压缩子目录ToolStripMenuItem.Name   = "压缩子目录ToolStripMenuItem";
     this.压缩子目录ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.压缩子目录ToolStripMenuItem.Text   = "压缩子目录";
     this.压缩子目录ToolStripMenuItem.Click += new System.EventHandler(this.压缩子目录ToolStripMenuItemClick);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(190, 6);
     //
     // 复制目录结构ToolStripMenuItem
     //
     this.制目录结构ToolStripMenuItem.Name   = "复制目录结构ToolStripMenuItem";
     this.制目录结构ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.制目录结构ToolStripMenuItem.Text   = "复制目录结构";
     this.制目录结构ToolStripMenuItem.Click += new System.EventHandler(this.制目录结构ToolStripMenuItemClick);
     //
     // 复制目录文件结构ToolStripMenuItem
     //
     this.制目录文件结构ToolStripMenuItem.Name   = "复制目录文件结构ToolStripMenuItem";
     this.制目录文件结构ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.制目录文件结构ToolStripMenuItem.Text   = "复制目录文件结构";
     this.制目录文件结构ToolStripMenuItem.Click += new System.EventHandler(this.制目录文件结构ToolStripMenuItemClick);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(190, 6);
     //
     // 合并KT文件ToolStripMenuItem
     //
     this.合并KT文件ToolStripMenuItem.Name   = "合并KT文件ToolStripMenuItem";
     this.合并KT文件ToolStripMenuItem.Size   = new System.Drawing.Size(193, 22);
     this.合并KT文件ToolStripMenuItem.Text   = "合并KT文件";
     this.合并KT文件ToolStripMenuItem.Click += new System.EventHandler(this.合并KT文件ToolStripMenuItemClick);
     //
     // compileStripButton
     //
     this.compileStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.compileStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("compileStripButton.Image")));
     this.compileStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.compileStripButton.Name   = "compileStripButton";
     this.compileStripButton.Size   = new System.Drawing.Size(36, 22);
     this.compileStripButton.Text   = "编译";
     this.compileStripButton.Click += new System.EventHandler(this.CompileStripButtonClick);
     //
     // logButton
     //
     this.logButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.logButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.log文件ToolStripMenuItem,
         this.trackerToolStripMenuItem,
         this.tracker文件ToolStripMenuItem
     });
     this.logButton.Image = ((System.Drawing.Image)(resources.GetObject("logButton.Image")));
     this.logButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.logButton.Name         = "logButton";
     this.logButton.Size         = new System.Drawing.Size(46, 22);
     this.logButton.Text         = "Log";
     this.logButton.ButtonClick += new System.EventHandler(this.LogButtonButtonClick);
     //
     // log文件ToolStripMenuItem
     //
     this.log文件ToolStripMenuItem.Name   = "log文件ToolStripMenuItem";
     this.log文件ToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.log文件ToolStripMenuItem.Text   = "Log文件";
     this.log文件ToolStripMenuItem.Click += new System.EventHandler(this.LogButtonClick);
     //
     // trackerToolStripMenuItem
     //
     this.trackerToolStripMenuItem.Name   = "trackerToolStripMenuItem";
     this.trackerToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.trackerToolStripMenuItem.Text   = "Tracker";
     this.trackerToolStripMenuItem.Click += new System.EventHandler(this.TrackerToolStripMenuItemClick);
     //
     // tracker文件ToolStripMenuItem
     //
     this.tracker文件ToolStripMenuItem.Name   = "tracker文件ToolStripMenuItem";
     this.tracker文件ToolStripMenuItem.Size   = new System.Drawing.Size(148, 22);
     this.tracker文件ToolStripMenuItem.Text   = "Tracker 文件";
     this.tracker文件ToolStripMenuItem.Click += new System.EventHandler(this.Tracker文件ToolStripMenuItemClick);
     //
     // sqlStripButton
     //
     this.sqlStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.sqlStripButton.Image                 = ((System.Drawing.Image)(resources.GetObject("sqlStripButton.Image")));
     this.sqlStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.sqlStripButton.Name   = "sqlStripButton";
     this.sqlStripButton.Size   = new System.Drawing.Size(35, 22);
     this.sqlStripButton.Text   = "SQL";
     this.sqlStripButton.Click += new System.EventHandler(this.SqlStripButtonClick);
     //
     // stringBuilderButton
     //
     this.stringBuilderButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.stringBuilderButton.Image                 = ((System.Drawing.Image)(resources.GetObject("stringBuilderButton.Image")));
     this.stringBuilderButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.stringBuilderButton.Name   = "stringBuilderButton";
     this.stringBuilderButton.Size   = new System.Drawing.Size(87, 22);
     this.stringBuilderButton.Text   = "StringBuilder";
     this.stringBuilderButton.Click += new System.EventHandler(this.StringBuilderButtonClick);
     //
     // toolStrip3
     //
     this.toolStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripComboBox1,
         this.toolStripComboBox2,
         this.replaceButton
     });
     this.toolStrip3.Location = new System.Drawing.Point(0, 75);
     this.toolStrip3.Name     = "toolStrip3";
     this.toolStrip3.Size     = new System.Drawing.Size(719, 25);
     this.toolStrip3.TabIndex = 2;
     this.toolStrip3.Text     = "toolStrip3";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.Items.AddRange(new object[] {
         "(?<=name\\=)\"[^\"]*?\"",
         "Log\\.[a-z]\\([^\\)]*\\)",
         "(?<!//)Log\\.[a-z]\\([^\\)]*\\)",
         "(//\\s)*Tracker\\.[a-z]\\([^\\)]*\\)",
         "(?<=public static final int )[A-Z_0-9]+",
         "^\\s+TODO\\([^\\n]*\\n"
     });
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(300, 25);
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.Items.AddRange(new object[] {
         "// $0"
     });
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     //
     // replaceButton
     //
     this.replaceButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.replaceButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.替换文件中ToolStripMenuItem,
         this.从配置文件替换ToolStripMenuItem,
         this.保留正则表达式ToolStripMenuItem,
         this.模板数组ToolStripMenuItem
     });
     this.replaceButton.Image = ((System.Drawing.Image)(resources.GetObject("replaceButton.Image")));
     this.replaceButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.replaceButton.Name         = "replaceButton";
     this.replaceButton.Size         = new System.Drawing.Size(48, 22);
     this.replaceButton.Text         = "替换";
     this.replaceButton.ButtonClick += new System.EventHandler(this.ReplaceButtonButtonClick);
     //
     // 替换文件中ToolStripMenuItem
     //
     this.替换文件中ToolStripMenuItem.Name   = "替换文件中ToolStripMenuItem";
     this.替换文件中ToolStripMenuItem.Size   = new System.Drawing.Size(168, 22);
     this.替换文件中ToolStripMenuItem.Text   = "替换文件中";
     this.替换文件中ToolStripMenuItem.Click += new System.EventHandler(this.替换文件中ToolStripMenuItemClick);
     //
     // 从配置文件替换ToolStripMenuItem
     //
     this.从配置文件替换ToolStripMenuItem.Name   = "从配置文件替换ToolStripMenuItem";
     this.从配置文件替换ToolStripMenuItem.Size   = new System.Drawing.Size(168, 22);
     this.从配置文件替换ToolStripMenuItem.Text   = "从配置文件替换";
     this.从配置文件替换ToolStripMenuItem.Click += new System.EventHandler(this.从配置文件替换ToolStripMenuItemClick);
     //
     // 保留正则表达式ToolStripMenuItem
     //
     this.保留正则表达式ToolStripMenuItem.Name   = "保留正则表达式ToolStripMenuItem";
     this.保留正则表达式ToolStripMenuItem.Size   = new System.Drawing.Size(168, 22);
     this.保留正则表达式ToolStripMenuItem.Text   = "保留(正则表达式)";
     this.保留正则表达式ToolStripMenuItem.Click += new System.EventHandler(this.保留正则表达式ToolStripMenuItemClick);
     //
     // 模板数组ToolStripMenuItem
     //
     this.模板数组ToolStripMenuItem.Name   = "模板数组ToolStripMenuItem";
     this.模板数组ToolStripMenuItem.Size   = new System.Drawing.Size(168, 22);
     this.模板数组ToolStripMenuItem.Text   = "模板(数组)";
     this.模板数组ToolStripMenuItem.Click += new System.EventHandler(this.模板数组ToolStripMenuItemClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 100);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.textBox1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.textBox2);
     this.splitContainer1.Size             = new System.Drawing.Size(719, 111);
     this.splitContainer1.SplitterDistance = 328;
     this.splitContainer1.TabIndex         = 3;
     //
     // textBox1
     //
     this.textBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location   = new System.Drawing.Point(0, 0);
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size       = new System.Drawing.Size(328, 111);
     this.textBox1.TabIndex   = 0;
     //
     // textBox2
     //
     this.textBox2.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox2.Location   = new System.Drawing.Point(0, 0);
     this.textBox2.Multiline  = true;
     this.textBox2.Name       = "textBox2";
     this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox2.Size       = new System.Drawing.Size(387, 111);
     this.textBox2.TabIndex   = 0;
     //
     // toolStrip4
     //
     this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1
     });
     this.toolStrip4.Location = new System.Drawing.Point(0, 0);
     this.toolStrip4.Name     = "toolStrip4";
     this.toolStrip4.Size     = new System.Drawing.Size(719, 25);
     this.toolStrip4.TabIndex = 4;
     this.toolStrip4.Text     = "toolStrip4";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "toolStripButton1";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(719, 211);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip3);
     this.Controls.Add(this.toolStrip2);
     this.Controls.Add(this.formatCsharpButton);
     this.Controls.Add(this.toolStrip4);
     this.Name = "MainForm";
     this.Text = "AndroidCodeGenerate";
     this.formatCsharpButton.ResumeLayout(false);
     this.formatCsharpButton.PerformLayout();
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.toolStrip3.ResumeLayout(false);
     this.toolStrip3.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.toolStrip4.ResumeLayout(false);
     this.toolStrip4.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #50
0
 /// <summary> 
 /// Обязательный метод для поддержки конструктора - не изменяйте 
 /// содержимое данного метода при помощи редактора кода.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.contextMenuIntervalInCell = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.menuItemSecond = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem10Second = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem30Second = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem1Minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem3Minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem5Minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem10minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem15minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem30minits = new System.Windows.Forms.ToolStripMenuItem();
     this.menuItem1hours = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.отображатьГрафикиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.вертикальноToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.горизонтальноToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ччвчвToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.режимПросмотраЗначенийПараметровToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuIntervalInCell.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuIntervalInCell
     //
     this.contextMenuIntervalInCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.menuItemSecond,
     this.menuItem10Second,
     this.menuItem30Second,
     this.menuItem1Minits,
     this.menuItem3Minits,
     this.menuItem5Minits,
     this.menuItem10minits,
     this.menuItem15minits,
     this.menuItem30minits,
     this.menuItem1hours,
     this.toolStripMenuItem1,
     this.отображатьГрафикиToolStripMenuItem,
     this.ччвчвToolStripMenuItem,
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem,
     this.режимПросмотраЗначенийПараметровToolStripMenuItem});
     this.contextMenuIntervalInCell.Name = "contextMenuIntervalInCell";
     this.contextMenuIntervalInCell.Size = new System.Drawing.Size(246, 340);
     this.contextMenuIntervalInCell.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuIntervalInCell_Opening);
     //
     // menuItemSecond
     //
     this.menuItemSecond.Name = "menuItemSecond";
     this.menuItemSecond.Size = new System.Drawing.Size(244, 22);
     this.menuItemSecond.Text = "1 cекунда в одной клетке";
     this.menuItemSecond.Visible = false;
     this.menuItemSecond.Click += new System.EventHandler(this.dedeToolStripMenuItem_Click);
     //
     // menuItem10Second
     //
     this.menuItem10Second.Name = "menuItem10Second";
     this.menuItem10Second.Size = new System.Drawing.Size(244, 22);
     this.menuItem10Second.Text = "10 секунд в одной клетке";
     this.menuItem10Second.Click += new System.EventHandler(this.edToolStripMenuItem_Click);
     //
     // menuItem30Second
     //
     this.menuItem30Second.Name = "menuItem30Second";
     this.menuItem30Second.Size = new System.Drawing.Size(244, 22);
     this.menuItem30Second.Text = "30 секунд в клетке";
     this.menuItem30Second.Click += new System.EventHandler(this.секундВКленткеToolStripMenuItem_Click);
     //
     // menuItem1Minits
     //
     this.menuItem1Minits.Name = "menuItem1Minits";
     this.menuItem1Minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem1Minits.Text = "1 минута в клетке";
     this.menuItem1Minits.Click += new System.EventHandler(this.минутаВКлеткеToolStripMenuItem_Click);
     //
     // menuItem3Minits
     //
     this.menuItem3Minits.Name = "menuItem3Minits";
     this.menuItem3Minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem3Minits.Text = "3 минуты в клетке";
     this.menuItem3Minits.Click += new System.EventHandler(this.минутыВКлеткеToolStripMenuItem_Click);
     //
     // menuItem5Minits
     //
     this.menuItem5Minits.Name = "menuItem5Minits";
     this.menuItem5Minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem5Minits.Text = "5 минут в клетке";
     this.menuItem5Minits.Click += new System.EventHandler(this.минутВКлеткеToolStripMenuItem_Click_1);
     //
     // menuItem10minits
     //
     this.menuItem10minits.Name = "menuItem10minits";
     this.menuItem10minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem10minits.Text = "10 минут в клетке";
     this.menuItem10minits.Click += new System.EventHandler(this.минутВКлеткеToolStripMenuItem_Click);
     //
     // menuItem15minits
     //
     this.menuItem15minits.Name = "menuItem15minits";
     this.menuItem15minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem15minits.Text = "15 минут в клетке";
     this.menuItem15minits.Click += new System.EventHandler(this.минутВКлеткеToolStripMenuItem1_Click);
     //
     // menuItem30minits
     //
     this.menuItem30minits.Name = "menuItem30minits";
     this.menuItem30minits.Size = new System.Drawing.Size(244, 22);
     this.menuItem30minits.Text = "30 минут в клетке";
     this.menuItem30minits.Click += new System.EventHandler(this.минутВКлеткеToolStripMenuItem2_Click);
     //
     // menuItem1hours
     //
     this.menuItem1hours.Name = "menuItem1hours";
     this.menuItem1hours.Size = new System.Drawing.Size(244, 22);
     this.menuItem1hours.Text = "1 час в клетке";
     this.menuItem1hours.Click += new System.EventHandler(this.часВКлеткеToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(241, 6);
     //
     // отображатьГрафикиToolStripMenuItem
     //
     this.отображатьГрафикиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.вертикальноToolStripMenuItem,
     this.горизонтальноToolStripMenuItem});
     this.отображатьГрафикиToolStripMenuItem.Name = "отображатьГрафикиToolStripMenuItem";
     this.отображатьГрафикиToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
     this.отображатьГрафикиToolStripMenuItem.Text = "Отображать графики";
     this.отображатьГрафикиToolStripMenuItem.DropDownOpened += new System.EventHandler(this.отображатьГрафикиToolStripMenuItem_DropDownOpened);
     //
     // вертикальноToolStripMenuItem
     //
     this.вертикальноToolStripMenuItem.Name = "вертикальноToolStripMenuItem";
     this.вертикальноToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.вертикальноToolStripMenuItem.Text = "Вертикально";
     this.вертикальноToolStripMenuItem.Click += new System.EventHandler(this.вертикальноToolStripMenuItem_Click);
     //
     // горизонтальноToolStripMenuItem
     //
     this.горизонтальноToolStripMenuItem.Name = "горизонтальноToolStripMenuItem";
     this.горизонтальноToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
     this.горизонтальноToolStripMenuItem.Text = "Горизонтально";
     this.горизонтальноToolStripMenuItem.Click += new System.EventHandler(this.горизонтальноToolStripMenuItem_Click);
     //
     // ччвчвToolStripMenuItem
     //
     this.ччвчвToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripComboBox1});
     this.ччвчвToolStripMenuItem.Name = "ччвчвToolStripMenuItem";
     this.ччвчвToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
     this.ччвчвToolStripMenuItem.Text = "Количество делений сетки";
     this.ччвчвToolStripMenuItem.DropDownOpening += new System.EventHandler(this.ччвчвToolStripMenuItem_DropDownOpening);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "1",
     "2",
     "3",
     "4",
     "5",
     "6",
     "7",
     "8",
     "9",
     "10",
     "11",
     "12",
     "13",
     "14",
     "15"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 23);
     this.toolStripComboBox1.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox1_SelectedIndexChanged);
     //
     // отрисовыватьЧислаНаШкалеToolStripMenuItem
     //
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem.Name = "отрисовыватьЧислаНаШкалеToolStripMenuItem";
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem.Text = "Отрисовывать числа на шкале";
     this.отрисовыватьЧислаНаШкалеToolStripMenuItem.Click += new System.EventHandler(this.отрисовыватьЧислаНаШкалеToolStripMenuItem_Click);
     //
     // режимПросмотраЗначенийПараметровToolStripMenuItem
     //
     this.режимПросмотраЗначенийПараметровToolStripMenuItem.Name = "режимПросмотраЗначенийПараметровToolStripMenuItem";
     this.режимПросмотраЗначенийПараметровToolStripMenuItem.Size = new System.Drawing.Size(245, 22);
     this.режимПросмотраЗначенийПараметровToolStripMenuItem.Text = "Режим просмотра параметров";
     this.режимПросмотраЗначенийПараметровToolStripMenuItem.Click += new System.EventHandler(this.режимПросмотраЗначенийПараметровToolStripMenuItem_Click);
     //
     // GraphicsSheet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Window;
     this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ContextMenuStrip = this.contextMenuIntervalInCell;
     this.Name = "GraphicsSheet";
     this.Size = new System.Drawing.Size(341, 644);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.GraphicsSheet_MouseMove);
     this.contextMenuIntervalInCell.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #51
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPanelComprobantes));
     this.toolStrip1        = new System.Windows.Forms.ToolStrip();
     this.toolStrip2        = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1   = new System.Windows.Forms.ToolStripLabel();
     this.cboBuscarPor      = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.btnBuscar         = new System.Windows.Forms.ToolStripButton();
     this.btnNuevo          = new System.Windows.Forms.ToolStripButton();
     this.btnModificar      = new System.Windows.Forms.ToolStripButton();
     this.btnEliminar       = new System.Windows.Forms.ToolStripButton();
     this.btnCerrar         = new System.Windows.Forms.ToolStripButton();
     this.splitContainer1   = new System.Windows.Forms.SplitContainer();
     this.dgvComprobantes   = new System.Windows.Forms.DataGridView();
     this.dataGridView2     = new System.Windows.Forms.DataGridView();
     this.toolStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvComprobantes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(100, 25);
     this.toolStrip1.TabIndex = 0;
     //
     // toolStrip2
     //
     this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripLabel1,
         this.cboBuscarPor,
         this.toolStripTextBox1,
         this.btnBuscar,
         this.btnNuevo,
         this.btnModificar,
         this.btnEliminar,
         this.btnCerrar
     });
     this.toolStrip2.Location = new System.Drawing.Point(0, 0);
     this.toolStrip2.Name     = "toolStrip2";
     this.toolStrip2.Size     = new System.Drawing.Size(968, 25);
     this.toolStrip2.TabIndex = 1;
     this.toolStrip2.Text     = "toolStrip2";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(45, 22);
     this.toolStripLabel1.Text = "Buscar:";
     //
     // cboBuscarPor
     //
     this.cboBuscarPor.Name = "cboBuscarPor";
     this.cboBuscarPor.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(300, 25);
     //
     // btnBuscar
     //
     this.btnBuscar.Image = ((System.Drawing.Image)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnBuscar.Name = "btnBuscar";
     this.btnBuscar.Size = new System.Drawing.Size(62, 22);
     this.btnBuscar.Text = "Buscar";
     //
     // btnNuevo
     //
     this.btnNuevo.Image = ((System.Drawing.Image)(resources.GetObject("btnNuevo.Image")));
     this.btnNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnNuevo.Name   = "btnNuevo";
     this.btnNuevo.Size   = new System.Drawing.Size(62, 22);
     this.btnNuevo.Text   = "Nuevo";
     this.btnNuevo.Click += new System.EventHandler(this.BtnNuevoClick);
     //
     // btnModificar
     //
     this.btnModificar.Image = ((System.Drawing.Image)(resources.GetObject("btnModificar.Image")));
     this.btnModificar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnModificar.Name = "btnModificar";
     this.btnModificar.Size = new System.Drawing.Size(78, 22);
     this.btnModificar.Text = "Modificar";
     //
     // btnEliminar
     //
     this.btnEliminar.Image = ((System.Drawing.Image)(resources.GetObject("btnEliminar.Image")));
     this.btnEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnEliminar.Name = "btnEliminar";
     this.btnEliminar.Size = new System.Drawing.Size(70, 22);
     this.btnEliminar.Text = "Eliminar";
     //
     // btnCerrar
     //
     this.btnCerrar.Image = ((System.Drawing.Image)(resources.GetObject("btnCerrar.Image")));
     this.btnCerrar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCerrar.Name   = "btnCerrar";
     this.btnCerrar.Size   = new System.Drawing.Size(59, 22);
     this.btnCerrar.Text   = "Cerrar";
     this.btnCerrar.Click += new System.EventHandler(this.BtnCerrarClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location    = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name        = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.dgvComprobantes);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dataGridView2);
     this.splitContainer1.Size             = new System.Drawing.Size(968, 297);
     this.splitContainer1.SplitterDistance = 207;
     this.splitContainer1.TabIndex         = 2;
     //
     // dgvComprobantes
     //
     this.dgvComprobantes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvComprobantes.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dgvComprobantes.Location = new System.Drawing.Point(0, 0);
     this.dgvComprobantes.Name     = "dgvComprobantes";
     this.dgvComprobantes.Size     = new System.Drawing.Size(968, 207);
     this.dgvComprobantes.TabIndex = 0;
     //
     // dataGridView2
     //
     this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.dataGridView2.Location = new System.Drawing.Point(0, 0);
     this.dataGridView2.Name     = "dataGridView2";
     this.dataGridView2.Size     = new System.Drawing.Size(968, 86);
     this.dataGridView2.TabIndex = 0;
     //
     // FrmPanelComprobantes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(968, 322);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip2);
     this.Name  = "FrmPanelComprobantes";
     this.Text  = "Listado de Comprobantes";
     this.Load += new System.EventHandler(this.FrmPanelComprobantesLoad);
     this.toolStrip2.ResumeLayout(false);
     this.toolStrip2.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvComprobantes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <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.Windows.Forms.ToolStripSeparator toolStripSeparator1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DXControl));
            this.ZoomSlider = new System.Windows.Forms.TrackBar();
            this.hScrollBar = new System.Windows.Forms.HScrollBar();
            this.vScrollBar = new System.Windows.Forms.VScrollBar();
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.comboBoxMaps = new System.Windows.Forms.ToolStripComboBox();
            this.labelCoords = new System.Windows.Forms.ToolStripLabel();
            this.labelObject = new System.Windows.Forms.ToolStripLabel();
            this.toolStripLabelRegion = new System.Windows.Forms.ToolStripLabel();
            this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mobnameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.filterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomInToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.resetZoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.panel1 = new System.Windows.Forms.Panel();
            this.objectToolTip = new System.Windows.Forms.ToolTip(this.components);
            toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).BeginInit();
            this.toolStrip.SuspendLayout();
            this.contextMenuStrip.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripSeparator1
            // 
            toolStripSeparator1.Name = "toolStripSeparator1";
            resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1");
            // 
            // ZoomSlider
            // 
            this.ZoomSlider.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.ZoomSlider, "ZoomSlider");
            this.ZoomSlider.LargeChange = 250;
            this.ZoomSlider.Maximum = 1000;
            this.ZoomSlider.Minimum = 50;
            this.ZoomSlider.Name = "ZoomSlider";
            this.ZoomSlider.SmallChange = 100;
            this.ZoomSlider.TabStop = false;
            this.ZoomSlider.TickFrequency = 250;
            this.ZoomSlider.TickStyle = System.Windows.Forms.TickStyle.None;
            this.ZoomSlider.Value = 100;
            this.ZoomSlider.Scroll += new System.EventHandler(this.Zoom_Scroll);
            // 
            // hScrollBar
            // 
            resources.ApplyResources(this.hScrollBar, "hScrollBar");
            this.hScrollBar.LargeChange = 0;
            this.hScrollBar.Maximum = 0;
            this.hScrollBar.Name = "hScrollBar";
            this.hScrollBar.SmallChange = 0;
            this.hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
            // 
            // vScrollBar
            // 
            resources.ApplyResources(this.vScrollBar, "vScrollBar");
            this.vScrollBar.LargeChange = 0;
            this.vScrollBar.Maximum = 0;
            this.vScrollBar.Name = "vScrollBar";
            this.vScrollBar.SmallChange = 0;
            this.vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
            // 
            // toolStrip
            // 
            resources.ApplyResources(this.toolStrip, "toolStrip");
            this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.comboBoxMaps,
            this.labelCoords,
            this.labelObject,
            this.toolStripLabelRegion});
            this.toolStrip.Name = "toolStrip";
            this.toolStrip.Stretch = true;
            // 
            // comboBoxMaps
            // 
            this.comboBoxMaps.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.comboBoxMaps.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMaps.DropDownWidth = 200;
            resources.ApplyResources(this.comboBoxMaps, "comboBoxMaps");
            this.comboBoxMaps.Name = "comboBoxMaps";
            this.comboBoxMaps.SelectedIndexChanged += new System.EventHandler(this.comboBoxMaps_SelectionChangeCommitted);
            // 
            // labelCoords
            // 
            resources.ApplyResources(this.labelCoords, "labelCoords");
            this.labelCoords.Name = "labelCoords";
            // 
            // labelObject
            // 
            this.labelObject.Name = "labelObject";
            resources.ApplyResources(this.labelObject, "labelObject");
            // 
            // toolStripLabelRegion
            // 
            this.toolStripLabelRegion.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolStripLabelRegion.Name = "toolStripLabelRegion";
            resources.ApplyResources(this.toolStripLabelRegion, "toolStripLabelRegion");
            this.toolStripLabelRegion.Text = global::DOL.Tools.QuestDesigner.Properties.Resources.lblRegion;
            // 
            // contextMenuStrip
            // 
            this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mobnameToolStripMenuItem,
            this.toolStripSeparator3,
            this.copyLocationToolStripMenuItem,
            this.filterMenuItem,
            this.zoomToolStripMenuItem});
            this.contextMenuStrip.Name = "contextMenuStrip";
            resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
            // 
            // mobnameToolStripMenuItem
            // 
            this.mobnameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.importToolStripMenuItem});
            this.mobnameToolStripMenuItem.Name = "mobnameToolStripMenuItem";
            resources.ApplyResources(this.mobnameToolStripMenuItem, "mobnameToolStripMenuItem");
            // 
            // importToolStripMenuItem
            // 
            this.importToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.add;
            this.importToolStripMenuItem.Name = "importToolStripMenuItem";
            resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
            this.importToolStripMenuItem.Click += new System.EventHandler(this.importObjectToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
            // 
            // copyLocationToolStripMenuItem
            // 
            this.copyLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.copy;
            this.copyLocationToolStripMenuItem.Name = "copyLocationToolStripMenuItem";
            resources.ApplyResources(this.copyLocationToolStripMenuItem, "copyLocationToolStripMenuItem");
            this.copyLocationToolStripMenuItem.Click += new System.EventHandler(this.copyLocationToolStripMenuItem_Click);
            // 
            // filterMenuItem
            // 
            this.filterMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.searchNPC;
            this.filterMenuItem.Name = "filterMenuItem";
            resources.ApplyResources(this.filterMenuItem, "filterMenuItem");
            // 
            // zoomToolStripMenuItem
            // 
            this.zoomToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.zoomInToolStripMenuItem,
            this.zoomOutToolStripMenuItem,
            toolStripSeparator1,
            this.resetZoomToolStripMenuItem});
            this.zoomToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.search;
            this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
            resources.ApplyResources(this.zoomToolStripMenuItem, "zoomToolStripMenuItem");
            // 
            // zoomInToolStripMenuItem
            // 
            this.zoomInToolStripMenuItem.Name = "zoomInToolStripMenuItem";
            resources.ApplyResources(this.zoomInToolStripMenuItem, "zoomInToolStripMenuItem");
            this.zoomInToolStripMenuItem.Click += new System.EventHandler(this.zoomInToolStripMenuItem_Click);
            // 
            // zoomOutToolStripMenuItem
            // 
            this.zoomOutToolStripMenuItem.Name = "zoomOutToolStripMenuItem";
            resources.ApplyResources(this.zoomOutToolStripMenuItem, "zoomOutToolStripMenuItem");
            this.zoomOutToolStripMenuItem.Click += new System.EventHandler(this.zoomOutToolStripMenuItem_Click);
            // 
            // resetZoomToolStripMenuItem
            // 
            this.resetZoomToolStripMenuItem.Name = "resetZoomToolStripMenuItem";
            resources.ApplyResources(this.resetZoomToolStripMenuItem, "resetZoomToolStripMenuItem");
            this.resetZoomToolStripMenuItem.Click += new System.EventHandler(this.resetZoomToolStripMenuItem_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.ZoomSlider);
            this.panel1.Controls.Add(this.toolStrip);
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            // 
            // DXControl
            // 
            this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
            this.Controls.Add(this.vScrollBar);
            this.Controls.Add(this.hScrollBar);
            this.Controls.Add(this.panel1);
            this.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this, "$this");
            this.Name = "DXControl";
            this.Load += new System.EventHandler(this.DXControl_Load);
            this.MouseLeave += new System.EventHandler(this.DXControl_MouseLeave);
            this.Click += new System.EventHandler(this.DXControl_Click);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseMove);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseDown);
            this.Resize += new System.EventHandler(this.DXControl_Resize);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseUp);
            this.MouseEnter += new System.EventHandler(this.DXControl_MouseEnter);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DXControl_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).EndInit();
            this.toolStrip.ResumeLayout(false);
            this.toolStrip.PerformLayout();
            this.contextMenuStrip.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);

        }
Beispiel #53
0
 /// <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(MapViewer));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series series1 = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SeriesPoint seriesPoint1 = new DevExpress.XtraCharts.SeriesPoint(0);
     DevExpress.XtraCharts.LineSeriesView lineSeriesView1 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PolygonGradientFillOptions polygonGradientFillOptions1 = new DevExpress.XtraCharts.PolygonGradientFillOptions();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel1 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.PointOptions pointOptions1 = new DevExpress.XtraCharts.PointOptions();
     DevExpress.XtraCharts.LineSeriesView lineSeriesView2 = new DevExpress.XtraCharts.LineSeriesView();
     DevExpress.XtraCharts.PointSeriesLabel pointSeriesLabel2 = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.lblZaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.lblYaxis = new DevExpress.XtraEditors.LabelControl();
     this.lblXaxis = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.lblCategory = new DevExpress.XtraEditors.LabelControl();
     this.lblDescription = new DevExpress.XtraEditors.LabelControl();
     this.lblName = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthValues = new DevExpress.XtraEditors.LabelControl();
     this.lblLengthBytes = new DevExpress.XtraEditors.LabelControl();
     this.lblSRAMAddress = new DevExpress.XtraEditors.LabelControl();
     this.lblFlashAddress = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel1 = new System.Windows.Forms.Panel();
     this.popupContainerControl1 = new DevExpress.XtraEditors.PopupContainerControl();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copySelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteSelectedCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.inOrgininalPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.atCurrentlySelectedLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editXaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editYaxisSymbolToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smoothSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
     this.surfaceGraphViewer1 = new SurfaceGraphViewer();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.trackBarControl1 = new DevExpress.XtraEditors.TrackBarControl();
     this.chartControl1 = new DevExpress.XtraCharts.ChartControl();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.timer2 = new System.Windows.Forms.Timer(this.components);
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox3 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox2 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.timer3 = new System.Windows.Forms.Timer(this.components);
     this.timer4 = new System.Windows.Forms.Timer(this.components);
     this.popupContainerEdit1 = new DevExpress.XtraEditors.PopupContainerEdit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).BeginInit();
     this.popupContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // simpleButton3
     //
     this.simpleButton3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton3.Enabled = false;
     this.simpleButton3.Location = new System.Drawing.Point(14, 628);
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(92, 23);
     this.simpleButton3.TabIndex = 9;
     this.simpleButton3.Text = "Undo changes";
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Location = new System.Drawing.Point(715, 628);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(75, 23);
     this.simpleButton2.TabIndex = 8;
     this.simpleButton2.Text = "Save";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton1.Location = new System.Drawing.Point(796, 628);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 7;
     this.simpleButton1.Text = "Close";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // groupControl2
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl2, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl2.Controls.Add(this.lblZaxis);
     this.groupControl2.Controls.Add(this.labelControl13);
     this.groupControl2.Controls.Add(this.lblYaxis);
     this.groupControl2.Controls.Add(this.lblXaxis);
     this.groupControl2.Controls.Add(this.labelControl10);
     this.groupControl2.Controls.Add(this.labelControl11);
     this.groupControl2.Controls.Add(this.lblCategory);
     this.groupControl2.Controls.Add(this.lblDescription);
     this.groupControl2.Controls.Add(this.lblName);
     this.groupControl2.Controls.Add(this.lblLengthValues);
     this.groupControl2.Controls.Add(this.lblLengthBytes);
     this.groupControl2.Controls.Add(this.lblSRAMAddress);
     this.groupControl2.Controls.Add(this.lblFlashAddress);
     this.groupControl2.Controls.Add(this.labelControl7);
     this.groupControl2.Controls.Add(this.labelControl6);
     this.groupControl2.Controls.Add(this.labelControl5);
     this.groupControl2.Controls.Add(this.labelControl4);
     this.groupControl2.Controls.Add(this.labelControl3);
     this.groupControl2.Controls.Add(this.labelControl2);
     this.groupControl2.Controls.Add(this.labelControl1);
     this.groupControl2.Location = new System.Drawing.Point(3, 3);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(870, 90);
     this.toolTipController1.SetSuperTip(this.groupControl2, null);
     this.groupControl2.TabIndex = 6;
     this.groupControl2.Text = "Symbol details";
     this.groupControl2.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl2_Paint);
     //
     // lblZaxis
     //
     this.lblZaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblZaxis.Appearance.Options.UseForeColor = true;
     this.lblZaxis.Location = new System.Drawing.Point(488, 30);
     this.lblZaxis.Name = "lblZaxis";
     this.lblZaxis.Size = new System.Drawing.Size(12, 13);
     this.lblZaxis.TabIndex = 19;
     this.lblZaxis.Text = "...";
     //
     // labelControl13
     //
     this.labelControl13.Location = new System.Drawing.Point(430, 30);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(29, 13);
     this.labelControl13.TabIndex = 18;
     this.labelControl13.Text = "Z-axis";
     //
     // lblYaxis
     //
     this.lblYaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblYaxis.Appearance.Options.UseForeColor = true;
     this.lblYaxis.Location = new System.Drawing.Point(350, 62);
     this.lblYaxis.Name = "lblYaxis";
     this.lblYaxis.Size = new System.Drawing.Size(12, 13);
     this.lblYaxis.TabIndex = 17;
     this.lblYaxis.Text = "...";
     //
     // lblXaxis
     //
     this.lblXaxis.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblXaxis.Appearance.Options.UseForeColor = true;
     this.lblXaxis.Location = new System.Drawing.Point(350, 30);
     this.lblXaxis.Name = "lblXaxis";
     this.lblXaxis.Size = new System.Drawing.Size(12, 13);
     this.lblXaxis.TabIndex = 16;
     this.lblXaxis.Text = "...";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(305, 62);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 13);
     this.labelControl10.TabIndex = 15;
     this.labelControl10.Text = "Y-axis";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(305, 30);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 13);
     this.labelControl11.TabIndex = 14;
     this.labelControl11.Text = "X-axis";
     //
     // lblCategory
     //
     this.lblCategory.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblCategory.Appearance.Options.UseForeColor = true;
     this.lblCategory.Location = new System.Drawing.Point(488, 62);
     this.lblCategory.Name = "lblCategory";
     this.lblCategory.Size = new System.Drawing.Size(12, 13);
     this.lblCategory.TabIndex = 13;
     this.lblCategory.Text = "...";
     //
     // lblDescription
     //
     this.lblDescription.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblDescription.Appearance.Options.UseForeColor = true;
     this.lblDescription.Location = new System.Drawing.Point(671, 62);
     this.lblDescription.Name = "lblDescription";
     this.lblDescription.Size = new System.Drawing.Size(12, 13);
     this.lblDescription.TabIndex = 12;
     this.lblDescription.Text = "...";
     //
     // lblName
     //
     this.lblName.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblName.Appearance.Options.UseForeColor = true;
     this.lblName.Location = new System.Drawing.Point(671, 30);
     this.lblName.Name = "lblName";
     this.lblName.Size = new System.Drawing.Size(12, 13);
     this.lblName.TabIndex = 11;
     this.lblName.Text = "...";
     //
     // lblLengthValues
     //
     this.lblLengthValues.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthValues.Appearance.Options.UseForeColor = true;
     this.lblLengthValues.Location = new System.Drawing.Point(251, 62);
     this.lblLengthValues.Name = "lblLengthValues";
     this.lblLengthValues.Size = new System.Drawing.Size(36, 13);
     this.lblLengthValues.TabIndex = 10;
     this.lblLengthValues.Text = "0x0000";
     //
     // lblLengthBytes
     //
     this.lblLengthBytes.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblLengthBytes.Appearance.Options.UseForeColor = true;
     this.lblLengthBytes.Location = new System.Drawing.Point(251, 30);
     this.lblLengthBytes.Name = "lblLengthBytes";
     this.lblLengthBytes.Size = new System.Drawing.Size(36, 13);
     this.lblLengthBytes.TabIndex = 9;
     this.lblLengthBytes.Text = "0x0000";
     //
     // lblSRAMAddress
     //
     this.lblSRAMAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblSRAMAddress.Appearance.Options.UseForeColor = true;
     this.lblSRAMAddress.Location = new System.Drawing.Point(100, 62);
     this.lblSRAMAddress.Name = "lblSRAMAddress";
     this.lblSRAMAddress.Size = new System.Drawing.Size(36, 13);
     this.lblSRAMAddress.TabIndex = 8;
     this.lblSRAMAddress.Text = "0x0000";
     //
     // lblFlashAddress
     //
     this.lblFlashAddress.Appearance.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.lblFlashAddress.Appearance.Options.UseForeColor = true;
     this.lblFlashAddress.Location = new System.Drawing.Point(100, 30);
     this.lblFlashAddress.Name = "lblFlashAddress";
     this.lblFlashAddress.Size = new System.Drawing.Size(48, 13);
     this.lblFlashAddress.TabIndex = 7;
     this.lblFlashAddress.Text = "0x000000";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(430, 62);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(45, 13);
     this.labelControl7.TabIndex = 6;
     this.labelControl7.Text = "Category";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(598, 62);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(53, 13);
     this.labelControl6.TabIndex = 5;
     this.labelControl6.Text = "Description";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(598, 30);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(27, 13);
     this.labelControl5.TabIndex = 4;
     this.labelControl5.Text = "Name";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(164, 62);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(75, 13);
     this.labelControl4.TabIndex = 3;
     this.labelControl4.Text = "Length (values)";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(164, 30);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 2;
     this.labelControl3.Text = "Length (bytes)";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(18, 62);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(69, 13);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "SRAM address";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(18, 30);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(66, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "Flash address";
     //
     // groupControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.groupControl1, DevExpress.Utils.DefaultBoolean.False);
     this.groupControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl1.Controls.Add(this.splitContainer1);
     this.groupControl1.Location = new System.Drawing.Point(3, 28);
     this.groupControl1.LookAndFeel.SkinName = "Black";
     this.groupControl1.LookAndFeel.UseDefaultLookAndFeel = false;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(870, 594);
     this.toolTipController1.SetSuperTip(this.groupControl1, null);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Symbol data";
     this.groupControl1.DoubleClick += new System.EventHandler(this.groupControl1_DoubleClick);
     this.groupControl1.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl1_Paint);
     //
     // splitContainer1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(2, 20);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel1, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel1.Controls.Add(this.panel1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel1, null);
     //
     // splitContainer1.Panel2
     //
     this.toolTipController1.SetAllowHtmlText(this.splitContainer1.Panel2, DevExpress.Utils.DefaultBoolean.False);
     this.splitContainer1.Panel2.Controls.Add(this.xtraTabControl1);
     this.toolTipController1.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new System.Drawing.Size(866, 572);
     this.splitContainer1.SplitterDistance = 284;
     this.toolTipController1.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 1;
     this.splitContainer1.MouseLeave += new System.EventHandler(this.splitContainer1_MouseLeave);
     this.splitContainer1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainer1_SplitterMoved);
     this.splitContainer1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseDown);
     this.splitContainer1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.splitContainer1_MouseUp);
     //
     // panel1
     //
     this.toolTipController1.SetAllowHtmlText(this.panel1, DevExpress.Utils.DefaultBoolean.False);
     this.panel1.Controls.Add(this.popupContainerControl1);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(866, 284);
     this.toolTipController1.SetSuperTip(this.panel1, null);
     this.panel1.TabIndex = 2;
     //
     // popupContainerControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.popupContainerControl1, DevExpress.Utils.DefaultBoolean.False);
     this.popupContainerControl1.Controls.Add(this.groupControl2);
     this.popupContainerControl1.Location = new System.Drawing.Point(3, 72);
     this.popupContainerControl1.Name = "popupContainerControl1";
     this.popupContainerControl1.Size = new System.Drawing.Size(878, 97);
     this.toolTipController1.SetSuperTip(this.popupContainerControl1, null);
     this.popupContainerControl1.TabIndex = 1;
     //
     // gridControl1
     //
     this.gridControl1.ContextMenuStrip = this.contextMenuStrip1;
     this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControl1.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridControl1.Location = new System.Drawing.Point(0, 0);
     this.gridControl1.LookAndFeel.SkinName = "Black";
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(866, 284);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // contextMenuStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.contextMenuStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copySelectedCellsToolStripMenuItem,
     this.pasteSelectedCellsToolStripMenuItem,
     this.editXaxisSymbolToolStripMenuItem,
     this.editYaxisSymbolToolStripMenuItem,
     this.smoothSelectionToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(179, 114);
     this.toolTipController1.SetSuperTip(this.contextMenuStrip1, null);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
     //
     // copySelectedCellsToolStripMenuItem
     //
     this.copySelectedCellsToolStripMenuItem.Name = "copySelectedCellsToolStripMenuItem";
     this.copySelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.copySelectedCellsToolStripMenuItem.Text = "Copy selected cells";
     this.copySelectedCellsToolStripMenuItem.Click += new System.EventHandler(this.copySelectedCellsToolStripMenuItem_Click);
     //
     // pasteSelectedCellsToolStripMenuItem
     //
     this.pasteSelectedCellsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.inOrgininalPositionToolStripMenuItem,
     this.atCurrentlySelectedLocationToolStripMenuItem});
     this.pasteSelectedCellsToolStripMenuItem.Name = "pasteSelectedCellsToolStripMenuItem";
     this.pasteSelectedCellsToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.pasteSelectedCellsToolStripMenuItem.Text = "Paste selected cells";
     //
     // inOrgininalPositionToolStripMenuItem
     //
     this.inOrgininalPositionToolStripMenuItem.Name = "inOrgininalPositionToolStripMenuItem";
     this.inOrgininalPositionToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.inOrgininalPositionToolStripMenuItem.Text = "At original position";
     this.inOrgininalPositionToolStripMenuItem.Click += new System.EventHandler(this.inOrgininalPositionToolStripMenuItem_Click);
     //
     // atCurrentlySelectedLocationToolStripMenuItem
     //
     this.atCurrentlySelectedLocationToolStripMenuItem.Name = "atCurrentlySelectedLocationToolStripMenuItem";
     this.atCurrentlySelectedLocationToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
     this.atCurrentlySelectedLocationToolStripMenuItem.Text = "At currently selected location";
     this.atCurrentlySelectedLocationToolStripMenuItem.Click += new System.EventHandler(this.atCurrentlySelectedLocationToolStripMenuItem_Click);
     //
     // editXaxisSymbolToolStripMenuItem
     //
     this.editXaxisSymbolToolStripMenuItem.Name = "editXaxisSymbolToolStripMenuItem";
     this.editXaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editXaxisSymbolToolStripMenuItem.Text = "Edit x-axis";
     this.editXaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editXaxisSymbolToolStripMenuItem_Click);
     //
     // editYaxisSymbolToolStripMenuItem
     //
     this.editYaxisSymbolToolStripMenuItem.Name = "editYaxisSymbolToolStripMenuItem";
     this.editYaxisSymbolToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.editYaxisSymbolToolStripMenuItem.Text = "Edit y-axis";
     this.editYaxisSymbolToolStripMenuItem.Click += new System.EventHandler(this.editYaxisSymbolToolStripMenuItem_Click);
     //
     // smoothSelectionToolStripMenuItem
     //
     this.smoothSelectionToolStripMenuItem.Name = "smoothSelectionToolStripMenuItem";
     this.smoothSelectionToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
     this.smoothSelectionToolStripMenuItem.Text = "Smooth selection";
     this.smoothSelectionToolStripMenuItem.Click += new System.EventHandler(this.smoothSelectionToolStripMenuItem_Click);
     //
     // gridView1
     //
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsCustomization.AllowColumnMoving = false;
     this.gridView1.OptionsCustomization.AllowFilter = false;
     this.gridView1.OptionsCustomization.AllowGroup = false;
     this.gridView1.OptionsCustomization.AllowSort = false;
     this.gridView1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.gridView1.OptionsSelection.MultiSelect = true;
     this.gridView1.OptionsSelection.MultiSelectMode = DevExpress.XtraGrid.Views.Grid.GridMultiSelectMode.CellSelect;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged_1);
     this.gridView1.ValidatingEditor += new DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventHandler(this.gridView1_ValidatingEditor);
     this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridView1_KeyDown);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomDrawCell += new DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventHandler(this.gridView1_CustomDrawCell);
     this.gridView1.ShownEditor += new System.EventHandler(this.gridView1_ShownEditor);
     this.gridView1.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridView1_RowUpdated);
     this.gridView1.ShowingEditor += new System.ComponentModel.CancelEventHandler(this.gridView1_ShowingEditor);
     this.gridView1.HiddenEditor += new System.EventHandler(this.gridView1_HiddenEditor);
     this.gridView1.CustomDrawColumnHeader += new DevExpress.XtraGrid.Views.Grid.ColumnHeaderCustomDrawEventHandler(this.gridView1_CustomDrawColumnHeader);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(866, 284);
     this.xtraTabControl1.TabIndex = 2;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.simpleButton4);
     this.xtraTabPage1.Controls.Add(this.simpleButton5);
     this.xtraTabPage1.Controls.Add(this.simpleButton6);
     this.xtraTabPage1.Controls.Add(this.simpleButton7);
     this.xtraTabPage1.Controls.Add(this.surfaceGraphViewer1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage1.Text = "3D Graph";
     //
     // simpleButton4
     //
     this.simpleButton4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.Location = new System.Drawing.Point(814, 60);
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(23, 23);
     this.simpleButton4.TabIndex = 12;
     this.simpleButton4.ToolTip = "Turn graph counter clockwise";
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton5
     //
     this.simpleButton5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.Location = new System.Drawing.Point(814, 89);
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(23, 23);
     this.simpleButton5.TabIndex = 11;
     this.simpleButton5.ToolTip = "Turn graph clockwise";
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // simpleButton6
     //
     this.simpleButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton6.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton6.Image")));
     this.simpleButton6.Location = new System.Drawing.Point(814, 32);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(23, 23);
     this.simpleButton6.TabIndex = 10;
     this.simpleButton6.ToolTip = "Zoom out";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // simpleButton7
     //
     this.simpleButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton7.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton7.Image")));
     this.simpleButton7.Location = new System.Drawing.Point(814, 3);
     this.simpleButton7.Name = "simpleButton7";
     this.simpleButton7.Size = new System.Drawing.Size(23, 23);
     this.simpleButton7.TabIndex = 9;
     this.simpleButton7.ToolTip = "Zoom in";
     this.simpleButton7.Click += new System.EventHandler(this.simpleButton7_Click);
     //
     // surfaceGraphViewer1
     //
     this.toolTipController1.SetAllowHtmlText(this.surfaceGraphViewer1, DevExpress.Utils.DefaultBoolean.False);
     this.surfaceGraphViewer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.surfaceGraphViewer1.IsRedWhite = false;
     this.surfaceGraphViewer1.IsSixteenbit = false;
     this.surfaceGraphViewer1.IsUpsideDown = false;
     this.surfaceGraphViewer1.Location = new System.Drawing.Point(0, 0);
     this.surfaceGraphViewer1.Map_compare_content = null;
     this.surfaceGraphViewer1.Map_content = null;
     this.surfaceGraphViewer1.Map_length = 0;
     this.surfaceGraphViewer1.Map_name = "";
     this.surfaceGraphViewer1.Map_original_content = null;
     this.surfaceGraphViewer1.Name = "surfaceGraphViewer1";
     this.surfaceGraphViewer1.NumberOfColumns = 8;
     this.surfaceGraphViewer1.Pan_x = 45;
     this.surfaceGraphViewer1.Pan_y = 77;
     this.surfaceGraphViewer1.Pov_d = 0.6;
     this.surfaceGraphViewer1.Pov_x = 30;
     this.surfaceGraphViewer1.Pov_y = 56;
     this.surfaceGraphViewer1.Pov_z = 21;
     this.surfaceGraphViewer1.Size = new System.Drawing.Size(808, 275);
     this.toolTipController1.SetSuperTip(this.surfaceGraphViewer1, null);
     this.surfaceGraphViewer1.TabIndex = 0;
     this.surfaceGraphViewer1.X_axis = null;
     this.surfaceGraphViewer1.X_axis_descr = "";
     this.surfaceGraphViewer1.Y_axis = null;
     this.surfaceGraphViewer1.Y_axis_descr = "";
     this.surfaceGraphViewer1.Z_axis = null;
     this.surfaceGraphViewer1.Z_axis_descr = "";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.labelControl9);
     this.xtraTabPage2.Controls.Add(this.labelControl8);
     this.xtraTabPage2.Controls.Add(this.trackBarControl1);
     this.xtraTabPage2.Controls.Add(this.chartControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(836, 275);
     this.xtraTabPage2.Text = "2D Graph";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.AutoEllipsis = true;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl9.Location = new System.Drawing.Point(645, 201);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(188, 34);
     this.labelControl9.TabIndex = 4;
     this.labelControl9.Text = "MAP";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl8.AutoEllipsis = true;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl8.Location = new System.Drawing.Point(6, 201);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(104, 34);
     this.labelControl8.TabIndex = 3;
     this.labelControl8.Text = "MAP values";
     //
     // trackBarControl1
     //
     this.trackBarControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBarControl1.EditValue = null;
     this.trackBarControl1.Location = new System.Drawing.Point(125, 201);
     this.trackBarControl1.Name = "trackBarControl1";
     this.trackBarControl1.Size = new System.Drawing.Size(500, 45);
     this.trackBarControl1.TabIndex = 2;
     this.trackBarControl1.ValueChanged += new System.EventHandler(this.trackBarControl1_ValueChanged);
     //
     // chartControl1
     //
     this.toolTipController1.SetAllowHtmlText(this.chartControl1, DevExpress.Utils.DefaultBoolean.False);
     this.chartControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.chartControl1.CacheToMemory = true;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisX.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisX.Range.ScrollingRange.SideMarginsEnabled = true;
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.Range.SideMarginsEnabled = false;
     xyDiagram1.AxisY.Range.ScrollingRange.SideMarginsEnabled = true;
     this.chartControl1.Diagram = xyDiagram1;
     this.chartControl1.Legend.Border.Visible = false;
     this.chartControl1.Location = new System.Drawing.Point(3, 3);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.RefreshDataOnRepaint = false;
     this.chartControl1.RuntimeHitTesting = false;
     this.chartControl1.RuntimeSeriesSelectionMode = DevExpress.XtraCharts.SeriesSelectionMode.Point;
     series1.Name = "Values";
     series1.Points.AddRange(new DevExpress.XtraCharts.SeriesPoint[] {
     seriesPoint1});
     lineSeriesView1.LineMarkerOptions.Size = 8;
     lineSeriesView1.LineMarkerOptions.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Gradient;
     polygonGradientFillOptions1.Color2 = System.Drawing.Color.Gold;
     lineSeriesView1.LineMarkerOptions.FillStyle.Options = polygonGradientFillOptions1;
     lineSeriesView1.Color = System.Drawing.Color.DarkGoldenrod;
     series1.View = lineSeriesView1;
     series1.ArgumentDataMember = "X";
     series1.ArgumentScaleType = DevExpress.XtraCharts.ScaleType.Numerical;
     pointSeriesLabel1.Angle = 90;
     pointSeriesLabel1.TextColor = System.Drawing.Color.MidnightBlue;
     pointSeriesLabel1.Font = new System.Drawing.Font("Tahoma", 6F, System.Drawing.FontStyle.Bold);
     pointSeriesLabel1.Border.Visible = false;
     pointSeriesLabel1.Antialiasing = true;
     pointSeriesLabel1.LineVisible = true;
     series1.Label = pointSeriesLabel1;
     pointOptions1.PointView = DevExpress.XtraCharts.PointView.ArgumentAndValues;
     series1.PointOptions = pointOptions1;
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
     series1};
     this.chartControl1.SeriesTemplate.View = lineSeriesView2;
     pointSeriesLabel2.LineVisible = true;
     this.chartControl1.SeriesTemplate.Label = pointSeriesLabel2;
     this.chartControl1.Size = new System.Drawing.Size(830, 185);
     this.toolTipController1.SetSuperTip(this.chartControl1, null);
     this.chartControl1.TabIndex = 1;
     this.chartControl1.Visible = false;
     this.chartControl1.CustomDrawSeriesPoint += new DevExpress.XtraCharts.CustomDrawSeriesPointEventHandler(this.chartControl1_CustomDrawSeriesPoint);
     this.chartControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseUp);
     this.chartControl1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDoubleClick);
     this.chartControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseMove);
     this.chartControl1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.chartControl1_MouseDown);
     this.chartControl1.ObjectHotTracked += new DevExpress.XtraCharts.HotTrackEventHandler(this.chartControl1_ObjectHotTracked);
     this.chartControl1.CustomDrawSeries += new DevExpress.XtraCharts.CustomDrawSeriesEventHandler(this.chartControl1_CustomDrawSeries);
     this.chartControl1.Click += new System.EventHandler(this.chartControl1_Click);
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // timer2
     //
     this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
     //
     // toolTipController1
     //
     this.toolTipController1.Rounded = true;
     //
     // toolStrip1
     //
     this.toolTipController1.SetAllowHtmlText(this.toolStrip1, DevExpress.Utils.DefaultBoolean.False);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1,
     this.toolStripButton2,
     this.toolStripSeparator3,
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator1,
     this.toolStripLabel3,
     this.toolStripComboBox3,
     this.toolStripSeparator2,
     this.toolStripLabel1,
     this.toolStripComboBox2,
     this.toolStripLabel2,
     this.toolStripComboBox1,
     this.toolStripTextBox1,
     this.toolStripButton3});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(876, 25);
     this.toolTipController1.SetSuperTip(this.toolStrip1, null);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "Toggle graph section";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Toggle hexview";
     this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Maximize graph";
     this.toolStripButton4.Click += new System.EventHandler(this.toolStripButton4_Click);
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Maximize table";
     this.toolStripButton5.Click += new System.EventHandler(this.toolStripButton5_Click);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Maximize window";
     this.toolStripButton6.Click += new System.EventHandler(this.toolStripButton6_Click);
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Toggle graph/map";
     this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(51, 22);
     this.toolStripLabel3.Text = "Viewtype";
     //
     // toolStripComboBox3
     //
     this.toolStripComboBox3.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox3.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox3.Items.AddRange(new object[] {
     "Hex view ",
     "Decimal view ",
     "Easy view"});
     this.toolStripComboBox3.Name = "toolStripComboBox3";
     this.toolStripComboBox3.Size = new System.Drawing.Size(160, 25);
     this.toolStripComboBox3.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox3_SelectedIndexChanged);
     this.toolStripComboBox3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripComboBox3_KeyDown);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(77, 22);
     this.toolStripLabel1.Text = "Axis lock mode";
     //
     // toolStripComboBox2
     //
     this.toolStripComboBox2.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox2.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox2.Items.AddRange(new object[] {
     "Autoscale",
     "Lock to peak in maps",
     "Lock to map limit"});
     this.toolStripComboBox2.Name = "toolStripComboBox2";
     this.toolStripComboBox2.Size = new System.Drawing.Size(121, 25);
     this.toolStripComboBox2.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBox2_SelectedIndexChanged);
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(67, 22);
     this.toolStripLabel2.Text = "Mathematics";
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.toolStripComboBox1.Items.AddRange(new object[] {
     "Addition",
     "Multiply",
     "Divide",
     "Fill"});
     this.toolStripComboBox1.Name = "toolStripComboBox1";
     this.toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(60, 25);
     this.toolStripTextBox1.Text = "2";
     this.toolStripTextBox1.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Execute";
     this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
     //
     // timer3
     //
     this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
     //
     // timer4
     //
     this.timer4.Enabled = true;
     this.timer4.Interval = 500;
     this.timer4.Tick += new System.EventHandler(this.timer4_Tick);
     //
     // popupContainerEdit1
     //
     this.popupContainerEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.popupContainerEdit1.Location = new System.Drawing.Point(125, 631);
     this.popupContainerEdit1.Name = "popupContainerEdit1";
     this.popupContainerEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.popupContainerEdit1.Properties.PopupControl = this.popupContainerControl1;
     this.popupContainerEdit1.Size = new System.Drawing.Size(161, 20);
     toolTipTitleItem1.Text = "Click here for table details";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.AllowHtmlText = DevExpress.Utils.DefaultBoolean.False;
     this.popupContainerEdit1.SuperTip = superToolTip1;
     this.popupContainerEdit1.TabIndex = 11;
     this.popupContainerEdit1.CustomDisplayText += new DevExpress.XtraEditors.Controls.CustomDisplayTextEventHandler(this.popupContainerEdit1_CustomDisplayText);
     //
     // MapViewer
     //
     this.toolTipController1.SetAllowHtmlText(this, DevExpress.Utils.DefaultBoolean.False);
     this.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.simpleButton1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.simpleButton3);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.popupContainerEdit1);
     this.LookAndFeel.SkinName = "Black";
     this.Name = "MapViewer";
     this.Size = new System.Drawing.Size(876, 664);
     this.toolTipController1.SetSuperTip(this, null);
     this.VisibleChanged += new System.EventHandler(this.MapViewer_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerControl1)).EndInit();
     this.popupContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupContainerEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #54
0
 /// <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(DiagramDesignerMainForm));
     Dataweb.NShape.RoleBasedSecurityManager roleBasedSecurityManager3 = new Dataweb.NShape.RoleBasedSecurityManager();
     this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel();
     this.statusStrip = new System.Windows.Forms.StatusStrip();
     this.statusLabelMessage = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusLabelShapeCount = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusLabelMousePosition = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusLabelSelectionSize = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel5 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusLabelTopLeft = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusLabelBottomRight = new System.Windows.Forms.ToolStripStatusLabel();
     this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel();
     this.mainMenuStrip = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newProjectInXMLStoreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newProjectInSqlStoreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openProjectMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openXMLRepositoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openSQLServerRepositoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.recentProjectsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
     this.saveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
     this.ManageShapeAndModelLibrariesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportDiagramAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exportDialogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.emfExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.wmfExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pngExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.jpgExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.bmpExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     this.quitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.insertDiagramMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteDiagramToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showDiagramSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
     this.cutShapeOnlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cutShapeAndModelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyAsImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyShapeOnlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyShapeAndModelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteShapeOnlyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteShapeAndModelMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripSeparator();
     this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.selectAllOfTypeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.selectAllOfTemplateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unselectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.toForegroundMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toBackgroundMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
     this.undoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.redoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showGridMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.showDisplaySettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.editDesignsAndStylesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewShowLayoutControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
     this.highQualityRenderingMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.adoNetDatabaseGeneratorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.testDataGeneratorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
     this.nShapeEventMonitorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.defaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel();
     this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel();
     this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.toolboxPropsPanel = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.toolboxListView = new System.Windows.Forms.ListView();
     this.toolboxContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.viewToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.detailsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.tilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.smallIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.largeIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.propertyWindowTabControl = new System.Windows.Forms.TabControl();
     this.propertyWindowShapeTab = new System.Windows.Forms.TabPage();
     this.primaryPropertyGrid = new System.Windows.Forms.PropertyGrid();
     this.propertyWindowModelTab = new System.Windows.Forms.TabPage();
     this.secondaryPropertyGrid = new System.Windows.Forms.PropertyGrid();
     this.layersTab = new System.Windows.Forms.TabPage();
     this.layerEditorListView = new Dataweb.NShape.WinFormsUI.LayerListView();
     this.splitter2 = new System.Windows.Forms.Splitter();
     this.toolStripContainer = new System.Windows.Forms.ToolStripContainer();
     this.displayTabControl = new System.Windows.Forms.TabControl();
     this.historyTrackBar = new System.Windows.Forms.TrackBar();
     this.modelTreeView = new System.Windows.Forms.TreeView();
     this.editToolStrip = new System.Windows.Forms.ToolStrip();
     this.newProjectToolStripButton = new System.Windows.Forms.ToolStripDropDownButton();
     this.xmlRepositoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sQLRepositoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openProjectToolStripButton = new System.Windows.Forms.ToolStripDropDownButton();
     this.openXMLRepositoryToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.openSQLRepositoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveProjectToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cutShapeButton = new System.Windows.Forms.ToolStripButton();
     this.copyShapeButton = new System.Windows.Forms.ToolStripButton();
     this.pasteButton = new System.Windows.Forms.ToolStripButton();
     this.deleteShapeButton = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.undoToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
     this.redoToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
     this.settingsToolStrip = new System.Windows.Forms.ToolStrip();
     this.prevDiagramButton = new System.Windows.Forms.ToolStripButton();
     this.nextDiagramButton = new System.Windows.Forms.ToolStripButton();
     this.zoomToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
     this.displaySettingsToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.refreshToolbarButton = new System.Windows.Forms.ToolStripButton();
     this.showGridToolbarButton = new System.Windows.Forms.ToolStripButton();
     this.displayToolStrip = new System.Windows.Forms.ToolStrip();
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.designEditorToolStripButton = new System.Windows.Forms.ToolStripButton();
     this.runtimeModeComboBox = new System.Windows.Forms.ToolStripComboBox();
     this.debugToolStrip = new System.Windows.Forms.ToolStrip();
     this.debugDrawOccupationToolbarButton = new System.Windows.Forms.ToolStripButton();
     this.debugDrawInvalidatedAreaToolbarButton = new System.Windows.Forms.ToolStripButton();
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.diagramSetController = new Dataweb.NShape.Controllers.DiagramSetController();
     this.project = new Dataweb.NShape.Project(this.components);
     this.cachedRepository = new Dataweb.NShape.Advanced.CachedRepository();
     this.layerController = new Dataweb.NShape.Controllers.LayerController();
     this.toolSetController = new Dataweb.NShape.Controllers.ToolSetController();
     this.modelTreeController = new Dataweb.NShape.Controllers.ModelController();
     this.propertyController = new Dataweb.NShape.Controllers.PropertyController();
     this.modelTreePresenter = new Dataweb.NShape.WinFormsUI.ModelTreeViewPresenter();
     this.propertyPresenter = new Dataweb.NShape.WinFormsUI.PropertyPresenter();
     this.toolSetListViewPresenter = new Dataweb.NShape.WinFormsUI.ToolSetListViewPresenter(this.components);
     this.layerPresenter = new Dataweb.NShape.Controllers.LayerPresenter();
     this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
     this.resetToolbarsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip.SuspendLayout();
     this.mainMenuStrip.SuspendLayout();
     this.toolboxPropsPanel.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.toolboxContextMenuStrip.SuspendLayout();
     this.propertyWindowTabControl.SuspendLayout();
     this.propertyWindowShapeTab.SuspendLayout();
     this.propertyWindowModelTab.SuspendLayout();
     this.layersTab.SuspendLayout();
     this.toolStripContainer.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer.ContentPanel.SuspendLayout();
     this.toolStripContainer.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.historyTrackBar)).BeginInit();
     this.editToolStrip.SuspendLayout();
     this.settingsToolStrip.SuspendLayout();
     this.displayToolStrip.SuspendLayout();
     this.debugToolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // BottomToolStripPanel
     //
     this.BottomToolStripPanel.Location = new System.Drawing.Point(0, 0);
     this.BottomToolStripPanel.Name = "BottomToolStripPanel";
     this.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.BottomToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.BottomToolStripPanel.Size = new System.Drawing.Size(0, 0);
     //
     // statusStrip
     //
     this.statusStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLabelMessage,
     this.toolStripStatusLabel1,
     this.statusLabelShapeCount,
     this.toolStripStatusLabel2,
     this.statusLabelMousePosition,
     this.statusLabelSelectionSize,
     this.toolStripStatusLabel5,
     this.statusLabelTopLeft,
     this.statusLabelBottomRight});
     this.statusStrip.Location = new System.Drawing.Point(0, 0);
     this.statusStrip.Name = "statusStrip";
     this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip.Size = new System.Drawing.Size(1008, 24);
     this.statusStrip.TabIndex = 1;
     this.statusStrip.Text = "statusStrip";
     //
     // statusLabelMessage
     //
     this.statusLabelMessage.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.statusLabelMessage.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.statusLabelMessage.Name = "statusLabelMessage";
     this.statusLabelMessage.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelMessage.Size = new System.Drawing.Size(355, 19);
     this.statusLabelMessage.Spring = true;
     this.statusLabelMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoToolTip = true;
     this.toolStripStatusLabel1.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(70, 19);
     this.toolStripStatusLabel1.Text = "Diagram: ";
     //
     // statusLabelShapeCount
     //
     this.statusLabelShapeCount.AutoToolTip = true;
     this.statusLabelShapeCount.Name = "statusLabelShapeCount";
     this.statusLabelShapeCount.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelShapeCount.Size = new System.Drawing.Size(60, 19);
     this.statusLabelShapeCount.Text = "n Shapes";
     this.statusLabelShapeCount.ToolTipText = "Number of shaes in the current diagram";
     //
     // toolStripStatusLabel2
     //
     this.toolStripStatusLabel2.AutoToolTip = true;
     this.toolStripStatusLabel2.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
     this.toolStripStatusLabel2.Size = new System.Drawing.Size(66, 19);
     this.toolStripStatusLabel2.Text = "Selection:";
     //
     // statusLabelMousePosition
     //
     this.statusLabelMousePosition.AutoToolTip = true;
     this.statusLabelMousePosition.Image = ((System.Drawing.Image)(resources.GetObject("statusLabelMousePosition.Image")));
     this.statusLabelMousePosition.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.statusLabelMousePosition.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.statusLabelMousePosition.Name = "statusLabelMousePosition";
     this.statusLabelMousePosition.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelMousePosition.Size = new System.Drawing.Size(87, 19);
     this.statusLabelMousePosition.Text = "Mouse Pos";
     this.statusLabelMousePosition.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.statusLabelMousePosition.ToolTipText = "Mouse position in diagram coordinates";
     //
     // statusLabelSelectionSize
     //
     this.statusLabelSelectionSize.AutoToolTip = true;
     this.statusLabelSelectionSize.Image = ((System.Drawing.Image)(resources.GetObject("statusLabelSelectionSize.Image")));
     this.statusLabelSelectionSize.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.statusLabelSelectionSize.Name = "statusLabelSelectionSize";
     this.statusLabelSelectionSize.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelSelectionSize.Size = new System.Drawing.Size(100, 19);
     this.statusLabelSelectionSize.Text = "Selection Size";
     this.statusLabelSelectionSize.ToolTipText = "The size of the current selection in diagram coordinates";
     //
     // toolStripStatusLabel5
     //
     this.toolStripStatusLabel5.AutoToolTip = true;
     this.toolStripStatusLabel5.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
     this.toolStripStatusLabel5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold);
     this.toolStripStatusLabel5.Name = "toolStripStatusLabel5";
     this.toolStripStatusLabel5.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.toolStripStatusLabel5.Size = new System.Drawing.Size(88, 19);
     this.toolStripStatusLabel5.Text = "Display Area:";
     this.toolStripStatusLabel5.ToolTipText = "The currently displayed area in diagram coordinates";
     //
     // statusLabelTopLeft
     //
     this.statusLabelTopLeft.AutoToolTip = true;
     this.statusLabelTopLeft.Image = ((System.Drawing.Image)(resources.GetObject("statusLabelTopLeft.Image")));
     this.statusLabelTopLeft.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.statusLabelTopLeft.Name = "statusLabelTopLeft";
     this.statusLabelTopLeft.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelTopLeft.Size = new System.Drawing.Size(70, 19);
     this.statusLabelTopLeft.Text = "TopLeft";
     this.statusLabelTopLeft.ToolTipText = "The top left corner of currently displayed area in diagram coordinates";
     //
     // statusLabelBottomRight
     //
     this.statusLabelBottomRight.AutoToolTip = true;
     this.statusLabelBottomRight.Image = ((System.Drawing.Image)(resources.GetObject("statusLabelBottomRight.Image")));
     this.statusLabelBottomRight.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.statusLabelBottomRight.Name = "statusLabelBottomRight";
     this.statusLabelBottomRight.Padding = new System.Windows.Forms.Padding(3, 0, 3, 0);
     this.statusLabelBottomRight.Size = new System.Drawing.Size(97, 19);
     this.statusLabelBottomRight.Text = "BottomRight";
     this.statusLabelBottomRight.ToolTipText = "The bottom right corner of currently displayed area in diagram coordinates";
     //
     // TopToolStripPanel
     //
     this.TopToolStripPanel.Location = new System.Drawing.Point(0, 0);
     this.TopToolStripPanel.Name = "TopToolStripPanel";
     this.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.TopToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.TopToolStripPanel.Size = new System.Drawing.Size(0, 0);
     //
     // mainMenuStrip
     //
     this.mainMenuStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.viewToolStripMenuItem,
     this.toolsToolStripMenuItem,
     this.toolStripMenuItem9});
     this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
     this.mainMenuStrip.Name = "mainMenuStrip";
     this.mainMenuStrip.Size = new System.Drawing.Size(1008, 24);
     this.mainMenuStrip.TabIndex = 7;
     this.mainMenuStrip.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newProjectToolStripMenuItem,
     this.openProjectMenuItem,
     this.recentProjectsMenuItem,
     this.toolStripMenuItem7,
     this.saveMenuItem,
     this.saveAsMenuItem,
     this.closeProjectToolStripMenuItem,
     this.toolStripMenuItem5,
     this.ManageShapeAndModelLibrariesMenuItem,
     this.exportDiagramAsMenuItem,
     this.toolStripMenuItem1,
     this.quitMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // newProjectToolStripMenuItem
     //
     this.newProjectToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newProjectInXMLStoreToolStripMenuItem,
     this.newProjectInSqlStoreToolStripMenuItem});
     this.newProjectToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("newProjectToolStripMenuItem.Image")));
     this.newProjectToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.newProjectToolStripMenuItem.Name = "newProjectToolStripMenuItem";
     this.newProjectToolStripMenuItem.Size = new System.Drawing.Size(268, 22);
     this.newProjectToolStripMenuItem.Text = "New Project";
     //
     // newProjectInXMLStoreToolStripMenuItem
     //
     this.newProjectInXMLStoreToolStripMenuItem.Name = "newProjectInXMLStoreToolStripMenuItem";
     this.newProjectInXMLStoreToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.newProjectInXMLStoreToolStripMenuItem.Text = "XML Repository...";
     this.newProjectInXMLStoreToolStripMenuItem.Click += new System.EventHandler(this.newXMLRepositoryToolStripMenuItem_Click);
     //
     // newProjectInSqlStoreToolStripMenuItem
     //
     this.newProjectInSqlStoreToolStripMenuItem.Name = "newProjectInSqlStoreToolStripMenuItem";
     this.newProjectInSqlStoreToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.newProjectInSqlStoreToolStripMenuItem.Text = "SQL Server Repository...";
     this.newProjectInSqlStoreToolStripMenuItem.Click += new System.EventHandler(this.newSQLServerRepositoryToolStripMenuItem_Click);
     //
     // openProjectMenuItem
     //
     this.openProjectMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openXMLRepositoryToolStripMenuItem,
     this.openSQLServerRepositoryToolStripMenuItem});
     this.openProjectMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("openProjectMenuItem.Image")));
     this.openProjectMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.openProjectMenuItem.Name = "openProjectMenuItem";
     this.openProjectMenuItem.Size = new System.Drawing.Size(268, 22);
     this.openProjectMenuItem.Text = "Open Project";
     //
     // openXMLRepositoryToolStripMenuItem
     //
     this.openXMLRepositoryToolStripMenuItem.Name = "openXMLRepositoryToolStripMenuItem";
     this.openXMLRepositoryToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.openXMLRepositoryToolStripMenuItem.Text = "XML Repository...";
     this.openXMLRepositoryToolStripMenuItem.Click += new System.EventHandler(this.openXMLRepositoryToolStripMenuItem_Click);
     //
     // openSQLServerRepositoryToolStripMenuItem
     //
     this.openSQLServerRepositoryToolStripMenuItem.Name = "openSQLServerRepositoryToolStripMenuItem";
     this.openSQLServerRepositoryToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.openSQLServerRepositoryToolStripMenuItem.Text = "SQL Server Repository...";
     this.openSQLServerRepositoryToolStripMenuItem.Click += new System.EventHandler(this.openSQLServerRepositoryToolStripMenuItem_Click);
     //
     // recentProjectsMenuItem
     //
     this.recentProjectsMenuItem.Name = "recentProjectsMenuItem";
     this.recentProjectsMenuItem.Size = new System.Drawing.Size(268, 22);
     this.recentProjectsMenuItem.Text = "Recent Projects";
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(265, 6);
     //
     // saveMenuItem
     //
     this.saveMenuItem.Enabled = false;
     this.saveMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveMenuItem.Image")));
     this.saveMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.saveMenuItem.Name = "saveMenuItem";
     this.saveMenuItem.Size = new System.Drawing.Size(268, 22);
     this.saveMenuItem.Text = "Save";
     this.saveMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsMenuItem
     //
     this.saveAsMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.saveAsMenuItem.Name = "saveAsMenuItem";
     this.saveAsMenuItem.Size = new System.Drawing.Size(268, 22);
     this.saveAsMenuItem.Text = "Save as...";
     this.saveAsMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // closeProjectToolStripMenuItem
     //
     this.closeProjectToolStripMenuItem.Name = "closeProjectToolStripMenuItem";
     this.closeProjectToolStripMenuItem.Size = new System.Drawing.Size(268, 22);
     this.closeProjectToolStripMenuItem.Text = "Close Project";
     this.closeProjectToolStripMenuItem.Click += new System.EventHandler(this.closeProjectToolStripMenuItem_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(265, 6);
     //
     // ManageShapeAndModelLibrariesMenuItem
     //
     this.ManageShapeAndModelLibrariesMenuItem.Name = "ManageShapeAndModelLibrariesMenuItem";
     this.ManageShapeAndModelLibrariesMenuItem.Size = new System.Drawing.Size(268, 22);
     this.ManageShapeAndModelLibrariesMenuItem.Text = "Manage Shape and Model Libraries...";
     this.ManageShapeAndModelLibrariesMenuItem.Click += new System.EventHandler(this.ManageShapeAndModelLibrariesMenuItem_Click);
     //
     // exportDiagramAsMenuItem
     //
     this.exportDiagramAsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exportDialogToolStripMenuItem,
     this.emfExportMenuItem,
     this.wmfExportMenuItem,
     this.pngExportMenuItem,
     this.jpgExportMenuItem,
     this.bmpExportMenuItem});
     this.exportDiagramAsMenuItem.Name = "exportDiagramAsMenuItem";
     this.exportDiagramAsMenuItem.Size = new System.Drawing.Size(268, 22);
     this.exportDiagramAsMenuItem.Text = "Export diagram";
     //
     // exportDialogToolStripMenuItem
     //
     this.exportDialogToolStripMenuItem.Name = "exportDialogToolStripMenuItem";
     this.exportDialogToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
     this.exportDialogToolStripMenuItem.Text = "Custom...";
     this.exportDialogToolStripMenuItem.Click += new System.EventHandler(this.exportDiagramAsMenuItem_Click);
     //
     // emfExportMenuItem
     //
     this.emfExportMenuItem.Name = "emfExportMenuItem";
     this.emfExportMenuItem.Size = new System.Drawing.Size(141, 22);
     this.emfExportMenuItem.Text = "EMF Plus file";
     this.emfExportMenuItem.Click += new System.EventHandler(this.emfPlusFileToolStripMenuItem_Click);
     //
     // wmfExportMenuItem
     //
     this.wmfExportMenuItem.Name = "wmfExportMenuItem";
     this.wmfExportMenuItem.Size = new System.Drawing.Size(141, 22);
     this.wmfExportMenuItem.Text = "EMF file";
     this.wmfExportMenuItem.Click += new System.EventHandler(this.emfOnlyFileToolStripMenuItem_Click);
     //
     // pngExportMenuItem
     //
     this.pngExportMenuItem.Name = "pngExportMenuItem";
     this.pngExportMenuItem.Size = new System.Drawing.Size(141, 22);
     this.pngExportMenuItem.Text = "PNG file";
     this.pngExportMenuItem.Click += new System.EventHandler(this.pngFileToolStripMenuItem_Click);
     //
     // jpgExportMenuItem
     //
     this.jpgExportMenuItem.Name = "jpgExportMenuItem";
     this.jpgExportMenuItem.Size = new System.Drawing.Size(141, 22);
     this.jpgExportMenuItem.Text = "JPG file";
     this.jpgExportMenuItem.Click += new System.EventHandler(this.jpgFileToolStripMenuItem_Click);
     //
     // bmpExportMenuItem
     //
     this.bmpExportMenuItem.Name = "bmpExportMenuItem";
     this.bmpExportMenuItem.Size = new System.Drawing.Size(141, 22);
     this.bmpExportMenuItem.Text = "BMP file";
     this.bmpExportMenuItem.Click += new System.EventHandler(this.bmpFileToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(265, 6);
     //
     // quitMenuItem
     //
     this.quitMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.quitMenuItem.Name = "quitMenuItem";
     this.quitMenuItem.Size = new System.Drawing.Size(268, 22);
     this.quitMenuItem.Text = "Quit";
     this.quitMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.insertDiagramMenuItem,
     this.deleteDiagramToolStripMenuItem,
     this.showDiagramSettingsToolStripMenuItem,
     this.toolStripMenuItem8,
     this.cutShapeOnlyMenuItem,
     this.cutShapeAndModelMenuItem,
     this.copyAsImageToolStripMenuItem,
     this.copyShapeOnlyMenuItem,
     this.copyShapeAndModelMenuItem,
     this.pasteMenuItem,
     this.deleteShapeOnlyMenuItem,
     this.deleteShapeAndModelMenuItem,
     this.toolStripMenuItem10,
     this.selectAllToolStripMenuItem,
     this.selectAllOfTypeToolStripMenuItem,
     this.selectAllOfTemplateToolStripMenuItem,
     this.unselectAllToolStripMenuItem,
     this.toolStripMenuItem2,
     this.toForegroundMenuItem,
     this.toBackgroundMenuItem,
     this.toolStripMenuItem6,
     this.undoMenuItem,
     this.redoMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // insertDiagramMenuItem
     //
     this.insertDiagramMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("insertDiagramMenuItem.Image")));
     this.insertDiagramMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.insertDiagramMenuItem.Name = "insertDiagramMenuItem";
     this.insertDiagramMenuItem.Size = new System.Drawing.Size(261, 22);
     this.insertDiagramMenuItem.Text = "Insert Diagram";
     this.insertDiagramMenuItem.Click += new System.EventHandler(this.newDiagramToolStripMenuItem_Click);
     //
     // deleteDiagramToolStripMenuItem
     //
     this.deleteDiagramToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteDiagramToolStripMenuItem.Image")));
     this.deleteDiagramToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteDiagramToolStripMenuItem.Name = "deleteDiagramToolStripMenuItem";
     this.deleteDiagramToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.deleteDiagramToolStripMenuItem.Text = "Delete Diagram";
     this.deleteDiagramToolStripMenuItem.Click += new System.EventHandler(this.deleteDiagramToolStripMenuItem_Click);
     //
     // showDiagramSettingsToolStripMenuItem
     //
     this.showDiagramSettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("showDiagramSettingsToolStripMenuItem.Image")));
     this.showDiagramSettingsToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.showDiagramSettingsToolStripMenuItem.Name = "showDiagramSettingsToolStripMenuItem";
     this.showDiagramSettingsToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.showDiagramSettingsToolStripMenuItem.Text = "Diagram Properties";
     this.showDiagramSettingsToolStripMenuItem.Click += new System.EventHandler(this.showDiagramSettingsToolStripMenuItem_Click);
     //
     // toolStripMenuItem8
     //
     this.toolStripMenuItem8.Name = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size = new System.Drawing.Size(258, 6);
     //
     // cutShapeOnlyMenuItem
     //
     this.cutShapeOnlyMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutShapeOnlyMenuItem.Image")));
     this.cutShapeOnlyMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.cutShapeOnlyMenuItem.Name = "cutShapeOnlyMenuItem";
     this.cutShapeOnlyMenuItem.Size = new System.Drawing.Size(261, 22);
     this.cutShapeOnlyMenuItem.Text = "Cut Shape";
     this.cutShapeOnlyMenuItem.Click += new System.EventHandler(this.cutShapeOnlyItem_Click);
     //
     // cutShapeAndModelMenuItem
     //
     this.cutShapeAndModelMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("cutShapeAndModelMenuItem.Image")));
     this.cutShapeAndModelMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.cutShapeAndModelMenuItem.Name = "cutShapeAndModelMenuItem";
     this.cutShapeAndModelMenuItem.Size = new System.Drawing.Size(261, 22);
     this.cutShapeAndModelMenuItem.Text = "Cut Shape and Model";
     this.cutShapeAndModelMenuItem.Click += new System.EventHandler(this.cutShapeAndModelItem_Click);
     //
     // copyAsImageToolStripMenuItem
     //
     this.copyAsImageToolStripMenuItem.Image = global::Dataweb.NShape.Designer.Properties.Resources.CopyAsImage;
     this.copyAsImageToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.copyAsImageToolStripMenuItem.Name = "copyAsImageToolStripMenuItem";
     this.copyAsImageToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.copyAsImageToolStripMenuItem.Text = "Copy as Image";
     this.copyAsImageToolStripMenuItem.Click += new System.EventHandler(this.copyAsImageToolStripMenuItem_Click);
     //
     // copyShapeOnlyMenuItem
     //
     this.copyShapeOnlyMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyShapeOnlyMenuItem.Image")));
     this.copyShapeOnlyMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.copyShapeOnlyMenuItem.Name = "copyShapeOnlyMenuItem";
     this.copyShapeOnlyMenuItem.Size = new System.Drawing.Size(261, 22);
     this.copyShapeOnlyMenuItem.Text = "Copy Shape";
     this.copyShapeOnlyMenuItem.Click += new System.EventHandler(this.copyShapeOnlyItem_Click);
     //
     // copyShapeAndModelMenuItem
     //
     this.copyShapeAndModelMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("copyShapeAndModelMenuItem.Image")));
     this.copyShapeAndModelMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.copyShapeAndModelMenuItem.Name = "copyShapeAndModelMenuItem";
     this.copyShapeAndModelMenuItem.Size = new System.Drawing.Size(261, 22);
     this.copyShapeAndModelMenuItem.Text = "Copy Shape and Model";
     this.copyShapeAndModelMenuItem.Visible = false;
     this.copyShapeAndModelMenuItem.Click += new System.EventHandler(this.copyShapeAndModelItem_Click);
     //
     // pasteMenuItem
     //
     this.pasteMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pasteMenuItem.Image")));
     this.pasteMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.pasteMenuItem.Name = "pasteMenuItem";
     this.pasteMenuItem.Size = new System.Drawing.Size(261, 22);
     this.pasteMenuItem.Text = "Paste Shape";
     this.pasteMenuItem.Click += new System.EventHandler(this.pasteMenuItem_Click);
     //
     // deleteShapeOnlyMenuItem
     //
     this.deleteShapeOnlyMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteShapeOnlyMenuItem.Image")));
     this.deleteShapeOnlyMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteShapeOnlyMenuItem.Name = "deleteShapeOnlyMenuItem";
     this.deleteShapeOnlyMenuItem.ShortcutKeyDisplayString = "(Del)";
     this.deleteShapeOnlyMenuItem.Size = new System.Drawing.Size(261, 22);
     this.deleteShapeOnlyMenuItem.Text = "Delete Shape";
     this.deleteShapeOnlyMenuItem.Click += new System.EventHandler(this.deleteShapeOnlyItem_Click);
     //
     // deleteShapeAndModelMenuItem
     //
     this.deleteShapeAndModelMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("deleteShapeAndModelMenuItem.Image")));
     this.deleteShapeAndModelMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteShapeAndModelMenuItem.Name = "deleteShapeAndModelMenuItem";
     this.deleteShapeAndModelMenuItem.ShortcutKeyDisplayString = "(Ctrl+Del)";
     this.deleteShapeAndModelMenuItem.Size = new System.Drawing.Size(261, 22);
     this.deleteShapeAndModelMenuItem.Text = "Delete Shape and Model";
     this.deleteShapeAndModelMenuItem.Visible = false;
     this.deleteShapeAndModelMenuItem.Click += new System.EventHandler(this.deleteShapeAndModelItem_Click);
     //
     // toolStripMenuItem10
     //
     this.toolStripMenuItem10.Name = "toolStripMenuItem10";
     this.toolStripMenuItem10.Size = new System.Drawing.Size(258, 6);
     //
     // selectAllToolStripMenuItem
     //
     this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
     this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.selectAllToolStripMenuItem.Text = "Select All";
     this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
     //
     // selectAllOfTypeToolStripMenuItem
     //
     this.selectAllOfTypeToolStripMenuItem.Name = "selectAllOfTypeToolStripMenuItem";
     this.selectAllOfTypeToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.selectAllOfTypeToolStripMenuItem.Text = "Select all Shapes of Type";
     this.selectAllOfTypeToolStripMenuItem.Click += new System.EventHandler(this.selectAllShapesOfTheSameTypeToolStripMenuItem_Click);
     //
     // selectAllOfTemplateToolStripMenuItem
     //
     this.selectAllOfTemplateToolStripMenuItem.Name = "selectAllOfTemplateToolStripMenuItem";
     this.selectAllOfTemplateToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.selectAllOfTemplateToolStripMenuItem.Text = "Select all Shapes of Template";
     this.selectAllOfTemplateToolStripMenuItem.Click += new System.EventHandler(this.selectAllShapesOfTheSameTemplateToolStripMenuItem_Click);
     //
     // unselectAllToolStripMenuItem
     //
     this.unselectAllToolStripMenuItem.Name = "unselectAllToolStripMenuItem";
     this.unselectAllToolStripMenuItem.Size = new System.Drawing.Size(261, 22);
     this.unselectAllToolStripMenuItem.Text = "Unselect All";
     this.unselectAllToolStripMenuItem.Click += new System.EventHandler(this.unselectAllToolStripMenuItem_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(258, 6);
     //
     // toForegroundMenuItem
     //
     this.toForegroundMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("toForegroundMenuItem.Image")));
     this.toForegroundMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.toForegroundMenuItem.Name = "toForegroundMenuItem";
     this.toForegroundMenuItem.Size = new System.Drawing.Size(261, 22);
     this.toForegroundMenuItem.Text = "Bring to Front";
     this.toForegroundMenuItem.Click += new System.EventHandler(this.toForegroundMenuItem_Click);
     //
     // toBackgroundMenuItem
     //
     this.toBackgroundMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("toBackgroundMenuItem.Image")));
     this.toBackgroundMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.toBackgroundMenuItem.Name = "toBackgroundMenuItem";
     this.toBackgroundMenuItem.Size = new System.Drawing.Size(261, 22);
     this.toBackgroundMenuItem.Text = "Send to Back";
     this.toBackgroundMenuItem.Click += new System.EventHandler(this.toBackgroundMenuItem_Click);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new System.Drawing.Size(258, 6);
     //
     // undoMenuItem
     //
     this.undoMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("undoMenuItem.Image")));
     this.undoMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.undoMenuItem.Name = "undoMenuItem";
     this.undoMenuItem.Size = new System.Drawing.Size(261, 22);
     this.undoMenuItem.Text = "Undo";
     this.undoMenuItem.Click += new System.EventHandler(this.undoButton_Click);
     //
     // redoMenuItem
     //
     this.redoMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("redoMenuItem.Image")));
     this.redoMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.redoMenuItem.Name = "redoMenuItem";
     this.redoMenuItem.Size = new System.Drawing.Size(261, 22);
     this.redoMenuItem.Text = "Redo";
     this.redoMenuItem.Click += new System.EventHandler(this.redoButton_Click);
     //
     // viewToolStripMenuItem
     //
     this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.showGridMenuItem,
     this.refreshToolStripMenuItem,
     this.showDisplaySettingsToolStripMenuItem,
     this.toolStripMenuItem3,
     this.editDesignsAndStylesToolStripMenuItem,
     this.viewShowLayoutControlToolStripMenuItem,
     this.toolStripMenuItem4,
     this.highQualityRenderingMenuItem});
     this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
     this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.viewToolStripMenuItem.Text = "View";
     //
     // showGridMenuItem
     //
     this.showGridMenuItem.Checked = true;
     this.showGridMenuItem.CheckOnClick = true;
     this.showGridMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.showGridMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("showGridMenuItem.Image")));
     this.showGridMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.showGridMenuItem.Name = "showGridMenuItem";
     this.showGridMenuItem.Size = new System.Drawing.Size(198, 22);
     this.showGridMenuItem.Text = "Show Grid";
     this.showGridMenuItem.Click += new System.EventHandler(this.showGridToolStripMenuItem_Click);
     //
     // refreshToolStripMenuItem
     //
     this.refreshToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("refreshToolStripMenuItem.Image")));
     this.refreshToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
     this.refreshToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.refreshToolStripMenuItem.Text = "Refresh Display";
     this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshButton_Click);
     //
     // showDisplaySettingsToolStripMenuItem
     //
     this.showDisplaySettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("showDisplaySettingsToolStripMenuItem.Image")));
     this.showDisplaySettingsToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.showDisplaySettingsToolStripMenuItem.Name = "showDisplaySettingsToolStripMenuItem";
     this.showDisplaySettingsToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.showDisplaySettingsToolStripMenuItem.Text = "Display Settings";
     this.showDisplaySettingsToolStripMenuItem.Click += new System.EventHandler(this.showDisplaySettingsItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(195, 6);
     //
     // editDesignsAndStylesToolStripMenuItem
     //
     this.editDesignsAndStylesToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("editDesignsAndStylesToolStripMenuItem.Image")));
     this.editDesignsAndStylesToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.editDesignsAndStylesToolStripMenuItem.Name = "editDesignsAndStylesToolStripMenuItem";
     this.editDesignsAndStylesToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.editDesignsAndStylesToolStripMenuItem.Text = "Show Design Editor";
     this.editDesignsAndStylesToolStripMenuItem.Click += new System.EventHandler(this.editDesignsAndStylesToolStripMenuItem_Click);
     //
     // viewShowLayoutControlToolStripMenuItem
     //
     this.viewShowLayoutControlToolStripMenuItem.Name = "viewShowLayoutControlToolStripMenuItem";
     this.viewShowLayoutControlToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.viewShowLayoutControlToolStripMenuItem.Text = "Show Layout Control";
     this.viewShowLayoutControlToolStripMenuItem.Click += new System.EventHandler(this.viewShowLayoutControlToolStripMenuItem_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(195, 6);
     //
     // highQualityRenderingMenuItem
     //
     this.highQualityRenderingMenuItem.Checked = true;
     this.highQualityRenderingMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.highQualityRenderingMenuItem.Name = "highQualityRenderingMenuItem";
     this.highQualityRenderingMenuItem.Size = new System.Drawing.Size(198, 22);
     this.highQualityRenderingMenuItem.Text = "High Quality Rendering";
     this.highQualityRenderingMenuItem.Click += new System.EventHandler(this.highQualityToolStripMenuItem_Click);
     //
     // toolsToolStripMenuItem
     //
     this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.resetToolbarsToolStripMenuItem,
     this.toolStripMenuItem11,
     this.adoNetDatabaseGeneratorToolStripMenuItem,
     this.testDataGeneratorToolStripMenuItem,
     this.toolStripMenuItem12,
     this.nShapeEventMonitorToolStripMenuItem});
     this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
     this.toolsToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.toolsToolStripMenuItem.Text = "Tools";
     //
     // adoNetDatabaseGeneratorToolStripMenuItem
     //
     this.adoNetDatabaseGeneratorToolStripMenuItem.Name = "adoNetDatabaseGeneratorToolStripMenuItem";
     this.adoNetDatabaseGeneratorToolStripMenuItem.Size = new System.Drawing.Size(230, 22);
     this.adoNetDatabaseGeneratorToolStripMenuItem.Text = "ADO.NET Database Generator";
     this.adoNetDatabaseGeneratorToolStripMenuItem.Click += new System.EventHandler(this.adoNetDatabaseGeneratorToolStripMenuItem_Click);
     //
     // testDataGeneratorToolStripMenuItem
     //
     this.testDataGeneratorToolStripMenuItem.Name = "testDataGeneratorToolStripMenuItem";
     this.testDataGeneratorToolStripMenuItem.Size = new System.Drawing.Size(230, 22);
     this.testDataGeneratorToolStripMenuItem.Text = "Test Data Generator";
     this.testDataGeneratorToolStripMenuItem.Click += new System.EventHandler(this.testDataGeneratorToolStripMenuItem_Click);
     //
     // toolStripMenuItem11
     //
     this.toolStripMenuItem11.Name = "toolStripMenuItem11";
     this.toolStripMenuItem11.Size = new System.Drawing.Size(227, 6);
     //
     // nShapeEventMonitorToolStripMenuItem
     //
     this.nShapeEventMonitorToolStripMenuItem.CheckOnClick = true;
     this.nShapeEventMonitorToolStripMenuItem.Name = "nShapeEventMonitorToolStripMenuItem";
     this.nShapeEventMonitorToolStripMenuItem.Size = new System.Drawing.Size(230, 22);
     this.nShapeEventMonitorToolStripMenuItem.Text = "NShape Event Monitor";
     this.nShapeEventMonitorToolStripMenuItem.Click += new System.EventHandler(this.nShapeEventMonitorToolStripMenuItem_Click);
     //
     // toolStripMenuItem9
     //
     this.toolStripMenuItem9.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem});
     this.toolStripMenuItem9.Name = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size = new System.Drawing.Size(44, 20);
     this.toolStripMenuItem9.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);
     //
     // defaultToolStripMenuItem
     //
     this.defaultToolStripMenuItem.Name = "defaultToolStripMenuItem";
     this.defaultToolStripMenuItem.Size = new System.Drawing.Size(32, 19);
     //
     // RightToolStripPanel
     //
     this.RightToolStripPanel.Location = new System.Drawing.Point(0, 0);
     this.RightToolStripPanel.Name = "RightToolStripPanel";
     this.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.RightToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.RightToolStripPanel.Size = new System.Drawing.Size(0, 0);
     //
     // LeftToolStripPanel
     //
     this.LeftToolStripPanel.Location = new System.Drawing.Point(0, 0);
     this.LeftToolStripPanel.Name = "LeftToolStripPanel";
     this.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal;
     this.LeftToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.LeftToolStripPanel.Size = new System.Drawing.Size(0, 0);
     //
     // ContentPanel
     //
     this.ContentPanel.AutoScroll = true;
     this.ContentPanel.Size = new System.Drawing.Size(928, 522);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(150, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(3, 489);
     this.splitter1.TabIndex = 3;
     this.splitter1.TabStop = false;
     //
     // toolboxPropsPanel
     //
     this.toolboxPropsPanel.Controls.Add(this.splitContainer1);
     this.toolboxPropsPanel.Dock = System.Windows.Forms.DockStyle.Right;
     this.toolboxPropsPanel.Location = new System.Drawing.Point(780, 0);
     this.toolboxPropsPanel.Name = "toolboxPropsPanel";
     this.toolboxPropsPanel.Size = new System.Drawing.Size(228, 489);
     this.toolboxPropsPanel.TabIndex = 4;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.toolboxListView);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.propertyWindowTabControl);
     this.splitContainer1.Size = new System.Drawing.Size(228, 489);
     this.splitContainer1.SplitterDistance = 186;
     this.splitContainer1.TabIndex = 0;
     //
     // toolboxListView
     //
     this.toolboxListView.ContextMenuStrip = this.toolboxContextMenuStrip;
     this.toolboxListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolboxListView.FullRowSelect = true;
     this.toolboxListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.toolboxListView.HideSelection = false;
     this.toolboxListView.Location = new System.Drawing.Point(0, 0);
     this.toolboxListView.MultiSelect = false;
     this.toolboxListView.Name = "toolboxListView";
     this.toolboxListView.ShowItemToolTips = true;
     this.toolboxListView.Size = new System.Drawing.Size(228, 186);
     this.toolboxListView.TabIndex = 0;
     this.toolboxListView.UseCompatibleStateImageBehavior = false;
     this.toolboxListView.View = System.Windows.Forms.View.Details;
     //
     // toolboxContextMenuStrip
     //
     this.toolboxContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.viewToolStripMenuItem1});
     this.toolboxContextMenuStrip.Name = "toolboxContextMenuStrip";
     this.toolboxContextMenuStrip.Size = new System.Drawing.Size(153, 48);
     //
     // viewToolStripMenuItem1
     //
     this.viewToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.detailsToolStripMenuItem,
     this.tilesToolStripMenuItem,
     this.smallIconsToolStripMenuItem,
     this.largeIconsToolStripMenuItem});
     this.viewToolStripMenuItem1.Name = "viewToolStripMenuItem1";
     this.viewToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
     this.viewToolStripMenuItem1.Text = "View";
     //
     // detailsToolStripMenuItem
     //
     this.detailsToolStripMenuItem.Name = "detailsToolStripMenuItem";
     this.detailsToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.detailsToolStripMenuItem.Text = "List (Small Icons)";
     this.detailsToolStripMenuItem.Click += new System.EventHandler(this.detailsToolStripMenuItem_Click);
     //
     // tilesToolStripMenuItem
     //
     this.tilesToolStripMenuItem.Name = "tilesToolStripMenuItem";
     this.tilesToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.tilesToolStripMenuItem.Text = "List (Large Icons)";
     this.tilesToolStripMenuItem.Click += new System.EventHandler(this.tilesToolStripMenuItem_Click);
     //
     // smallIconsToolStripMenuItem
     //
     this.smallIconsToolStripMenuItem.Name = "smallIconsToolStripMenuItem";
     this.smallIconsToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.smallIconsToolStripMenuItem.Text = "Compact (Small Icons)";
     this.smallIconsToolStripMenuItem.Click += new System.EventHandler(this.smallIconsToolStripMenuItem_Click);
     //
     // largeIconsToolStripMenuItem
     //
     this.largeIconsToolStripMenuItem.Name = "largeIconsToolStripMenuItem";
     this.largeIconsToolStripMenuItem.Size = new System.Drawing.Size(194, 22);
     this.largeIconsToolStripMenuItem.Text = "Compact (Large Icons)";
     this.largeIconsToolStripMenuItem.Click += new System.EventHandler(this.largeIconsToolStripMenuItem_Click);
     //
     // propertyWindowTabControl
     //
     this.propertyWindowTabControl.Controls.Add(this.propertyWindowShapeTab);
     this.propertyWindowTabControl.Controls.Add(this.propertyWindowModelTab);
     this.propertyWindowTabControl.Controls.Add(this.layersTab);
     this.propertyWindowTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.propertyWindowTabControl.Location = new System.Drawing.Point(0, 0);
     this.propertyWindowTabControl.Name = "propertyWindowTabControl";
     this.propertyWindowTabControl.SelectedIndex = 0;
     this.propertyWindowTabControl.Size = new System.Drawing.Size(228, 299);
     this.propertyWindowTabControl.TabIndex = 0;
     //
     // propertyWindowShapeTab
     //
     this.propertyWindowShapeTab.Controls.Add(this.primaryPropertyGrid);
     this.propertyWindowShapeTab.Location = new System.Drawing.Point(4, 22);
     this.propertyWindowShapeTab.Name = "propertyWindowShapeTab";
     this.propertyWindowShapeTab.Padding = new System.Windows.Forms.Padding(3);
     this.propertyWindowShapeTab.Size = new System.Drawing.Size(220, 273);
     this.propertyWindowShapeTab.TabIndex = 0;
     this.propertyWindowShapeTab.Text = "Shape";
     this.propertyWindowShapeTab.UseVisualStyleBackColor = true;
     //
     // primaryPropertyGrid
     //
     this.primaryPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.primaryPropertyGrid.Location = new System.Drawing.Point(3, 3);
     this.primaryPropertyGrid.Name = "primaryPropertyGrid";
     this.primaryPropertyGrid.Size = new System.Drawing.Size(214, 267);
     this.primaryPropertyGrid.TabIndex = 1;
     //
     // propertyWindowModelTab
     //
     this.propertyWindowModelTab.Controls.Add(this.secondaryPropertyGrid);
     this.propertyWindowModelTab.Location = new System.Drawing.Point(4, 22);
     this.propertyWindowModelTab.Name = "propertyWindowModelTab";
     this.propertyWindowModelTab.Padding = new System.Windows.Forms.Padding(3);
     this.propertyWindowModelTab.Size = new System.Drawing.Size(220, 332);
     this.propertyWindowModelTab.TabIndex = 1;
     this.propertyWindowModelTab.Text = "Model";
     this.propertyWindowModelTab.UseVisualStyleBackColor = true;
     //
     // secondaryPropertyGrid
     //
     this.secondaryPropertyGrid.Dock = System.Windows.Forms.DockStyle.Fill;
     this.secondaryPropertyGrid.Location = new System.Drawing.Point(3, 3);
     this.secondaryPropertyGrid.Name = "secondaryPropertyGrid";
     this.secondaryPropertyGrid.Size = new System.Drawing.Size(214, 372);
     this.secondaryPropertyGrid.TabIndex = 0;
     //
     // layersTab
     //
     this.layersTab.Controls.Add(this.layerEditorListView);
     this.layersTab.Location = new System.Drawing.Point(4, 22);
     this.layersTab.Name = "layersTab";
     this.layersTab.Padding = new System.Windows.Forms.Padding(3);
     this.layersTab.Size = new System.Drawing.Size(220, 332);
     this.layersTab.TabIndex = 2;
     this.layersTab.Text = "Layers";
     this.layersTab.UseVisualStyleBackColor = true;
     //
     // layerEditorListView
     //
     this.layerEditorListView.AllowColumnReorder = true;
     this.layerEditorListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layerEditorListView.FullRowSelect = true;
     this.layerEditorListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.layerEditorListView.HideDeniedMenuItems = false;
     this.layerEditorListView.HideSelection = false;
     this.layerEditorListView.LabelEdit = true;
     this.layerEditorListView.LabelWrap = false;
     this.layerEditorListView.Location = new System.Drawing.Point(3, 3);
     this.layerEditorListView.Name = "layerEditorListView";
     this.layerEditorListView.OwnerDraw = true;
     this.layerEditorListView.ShowDefaultContextMenu = true;
     this.layerEditorListView.ShowGroups = false;
     this.layerEditorListView.Size = new System.Drawing.Size(214, 326);
     this.layerEditorListView.TabIndex = 0;
     this.layerEditorListView.UseCompatibleStateImageBehavior = false;
     this.layerEditorListView.View = System.Windows.Forms.View.Details;
     //
     // splitter2
     //
     this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     this.splitter2.Location = new System.Drawing.Point(777, 0);
     this.splitter2.Name = "splitter2";
     this.splitter2.Size = new System.Drawing.Size(3, 489);
     this.splitter2.TabIndex = 5;
     this.splitter2.TabStop = false;
     //
     // toolStripContainer
     //
     //
     // toolStripContainer.BottomToolStripPanel
     //
     this.toolStripContainer.BottomToolStripPanel.Controls.Add(this.statusStrip);
     //
     // toolStripContainer.ContentPanel
     //
     this.toolStripContainer.ContentPanel.AutoScroll = true;
     this.toolStripContainer.ContentPanel.Controls.Add(this.displayTabControl);
     this.toolStripContainer.ContentPanel.Controls.Add(this.historyTrackBar);
     this.toolStripContainer.ContentPanel.Controls.Add(this.splitter2);
     this.toolStripContainer.ContentPanel.Controls.Add(this.toolboxPropsPanel);
     this.toolStripContainer.ContentPanel.Controls.Add(this.splitter1);
     this.toolStripContainer.ContentPanel.Controls.Add(this.modelTreeView);
     this.toolStripContainer.ContentPanel.Size = new System.Drawing.Size(1008, 489);
     this.toolStripContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     this.toolStripContainer.Location = new System.Drawing.Point(0, 0);
     this.toolStripContainer.Name = "toolStripContainer";
     this.toolStripContainer.Size = new System.Drawing.Size(1008, 562);
     this.toolStripContainer.TabIndex = 8;
     this.toolStripContainer.Text = "toolStripContainer1";
     //
     // toolStripContainer.TopToolStripPanel
     //
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.mainMenuStrip);
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.editToolStrip);
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.settingsToolStrip);
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.displayToolStrip);
     this.toolStripContainer.TopToolStripPanel.Controls.Add(this.debugToolStrip);
     //
     // displayTabControl
     //
     this.displayTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.displayTabControl.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.displayTabControl.Location = new System.Drawing.Point(153, 18);
     this.displayTabControl.Name = "displayTabControl";
     this.displayTabControl.SelectedIndex = 0;
     this.displayTabControl.Size = new System.Drawing.Size(624, 471);
     this.displayTabControl.TabIndex = 9;
     this.displayTabControl.SelectedIndexChanged += new System.EventHandler(this.displaysTabControl_SelectedIndexChanged);
     //
     // historyTrackBar
     //
     this.historyTrackBar.AutoSize = false;
     this.historyTrackBar.Dock = System.Windows.Forms.DockStyle.Top;
     this.historyTrackBar.LargeChange = 1;
     this.historyTrackBar.Location = new System.Drawing.Point(153, 0);
     this.historyTrackBar.Name = "historyTrackBar";
     this.historyTrackBar.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.historyTrackBar.Size = new System.Drawing.Size(624, 18);
     this.historyTrackBar.TabIndex = 7;
     this.historyTrackBar.ValueChanged += new System.EventHandler(this.historyTrackBar_ValueChanged);
     //
     // modelTreeView
     //
     this.modelTreeView.Dock = System.Windows.Forms.DockStyle.Left;
     this.modelTreeView.FullRowSelect = true;
     this.modelTreeView.ImageIndex = 0;
     this.modelTreeView.Location = new System.Drawing.Point(0, 0);
     this.modelTreeView.Name = "modelTreeView";
     this.modelTreeView.SelectedImageIndex = 0;
     this.modelTreeView.Size = new System.Drawing.Size(150, 489);
     this.modelTreeView.TabIndex = 2;
     //
     // editToolStrip
     //
     this.editToolStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.editToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newProjectToolStripButton,
     this.openProjectToolStripButton,
     this.saveProjectToolStripButton,
     this.toolStripSeparator1,
     this.cutShapeButton,
     this.copyShapeButton,
     this.pasteButton,
     this.deleteShapeButton,
     this.toolStripSeparator2,
     this.undoToolStripSplitButton,
     this.redoToolStripSplitButton});
     this.editToolStrip.Location = new System.Drawing.Point(3, 24);
     this.editToolStrip.Name = "editToolStrip";
     this.editToolStrip.Size = new System.Drawing.Size(261, 25);
     this.editToolStrip.TabIndex = 11;
     //
     // newProjectToolStripButton
     //
     this.newProjectToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.newProjectToolStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.xmlRepositoryToolStripMenuItem,
     this.sQLRepositoryToolStripMenuItem});
     this.newProjectToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newProjectToolStripButton.Image")));
     this.newProjectToolStripButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.newProjectToolStripButton.Name = "newProjectToolStripButton";
     this.newProjectToolStripButton.Size = new System.Drawing.Size(29, 22);
     this.newProjectToolStripButton.Text = "New Project...";
     //
     // xmlRepositoryToolStripMenuItem
     //
     this.xmlRepositoryToolStripMenuItem.Name = "xmlRepositoryToolStripMenuItem";
     this.xmlRepositoryToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.xmlRepositoryToolStripMenuItem.Text = "XML Repository...";
     this.xmlRepositoryToolStripMenuItem.Click += new System.EventHandler(this.newXMLRepositoryToolStripMenuItem_Click);
     //
     // sQLRepositoryToolStripMenuItem
     //
     this.sQLRepositoryToolStripMenuItem.Name = "sQLRepositoryToolStripMenuItem";
     this.sQLRepositoryToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
     this.sQLRepositoryToolStripMenuItem.Text = "SQL Server Repository...";
     this.sQLRepositoryToolStripMenuItem.Click += new System.EventHandler(this.newSQLServerRepositoryToolStripMenuItem_Click);
     //
     // openProjectToolStripButton
     //
     this.openProjectToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.openProjectToolStripButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openXMLRepositoryToolStripMenuItem1,
     this.openSQLRepositoryToolStripMenuItem});
     this.openProjectToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openProjectToolStripButton.Image")));
     this.openProjectToolStripButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.openProjectToolStripButton.Name = "openProjectToolStripButton";
     this.openProjectToolStripButton.Size = new System.Drawing.Size(29, 22);
     this.openProjectToolStripButton.Text = "Open Project...";
     //
     // openXMLRepositoryToolStripMenuItem1
     //
     this.openXMLRepositoryToolStripMenuItem1.Name = "openXMLRepositoryToolStripMenuItem1";
     this.openXMLRepositoryToolStripMenuItem1.Size = new System.Drawing.Size(166, 22);
     this.openXMLRepositoryToolStripMenuItem1.Text = "XML Repository...";
     this.openXMLRepositoryToolStripMenuItem1.Click += new System.EventHandler(this.openXMLRepositoryToolStripMenuItem_Click);
     //
     // openSQLRepositoryToolStripMenuItem
     //
     this.openSQLRepositoryToolStripMenuItem.Name = "openSQLRepositoryToolStripMenuItem";
     this.openSQLRepositoryToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
     this.openSQLRepositoryToolStripMenuItem.Text = "SQL Repository...";
     this.openSQLRepositoryToolStripMenuItem.Click += new System.EventHandler(this.openSQLServerRepositoryToolStripMenuItem_Click);
     //
     // saveProjectToolStripButton
     //
     this.saveProjectToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.saveProjectToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveProjectToolStripButton.Image")));
     this.saveProjectToolStripButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.saveProjectToolStripButton.Name = "saveProjectToolStripButton";
     this.saveProjectToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.saveProjectToolStripButton.Text = "Save";
     this.saveProjectToolStripButton.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // cutShapeButton
     //
     this.cutShapeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.cutShapeButton.Image = ((System.Drawing.Image)(resources.GetObject("cutShapeButton.Image")));
     this.cutShapeButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.cutShapeButton.Name = "cutShapeButton";
     this.cutShapeButton.Size = new System.Drawing.Size(23, 22);
     this.cutShapeButton.Text = "Cut Shape";
     this.cutShapeButton.Click += new System.EventHandler(this.cutShapeOnlyItem_Click);
     //
     // copyShapeButton
     //
     this.copyShapeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.copyShapeButton.Image = ((System.Drawing.Image)(resources.GetObject("copyShapeButton.Image")));
     this.copyShapeButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.copyShapeButton.Name = "copyShapeButton";
     this.copyShapeButton.Size = new System.Drawing.Size(23, 22);
     this.copyShapeButton.Text = "Copy Shape";
     this.copyShapeButton.Click += new System.EventHandler(this.copyShapeOnlyItem_Click);
     //
     // pasteButton
     //
     this.pasteButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.pasteButton.Enabled = false;
     this.pasteButton.Image = ((System.Drawing.Image)(resources.GetObject("pasteButton.Image")));
     this.pasteButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.pasteButton.Name = "pasteButton";
     this.pasteButton.Size = new System.Drawing.Size(23, 22);
     this.pasteButton.Text = "Paste";
     this.pasteButton.Click += new System.EventHandler(this.pasteMenuItem_Click);
     //
     // deleteShapeButton
     //
     this.deleteShapeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.deleteShapeButton.Image = ((System.Drawing.Image)(resources.GetObject("deleteShapeButton.Image")));
     this.deleteShapeButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.deleteShapeButton.Name = "deleteShapeButton";
     this.deleteShapeButton.Size = new System.Drawing.Size(23, 22);
     this.deleteShapeButton.Text = "Delete Shape";
     this.deleteShapeButton.Click += new System.EventHandler(this.deleteShapeOnlyItem_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // undoToolStripSplitButton
     //
     this.undoToolStripSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.undoToolStripSplitButton.Enabled = false;
     this.undoToolStripSplitButton.Image = ((System.Drawing.Image)(resources.GetObject("undoToolStripSplitButton.Image")));
     this.undoToolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.undoToolStripSplitButton.Name = "undoToolStripSplitButton";
     this.undoToolStripSplitButton.Size = new System.Drawing.Size(32, 22);
     this.undoToolStripSplitButton.Text = "Undo";
     this.undoToolStripSplitButton.ButtonClick += new System.EventHandler(this.undoButton_Click);
     this.undoToolStripSplitButton.DropDownOpening += new System.EventHandler(this.undoToolStripSplitButton_DropDownOpening);
     //
     // redoToolStripSplitButton
     //
     this.redoToolStripSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.redoToolStripSplitButton.Enabled = false;
     this.redoToolStripSplitButton.Image = ((System.Drawing.Image)(resources.GetObject("redoToolStripSplitButton.Image")));
     this.redoToolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.redoToolStripSplitButton.Name = "redoToolStripSplitButton";
     this.redoToolStripSplitButton.Size = new System.Drawing.Size(32, 22);
     this.redoToolStripSplitButton.Text = "Redo";
     this.redoToolStripSplitButton.ButtonClick += new System.EventHandler(this.redoButton_Click);
     this.redoToolStripSplitButton.DropDownOpening += new System.EventHandler(this.redoToolStripSplitButton_DropDownOpening);
     //
     // settingsToolStrip
     //
     this.settingsToolStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.settingsToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.prevDiagramButton,
     this.nextDiagramButton,
     this.zoomToolStripComboBox,
     this.displaySettingsToolStripButton,
     this.refreshToolbarButton,
     this.showGridToolbarButton});
     this.settingsToolStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.settingsToolStrip.Location = new System.Drawing.Point(264, 24);
     this.settingsToolStrip.Name = "settingsToolStrip";
     this.settingsToolStrip.Size = new System.Drawing.Size(195, 25);
     this.settingsToolStrip.TabIndex = 13;
     //
     // prevDiagramButton
     //
     this.prevDiagramButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.prevDiagramButton.Image = ((System.Drawing.Image)(resources.GetObject("prevDiagramButton.Image")));
     this.prevDiagramButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.prevDiagramButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.prevDiagramButton.Name = "prevDiagramButton";
     this.prevDiagramButton.Size = new System.Drawing.Size(23, 22);
     this.prevDiagramButton.Text = "Previous Diagram";
     this.prevDiagramButton.Click += new System.EventHandler(this.backButton_Click);
     //
     // nextDiagramButton
     //
     this.nextDiagramButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.nextDiagramButton.Image = ((System.Drawing.Image)(resources.GetObject("nextDiagramButton.Image")));
     this.nextDiagramButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.nextDiagramButton.Name = "nextDiagramButton";
     this.nextDiagramButton.Size = new System.Drawing.Size(23, 22);
     this.nextDiagramButton.Text = "Next Diagram";
     this.nextDiagramButton.Click += new System.EventHandler(this.forwardButton_Click);
     //
     // zoomToolStripComboBox
     //
     this.zoomToolStripComboBox.AutoSize = false;
     this.zoomToolStripComboBox.DropDownWidth = 66;
     this.zoomToolStripComboBox.Items.AddRange(new object[] {
     "1000 %",
     "800 %",
     "600 %",
     "400 %",
     "300 %",
     "200 %",
     "175 %",
     "150 %",
     "125 %",
     "100 %",
     "90 %",
     "80 %",
     "70 %",
     "60 %",
     "50 %",
     "40 %",
     "30 %",
     "20 %",
     "10 %"});
     this.zoomToolStripComboBox.Name = "zoomToolStripComboBox";
     this.zoomToolStripComboBox.Size = new System.Drawing.Size(66, 23);
     this.zoomToolStripComboBox.Text = "100 %";
     this.zoomToolStripComboBox.SelectedIndexChanged += new System.EventHandler(this.zoomToolStripComboBox_SelectedIndexChanged);
     this.zoomToolStripComboBox.TextChanged += new System.EventHandler(this.toolStripComboBox1_TextChanged);
     //
     // displaySettingsToolStripButton
     //
     this.displaySettingsToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.displaySettingsToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("displaySettingsToolStripButton.Image")));
     this.displaySettingsToolStripButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.displaySettingsToolStripButton.Name = "displaySettingsToolStripButton";
     this.displaySettingsToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.displaySettingsToolStripButton.Text = "Display Settings...";
     this.displaySettingsToolStripButton.Click += new System.EventHandler(this.showDisplaySettingsItem_Click);
     //
     // refreshToolbarButton
     //
     this.refreshToolbarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.refreshToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshToolbarButton.Image")));
     this.refreshToolbarButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.refreshToolbarButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.refreshToolbarButton.Name = "refreshToolbarButton";
     this.refreshToolbarButton.Size = new System.Drawing.Size(23, 22);
     this.refreshToolbarButton.Text = "Refresh Display";
     this.refreshToolbarButton.Click += new System.EventHandler(this.refreshButton_Click);
     //
     // showGridToolbarButton
     //
     this.showGridToolbarButton.Checked = true;
     this.showGridToolbarButton.CheckOnClick = true;
     this.showGridToolbarButton.CheckState = System.Windows.Forms.CheckState.Checked;
     this.showGridToolbarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.showGridToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("showGridToolbarButton.Image")));
     this.showGridToolbarButton.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.showGridToolbarButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.showGridToolbarButton.Name = "showGridToolbarButton";
     this.showGridToolbarButton.Size = new System.Drawing.Size(23, 22);
     this.showGridToolbarButton.Text = "Show/Hide Gridlines";
     this.showGridToolbarButton.Click += new System.EventHandler(this.showGridToolStripMenuItem_Click);
     //
     // displayToolStrip
     //
     this.displayToolStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.displayToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton2,
     this.designEditorToolStripButton,
     this.runtimeModeComboBox});
     this.displayToolStrip.Location = new System.Drawing.Point(459, 24);
     this.displayToolStrip.Name = "displayToolStrip";
     this.displayToolStrip.Size = new System.Drawing.Size(160, 25);
     this.displayToolStrip.TabIndex = 12;
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Diagram Properties";
     this.toolStripButton2.Click += new System.EventHandler(this.showDiagramSettingsToolStripMenuItem_Click);
     //
     // designEditorToolStripButton
     //
     this.designEditorToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.designEditorToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("designEditorToolStripButton.Image")));
     this.designEditorToolStripButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.designEditorToolStripButton.Name = "designEditorToolStripButton";
     this.designEditorToolStripButton.Size = new System.Drawing.Size(23, 22);
     this.designEditorToolStripButton.Text = "Open Design Editor...";
     this.designEditorToolStripButton.Click += new System.EventHandler(this.editDesignsAndStylesToolStripMenuItem_Click);
     //
     // runtimeModeComboBox
     //
     this.runtimeModeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.runtimeModeComboBox.DropDownWidth = 100;
     this.runtimeModeComboBox.Items.AddRange(new object[] {
     "Administrator",
     "Super User",
     "Designer",
     "Operator",
     "Guest"});
     this.runtimeModeComboBox.Name = "runtimeModeComboBox";
     this.runtimeModeComboBox.Size = new System.Drawing.Size(100, 25);
     this.runtimeModeComboBox.ToolTipText = "Select User Role";
     this.runtimeModeComboBox.SelectedIndexChanged += new System.EventHandler(this.runtimeModeButton_SelectedIndexChanged);
     //
     // debugToolStrip
     //
     this.debugToolStrip.Dock = System.Windows.Forms.DockStyle.None;
     this.debugToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.debugDrawOccupationToolbarButton,
     this.debugDrawInvalidatedAreaToolbarButton});
     this.debugToolStrip.Location = new System.Drawing.Point(619, 24);
     this.debugToolStrip.Name = "debugToolStrip";
     this.debugToolStrip.Size = new System.Drawing.Size(89, 25);
     this.debugToolStrip.TabIndex = 14;
     //
     // debugDrawOccupationToolbarButton
     //
     this.debugDrawOccupationToolbarButton.CheckOnClick = true;
     this.debugDrawOccupationToolbarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.debugDrawOccupationToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("debugDrawOccupationToolbarButton.Image")));
     this.debugDrawOccupationToolbarButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.debugDrawOccupationToolbarButton.Name = "debugDrawOccupationToolbarButton";
     this.debugDrawOccupationToolbarButton.Size = new System.Drawing.Size(23, 22);
     this.debugDrawOccupationToolbarButton.Text = "Visualize occupied cells of the diagram\'s spacial index.";
     this.debugDrawOccupationToolbarButton.Click += new System.EventHandler(this.debugDrawOccupationToolbarButton_Click);
     //
     // debugDrawInvalidatedAreaToolbarButton
     //
     this.debugDrawInvalidatedAreaToolbarButton.CheckOnClick = true;
     this.debugDrawInvalidatedAreaToolbarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.debugDrawInvalidatedAreaToolbarButton.Image = ((System.Drawing.Image)(resources.GetObject("debugDrawInvalidatedAreaToolbarButton.Image")));
     this.debugDrawInvalidatedAreaToolbarButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
     this.debugDrawInvalidatedAreaToolbarButton.Name = "debugDrawInvalidatedAreaToolbarButton";
     this.debugDrawInvalidatedAreaToolbarButton.Size = new System.Drawing.Size(23, 22);
     this.debugDrawInvalidatedAreaToolbarButton.Text = "Visualize invalidated areas";
     this.debugDrawInvalidatedAreaToolbarButton.Click += new System.EventHandler(this.debugDrawInvalidatedAreaToolbarButton_Click);
     //
     // saveFileDialog
     //
     this.saveFileDialog.Filter = "XML Repository Files|*.xml|All Files|*.*";
     //
     // diagramSetController
     //
     this.diagramSetController.ActiveTool = null;
     this.diagramSetController.Project = this.project;
     //
     // project
     //
     this.project.AutoGenerateTemplates = true;
     this.project.LibrarySearchPaths = ((System.Collections.Generic.IList<string>)(resources.GetObject("project.LibrarySearchPaths")));
     this.project.Name = "";
     this.project.Repository = this.cachedRepository;
     roleBasedSecurityManager3.CurrentRole = Dataweb.NShape.StandardRole.Administrator;
     roleBasedSecurityManager3.CurrentRoleName = "Administrator";
     this.project.SecurityManager = roleBasedSecurityManager3;
     this.project.Opened += new System.EventHandler(this.project_Opened);
     this.project.Closed += new System.EventHandler(this.project_Closed);
     this.project.LibraryLoaded += new System.EventHandler<Dataweb.NShape.LibraryLoadedEventArgs>(this.project_LibraryLoaded);
     //
     // cachedRepository
     //
     this.cachedRepository.ProjectName = "";
     this.cachedRepository.Store = null;
     this.cachedRepository.Version = 0;
     //
     // layerController
     //
     this.layerController.DiagramSetController = this.diagramSetController;
     //
     // toolSetController
     //
     this.toolSetController.DiagramSetController = this.diagramSetController;
     this.toolSetController.DesignEditorSelected += new System.EventHandler(this.toolBoxAdapter_ShowDesignEditor);
     this.toolSetController.LibraryManagerSelected += new System.EventHandler(this.toolBoxAdapter_ShowLibraryManagerDialog);
     this.toolSetController.TemplateEditorSelected += new System.EventHandler<Dataweb.NShape.Controllers.TemplateEditorEventArgs>(this.toolBoxAdapter_ShowTemplateEditorDialog);
     //
     // modelTreeController
     //
     this.modelTreeController.DiagramSetController = this.diagramSetController;
     //
     // propertyController
     //
     this.propertyController.Project = this.project;
     this.propertyController.PropertyDisplayMode = Dataweb.NShape.Controllers.NonEditableDisplayMode.ReadOnly;
     //
     // modelTreePresenter
     //
     this.modelTreePresenter.HideDeniedMenuItems = false;
     this.modelTreePresenter.ModelTreeController = this.modelTreeController;
     this.modelTreePresenter.PropertyController = this.propertyController;
     this.modelTreePresenter.ShowDefaultContextMenu = true;
     this.modelTreePresenter.TreeView = this.modelTreeView;
     //
     // propertyPresenter
     //
     this.propertyPresenter.PrimaryPropertyGrid = this.primaryPropertyGrid;
     this.propertyPresenter.PropertyController = this.propertyController;
     this.propertyPresenter.SecondaryPropertyGrid = this.secondaryPropertyGrid;
     //
     // toolSetListViewPresenter
     //
     this.toolSetListViewPresenter.HideDeniedMenuItems = false;
     this.toolSetListViewPresenter.ListView = this.toolboxListView;
     this.toolSetListViewPresenter.ShowDefaultContextMenu = true;
     this.toolSetListViewPresenter.ToolSetController = this.toolSetController;
     //
     // layerPresenter
     //
     this.layerPresenter.DiagramPresenter = null;
     this.layerPresenter.HideDeniedMenuItems = false;
     this.layerPresenter.LayerController = this.layerController;
     this.layerPresenter.LayerView = this.layerEditorListView;
     //
     // toolStripMenuItem12
     //
     this.toolStripMenuItem12.Name = "toolStripMenuItem12";
     this.toolStripMenuItem12.Size = new System.Drawing.Size(227, 6);
     //
     // resetToolbarsToolStripMenuItem
     //
     this.resetToolbarsToolStripMenuItem.Name = "resetToolbarsToolStripMenuItem";
     this.resetToolbarsToolStripMenuItem.Size = new System.Drawing.Size(230, 22);
     this.resetToolbarsToolStripMenuItem.Text = "Reset Toolbar Layout";
     this.resetToolbarsToolStripMenuItem.Click += new System.EventHandler(this.resetToolbarsToolStripMenuItem_Click);
     //
     // DiagramDesignerMainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1008, 562);
     this.Controls.Add(this.toolStripContainer);
     this.DoubleBuffered = true;
     this.MainMenuStrip = this.mainMenuStrip;
     this.Name = "DiagramDesignerMainForm";
     this.Text = "NShape Designer";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DiagramDesignerMainForm_FormClosing);
     this.Load += new System.EventHandler(this.DiagramDesignerMainForm_Load);
     this.Shown += new System.EventHandler(this.DiagramDesignerMainForm_Shown);
     this.statusStrip.ResumeLayout(false);
     this.statusStrip.PerformLayout();
     this.mainMenuStrip.ResumeLayout(false);
     this.mainMenuStrip.PerformLayout();
     this.toolboxPropsPanel.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.toolboxContextMenuStrip.ResumeLayout(false);
     this.propertyWindowTabControl.ResumeLayout(false);
     this.propertyWindowShapeTab.ResumeLayout(false);
     this.propertyWindowModelTab.ResumeLayout(false);
     this.layersTab.ResumeLayout(false);
     this.toolStripContainer.BottomToolStripPanel.ResumeLayout(false);
     this.toolStripContainer.BottomToolStripPanel.PerformLayout();
     this.toolStripContainer.ContentPanel.ResumeLayout(false);
     this.toolStripContainer.TopToolStripPanel.ResumeLayout(false);
     this.toolStripContainer.TopToolStripPanel.PerformLayout();
     this.toolStripContainer.ResumeLayout(false);
     this.toolStripContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.historyTrackBar)).EndInit();
     this.editToolStrip.ResumeLayout(false);
     this.editToolStrip.PerformLayout();
     this.settingsToolStrip.ResumeLayout(false);
     this.settingsToolStrip.PerformLayout();
     this.displayToolStrip.ResumeLayout(false);
     this.displayToolStrip.PerformLayout();
     this.debugToolStrip.ResumeLayout(false);
     this.debugToolStrip.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QRSCUEmulator));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.modesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stepModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.batchModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.filterOptionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.patientRootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.studyRootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.displaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.tutorialManualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.clearLogButton = new System.Windows.Forms.Button();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonConfig = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.queryLevelComboBox = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.patientIdTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.patientNameTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.additionalKeysBut = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonDoQuery = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonReSet = new System.Windows.Forms.ToolStripButton();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.queryResultPanel = new System.Windows.Forms.Panel();
     this.dataGridViewStudy = new System.Windows.Forms.DataGridView();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.dataGridViewImage = new System.Windows.Forms.DataGridView();
     this.dataGridViewSeries = new System.Windows.Forms.DataGridView();
     this.panelPatGrid = new System.Windows.Forms.Panel();
     this.configurationTablePanel = new System.Windows.Forms.TableLayoutPanel();
     this.dataGridViewPatient = new System.Windows.Forms.DataGridView();
     this.label2 = new System.Windows.Forms.Label();
     this.buttonLog = new System.Windows.Forms.Button();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label6 = new System.Windows.Forms.Label();
     this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
     this.queryFiltersGroupBox = new System.Windows.Forms.GroupBox();
     this.studyDateCheck = new System.Windows.Forms.CheckBox();
     this.studyDate = new System.Windows.Forms.DateTimePicker();
     this.studyDateLabel = new System.Windows.Forms.Label();
     this.modalityComboBox = new System.Windows.Forms.ComboBox();
     this.studyIdText = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.ClearFilterButton = new System.Windows.Forms.Button();
     this.accNoText = new System.Windows.Forms.TextBox();
     this.accNoLab = new System.Windows.Forms.Label();
     this.studyDateLab = new System.Windows.Forms.Label();
     this.systemConfigGroupBox = new System.Windows.Forms.GroupBox();
     this.ipAddLocalText = new System.Windows.Forms.TextBox();
     this.aeTitScpLabel = new System.Windows.Forms.Label();
     this.ipAddressLocal = new System.Windows.Forms.Label();
     this.configPortNoLabel = new System.Windows.Forms.Label();
     this.loadConfigBut = new System.Windows.Forms.Button();
     this.aeTitScuLabel = new System.Windows.Forms.Label();
     this.sutIPAddText = new System.Windows.Forms.TextBox();
     this.configIPAddLabel = new System.Windows.Forms.Label();
     this.saveConfigBut = new System.Windows.Forms.Button();
     this.configPortNoText = new System.Windows.Forms.TextBox();
     this.aeTitScuText = new System.Windows.Forms.TextBox();
     this.aeTitScpText = new System.Windows.Forms.TextBox();
     this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.backgroundWorkerRetreive = new System.ComponentModel.BackgroundWorker();
     this.contextMenuStripQRSCU = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.sendCMOVERQMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userControlActivityLogging = new DvtkHighLevelInterface.Common.UserInterfaces.UserControlActivityLogging();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.queryResultPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewStudy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewImage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSeries)).BeginInit();
     this.panelPatGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPatient)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.queryFiltersGroupBox.SuspendLayout();
     this.systemConfigGroupBox.SuspendLayout();
     this.contextMenuStripQRSCU.SuspendLayout();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.modesToolStripMenuItem,
     this.settingsToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1028, 24);
     this.menuStrip1.TabIndex = 0;
     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(35, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // modesToolStripMenuItem
     //
     this.modesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.stepModeToolStripMenuItem,
     this.batchModeToolStripMenuItem});
     this.modesToolStripMenuItem.Name = "modesToolStripMenuItem";
     this.modesToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     this.modesToolStripMenuItem.Text = "Modes";
     //
     // stepModeToolStripMenuItem
     //
     this.stepModeToolStripMenuItem.Checked = true;
     this.stepModeToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.stepModeToolStripMenuItem.Name = "stepModeToolStripMenuItem";
     this.stepModeToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
     this.stepModeToolStripMenuItem.Text = "Step-Mode";
     //
     // batchModeToolStripMenuItem
     //
     this.batchModeToolStripMenuItem.Name = "batchModeToolStripMenuItem";
     this.batchModeToolStripMenuItem.Size = new System.Drawing.Size(131, 22);
     this.batchModeToolStripMenuItem.Text = "Batch-Mode";
     //
     // settingsToolStripMenuItem
     //
     this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.filterOptionsToolStripMenuItem,
     this.displaToolStripMenuItem});
     this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
     this.settingsToolStripMenuItem.Size = new System.Drawing.Size(58, 20);
     this.settingsToolStripMenuItem.Text = "Settings";
     this.settingsToolStripMenuItem.Visible = false;
     //
     // filterOptionsToolStripMenuItem
     //
     this.filterOptionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.patientRootToolStripMenuItem,
     this.studyRootToolStripMenuItem});
     this.filterOptionsToolStripMenuItem.Name = "filterOptionsToolStripMenuItem";
     this.filterOptionsToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.filterOptionsToolStripMenuItem.Text = "Matching Keys";
     //
     // patientRootToolStripMenuItem
     //
     this.patientRootToolStripMenuItem.Name = "patientRootToolStripMenuItem";
     this.patientRootToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     this.patientRootToolStripMenuItem.Text = "Patient Root";
     //
     // studyRootToolStripMenuItem
     //
     this.studyRootToolStripMenuItem.Name = "studyRootToolStripMenuItem";
     this.studyRootToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     this.studyRootToolStripMenuItem.Text = "Study Root";
     //
     // displaToolStripMenuItem
     //
     this.displaToolStripMenuItem.Name = "displaToolStripMenuItem";
     this.displaToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
     this.displaToolStripMenuItem.Text = "Display Level";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.helpToolStripMenuItem1,
     this.tutorialManualToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(48, 20);
     this.helpToolStripMenuItem.Text = "About";
     //
     // helpToolStripMenuItem1
     //
     this.helpToolStripMenuItem1.Name = "helpToolStripMenuItem1";
     this.helpToolStripMenuItem1.Size = new System.Drawing.Size(148, 22);
     this.helpToolStripMenuItem1.Text = "Help";
     this.helpToolStripMenuItem1.Visible = false;
     //
     // tutorialManualToolStripMenuItem
     //
     this.tutorialManualToolStripMenuItem.Name = "tutorialManualToolStripMenuItem";
     this.tutorialManualToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.tutorialManualToolStripMenuItem.Text = "Tutorial/Manual";
     this.tutorialManualToolStripMenuItem.Visible = false;
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // clearLogButton
     //
     this.clearLogButton.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.clearLogButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     this.clearLogButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.clearLogButton.FlatAppearance.BorderSize = 2;
     this.clearLogButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
     this.clearLogButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(125)))), ((int)(((byte)(125)))));
     this.clearLogButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.clearLogButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.clearLogButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.clearLogButton.Location = new System.Drawing.Point(686, 27);
     this.clearLogButton.Name = "clearLogButton";
     this.clearLogButton.Size = new System.Drawing.Size(86, 28);
     this.clearLogButton.TabIndex = 53;
     this.clearLogButton.Text = "Clear Log";
     this.clearLogButton.UseVisualStyleBackColor = false;
     this.clearLogButton.Click += new System.EventHandler(this.clearLogButton_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButtonConfig,
     this.toolStripSeparator1,
     this.toolStripLabel1,
     this.queryLevelComboBox,
     this.toolStripSeparator4,
     this.toolStripLabel4,
     this.toolStripLabel2,
     this.patientIdTextBox,
     this.toolStripLabel3,
     this.patientNameTextBox,
     this.toolStripSeparator2,
     this.additionalKeysBut,
     this.toolStripSeparator3,
     this.toolStripButtonDoQuery,
     this.toolStripSeparator5,
     this.toolStripButtonReSet});
     this.toolStrip1.Location = new System.Drawing.Point(0, 24);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(1028, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButtonConfig
     //
     this.toolStripButtonConfig.Image = global::QR_SCU_Emulator.Properties.Resources.views_16_h;
     this.toolStripButtonConfig.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonConfig.Name = "toolStripButtonConfig";
     this.toolStripButtonConfig.Size = new System.Drawing.Size(96, 22);
     this.toolStripButtonConfig.Text = "System Config";
     this.toolStripButtonConfig.ToolTipText = "Show System Configuration";
     this.toolStripButtonConfig.Click += new System.EventHandler(this.toolStripButtonConfig_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(83, 22);
     this.toolStripLabel1.Text = "Quick Config :";
     //
     // queryLevelComboBox
     //
     this.queryLevelComboBox.AutoCompleteCustomSource.AddRange(new string[] {
     "Patient_Root",
     "Study_Root"});
     this.queryLevelComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.queryLevelComboBox.Items.AddRange(new object[] {
     "Patient_Root",
     "Study_Root"});
     this.queryLevelComboBox.Name = "queryLevelComboBox";
     this.queryLevelComboBox.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel4
     //
     this.toolStripLabel4.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.toolStripLabel4.Name = "toolStripLabel4";
     this.toolStripLabel4.Size = new System.Drawing.Size(80, 22);
     this.toolStripLabel4.Text = "Quick Query :";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(59, 22);
     this.toolStripLabel2.Text = "Patient ID:";
     //
     // patientIdTextBox
     //
     this.patientIdTextBox.BackColor = System.Drawing.SystemColors.Window;
     this.patientIdTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.patientIdTextBox.Name = "patientIdTextBox";
     this.patientIdTextBox.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(75, 22);
     this.toolStripLabel3.Text = "Patient Name:";
     //
     // patientNameTextBox
     //
     this.patientNameTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.patientNameTextBox.Name = "patientNameTextBox";
     this.patientNameTextBox.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // additionalKeysBut
     //
     this.additionalKeysBut.Image = global::QR_SCU_Emulator.Properties.Resources.properties_doc_16;
     this.additionalKeysBut.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.additionalKeysBut.Name = "additionalKeysBut";
     this.additionalKeysBut.Size = new System.Drawing.Size(133, 22);
     this.additionalKeysBut.Text = "Additional Query Keys";
     this.additionalKeysBut.Click += new System.EventHandler(this.additionalKeysBut_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonDoQuery
     //
     this.toolStripButtonDoQuery.BackColor = System.Drawing.Color.Transparent;
     this.toolStripButtonDoQuery.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.toolStripButtonDoQuery.Image = global::QR_SCU_Emulator.Properties.Resources.search_16;
     this.toolStripButtonDoQuery.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonDoQuery.Name = "toolStripButtonDoQuery";
     this.toolStripButtonDoQuery.Size = new System.Drawing.Size(73, 22);
     this.toolStripButtonDoQuery.Text = "Do Query";
     this.toolStripButtonDoQuery.Click += new System.EventHandler(this.toolStripButtonDoQuery_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonReSet
     //
     this.toolStripButtonReSet.Image = global::QR_SCU_Emulator.Properties.Resources.undo_round_16;
     this.toolStripButtonReSet.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonReSet.Name = "toolStripButtonReSet";
     this.toolStripButtonReSet.Size = new System.Drawing.Size(77, 22);
     this.toolStripButtonReSet.Text = "Reset Q/R";
     this.toolStripButtonReSet.Click += new System.EventHandler(this.toolStripButtonReSet_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusLabel});
     this.statusStrip1.Location = new System.Drawing.Point(0, 679);
     this.statusStrip1.Name = "statusStrip1";
     this.statusStrip1.Size = new System.Drawing.Size(1028, 22);
     this.statusStrip1.TabIndex = 2;
     this.statusStrip1.Text = "statusStrip1";
     //
     // statusLabel
     //
     this.statusLabel.BackColor = System.Drawing.Color.Transparent;
     this.statusLabel.Name = "statusLabel";
     this.statusLabel.Size = new System.Drawing.Size(0, 17);
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.label1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label1.Location = new System.Drawing.Point(6, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(199, 22);
     this.label1.TabIndex = 0;
     this.label1.Text = "Status Response : ";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(145)))), ((int)(((byte)(145)))), ((int)(((byte)(145)))));
     this.splitContainer1.Panel1.Controls.Add(this.queryResultPanel);
     this.splitContainer1.Panel1.Controls.Add(this.panelPatGrid);
     this.splitContainer1.Panel1MinSize = 600;
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(55)))), ((int)(((byte)(55)))));
     this.splitContainer1.Panel2.Controls.Add(this.buttonLog);
     this.splitContainer1.Panel2.Controls.Add(this.richTextBox1);
     this.splitContainer1.Panel2.Controls.Add(this.pictureBox1);
     this.splitContainer1.Panel2.Controls.Add(this.label6);
     this.splitContainer1.Panel2.Controls.Add(this.propertyGrid1);
     this.splitContainer1.Panel2.Controls.Add(this.label1);
     this.splitContainer1.Size = new System.Drawing.Size(1028, 630);
     this.splitContainer1.SplitterDistance = 816;
     this.splitContainer1.TabIndex = 4;
     //
     // queryResultPanel
     //
     this.queryResultPanel.AutoSize = true;
     this.queryResultPanel.Controls.Add(this.dataGridViewStudy);
     this.queryResultPanel.Controls.Add(this.label5);
     this.queryResultPanel.Controls.Add(this.label4);
     this.queryResultPanel.Controls.Add(this.label3);
     this.queryResultPanel.Controls.Add(this.dataGridViewImage);
     this.queryResultPanel.Controls.Add(this.dataGridViewSeries);
     this.queryResultPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.queryResultPanel.Location = new System.Drawing.Point(0, 197);
     this.queryResultPanel.Name = "queryResultPanel";
     this.queryResultPanel.Size = new System.Drawing.Size(816, 433);
     this.queryResultPanel.TabIndex = 34;
     //
     // dataGridViewStudy
     //
     this.dataGridViewStudy.AllowUserToAddRows = false;
     this.dataGridViewStudy.AllowUserToDeleteRows = false;
     this.dataGridViewStudy.AllowUserToOrderColumns = true;
     this.dataGridViewStudy.AllowUserToResizeRows = false;
     dataGridViewCellStyle13.BackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle13.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewStudy.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
     this.dataGridViewStudy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridViewStudy.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewStudy.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     dataGridViewCellStyle14.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle14.ForeColor = System.Drawing.Color.Gainsboro;
     dataGridViewCellStyle14.NullValue = null;
     dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewStudy.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
     this.dataGridViewStudy.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewStudy.ContextMenuStrip = this.contextMenuStripQRSCU;
     this.dataGridViewStudy.EnableHeadersVisualStyles = false;
     this.dataGridViewStudy.Location = new System.Drawing.Point(6, 37);
     this.dataGridViewStudy.MultiSelect = false;
     this.dataGridViewStudy.Name = "dataGridViewStudy";
     this.dataGridViewStudy.ReadOnly = true;
     this.dataGridViewStudy.RowHeadersVisible = false;
     dataGridViewCellStyle15.BackColor = System.Drawing.Color.WhiteSmoke;
     dataGridViewCellStyle15.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewStudy.RowsDefaultCellStyle = dataGridViewCellStyle15;
     this.dataGridViewStudy.RowTemplate.Height = 23;
     this.dataGridViewStudy.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewStudy.Size = new System.Drawing.Size(797, 166);
     this.dataGridViewStudy.TabIndex = 37;
     this.dataGridViewStudy.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridViewStudy_CellMouseUp);
     this.dataGridViewStudy.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridViewStudy_MouseDown);
     //
     // label5
     //
     this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label5.Location = new System.Drawing.Point(533, 225);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(95, 16);
     this.label5.TabIndex = 36;
     this.label5.Text = "Image Level :";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label4.Location = new System.Drawing.Point(4, 225);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(95, 16);
     this.label4.TabIndex = 35;
     this.label4.Text = "Series Level :";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label3.Location = new System.Drawing.Point(6, 16);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(93, 16);
     this.label3.TabIndex = 34;
     this.label3.Text = "Study Level :";
     //
     // dataGridViewImage
     //
     this.dataGridViewImage.AllowUserToAddRows = false;
     this.dataGridViewImage.AllowUserToDeleteRows = false;
     this.dataGridViewImage.AllowUserToOrderColumns = true;
     this.dataGridViewImage.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewImage.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewImage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridViewImage.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewImage.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Gainsboro;
     dataGridViewCellStyle2.NullValue = null;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewImage.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewImage.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewImage.ContextMenuStrip = this.contextMenuStripQRSCU;
     this.dataGridViewImage.EnableHeadersVisualStyles = false;
     this.dataGridViewImage.Location = new System.Drawing.Point(538, 246);
     this.dataGridViewImage.MultiSelect = false;
     this.dataGridViewImage.Name = "dataGridViewImage";
     this.dataGridViewImage.ReadOnly = true;
     this.dataGridViewImage.RowHeadersVisible = false;
     dataGridViewCellStyle3.BackColor = System.Drawing.Color.WhiteSmoke;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewImage.RowsDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewImage.RowTemplate.Height = 23;
     this.dataGridViewImage.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewImage.Size = new System.Drawing.Size(265, 161);
     this.dataGridViewImage.TabIndex = 32;
     this.dataGridViewImage.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridViewImage_CellMouseUp);
     this.dataGridViewImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridViewImage_MouseDown);
     //
     // dataGridViewSeries
     //
     this.dataGridViewSeries.AllowUserToAddRows = false;
     this.dataGridViewSeries.AllowUserToDeleteRows = false;
     this.dataGridViewSeries.AllowUserToOrderColumns = true;
     this.dataGridViewSeries.AllowUserToResizeRows = false;
     dataGridViewCellStyle4.BackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewSeries.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridViewSeries.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.dataGridViewSeries.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewSeries.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle5.ForeColor = System.Drawing.Color.Gainsboro;
     dataGridViewCellStyle5.NullValue = null;
     dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewSeries.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle5;
     this.dataGridViewSeries.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewSeries.ContextMenuStrip = this.contextMenuStripQRSCU;
     this.dataGridViewSeries.EnableHeadersVisualStyles = false;
     this.dataGridViewSeries.Location = new System.Drawing.Point(6, 246);
     this.dataGridViewSeries.MultiSelect = false;
     this.dataGridViewSeries.Name = "dataGridViewSeries";
     this.dataGridViewSeries.ReadOnly = true;
     this.dataGridViewSeries.RowHeadersVisible = false;
     dataGridViewCellStyle6.BackColor = System.Drawing.Color.WhiteSmoke;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewSeries.RowsDefaultCellStyle = dataGridViewCellStyle6;
     this.dataGridViewSeries.RowTemplate.Height = 23;
     this.dataGridViewSeries.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewSeries.Size = new System.Drawing.Size(506, 161);
     this.dataGridViewSeries.TabIndex = 31;
     this.dataGridViewSeries.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridViewSeries_CellMouseUp);
     this.dataGridViewSeries.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridViewSeries_MouseDown);
     //
     // panelPatGrid
     //
     this.panelPatGrid.Controls.Add(this.configurationTablePanel);
     this.panelPatGrid.Controls.Add(this.dataGridViewPatient);
     this.panelPatGrid.Controls.Add(this.label2);
     this.panelPatGrid.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelPatGrid.Location = new System.Drawing.Point(0, 0);
     this.panelPatGrid.Name = "panelPatGrid";
     this.panelPatGrid.Size = new System.Drawing.Size(816, 197);
     this.panelPatGrid.TabIndex = 38;
     //
     // configurationTablePanel
     //
     this.configurationTablePanel.AutoSize = true;
     this.configurationTablePanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.configurationTablePanel.ColumnCount = 1;
     this.configurationTablePanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.configurationTablePanel.Location = new System.Drawing.Point(223, 37);
     this.configurationTablePanel.Name = "configurationTablePanel";
     this.configurationTablePanel.RowCount = 2;
     this.configurationTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.59524F));
     this.configurationTablePanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 49.40476F));
     this.configurationTablePanel.Size = new System.Drawing.Size(0, 0);
     this.configurationTablePanel.TabIndex = 33;
     //
     // dataGridViewPatient
     //
     this.dataGridViewPatient.AllowUserToAddRows = false;
     this.dataGridViewPatient.AllowUserToDeleteRows = false;
     this.dataGridViewPatient.AllowUserToOrderColumns = true;
     this.dataGridViewPatient.AllowUserToResizeRows = false;
     dataGridViewCellStyle7.BackColor = System.Drawing.Color.LightGray;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewPatient.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridViewPatient.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridViewPatient.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewPatient.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.Gainsboro;
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewPatient.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
     this.dataGridViewPatient.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewPatient.ContextMenuStrip = this.contextMenuStripQRSCU;
     this.dataGridViewPatient.EnableHeadersVisualStyles = false;
     this.dataGridViewPatient.Location = new System.Drawing.Point(9, 37);
     this.dataGridViewPatient.MultiSelect = false;
     this.dataGridViewPatient.Name = "dataGridViewPatient";
     this.dataGridViewPatient.ReadOnly = true;
     this.dataGridViewPatient.RowHeadersVisible = false;
     dataGridViewCellStyle9.BackColor = System.Drawing.Color.WhiteSmoke;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.DodgerBlue;
     dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.White;
     this.dataGridViewPatient.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.dataGridViewPatient.RowTemplate.Height = 23;
     this.dataGridViewPatient.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewPatient.Size = new System.Drawing.Size(794, 157);
     this.dataGridViewPatient.TabIndex = 30;
     this.dataGridViewPatient.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridViewPatient_CellMouseUp);
     this.dataGridViewPatient.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dataGridViewPatient_MouseDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label2.Location = new System.Drawing.Point(6, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(102, 16);
     this.label2.TabIndex = 33;
     this.label2.Text = "Patient Level :";
     //
     // buttonLog
     //
     this.buttonLog.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonLog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     this.buttonLog.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.buttonLog.FlatAppearance.BorderSize = 2;
     this.buttonLog.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
     this.buttonLog.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(125)))), ((int)(((byte)(125)))));
     this.buttonLog.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonLog.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonLog.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.buttonLog.Location = new System.Drawing.Point(6, 161);
     this.buttonLog.Name = "buttonLog";
     this.buttonLog.Size = new System.Drawing.Size(199, 36);
     this.buttonLog.TabIndex = 7;
     this.buttonLog.Text = "Show Logfile";
     this.buttonLog.UseVisualStyleBackColor = false;
     this.buttonLog.Click += new System.EventHandler(this.buttonLog_Click);
     //
     // richTextBox1
     //
     this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox1.Location = new System.Drawing.Point(6, 36);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.Size = new System.Drawing.Size(199, 119);
     this.richTextBox1.TabIndex = 6;
     this.richTextBox1.Text = "";
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Image = global::QR_SCU_Emulator.Properties.Resources.logo_anim;
     this.pictureBox1.Location = new System.Drawing.Point(9, 528);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(194, 93);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.label6.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label6.Location = new System.Drawing.Point(6, 200);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(199, 22);
     this.label6.TabIndex = 4;
     this.label6.Text = "Attribute Information : ";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // propertyGrid1
     //
     this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.propertyGrid1.Location = new System.Drawing.Point(6, 225);
     this.propertyGrid1.Name = "propertyGrid1";
     this.propertyGrid1.Size = new System.Drawing.Size(199, 297);
     this.propertyGrid1.TabIndex = 3;
     this.propertyGrid1.ViewForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     //
     // queryFiltersGroupBox
     //
     this.queryFiltersGroupBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.queryFiltersGroupBox.Controls.Add(this.studyDateCheck);
     this.queryFiltersGroupBox.Controls.Add(this.studyDate);
     this.queryFiltersGroupBox.Controls.Add(this.studyDateLabel);
     this.queryFiltersGroupBox.Controls.Add(this.modalityComboBox);
     this.queryFiltersGroupBox.Controls.Add(this.studyIdText);
     this.queryFiltersGroupBox.Controls.Add(this.label20);
     this.queryFiltersGroupBox.Controls.Add(this.ClearFilterButton);
     this.queryFiltersGroupBox.Controls.Add(this.accNoText);
     this.queryFiltersGroupBox.Controls.Add(this.accNoLab);
     this.queryFiltersGroupBox.Controls.Add(this.studyDateLab);
     this.queryFiltersGroupBox.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.queryFiltersGroupBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.queryFiltersGroupBox.Location = new System.Drawing.Point(3, 16);
     this.queryFiltersGroupBox.Name = "queryFiltersGroupBox";
     this.queryFiltersGroupBox.Size = new System.Drawing.Size(399, 248);
     this.queryFiltersGroupBox.TabIndex = 58;
     this.queryFiltersGroupBox.TabStop = false;
     this.queryFiltersGroupBox.Text = "Query Filters";
     //
     // studyDateCheck
     //
     this.studyDateCheck.AutoSize = true;
     this.studyDateCheck.Location = new System.Drawing.Point(19, 164);
     this.studyDateCheck.Name = "studyDateCheck";
     this.studyDateCheck.Size = new System.Drawing.Size(15, 14);
     this.studyDateCheck.TabIndex = 62;
     this.studyDateCheck.UseVisualStyleBackColor = true;
     //
     // studyDate
     //
     this.studyDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.studyDate.Location = new System.Drawing.Point(168, 162);
     this.studyDate.Name = "studyDate";
     this.studyDate.Size = new System.Drawing.Size(212, 22);
     this.studyDate.TabIndex = 60;
     //
     // studyDateLabel
     //
     this.studyDateLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.studyDateLabel.AutoSize = true;
     this.studyDateLabel.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.studyDateLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.studyDateLabel.Location = new System.Drawing.Point(40, 162);
     this.studyDateLabel.Name = "studyDateLabel";
     this.studyDateLabel.Size = new System.Drawing.Size(86, 16);
     this.studyDateLabel.TabIndex = 59;
     this.studyDateLabel.Text = "Study Date:\r\n";
     //
     // modalityComboBox
     //
     this.modalityComboBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.modalityComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.modalityComboBox.FormattingEnabled = true;
     this.modalityComboBox.Items.AddRange(new object[] {
     "",
     "CT",
     "MR"});
     this.modalityComboBox.Location = new System.Drawing.Point(168, 34);
     this.modalityComboBox.Name = "modalityComboBox";
     this.modalityComboBox.Size = new System.Drawing.Size(212, 22);
     this.modalityComboBox.TabIndex = 57;
     //
     // studyIdText
     //
     this.studyIdText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.studyIdText.Location = new System.Drawing.Point(168, 113);
     this.studyIdText.Name = "studyIdText";
     this.studyIdText.Size = new System.Drawing.Size(212, 22);
     this.studyIdText.TabIndex = 56;
     //
     // label20
     //
     this.label20.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label20.Location = new System.Drawing.Point(40, 115);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(68, 16);
     this.label20.TabIndex = 55;
     this.label20.Text = "Study Id:\r\n";
     //
     // ClearFilterButton
     //
     this.ClearFilterButton.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ClearFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     this.ClearFilterButton.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.ClearFilterButton.FlatAppearance.BorderSize = 2;
     this.ClearFilterButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
     this.ClearFilterButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(125)))), ((int)(((byte)(125)))));
     this.ClearFilterButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ClearFilterButton.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ClearFilterButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.ClearFilterButton.Location = new System.Drawing.Point(294, 202);
     this.ClearFilterButton.Name = "ClearFilterButton";
     this.ClearFilterButton.Size = new System.Drawing.Size(86, 28);
     this.ClearFilterButton.TabIndex = 54;
     this.ClearFilterButton.Text = "Clear Filters";
     this.ClearFilterButton.UseVisualStyleBackColor = false;
     this.ClearFilterButton.Click += new System.EventHandler(this.ClearFilterButton_Click);
     //
     // accNoText
     //
     this.accNoText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.accNoText.Location = new System.Drawing.Point(168, 73);
     this.accNoText.Name = "accNoText";
     this.accNoText.Size = new System.Drawing.Size(212, 22);
     this.accNoText.TabIndex = 51;
     //
     // accNoLab
     //
     this.accNoLab.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.accNoLab.AutoSize = true;
     this.accNoLab.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.accNoLab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.accNoLab.Location = new System.Drawing.Point(40, 75);
     this.accNoLab.Name = "accNoLab";
     this.accNoLab.Size = new System.Drawing.Size(98, 16);
     this.accNoLab.TabIndex = 50;
     this.accNoLab.Text = "Accession No:\r\n";
     //
     // studyDateLab
     //
     this.studyDateLab.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.studyDateLab.AutoSize = true;
     this.studyDateLab.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.studyDateLab.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.studyDateLab.Location = new System.Drawing.Point(40, 36);
     this.studyDateLab.Name = "studyDateLab";
     this.studyDateLab.Size = new System.Drawing.Size(68, 16);
     this.studyDateLab.TabIndex = 45;
     this.studyDateLab.Text = "Modality:";
     //
     // systemConfigGroupBox
     //
     this.systemConfigGroupBox.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.systemConfigGroupBox.Controls.Add(this.ipAddLocalText);
     this.systemConfigGroupBox.Controls.Add(this.aeTitScpLabel);
     this.systemConfigGroupBox.Controls.Add(this.ipAddressLocal);
     this.systemConfigGroupBox.Controls.Add(this.configPortNoLabel);
     this.systemConfigGroupBox.Controls.Add(this.loadConfigBut);
     this.systemConfigGroupBox.Controls.Add(this.aeTitScuLabel);
     this.systemConfigGroupBox.Controls.Add(this.sutIPAddText);
     this.systemConfigGroupBox.Controls.Add(this.configIPAddLabel);
     this.systemConfigGroupBox.Controls.Add(this.saveConfigBut);
     this.systemConfigGroupBox.Controls.Add(this.configPortNoText);
     this.systemConfigGroupBox.Controls.Add(this.aeTitScuText);
     this.systemConfigGroupBox.Controls.Add(this.aeTitScpText);
     this.systemConfigGroupBox.Font = new System.Drawing.Font("Tahoma", 9.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.systemConfigGroupBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.systemConfigGroupBox.Location = new System.Drawing.Point(3, 284);
     this.systemConfigGroupBox.Name = "systemConfigGroupBox";
     this.systemConfigGroupBox.Size = new System.Drawing.Size(399, 269);
     this.systemConfigGroupBox.TabIndex = 57;
     this.systemConfigGroupBox.TabStop = false;
     this.systemConfigGroupBox.Text = "System Configuration";
     //
     // ipAddLocalText
     //
     this.ipAddLocalText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ipAddLocalText.Location = new System.Drawing.Point(205, 174);
     this.ipAddLocalText.Name = "ipAddLocalText";
     this.ipAddLocalText.Size = new System.Drawing.Size(137, 22);
     this.ipAddLocalText.TabIndex = 54;
     //
     // aeTitScpLabel
     //
     this.aeTitScpLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.aeTitScpLabel.AutoSize = true;
     this.aeTitScpLabel.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.aeTitScpLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.aeTitScpLabel.Location = new System.Drawing.Point(55, 103);
     this.aeTitScpLabel.Name = "aeTitScpLabel";
     this.aeTitScpLabel.Size = new System.Drawing.Size(115, 16);
     this.aeTitScpLabel.TabIndex = 45;
     this.aeTitScpLabel.Text = "Remote AE Title:";
     //
     // ipAddressLocal
     //
     this.ipAddressLocal.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.ipAddressLocal.AutoSize = true;
     this.ipAddressLocal.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ipAddressLocal.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.ipAddressLocal.Location = new System.Drawing.Point(54, 176);
     this.ipAddressLocal.Name = "ipAddressLocal";
     this.ipAddressLocal.Size = new System.Drawing.Size(145, 16);
     this.ipAddressLocal.TabIndex = 53;
     this.ipAddressLocal.Text = "Emulator IP Address:\r\n";
     //
     // configPortNoLabel
     //
     this.configPortNoLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.configPortNoLabel.AutoSize = true;
     this.configPortNoLabel.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.configPortNoLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.configPortNoLabel.Location = new System.Drawing.Point(55, 69);
     this.configPortNoLabel.Name = "configPortNoLabel";
     this.configPortNoLabel.Size = new System.Drawing.Size(148, 16);
     this.configPortNoLabel.TabIndex = 44;
     this.configPortNoLabel.Text = "Remote Port Number:";
     //
     // loadConfigBut
     //
     this.loadConfigBut.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.loadConfigBut.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     this.loadConfigBut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.loadConfigBut.FlatAppearance.BorderSize = 2;
     this.loadConfigBut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
     this.loadConfigBut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(125)))), ((int)(((byte)(125)))));
     this.loadConfigBut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.loadConfigBut.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.loadConfigBut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.loadConfigBut.Location = new System.Drawing.Point(117, 221);
     this.loadConfigBut.Name = "loadConfigBut";
     this.loadConfigBut.Size = new System.Drawing.Size(68, 28);
     this.loadConfigBut.TabIndex = 52;
     this.loadConfigBut.Text = "Load";
     this.loadConfigBut.UseVisualStyleBackColor = false;
     this.loadConfigBut.Click += new System.EventHandler(this.loadConfigBut_Click);
     //
     // aeTitScuLabel
     //
     this.aeTitScuLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.aeTitScuLabel.AutoSize = true;
     this.aeTitScuLabel.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.aeTitScuLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.aeTitScuLabel.Location = new System.Drawing.Point(55, 141);
     this.aeTitScuLabel.Name = "aeTitScuLabel";
     this.aeTitScuLabel.Size = new System.Drawing.Size(122, 16);
     this.aeTitScuLabel.TabIndex = 46;
     this.aeTitScuLabel.Text = "Emulator AE Title:\r\n";
     //
     // sutIPAddText
     //
     this.sutIPAddText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.sutIPAddText.Location = new System.Drawing.Point(206, 31);
     this.sutIPAddText.Name = "sutIPAddText";
     this.sutIPAddText.Size = new System.Drawing.Size(137, 22);
     this.sutIPAddText.TabIndex = 51;
     //
     // configIPAddLabel
     //
     this.configIPAddLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.configIPAddLabel.AutoSize = true;
     this.configIPAddLabel.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.configIPAddLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.configIPAddLabel.Location = new System.Drawing.Point(55, 32);
     this.configIPAddLabel.Name = "configIPAddLabel";
     this.configIPAddLabel.Size = new System.Drawing.Size(130, 16);
     this.configIPAddLabel.TabIndex = 43;
     this.configIPAddLabel.Text = "Remote IP Adress:\r\n";
     //
     // saveConfigBut
     //
     this.saveConfigBut.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.saveConfigBut.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
     this.saveConfigBut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
     this.saveConfigBut.FlatAppearance.BorderSize = 2;
     this.saveConfigBut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(175)))), ((int)(((byte)(175)))));
     this.saveConfigBut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(125)))), ((int)(((byte)(125)))));
     this.saveConfigBut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.saveConfigBut.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.saveConfigBut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
     this.saveConfigBut.Location = new System.Drawing.Point(218, 221);
     this.saveConfigBut.Name = "saveConfigBut";
     this.saveConfigBut.Size = new System.Drawing.Size(68, 28);
     this.saveConfigBut.TabIndex = 50;
     this.saveConfigBut.Text = "Save";
     this.saveConfigBut.UseVisualStyleBackColor = false;
     this.saveConfigBut.Click += new System.EventHandler(this.saveConfigBut_Click);
     //
     // configPortNoText
     //
     this.configPortNoText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.configPortNoText.Location = new System.Drawing.Point(206, 67);
     this.configPortNoText.Name = "configPortNoText";
     this.configPortNoText.Size = new System.Drawing.Size(137, 22);
     this.configPortNoText.TabIndex = 47;
     //
     // aeTitScuText
     //
     this.aeTitScuText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.aeTitScuText.Location = new System.Drawing.Point(206, 139);
     this.aeTitScuText.Name = "aeTitScuText";
     this.aeTitScuText.Size = new System.Drawing.Size(137, 22);
     this.aeTitScuText.TabIndex = 49;
     //
     // aeTitScpText
     //
     this.aeTitScpText.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.aeTitScpText.Location = new System.Drawing.Point(206, 103);
     this.aeTitScpText.Name = "aeTitScpText";
     this.aeTitScpText.Size = new System.Drawing.Size(137, 22);
     this.aeTitScpText.TabIndex = 48;
     //
     // backgroundWorker1
     //
     this.backgroundWorker1.WorkerReportsProgress = true;
     this.backgroundWorker1.WorkerSupportsCancellation = true;
     this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
     this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted_1);
     //
     // label7
     //
     this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label7.Location = new System.Drawing.Point(482, 401);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(95, 16);
     this.label7.TabIndex = 20;
     this.label7.Text = "Image Level :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label8.Location = new System.Drawing.Point(36, 401);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(95, 16);
     this.label8.TabIndex = 19;
     this.label8.Text = "Series Level :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label9.Location = new System.Drawing.Point(36, 206);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(93, 16);
     this.label9.TabIndex = 18;
     this.label9.Text = "Study Level :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label10.Location = new System.Drawing.Point(36, 14);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(102, 16);
     this.label10.TabIndex = 17;
     this.label10.Text = "Patient Level :";
     //
     // label11
     //
     this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label11.Location = new System.Drawing.Point(482, 401);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(95, 16);
     this.label11.TabIndex = 20;
     this.label11.Text = "Image Level :";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label12.Location = new System.Drawing.Point(36, 401);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(95, 16);
     this.label12.TabIndex = 19;
     this.label12.Text = "Series Level :";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label15.Location = new System.Drawing.Point(36, 206);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(93, 16);
     this.label15.TabIndex = 18;
     this.label15.Text = "Study Level :";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.label16.Location = new System.Drawing.Point(36, 14);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(102, 16);
     this.label16.TabIndex = 17;
     this.label16.Text = "Patient Level :";
     //
     // backgroundWorkerRetreive
     //
     this.backgroundWorkerRetreive.WorkerReportsProgress = true;
     this.backgroundWorkerRetreive.WorkerSupportsCancellation = true;
     this.backgroundWorkerRetreive.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorkerRetreive_DoWork);
     this.backgroundWorkerRetreive.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorkerRetreive_RunWorkerCompleted);
     //
     // contextMenuStripQRSCU
     //
     this.contextMenuStripQRSCU.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.sendCMOVERQMenuItem});
     this.contextMenuStripQRSCU.Name = "contextMenuStripQRSCU";
     this.contextMenuStripQRSCU.Size = new System.Drawing.Size(159, 26);
     //
     // sendCMOVERQMenuItem
     //
     this.sendCMOVERQMenuItem.Name = "sendCMOVERQMenuItem";
     this.sendCMOVERQMenuItem.Size = new System.Drawing.Size(158, 22);
     this.sendCMOVERQMenuItem.Text = "Send C-MOVE RQ";
     this.sendCMOVERQMenuItem.Click += new System.EventHandler(this.sendCMOVERQMenuItem_Click);
     //
     // userControlActivityLogging
     //
     this.userControlActivityLogging.Interval = 250;
     this.userControlActivityLogging.Location = new System.Drawing.Point(0, 0);
     this.userControlActivityLogging.Name = "userControlActivityLogging";
     this.userControlActivityLogging.Size = new System.Drawing.Size(304, 264);
     this.userControlActivityLogging.TabIndex = 0;
     //
     // QRSCUEmulator
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Gray;
     this.ClientSize = new System.Drawing.Size(1028, 701);
     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.MinimumSize = new System.Drawing.Size(1022, 700);
     this.Name = "QRSCUEmulator";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "DVTk QR SCU Emulator";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.queryResultPanel.ResumeLayout(false);
     this.queryResultPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewStudy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewImage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewSeries)).EndInit();
     this.panelPatGrid.ResumeLayout(false);
     this.panelPatGrid.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPatient)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.queryFiltersGroupBox.ResumeLayout(false);
     this.queryFiltersGroupBox.PerformLayout();
     this.systemConfigGroupBox.ResumeLayout(false);
     this.systemConfigGroupBox.PerformLayout();
     this.contextMenuStripQRSCU.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.toolStrip1      = new System.Windows.Forms.ToolStrip();
     this.path1Box        = new System.Windows.Forms.ToolStripComboBox();
     this.path2Box        = new System.Windows.Forms.ToolStripComboBox();
     this.compareButton   = new System.Windows.Forms.ToolStripSplitButton();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.textBox2        = new System.Windows.Forms.TextBox();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.path1Box,
         this.path2Box,
         this.compareButton
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(483, 25);
     this.toolStrip1.TabIndex = 0;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // path1Box
     //
     this.path1Box.Name = "path1Box";
     this.path1Box.Size = new System.Drawing.Size(200, 25);
     //
     // path2Box
     //
     this.path2Box.Name = "path2Box";
     this.path2Box.Size = new System.Drawing.Size(200, 25);
     //
     // compareButton
     //
     this.compareButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.compareButton.Image                 = ((System.Drawing.Image)(resources.GetObject("compareButton.Image")));
     this.compareButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.compareButton.Name         = "compareButton";
     this.compareButton.Size         = new System.Drawing.Size(48, 22);
     this.compareButton.Text         = "比较";
     this.compareButton.ButtonClick += new System.EventHandler(this.CompareButtonButtonClick);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 25);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.textBox1);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.textBox2);
     this.splitContainer1.Size             = new System.Drawing.Size(483, 192);
     this.splitContainer1.SplitterDistance = 227;
     this.splitContainer1.TabIndex         = 1;
     //
     // textBox1
     //
     this.textBox1.AllowDrop  = true;
     this.textBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location   = new System.Drawing.Point(0, 0);
     this.textBox1.MaxLength  = 3276700;
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size       = new System.Drawing.Size(227, 192);
     this.textBox1.TabIndex   = 0;
     this.textBox1.DragDrop  += new System.Windows.Forms.DragEventHandler(this.TextBox1DragDrop);
     this.textBox1.DragOver  += new System.Windows.Forms.DragEventHandler(this.TextBox1DragOver);
     //
     // textBox2
     //
     this.textBox2.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox2.Location   = new System.Drawing.Point(0, 0);
     this.textBox2.MaxLength  = 3276700;
     this.textBox2.Multiline  = true;
     this.textBox2.Name       = "textBox2";
     this.textBox2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox2.Size       = new System.Drawing.Size(252, 192);
     this.textBox2.TabIndex   = 0;
     this.textBox2.DragDrop  += new System.Windows.Forms.DragEventHandler(this.TextBox2DragDrop);
     this.textBox2.DragOver  += new System.Windows.Forms.DragEventHandler(this.TextBox2DragOver);
     //
     // MainForm
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(483, 217);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.toolStrip1);
     this.Name = "MainForm";
     this.Text = "FileCompare";
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.toolStripRequest);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(898, 281);
     this.splitContainer2.SplitterDistance = 25;
     this.splitContainer2.TabIndex = 2;
     //
     // toolStripRequest
     //
     this.toolStripRequest.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel2,
     this.toolStripComboBoxProtocol,
     this.toolStripSeparator7,
     this.toolStripLabel1,
     this.toolStripComboBoxMethod,
     this.toolStripSeparator8,
     this.toolStripLabel3,
     this.toolStripTextBoxURL,
     this.toolStripSeparator3,
     this.toolStripButtonCookies,
     this.toolStripSeparator9,
     this.toolStripButtonAuthType,
     this.toolStripSeparator5,
     this.toolStripButtonSendRequest,
     this.toolStripSeparator6});
     this.toolStripRequest.Location = new System.Drawing.Point(0, 0);
     this.toolStripRequest.Name = "toolStripRequest";
     this.toolStripRequest.Size = new System.Drawing.Size(898, 25);
     this.toolStripRequest.TabIndex = 0;
     this.toolStripRequest.Text = "toolStrip1";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(46, 22);
     this.toolStripLabel2.Text = "Protocol";
     //
     // toolStripComboBoxProtocol
     //
     this.toolStripComboBoxProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxProtocol.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxProtocol.Items.AddRange(new object[] {
     "HTTP /1.0",
     "HTTP /1.1"});
     this.toolStripComboBoxProtocol.Name = "toolStripComboBoxProtocol";
     this.toolStripComboBoxProtocol.Size = new System.Drawing.Size(80, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
     this.toolStripLabel1.Text = "Method";
     //
     // toolStripComboBoxMethod
     //
     this.toolStripComboBoxMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxMethod.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxMethod.Items.AddRange(new object[] {
     "GET",
     "POST"});
     this.toolStripComboBoxMethod.Name = "toolStripComboBoxMethod";
     this.toolStripComboBoxMethod.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel3.Text = "URL:";
     //
     // toolStripTextBoxURL
     //
     this.toolStripTextBoxURL.Name = "toolStripTextBoxURL";
     this.toolStripTextBoxURL.Size = new System.Drawing.Size(410, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonCookies
     //
     this.toolStripButtonCookies.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCookies.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripButtonCookies.Name = "toolStripButtonCookies";
     this.toolStripButtonCookies.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCookies.Text = "Define Cokies";
     this.toolStripButtonCookies.Click += new System.EventHandler(this.toolStripButtonCookies_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonAuthType
     //
     this.toolStripButtonAuthType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAuthType.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAuthType.Name = "toolStripButtonAuthType";
     this.toolStripButtonAuthType.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonAuthType.Text = "Define Authentication";
     this.toolStripButtonAuthType.Click += new System.EventHandler(this.toolStripButtonAuthType_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonSendRequest
     //
     this.toolStripButtonSendRequest.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonSendRequest.Name = "toolStripButtonSendRequest";
     this.toolStripButtonSendRequest.Size = new System.Drawing.Size(94, 22);
     this.toolStripButtonSendRequest.Text = "Send Request";
     this.toolStripButtonSendRequest.Click += new System.EventHandler(this.toolStripButtonSendRequest_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer4.Size = new System.Drawing.Size(898, 252);
     this.splitContainer4.SplitterDistance = 546;
     this.splitContainer4.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(546, 252);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Request Headers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.comboBoxRequestHeaders);
     this.splitContainer1.Panel1.Controls.Add(this.buttonAddToList);
     this.splitContainer1.Panel1.Controls.Add(this.textBoxHeaderValue);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.listViewRequestHeaders);
     this.splitContainer1.Panel2.Controls.Add(this.buttonDeleteHeader);
     this.splitContainer1.Size = new System.Drawing.Size(540, 233);
     this.splitContainer1.SplitterDistance = 33;
     this.splitContainer1.TabIndex = 1;
     //
     // comboBoxRequestHeaders
     //
     this.comboBoxRequestHeaders.FormattingEnabled = true;
     this.comboBoxRequestHeaders.Location = new System.Drawing.Point(3, 5);
     this.comboBoxRequestHeaders.Name = "comboBoxRequestHeaders";
     this.comboBoxRequestHeaders.Size = new System.Drawing.Size(169, 21);
     this.comboBoxRequestHeaders.TabIndex = 3;
     //
     // buttonAddToList
     //
     this.buttonAddToList.Location = new System.Drawing.Point(450, 3);
     this.buttonAddToList.Name = "buttonAddToList";
     this.buttonAddToList.Size = new System.Drawing.Size(87, 23);
     this.buttonAddToList.TabIndex = 2;
     this.buttonAddToList.Text = "Add to List";
     this.buttonAddToList.UseVisualStyleBackColor = true;
     this.buttonAddToList.Click += new System.EventHandler(this.buttonAddToList_Click);
     //
     // textBoxHeaderValue
     //
     this.textBoxHeaderValue.Location = new System.Drawing.Point(178, 5);
     this.textBoxHeaderValue.Name = "textBoxHeaderValue";
     this.textBoxHeaderValue.Size = new System.Drawing.Size(266, 20);
     this.textBoxHeaderValue.TabIndex = 1;
     //
     // listViewRequestHeaders
     //
     this.listViewRequestHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.listViewRequestHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewRequestHeaders.FullRowSelect = true;
     this.listViewRequestHeaders.GridLines = true;
     this.listViewRequestHeaders.Location = new System.Drawing.Point(0, 0);
     this.listViewRequestHeaders.Name = "listViewRequestHeaders";
     this.listViewRequestHeaders.Size = new System.Drawing.Size(540, 173);
     this.listViewRequestHeaders.TabIndex = 0;
     this.listViewRequestHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewRequestHeaders.View = System.Windows.Forms.View.Details;
     this.listViewRequestHeaders.SelectedIndexChanged += new System.EventHandler(this.listViewRequestHeaders_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Header Name";
     this.columnHeader1.Width = 174;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Header Value";
     this.columnHeader2.Width = 333;
     //
     // buttonDeleteHeader
     //
     this.buttonDeleteHeader.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.buttonDeleteHeader.Enabled = false;
     this.buttonDeleteHeader.Location = new System.Drawing.Point(0, 173);
     this.buttonDeleteHeader.Name = "buttonDeleteHeader";
     this.buttonDeleteHeader.Size = new System.Drawing.Size(540, 23);
     this.buttonDeleteHeader.TabIndex = 1;
     this.buttonDeleteHeader.Text = "Delete Headers";
     this.buttonDeleteHeader.UseVisualStyleBackColor = true;
     this.buttonDeleteHeader.Click += new System.EventHandler(this.buttonDeleteHeader_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.richTextBoxPOST);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(348, 252);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "POST";
     //
     // richTextBoxPOST
     //
     this.richTextBoxPOST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxPOST.Location = new System.Drawing.Point(3, 16);
     this.richTextBoxPOST.Name = "richTextBoxPOST";
     this.richTextBoxPOST.Size = new System.Drawing.Size(342, 233);
     this.richTextBoxPOST.TabIndex = 0;
     this.richTextBoxPOST.Text = "";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage5);
     this.tabControl4.Controls.Add(this.tabPage6);
     this.tabControl4.Controls.Add(this.tabPage7);
     this.tabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl4.Location = new System.Drawing.Point(0, 0);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(912, 256);
     this.tabControl4.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.listViewResponseHeaders);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(904, 230);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "Response Headers";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // listViewResponseHeaders
     //
     this.listViewResponseHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.listViewResponseHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewResponseHeaders.Location = new System.Drawing.Point(3, 3);
     this.listViewResponseHeaders.Name = "listViewResponseHeaders";
     this.listViewResponseHeaders.Size = new System.Drawing.Size(898, 224);
     this.listViewResponseHeaders.TabIndex = 0;
     this.listViewResponseHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewResponseHeaders.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Header Name";
     this.columnHeader3.Width = 229;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Header Value";
     this.columnHeader4.Width = 458;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.richTextBoxSource);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(904, 230);
     this.tabPage6.TabIndex = 1;
     this.tabPage6.Text = "Source Code";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // richTextBoxSource
     //
     this.richTextBoxSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxSource.Location = new System.Drawing.Point(3, 3);
     this.richTextBoxSource.Name = "richTextBoxSource";
     this.richTextBoxSource.Size = new System.Drawing.Size(898, 224);
     this.richTextBoxSource.TabIndex = 0;
     this.richTextBoxSource.Text = "";
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.webBrowserSource);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(904, 230);
     this.tabPage7.TabIndex = 2;
     this.tabPage7.Text = "Browser";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // webBrowserSource
     //
     this.webBrowserSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserSource.Location = new System.Drawing.Point(0, 0);
     this.webBrowserSource.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserSource.Name = "webBrowserSource";
     this.webBrowserSource.Size = new System.Drawing.Size(904, 230);
     this.webBrowserSource.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tabControl1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.tabControl4);
     this.splitContainer3.Size = new System.Drawing.Size(912, 573);
     this.splitContainer3.SplitterDistance = 313;
     this.splitContainer3.TabIndex = 1;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 573);
     this.Controls.Add(this.splitContainer3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmMain";
     this.Text = "Custom Request";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.toolStripRequest.ResumeLayout(false);
     this.toolStripRequest.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tabControl4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #58
0
 /// <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(HtmlEditor));
     this.toolStripToolBar = new System.Windows.Forms.ToolStrip();
     this.toolStripComboBoxName = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripComboBoxSize = new YXControl.HtmlEditor.ToolStripComboBoxEx();
     this.toolStripButtonBold = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonItalic = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonUnderline = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonColor = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparatorFont = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonNumbers = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonBullets = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonOutdent = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonIndent = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparatorFormat = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonLeft = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonCenter = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonRight = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonFull = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparatorAlign = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonLine = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonHyperlink = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPicture = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonUnDo = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonRedo = new System.Windows.Forms.ToolStripButton();
     this.webBrowserBody = new System.Windows.Forms.WebBrowser();
     this.toolStripToolBar.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripToolBar
     //
     this.toolStripToolBar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripToolBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripComboBoxName,
     this.toolStripComboBoxSize,
     this.toolStripButtonBold,
     this.toolStripButtonItalic,
     this.toolStripButtonUnderline,
     this.toolStripButtonColor,
     this.toolStripSeparatorFont,
     this.toolStripButtonNumbers,
     this.toolStripButtonBullets,
     this.toolStripButtonOutdent,
     this.toolStripButtonIndent,
     this.toolStripSeparatorFormat,
     this.toolStripButtonLeft,
     this.toolStripButtonCenter,
     this.toolStripButtonRight,
     this.toolStripButtonFull,
     this.toolStripSeparatorAlign,
     this.toolStripButtonLine,
     this.toolStripButtonHyperlink,
     this.toolStripButtonPicture,
     this.toolStripSeparator1,
     this.toolStripButtonUnDo,
     this.toolStripButtonRedo});
     this.toolStripToolBar.Location = new System.Drawing.Point(0, 0);
     this.toolStripToolBar.Name = "toolStripToolBar";
     this.toolStripToolBar.Size = new System.Drawing.Size(600, 25);
     this.toolStripToolBar.TabIndex = 1;
     this.toolStripToolBar.Text = "Tool Bar";
     //
     // toolStripComboBoxName
     //
     this.toolStripComboBoxName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxName.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.toolStripComboBoxName.MaxDropDownItems = 20;
     this.toolStripComboBoxName.Name = "toolStripComboBoxName";
     this.toolStripComboBoxName.Size = new System.Drawing.Size(100, 25);
     this.toolStripComboBoxName.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxName_SelectedIndexChanged);
     //
     // toolStripComboBoxSize
     //
     this.toolStripComboBoxSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxSize.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.toolStripComboBoxSize.Name = "toolStripComboBoxSize";
     this.toolStripComboBoxSize.Size = new System.Drawing.Size(40, 25);
     this.toolStripComboBoxSize.SelectedIndexChanged += new System.EventHandler(this.toolStripComboBoxSize_SelectedIndexChanged);
     //
     // toolStripButtonBold
     //
     this.toolStripButtonBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonBold.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonBold.Image")));
     this.toolStripButtonBold.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonBold.Name = "toolStripButtonBold";
     this.toolStripButtonBold.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonBold.Text = "Bold";
     this.toolStripButtonBold.ToolTipText = "�Ӵ�";
     this.toolStripButtonBold.Click += new System.EventHandler(this.toolStripButtonBold_Click);
     //
     // toolStripButtonItalic
     //
     this.toolStripButtonItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonItalic.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonItalic.Image")));
     this.toolStripButtonItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonItalic.Name = "toolStripButtonItalic";
     this.toolStripButtonItalic.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonItalic.Text = "Italic";
     this.toolStripButtonItalic.ToolTipText = "�";
     this.toolStripButtonItalic.Click += new System.EventHandler(this.toolStripButtonItalic_Click);
     //
     // toolStripButtonUnderline
     //
     this.toolStripButtonUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonUnderline.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonUnderline.Image")));
     this.toolStripButtonUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonUnderline.Name = "toolStripButtonUnderline";
     this.toolStripButtonUnderline.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonUnderline.Text = "Underline";
     this.toolStripButtonUnderline.ToolTipText = "�»���";
     this.toolStripButtonUnderline.Click += new System.EventHandler(this.toolStripButtonUnderline_Click);
     //
     // toolStripButtonColor
     //
     this.toolStripButtonColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonColor.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonColor.Image")));
     this.toolStripButtonColor.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonColor.Name = "toolStripButtonColor";
     this.toolStripButtonColor.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonColor.Text = "Font Color";
     this.toolStripButtonColor.ToolTipText = "������ɫ";
     this.toolStripButtonColor.Click += new System.EventHandler(this.toolStripButtonColor_Click);
     //
     // toolStripSeparatorFont
     //
     this.toolStripSeparatorFont.Name = "toolStripSeparatorFont";
     this.toolStripSeparatorFont.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonNumbers
     //
     this.toolStripButtonNumbers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonNumbers.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonNumbers.Image")));
     this.toolStripButtonNumbers.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonNumbers.Name = "toolStripButtonNumbers";
     this.toolStripButtonNumbers.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonNumbers.Text = "Format Numbers";
     this.toolStripButtonNumbers.Click += new System.EventHandler(this.toolStripButtonNumbers_Click);
     //
     // toolStripButtonBullets
     //
     this.toolStripButtonBullets.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonBullets.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonBullets.Image")));
     this.toolStripButtonBullets.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonBullets.Name = "toolStripButtonBullets";
     this.toolStripButtonBullets.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonBullets.Text = "Format Bullets";
     this.toolStripButtonBullets.Click += new System.EventHandler(this.toolStripButtonBullets_Click);
     //
     // toolStripButtonOutdent
     //
     this.toolStripButtonOutdent.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonOutdent.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonOutdent.Image")));
     this.toolStripButtonOutdent.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonOutdent.Name = "toolStripButtonOutdent";
     this.toolStripButtonOutdent.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonOutdent.Text = "Decrease Indentation";
     this.toolStripButtonOutdent.Click += new System.EventHandler(this.toolStripButtonOutdent_Click);
     //
     // toolStripButtonIndent
     //
     this.toolStripButtonIndent.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonIndent.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonIndent.Image")));
     this.toolStripButtonIndent.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonIndent.Name = "toolStripButtonIndent";
     this.toolStripButtonIndent.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonIndent.Text = "Increase Indentation";
     this.toolStripButtonIndent.Click += new System.EventHandler(this.toolStripButtonIndent_Click);
     //
     // toolStripSeparatorFormat
     //
     this.toolStripSeparatorFormat.Name = "toolStripSeparatorFormat";
     this.toolStripSeparatorFormat.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonLeft
     //
     this.toolStripButtonLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonLeft.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLeft.Image")));
     this.toolStripButtonLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonLeft.Name = "toolStripButtonLeft";
     this.toolStripButtonLeft.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonLeft.Text = "Align Left";
     this.toolStripButtonLeft.Click += new System.EventHandler(this.toolStripButtonLeft_Click);
     //
     // toolStripButtonCenter
     //
     this.toolStripButtonCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCenter.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonCenter.Image")));
     this.toolStripButtonCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonCenter.Name = "toolStripButtonCenter";
     this.toolStripButtonCenter.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCenter.Text = "Center";
     this.toolStripButtonCenter.Click += new System.EventHandler(this.toolStripButtonCenter_Click);
     //
     // toolStripButtonRight
     //
     this.toolStripButtonRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRight.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRight.Image")));
     this.toolStripButtonRight.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRight.Name = "toolStripButtonRight";
     this.toolStripButtonRight.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRight.Text = "Align Right";
     this.toolStripButtonRight.Click += new System.EventHandler(this.toolStripButtonRight_Click);
     //
     // toolStripButtonFull
     //
     this.toolStripButtonFull.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonFull.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonFull.Image")));
     this.toolStripButtonFull.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonFull.Name = "toolStripButtonFull";
     this.toolStripButtonFull.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonFull.Text = "Justify";
     this.toolStripButtonFull.Click += new System.EventHandler(this.toolStripButtonFull_Click);
     //
     // toolStripSeparatorAlign
     //
     this.toolStripSeparatorAlign.Name = "toolStripSeparatorAlign";
     this.toolStripSeparatorAlign.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonLine
     //
     this.toolStripButtonLine.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonLine.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLine.Image")));
     this.toolStripButtonLine.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonLine.Name = "toolStripButtonLine";
     this.toolStripButtonLine.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonLine.Text = "Insert Horizontal Line";
     this.toolStripButtonLine.Click += new System.EventHandler(this.toolStripButtonLine_Click);
     //
     // toolStripButtonHyperlink
     //
     this.toolStripButtonHyperlink.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonHyperlink.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonHyperlink.Image")));
     this.toolStripButtonHyperlink.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonHyperlink.Name = "toolStripButtonHyperlink";
     this.toolStripButtonHyperlink.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonHyperlink.Text = "Create a Hyperlink";
     this.toolStripButtonHyperlink.ToolTipText = "��������";
     this.toolStripButtonHyperlink.Click += new System.EventHandler(this.toolStripButtonHyperlink_Click);
     //
     // toolStripButtonPicture
     //
     this.toolStripButtonPicture.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonPicture.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPicture.Image")));
     this.toolStripButtonPicture.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonPicture.Name = "toolStripButtonPicture";
     this.toolStripButtonPicture.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonPicture.Text = "Insert Picture";
     this.toolStripButtonPicture.ToolTipText = "����ͼƬ";
     this.toolStripButtonPicture.Click += new System.EventHandler(this.toolStripButtonPicture_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonUnDo
     //
     this.toolStripButtonUnDo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonUnDo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonUnDo.Name = "toolStripButtonUnDo";
     this.toolStripButtonUnDo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonUnDo.ToolTipText = "����";
     this.toolStripButtonUnDo.Click += new System.EventHandler(this.toolStripButtonUnDo_Click);
     //
     // toolStripButtonRedo
     //
     this.toolStripButtonRedo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonRedo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonRedo.Name = "toolStripButtonRedo";
     this.toolStripButtonRedo.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonRedo.ToolTipText = "����";
     this.toolStripButtonRedo.Click += new System.EventHandler(this.toolStripButtonRedo_Click);
     //
     // webBrowserBody
     //
     this.webBrowserBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserBody.Location = new System.Drawing.Point(0, 25);
     this.webBrowserBody.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserBody.Name = "webBrowserBody";
     this.webBrowserBody.Size = new System.Drawing.Size(600, 425);
     this.webBrowserBody.TabIndex = 2;
     this.webBrowserBody.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.webBrowserBody_PreviewKeyDown);
     this.webBrowserBody.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowserBody_DocumentCompleted);
     //
     // HtmlEditor
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.webBrowserBody);
     this.Controls.Add(this.toolStripToolBar);
     this.Name = "HtmlEditor";
     this.Size = new System.Drawing.Size(600, 450);
     this.toolStripToolBar.ResumeLayout(false);
     this.toolStripToolBar.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewResults = new System.Windows.Forms.ListView();
     this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineText = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label_Statistics = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.textBoxSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox_Scope = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripDropDownButton_Options = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripMenuItem_RegExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MatchCase = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WholeWord = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WordStart = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewResults
     //
     this.listViewResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.listViewResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTitle,
     this.columnHeaderLineNumber,
     this.columnHeaderLineText});
     this.listViewResults.FullRowSelect = true;
     this.listViewResults.GridLines = true;
     this.listViewResults.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewResults.Location = new System.Drawing.Point(3, 28);
     this.listViewResults.MultiSelect = false;
     this.listViewResults.Name = "listViewResults";
     this.listViewResults.Size = new System.Drawing.Size(530, 147);
     this.listViewResults.TabIndex = 5;
     this.listViewResults.UseCompatibleStateImageBehavior = false;
     this.listViewResults.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderTitle
     //
     this.columnHeaderTitle.Text = "Script";
     this.columnHeaderTitle.Width = 147;
     //
     // columnHeaderLineNumber
     //
     this.columnHeaderLineNumber.Text = "Line #";
     this.columnHeaderLineNumber.Width = 73;
     //
     // columnHeaderLineText
     //
     this.columnHeaderLineText.Text = "Text";
     this.columnHeaderLineText.Width = 278;
     //
     // label_Statistics
     //
     this.label_Statistics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Statistics.AutoSize = true;
     this.label_Statistics.Location = new System.Drawing.Point(3, 178);
     this.label_Statistics.Name = "label_Statistics";
     this.label_Statistics.Size = new System.Drawing.Size(0, 13);
     this.label_Statistics.TabIndex = 10;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel1.Text = "Find:";
     //
     // textBoxSearch
     //
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(100, 25);
     this.textBoxSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBox_SearchString_KeyDown);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "In:";
     //
     // toolStripComboBox_Scope
     //
     this.toolStripComboBox_Scope.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox_Scope.Items.AddRange(new object[] {
     "Open Scripts",
     "All Scripts"});
     this.toolStripComboBox_Scope.Name = "toolStripComboBox_Scope";
     this.toolStripComboBox_Scope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripDropDownButton_Options
     //
     this.toolStripDropDownButton_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem_RegExp,
     this.toolStripMenuItem_MatchCase,
     this.toolStripMenuItem_WholeWord,
     this.toolStripMenuItem_WordStart});
     this.toolStripDropDownButton_Options.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton_Options.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripDropDownButton_Options.Name = "toolStripDropDownButton_Options";
     this.toolStripDropDownButton_Options.Size = new System.Drawing.Size(62, 22);
     this.toolStripDropDownButton_Options.Text = "Options";
     //
     // toolStripMenuItem_RegExp
     //
     this.toolStripMenuItem_RegExp.CheckOnClick = true;
     this.toolStripMenuItem_RegExp.Name = "toolStripMenuItem_RegExp";
     this.toolStripMenuItem_RegExp.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_RegExp.Text = "RegExp";
     this.toolStripMenuItem_RegExp.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_MatchCase
     //
     this.toolStripMenuItem_MatchCase.CheckOnClick = true;
     this.toolStripMenuItem_MatchCase.Name = "toolStripMenuItem_MatchCase";
     this.toolStripMenuItem_MatchCase.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_MatchCase.Text = "Match Case";
     this.toolStripMenuItem_MatchCase.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WholeWord
     //
     this.toolStripMenuItem_WholeWord.CheckOnClick = true;
     this.toolStripMenuItem_WholeWord.Name = "toolStripMenuItem_WholeWord";
     this.toolStripMenuItem_WholeWord.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WholeWord.Text = "Whole Word";
     this.toolStripMenuItem_WholeWord.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WordStart
     //
     this.toolStripMenuItem_WordStart.CheckOnClick = true;
     this.toolStripMenuItem_WordStart.Name = "toolStripMenuItem_WordStart";
     this.toolStripMenuItem_WordStart.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WordStart.Text = "Word Start";
     this.toolStripMenuItem_WordStart.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.Image = Resources.Find3;
     this.buttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSearch.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.buttonSearch.Size = new System.Drawing.Size(65, 22);
     this.buttonSearch.Text = "Search!";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.textBoxSearch,
     this.toolStripLabel3,
     this.toolStripComboBox_Scope,
     this.toolStripDropDownButton_Options,
     this.buttonSearch});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(536, 25);
     this.toolStrip1.TabIndex = 9;
     this.toolStrip1.Text = "toolStrip1";
     //
     // SearchControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label_Statistics);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.listViewResults);
     this.Name = "SearchControl";
     this.Size = new System.Drawing.Size(536, 191);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <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(EstadosSanitarios_Form));
     this.pn_listado = new System.Windows.Forms.Panel();
     this.ListadoEstados = new System.Windows.Forms.DataGridView();
     this.eSTADODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dESCRIPESTADODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Editar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.Eliminar = new System.Windows.Forms.DataGridViewButtonColumn();
     this.StateBSource = new System.Windows.Forms.BindingSource(this.components);
     this.paginacionEstadoSanitario = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.Btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.buscarLbl = new System.Windows.Forms.ToolStripLabel();
     this.busquedaTxt = new System.Windows.Forms.ToolStripTextBox();
     this.filtrarLbl = new System.Windows.Forms.ToolStripLabel();
     this.criterioCbx = new System.Windows.Forms.ToolStripComboBox();
     this.pn_crear = new System.Windows.Forms.Panel();
     this.crearGbx = new System.Windows.Forms.GroupBox();
     this.Btn_Cancelar = new System.Windows.Forms.Button();
     this.Btn_Crear = new System.Windows.Forms.Button();
     this.txt_Descripcion = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.txt_Nombre = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.pn_editar = new System.Windows.Forms.Panel();
     this.editarGbx = new System.Windows.Forms.GroupBox();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.Btn_Guardar = new System.Windows.Forms.Button();
     this.updateDescripTxt = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.updateNombreTxt = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.eP_errors = new System.Windows.Forms.ErrorProvider(this.components);
     this.pn_listado.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEstados)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StateBSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEstadoSanitario)).BeginInit();
     this.paginacionEstadoSanitario.SuspendLayout();
     this.pn_crear.SuspendLayout();
     this.crearGbx.SuspendLayout();
     this.pn_editar.SuspendLayout();
     this.editarGbx.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).BeginInit();
     this.SuspendLayout();
     //
     // pn_listado
     //
     this.pn_listado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pn_listado.Controls.Add(this.ListadoEstados);
     this.pn_listado.Controls.Add(this.paginacionEstadoSanitario);
     this.pn_listado.Location = new System.Drawing.Point(0, 0);
     this.pn_listado.Name = "pn_listado";
     this.pn_listado.Size = new System.Drawing.Size(691, 278);
     this.pn_listado.TabIndex = 0;
     //
     // ListadoEstados
     //
     this.ListadoEstados.AllowUserToAddRows = false;
     this.ListadoEstados.AllowUserToDeleteRows = false;
     this.ListadoEstados.AutoGenerateColumns = false;
     this.ListadoEstados.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.ListadoEstados.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ListadoEstados.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.eSTADODataGridViewTextBoxColumn,
     this.dESCRIPESTADODataGridViewTextBoxColumn,
     this.Editar,
     this.Eliminar});
     this.ListadoEstados.DataSource = this.StateBSource;
     this.ListadoEstados.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ListadoEstados.Location = new System.Drawing.Point(0, 25);
     this.ListadoEstados.Name = "ListadoEstados";
     this.ListadoEstados.ReadOnly = true;
     this.ListadoEstados.Size = new System.Drawing.Size(687, 249);
     this.ListadoEstados.TabIndex = 5;
     this.ListadoEstados.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Listado_CellValueChanged);
     //
     // eSTADODataGridViewTextBoxColumn
     //
     this.eSTADODataGridViewTextBoxColumn.DataPropertyName = "ESTADO";
     this.eSTADODataGridViewTextBoxColumn.HeaderText = "Estado";
     this.eSTADODataGridViewTextBoxColumn.Name = "eSTADODataGridViewTextBoxColumn";
     this.eSTADODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // dESCRIPESTADODataGridViewTextBoxColumn
     //
     this.dESCRIPESTADODataGridViewTextBoxColumn.DataPropertyName = "DESCRIPESTADO";
     this.dESCRIPESTADODataGridViewTextBoxColumn.HeaderText = "Descripción estado";
     this.dESCRIPESTADODataGridViewTextBoxColumn.Name = "dESCRIPESTADODataGridViewTextBoxColumn";
     this.dESCRIPESTADODataGridViewTextBoxColumn.ReadOnly = true;
     //
     // Editar
     //
     this.Editar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Editar.HeaderText = "";
     this.Editar.Name = "Editar";
     this.Editar.ReadOnly = true;
     this.Editar.Text = "Editar";
     this.Editar.UseColumnTextForButtonValue = true;
     this.Editar.Width = 5;
     //
     // Eliminar
     //
     this.Eliminar.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCellsExceptHeader;
     this.Eliminar.DataPropertyName = "ESTADO";
     this.Eliminar.HeaderText = "";
     this.Eliminar.Name = "Eliminar";
     this.Eliminar.ReadOnly = true;
     this.Eliminar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.Eliminar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.Eliminar.Text = "Eliminar";
     this.Eliminar.UseColumnTextForButtonValue = true;
     this.Eliminar.Width = 5;
     //
     // StateBSource
     //
     this.StateBSource.DataSource = typeof(SIFCA_DAL.ESTADOSANITARIO);
     //
     // paginacionEstadoSanitario
     //
     this.paginacionEstadoSanitario.AddNewItem = null;
     this.paginacionEstadoSanitario.BindingSource = this.StateBSource;
     this.paginacionEstadoSanitario.CountItem = this.bindingNavigatorCountItem;
     this.paginacionEstadoSanitario.DeleteItem = null;
     this.paginacionEstadoSanitario.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Btn_nuevo,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.buscarLbl,
     this.busquedaTxt,
     this.filtrarLbl,
     this.criterioCbx});
     this.paginacionEstadoSanitario.Location = new System.Drawing.Point(0, 0);
     this.paginacionEstadoSanitario.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.paginacionEstadoSanitario.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.paginacionEstadoSanitario.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.paginacionEstadoSanitario.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.paginacionEstadoSanitario.Name = "paginacionEstadoSanitario";
     this.paginacionEstadoSanitario.PositionItem = this.bindingNavigatorPositionItem;
     this.paginacionEstadoSanitario.Size = new System.Drawing.Size(687, 25);
     this.paginacionEstadoSanitario.TabIndex = 4;
     this.paginacionEstadoSanitario.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(37, 22);
     this.bindingNavigatorCountItem.Text = "de {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Número total de elementos";
     //
     // Btn_nuevo
     //
     this.Btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.Btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("Btn_nuevo.Image")));
     this.Btn_nuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Btn_nuevo.Name = "Btn_nuevo";
     this.Btn_nuevo.Size = new System.Drawing.Size(46, 22);
     this.Btn_nuevo.Text = "Nuevo";
     this.Btn_nuevo.Click += new System.EventHandler(this.Btn_nuevo_Click);
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Mover primero";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Mover anterior";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Posición";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Posición actual";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Mover siguiente";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Mover último";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // buscarLbl
     //
     this.buscarLbl.Name = "buscarLbl";
     this.buscarLbl.Size = new System.Drawing.Size(45, 22);
     this.buscarLbl.Text = "Buscar:";
     //
     // busquedaTxt
     //
     this.busquedaTxt.Name = "busquedaTxt";
     this.busquedaTxt.Size = new System.Drawing.Size(150, 25);
     this.busquedaTxt.TextChanged += new System.EventHandler(this.busquedaTxt_TextChanged);
     //
     // filtrarLbl
     //
     this.filtrarLbl.Name = "filtrarLbl";
     this.filtrarLbl.Size = new System.Drawing.Size(92, 22);
     this.filtrarLbl.Text = "Filtrar busqueda";
     //
     // criterioCbx
     //
     this.criterioCbx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.criterioCbx.Items.AddRange(new object[] {
     "Descripcion"});
     this.criterioCbx.Name = "criterioCbx";
     this.criterioCbx.Size = new System.Drawing.Size(121, 25);
     //
     // pn_crear
     //
     this.pn_crear.Controls.Add(this.crearGbx);
     this.pn_crear.Location = new System.Drawing.Point(0, 0);
     this.pn_crear.Name = "pn_crear";
     this.pn_crear.Size = new System.Drawing.Size(356, 209);
     this.pn_crear.TabIndex = 1;
     //
     // crearGbx
     //
     this.crearGbx.Controls.Add(this.Btn_Cancelar);
     this.crearGbx.Controls.Add(this.Btn_Crear);
     this.crearGbx.Controls.Add(this.txt_Descripcion);
     this.crearGbx.Controls.Add(this.label2);
     this.crearGbx.Controls.Add(this.txt_Nombre);
     this.crearGbx.Controls.Add(this.label1);
     this.crearGbx.Location = new System.Drawing.Point(9, 4);
     this.crearGbx.Name = "crearGbx";
     this.crearGbx.Size = new System.Drawing.Size(335, 192);
     this.crearGbx.TabIndex = 2;
     this.crearGbx.TabStop = false;
     this.crearGbx.Text = "Crear Estado Sanitario";
     //
     // Btn_Cancelar
     //
     this.Btn_Cancelar.Location = new System.Drawing.Point(219, 146);
     this.Btn_Cancelar.Name = "Btn_Cancelar";
     this.Btn_Cancelar.Size = new System.Drawing.Size(81, 23);
     this.Btn_Cancelar.TabIndex = 5;
     this.Btn_Cancelar.Text = "Cancelar";
     this.Btn_Cancelar.UseVisualStyleBackColor = true;
     this.Btn_Cancelar.Click += new System.EventHandler(this.btn_Cancelar_Click);
     //
     // Btn_Crear
     //
     this.Btn_Crear.Location = new System.Drawing.Point(117, 146);
     this.Btn_Crear.Name = "Btn_Crear";
     this.Btn_Crear.Size = new System.Drawing.Size(79, 23);
     this.Btn_Crear.TabIndex = 4;
     this.Btn_Crear.Text = "Crear";
     this.Btn_Crear.UseVisualStyleBackColor = true;
     this.Btn_Crear.Click += new System.EventHandler(this.Btn_Crear_Click);
     //
     // txt_Descripcion
     //
     this.txt_Descripcion.Location = new System.Drawing.Point(121, 66);
     this.txt_Descripcion.MaxLength = 500;
     this.txt_Descripcion.Multiline = true;
     this.txt_Descripcion.Name = "txt_Descripcion";
     this.txt_Descripcion.Size = new System.Drawing.Size(179, 65);
     this.txt_Descripcion.TabIndex = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 66);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(63, 13);
     this.label2.TabIndex = 2;
     this.label2.Text = "Descripcion";
     //
     // txt_Nombre
     //
     this.txt_Nombre.Location = new System.Drawing.Point(121, 28);
     this.txt_Nombre.MaxLength = 2;
     this.txt_Nombre.Name = "txt_Nombre";
     this.txt_Nombre.Size = new System.Drawing.Size(174, 20);
     this.txt_Nombre.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 28);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(108, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Abreviatura (2 Letras)";
     //
     // pn_editar
     //
     this.pn_editar.Controls.Add(this.editarGbx);
     this.pn_editar.Location = new System.Drawing.Point(0, 0);
     this.pn_editar.Name = "pn_editar";
     this.pn_editar.Size = new System.Drawing.Size(300, 173);
     this.pn_editar.TabIndex = 2;
     //
     // editarGbx
     //
     this.editarGbx.Controls.Add(this.btnCancelar);
     this.editarGbx.Controls.Add(this.Btn_Guardar);
     this.editarGbx.Controls.Add(this.updateDescripTxt);
     this.editarGbx.Controls.Add(this.label6);
     this.editarGbx.Controls.Add(this.updateNombreTxt);
     this.editarGbx.Controls.Add(this.label3);
     this.editarGbx.Location = new System.Drawing.Point(0, 0);
     this.editarGbx.Name = "editarGbx";
     this.editarGbx.Size = new System.Drawing.Size(301, 174);
     this.editarGbx.TabIndex = 29;
     this.editarGbx.TabStop = false;
     this.editarGbx.Text = "Editar Estado Sanitario";
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(202, 141);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 23);
     this.btnCancelar.TabIndex = 1;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.Btn_CancelarUpdate_Click);
     //
     // Btn_Guardar
     //
     this.Btn_Guardar.Location = new System.Drawing.Point(17, 141);
     this.Btn_Guardar.Name = "Btn_Guardar";
     this.Btn_Guardar.Size = new System.Drawing.Size(75, 23);
     this.Btn_Guardar.TabIndex = 0;
     this.Btn_Guardar.Text = "Guardar";
     this.Btn_Guardar.UseVisualStyleBackColor = true;
     this.Btn_Guardar.Click += new System.EventHandler(this.Btn_guardar_Click);
     //
     // updateDescripTxt
     //
     this.updateDescripTxt.Location = new System.Drawing.Point(93, 63);
     this.updateDescripTxt.MaxLength = 500;
     this.updateDescripTxt.Multiline = true;
     this.updateDescripTxt.Name = "updateDescripTxt";
     this.updateDescripTxt.ShortcutsEnabled = false;
     this.updateDescripTxt.Size = new System.Drawing.Size(187, 72);
     this.updateDescripTxt.TabIndex = 7;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(14, 63);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(63, 13);
     this.label6.TabIndex = 6;
     this.label6.Text = "Descripción";
     //
     // updateNombreTxt
     //
     this.updateNombreTxt.Location = new System.Drawing.Point(93, 34);
     this.updateNombreTxt.Name = "updateNombreTxt";
     this.updateNombreTxt.ReadOnly = true;
     this.updateNombreTxt.Size = new System.Drawing.Size(187, 20);
     this.updateNombreTxt.TabIndex = 5;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(13, 34);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Nombre";
     //
     // eP_errors
     //
     this.eP_errors.ContainerControl = this;
     //
     // EstadosSanitarios_Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(702, 286);
     this.Controls.Add(this.pn_editar);
     this.Controls.Add(this.pn_crear);
     this.Controls.Add(this.pn_listado);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "EstadosSanitarios_Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Estados Sanitarios";
     this.pn_listado.ResumeLayout(false);
     this.pn_listado.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ListadoEstados)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StateBSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paginacionEstadoSanitario)).EndInit();
     this.paginacionEstadoSanitario.ResumeLayout(false);
     this.paginacionEstadoSanitario.PerformLayout();
     this.pn_crear.ResumeLayout(false);
     this.crearGbx.ResumeLayout(false);
     this.crearGbx.PerformLayout();
     this.pn_editar.ResumeLayout(false);
     this.editarGbx.ResumeLayout(false);
     this.editarGbx.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.eP_errors)).EndInit();
     this.ResumeLayout(false);
 }