Наследование: ToolStripDropDownItem
 private static ToolBarState GetSplitButtonToolBarState(ToolStripSplitButton button, bool dropDownButton)
 {
     ToolBarState normal = ToolBarState.Normal;
     if (button != null)
     {
         if (!button.Enabled)
         {
             return ToolBarState.Disabled;
         }
         if (dropDownButton)
         {
             if (button.DropDownButtonPressed || button.ButtonPressed)
             {
                 return ToolBarState.Pressed;
             }
             if (!button.DropDownButtonSelected && !button.ButtonSelected)
             {
                 return normal;
             }
             return ToolBarState.Hot;
         }
         if (button.ButtonPressed)
         {
             return ToolBarState.Pressed;
         }
         if (button.ButtonSelected)
         {
             normal = ToolBarState.Hot;
         }
     }
     return normal;
 }
 public IProgress<ProgressEventArgs> NewProgress()
 {
     var progressBar = new ToolStripProgressBar();
     var cancelButton = new ToolStripSplitButton { DropDownButtonWidth = 0, Text = "Cancel" };
     cancelButton.ButtonClick += (sender, e) => ((ToolStripItem)sender).Enabled = false;
     StatusBar.AddRange(new ToolStripItem[] { progressBar, cancelButton });
     var progress = new Progress<ProgressEventArgs>((e) =>
     {
         if (e.Continue)
         {
             e.Continue = e.Index < e.Count && cancelButton.Enabled;
             if (e.Continue)
             {
                 progressBar.Maximum = e.Count;
                 progressBar.Value = e.Index;
                 if (e.Success)
                     Model.Modified = true;
             }
             else
             {
                 StatusBar.Remove(cancelButton);
                 StatusBar.Remove(progressBar);
             }
         }
     });
     return progress;
 }
Пример #3
0
        public static void Init(ToolStripSplitButton btnHost)
        {
            if(btnHost == null) throw new ArgumentNullException("btnHost");
            m_btnItemsHost = btnHost;

            m_btnItemsHost.DropDownOpening += OnMenuOpening;
        }
Пример #4
0
        public BaseMainAppForm()
        {
            InitializeComponent();
            //if (CreateWindowNotClosable) NotClosable = true;
            //
            // eventWarrningButton
            //
            this.eventWarrningButton = new System.Windows.Forms.ToolStripSplitButton();
            this.eventWarrningButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            //this.eventWarrningButton.Enabled = false;
            this.eventWarrningButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.eventWarrningButton.Name   = "eventWarrningButton";
            this.eventWarrningButton.Size   = new System.Drawing.Size(19, 23);
            this.eventWarrningButton.Text   = "toolStripSplitButton1";
            this.eventWarrningButton.Click += eventWarrningButton_ButtonClick;
            setEventWarrningButton(false);
            ToolStripItem item = new ToolStripMenuItem();

            item.Text   = "Notifications";
            item.Click += (s1, em) =>
            {
                try
                {
                    CreateList(typeof(JNotification));
                }
                catch (Exception ex)
                {
                    Log.ShowError(ex);
                }
            };
            eventWarrningButton.DropDownItems.Add(item);


            this.notificationTimer          = new System.Windows.Forms.Timer(this.components);
            this.notificationTimer.Interval = 3000;
            this.notificationTimer.Tick    += new System.EventHandler(this.notificationTimer_Tick);

            AppManager.Instance.RegisterDocPanelContainer(this);

            Text = Text + ((DocPanelIndex > 0) ? (" " + DocPanelIndex) : "");//index exists after registration in AppManager

            this.Load        += BaseMainAppForm_Load;
            this.FormClosing += BaseMainAppForm_FormClosing;

            JSetting s = FrwConfig.Instance.GetProperty(FrwSimpleWinCRUDConfig.APPLICATION_FONT);

            if (s != null)
            {
                if (s.Value == null)
                {
                    s.Value = this.Font;
                }
                s.ValueChanged += FontSetting_ValueChanged;
            }

            //create panes
            m_deserializeDockContent = new DeserializeDockContent(GetContentFromPersistString);
        }
Пример #5
0
        public UndoManager(ToolStripSplitButton UndoButton, ToolStripSplitButton RedoButton, LevelEditorControl editor)
        {
            undo = UndoButton;
            redo = RedoButton;
            EdControl = editor;

            undo.ButtonClick += new EventHandler(onUndoLast);
            redo.ButtonClick += new EventHandler(onRedoLast);
        }
Пример #6
0
 /// <summary>
 /// Применяет пререданный отфильтрованный список состояний к компоненту формы 
 /// </summary>
 /// <param name="Filter">Фильтр-компонент формы</param>
 /// <param name="FilterObjectStates">Переданный отфильтрованный список</param>
 public void GetFilterForObjectState(ToolStripSplitButton Filter, ArrayList FilterObjectStates)
 {
     if ((Filter == null) || (FilterObjectStates == null))
         return;
     for (ObjectState objectState = ObjectState.Current; objectState <= ObjectState.Canceled; objectState++)
     {
         (Filter.DropDownItems[(int)objectState] as ToolStripMenuItem).Checked = FilterObjectStates.Contains(objectState);
     }
 }
Пример #7
0
 public bool Assign(string value, ToolStripSplitButton item)
 {
     if (Assign(value, item.PerformButtonClick))
     {
         item.AutoToolTip = true;
         item.ToolTipText = value;
         return true;
     }
     return false;
 }
Пример #8
0
        public static void Release()
        {
            if(m_btnItemsHost != null)
            {
                Clear();
                m_btnItemsHost.DropDownOpening -= OnMenuOpening;

                m_btnItemsHost = null;
            }
        }
        private void Initialize ()
        {
            _explorerStrip.Items.Clear();

            List<DataNode> ancestry = new List<DataNode>();
            DataNode node = _rootNode;

            while (node != null) {
                ancestry.Add(node);
                node = node.Parent;
            }

            ancestry.Reverse();

            foreach (DataNode item in ancestry) {
                ToolStripSplitButton itemButton = new ToolStripSplitButton(item.NodePathName) {
                    Tag = item,
                };
                itemButton.ButtonClick += (s, e) => {
                    ToolStripSplitButton button = s as ToolStripSplitButton;
                    if (button != null)
                        SearchRoot = button.Tag as DataNode;
                };
                itemButton.DropDown.ImageList = _iconList;

                if (_explorerStrip.Items.Count == 0)
                    itemButton.ImageIndex = _registry.Lookup(item.GetType());

                if (!item.IsExpanded)
                    item.Expand();

                foreach (DataNode subItem in item.Nodes) {
                    if (!subItem.IsContainerType)
                        continue;

                    ToolStripMenuItem menuItem = new ToolStripMenuItem(subItem.NodePathName) {
                        ImageIndex = _registry.Lookup(subItem.GetType()),
                        Tag = subItem,
                    };
                    menuItem.Click += (s, e) => {
                        ToolStripMenuItem mItem = s as ToolStripMenuItem;
                        if (mItem != null)
                            SearchRoot = mItem.Tag as DataNode;
                    };

                    if (ancestry.Contains(subItem))
                        menuItem.Font = new Font(menuItem.Font, FontStyle.Bold);

                    itemButton.DropDownItems.Add(menuItem);
                }

                _explorerStrip.Items.Add(itemButton);
            }
        }
Пример #10
0
 public UndoRedoButtons(UndoManager undoManager,
     ToolStripMenuItem undoMenuItem, ToolStripSplitButton undoButton,
     ToolStripMenuItem redoMenuItem, ToolStripSplitButton redoButton,
     Action<Action> runUIAction)
 {
     _undoManager = undoManager;
     _undoMenuItem = undoMenuItem;
     _undoButton = undoButton;
     _redoMenuItem = redoMenuItem;
     _redoButton = redoButton;
     _runUIAction = runUIAction;
 }
Пример #11
0
        public ToolStripConnectionGui()
        {
            this.mButtonConnect = new ToolStripSplitButton()
            {
                Text = "Connect"
            };
            this.mButtonConnect.ButtonClick += new EventHandler(mButtonConnect_Click);

            this.mComboBoxPort = new ToolStripComboBox()
            {
                ToolTipText = "Port name",
                Size = new Size(300, 23),
                DropDownStyle = ComboBoxStyle.DropDownList
            };
            this.mComboBoxPort.SelectedIndexChanged += new EventHandler(mComboBoxPort_SelectedIndexChanged);

            this.mComboBoxBaudate = new ToolStripComboBox()
            {
                ToolTipText = "Baudrate",
                DropDownStyle = ComboBoxStyle.DropDownList
            };
            this.mComboBoxBaudate.SelectedIndexChanged += new EventHandler(mComboBoxBaudate_SelectedIndexChanged);

            this.mComboBoxParity = new ToolStripComboBox()
            {
                ToolTipText = "Parity",
                DropDownStyle = ComboBoxStyle.DropDownList
            };
            this.mComboBoxParity.SelectedIndexChanged += new EventHandler(mComboBoxParity_SelectedIndexChanged);

            this.mComboBoxStopBits = new ToolStripComboBox()
            {
                ToolTipText = "Stop bits",
                DropDownStyle = ComboBoxStyle.DropDownList
            };
            this.mComboBoxStopBits.SelectedIndexChanged += new EventHandler(mComboBoxStopBits_SelectedIndexChanged);

            this.mMenuItemRtsEnable = new ToolStripMenuItem("RTS");
            this.mMenuItemRtsEnable.Click += new EventHandler(mMenuItemRtsEnable_Click);

            this.mMenuItemDtrEnable = new ToolStripMenuItem("DTR");
            this.mMenuItemDtrEnable.Click += new EventHandler(mMenuItemDtrEnable_Click);

            this.Items.Add(this.mButtonConnect);
            this.mButtonConnect.DropDownItems.AddRange(new ToolStripItem[] { this.mComboBoxPort, this.mComboBoxBaudate, this.mComboBoxParity, this.mComboBoxStopBits, this.mMenuItemRtsEnable, this.mMenuItemDtrEnable });

            this.mWorker = null;
        }
Пример #12
0
        public void AddMenuItem(string text, EventHandler callback)
        {
            Debug.Assert(!_handlermap.Keys.Contains(text));

            _handlermap[text] = callback;
            if (_handlermap.Count == 1)
            {
                _splitbutton = new System.Windows.Forms.ToolStripSplitButton();
                _splitbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
                _splitbutton.Text         = text;
                _splitbutton.ButtonClick += new EventHandler(button_Click);
                this.Items.Add(_splitbutton);
            }
            else
            {
                System.Windows.Forms.ToolStripMenuItem item = new System.Windows.Forms.ToolStripMenuItem();
                item.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
                item.Text         = text;
                item.Click       += new EventHandler(item_Click);
                this._splitbutton.DropDownItems.Add(item);
            }
        }
Пример #13
0
        /// <summary>
        /// Draws a Toolstrip split-button
        /// </summary>
        /// <param name="Item">The Toolstrip split-button</param>
        /// <param name="Link">The Graphics object to handle</param>
        /// <param name="Parent">The parent Toolstrip</param>
        public void IDrawToolstripSplitButton(ToolStripSplitButton Item, Graphics Link, ToolStrip Parent)
        {
            if (Item.Selected || Item.DropDownButtonPressed || Item.ButtonPressed)
            {
                Rectangle Area = new Rectangle(
                                        new Point(0, 0),
                                        new Size(Item.Bounds.Size.Width - 1, Item.Bounds.Size.Height - 1)
                                        );

                Blend BackBlend = GetBlend(Item, ButtonType.SplitButton);
                Color[] NormalRender = new Color[] { _sBtnManager.HoverBackgroundTop, _sBtnManager.HoverBackgroundBottom };
                Color[] Render = GetButtonBackColor(Item, ButtonType.SplitButton);

                using (GraphicsPath Path = CreateDrawingPath(Area, _sBtnManager.Curve))
                {
                    Link.SetClip(Path);

                    if (!Item.DropDownButtonPressed)
                    {
                        PaintBackground(
                                        Link,
                                        Area,
                                        NormalRender[0],
                                        NormalRender[1],
                                        _sBtnManager.BackgroundAngle,
                                        BackBlend
                                        );
                    }
                    else
                    {
                        PaintBackground(
                                        Link,
                                        Area,
                                        Render[0],
                                        Render[1]
                                        );
                    }

                    if (Item.ButtonPressed)
                    {
                        Rectangle ButtonArea = new Rectangle(
                                                    new Point(0, 0),
                                                    new Size(Item.ButtonBounds.Width, Item.ButtonBounds.Height - 1)
                                                    );

                        PaintBackground(
                                        Link,
                                        ButtonArea,
                                        Render[0],
                                        Render[1],
                                        _sBtnManager.BackgroundAngle,
                                        _sBtnManager.BackgroundBlend
                                        );
                    }

                    Link.ResetClip();

                    Link.SmoothingMode = SmoothingMode.AntiAlias;

                    using (GraphicsPath OBPath = CreateDrawingPath(Area, _sBtnManager.Curve))
                    {
                        Color TopColor = (Item.DropDownButtonPressed ? _mnuManager.MenustripButtonBorder : _sBtnManager.BorderTop);
                        Color BottomColor = (Item.DropDownButtonPressed ? _mnuManager.MenustripButtonBorder : _sBtnManager.BorderBottom);

                        PaintBorder(
                                    Link,
                                    OBPath,
                                    Area,
                                    TopColor,
                                    BottomColor,
                                    _sBtnManager.BorderAngle,
                                    _sBtnManager.BorderBlend
                                    );

                        OBPath.Dispose();
                    }

                    if (!Item.DropDownButtonPressed)
                    {
                        Area.Inflate(-1, -1);

                        using (GraphicsPath IBPath = CreateDrawingPath(Area, _sBtnManager.Curve))
                        {
                            using (SolidBrush InnerBorder = new SolidBrush(_sBtnManager.InnerBorder))
                            {
                                PaintBorder(
                                            Link,
                                            IBPath,
                                            InnerBorder
                                            );

                                Link.DrawRectangle(
                                                new Pen(_sBtnManager.InnerBorder),
                                                new Rectangle(
                                                            Item.ButtonBounds.Width,
                                                            1,
                                                            2,
                                                            Item.ButtonBounds.Height - 3
                                                            )
                                                    );

                                InnerBorder.Dispose();
                            }
                        }

                        using (LinearGradientBrush SplitLine = new LinearGradientBrush(
                                                                            new Rectangle(0, 0, 1, Item.Height),
                                                                            _sBtnManager.BorderTop,
                                                                            _sBtnManager.BorderBottom,
                                                                            _sBtnManager.BackgroundAngle
                                                                            ))
                        {
                            if (_sBtnManager.BackgroundBlend != null)
                            {
                                SplitLine.Blend = _sBtnManager.BackgroundBlend;
                            }

                            Link.DrawLine(
                                        new Pen(SplitLine),
                                        Item.ButtonBounds.Width + 1,
                                        0,
                                        Item.ButtonBounds.Width + 1,
                                        Item.Height - 1
                                        );

                            SplitLine.Dispose();
                        }
                    }

                    Link.SmoothingMode = SmoothingMode.Default;
                }
            }

            Int32 ArrowSize = 5;

            if (
                (_sBtnManager.ArrowDisplay == ArrowDisplay.Always) ||
                (_sBtnManager.ArrowDisplay == ArrowDisplay.Hover && Item.Selected)
                )
            {
                using (GraphicsPath TrianglePath = CreateTrianglePath(
                                                new Rectangle(
                                                        Item.DropDownButtonBounds.Left + (ArrowSize / 2) - 1,
                                                        (Item.DropDownButtonBounds.Height / 2) - (ArrowSize / 2) - 3,
                                                        ArrowSize * 2,
                                                        ArrowSize * 2
                                                        ),
                                                ArrowSize,
                                                ArrowDirection.Down
                                                ))
                {
                    Link.FillPath(new SolidBrush(_sBtnManager.ArrowColor), TrianglePath);

                    TrianglePath.Dispose();
                }

            }
        }
Пример #14
0
 private void CreatePluginItem() {
     if((pluginManager != null) && (PluginManager.ActivatedButtonsOrder.Count > iPluginCreatingIndex)) {
         string pluginID = string.Empty;
         try {
             int num = 0x10000 + iPluginCreatingIndex;
             pluginID = PluginManager.ActivatedButtonsOrder[iPluginCreatingIndex];
             bool flag = (ConfigValues[0] & 0x20) == 0x20;
             bool flag2 = (ConfigValues[0] & 0x10) == 0x10;
             PluginInformation pi = PluginManager.PluginInformations
                     .FirstOrDefault(info => info.PluginID == pluginID);
             if(pi != null) {
                 Plugin plugin;
                 pluginManager.TryGetPlugin(pluginID, out plugin);
                 if(plugin == null) {
                     plugin = pluginManager.Load(pi, null);
                 }
                 if(plugin != null) {
                     bool flag3 = false;
                     IBarDropButton instance = plugin.Instance as IBarDropButton;
                     if(instance != null) {
                         instance.InitializeItem();
                         if(instance.IsSplitButton) {
                             ToolStripSplitButton button2 = new ToolStripSplitButton(instance.Text);
                             button2.ImageScaling = ToolStripItemImageScaling.None;
                             button2.DropDownButtonWidth = LargeButton ? 14 : 11;
                             if(flag2) {
                                 button2.DisplayStyle = instance.ShowTextLabel ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             else {
                                 button2.DisplayStyle = flag ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             button2.ToolTipText = instance.Text;
                             button2.Image = instance.GetImage(LargeButton);
                             button2.Tag = num;
                             DropDownMenuReorderable reorderable = new DropDownMenuReorderable(components);
                             button2.DropDown = reorderable;
                             button2.DropDownOpening += pluginDropDown_DropDownOpening;
                             button2.ButtonClick += pluginButton_ButtonClick;
                             reorderable.ItemClicked += pluginDropDown_ItemClicked;
                             reorderable.ItemRightClicked += pluginDropDown_ItemRightClicked;
                             toolStrip.Items.Add(button2);
                         }
                         else {
                             ToolStripDropDownButton button3 = new ToolStripDropDownButton(instance.Text);
                             button3.ImageScaling = ToolStripItemImageScaling.None;
                             if(flag2) {
                                 button3.DisplayStyle = instance.ShowTextLabel ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             else {
                                 button3.DisplayStyle = flag ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             button3.ToolTipText = instance.Text;
                             button3.Image = instance.GetImage(LargeButton);
                             button3.Tag = num;
                             DropDownMenuReorderable reorderable2 = new DropDownMenuReorderable(components);
                             button3.DropDown = reorderable2;
                             button3.DropDownOpening += pluginDropDown_DropDownOpening;
                             reorderable2.ItemClicked += pluginDropDown_ItemClicked;
                             reorderable2.ItemRightClicked += pluginDropDown_ItemRightClicked;
                             toolStrip.Items.Add(button3);
                         }
                         flag3 = true;
                     }
                     else {
                         IBarButton button4 = plugin.Instance as IBarButton;
                         if(button4 != null) {
                             button4.InitializeItem();
                             ToolStripButton button5 = new ToolStripButton(button4.Text);
                             button5.ImageScaling = ToolStripItemImageScaling.None;
                             if(flag2) {
                                 button5.DisplayStyle = button4.ShowTextLabel ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             else {
                                 button5.DisplayStyle = flag ? ToolStripItemDisplayStyle.ImageAndText : ToolStripItemDisplayStyle.Image;
                             }
                             button5.ToolTipText = button4.Text;
                             button5.Image = button4.GetImage(LargeButton);
                             button5.Tag = num;
                             button5.Click += pluginButton_ButtonClick;
                             toolStrip.Items.Add(button5);
                             flag3 = true;
                         }
                         else {
                             IBarCustomItem item = plugin.Instance as IBarCustomItem;
                             if(item != null) {
                                 DisplayStyle displayStyle = flag2 ? DisplayStyle.SelectiveText : (flag ? DisplayStyle.ShowTextLabel : DisplayStyle.NoLabel);
                                 ToolStripItem item2 = item.CreateItem(LargeButton, displayStyle);
                                 if(item2 != null) {
                                     item2.ImageScaling = ToolStripItemImageScaling.None;
                                     item2.Tag = num;
                                     toolStrip.Items.Add(item2);
                                     flag3 = true;
                                     lstPluginCustomItem.Add(item2);
                                 }
                             }
                             else {
                                 IBarMultipleCustomItems items = plugin.Instance as IBarMultipleCustomItems;
                                 if(items != null) {
                                     DisplayStyle style2 = flag2 ? DisplayStyle.SelectiveText : (flag ? DisplayStyle.ShowTextLabel : DisplayStyle.NoLabel);
                                     int index = pluginManager.IncrementBackgroundMultiple(pi);
                                     if(index == 0) {
                                         List<int> list;
                                         int[] order = null;
                                         if(pluginManager.TryGetMultipleOrder(pi.PluginID, out list)) {
                                             order = list.ToArray();
                                         }
                                         items.Initialize(order);
                                     }
                                     ToolStripItem item3 = items.CreateItem(LargeButton, style2, index);
                                     if(item3 != null) {
                                         item3.Tag = num;
                                         toolStrip.Items.Add(item3);
                                         flag3 = true;
                                         lstPluginCustomItem.Add(item3);
                                     }
                                 }
                             }
                         }
                     }
                     if(flag3 && ((pi.PluginType == PluginType.Background) || (pi.PluginType == PluginType.BackgroundMultiple))) {
                         plugin.BackgroundButtonEnabled = true;
                     }
                 }
             }
         }
         catch(Exception exception) {
             PluginManager.HandlePluginException(exception, ExplorerHandle, pluginID, "Loading plugin button.");
         }
         finally {
             iPluginCreatingIndex++;
         }
     }
 }
Пример #15
0
 private void CopyFilter(ToolStripSplitButton Filter, ToolStripSplitButton TargetFilter)
 {
     for (int i = 0; i < Filter.DropDownItems.Count; i++)
     {
         (TargetFilter.DropDownItems[i] as ToolStripMenuItem).Checked =
             (Filter.DropDownItems[i] as ToolStripMenuItem).Checked;
     }
 }
Пример #16
0
        private void DrawGradientToolSplitItem(Graphics g,
                                               ToolStripSplitButton splitButton,
                                               GradientItemColors colorsButton,
                                               GradientItemColors colorsDrop,
                                               GradientItemColors colorsSplit)
        {
            // Create entire area and just the drop button area rectangles
            Rectangle backRect = new Rectangle(Point.Empty, splitButton.Bounds.Size);
            Rectangle backRectDrop = splitButton.DropDownButtonBounds;

            // Cannot paint zero sized areas
            if ((backRect.Width > 0) && (backRectDrop.Width > 0) &&
                (backRect.Height > 0) && (backRectDrop.Height > 0))
            {
                // Area that is the normal button starts as everything
                Rectangle backRectButton = backRect;

                // The X offset to draw the split line
                int splitOffset;

                // Is the drop button on the right hand side of entire area?
                if (backRectDrop.X > 0)
                {
                    backRectButton.Width = backRectDrop.Left;
                    backRectDrop.X -= 1;
                    backRectDrop.Width++;
                    splitOffset = backRectDrop.X;
                }
                else
                {
                    backRectButton.Width -= backRectDrop.Width - 2;
                    backRectButton.X = backRectDrop.Right - 1;
                    backRectDrop.Width++;
                    splitOffset = backRectDrop.Right - 1;
                }

                // Create border path around the item
                using (GraphicsPath borderPath = this.CreateBorderPath(backRect, _cutMenuItemBack))
                {
                    // Draw the normal button area background
                    this.DrawGradientBack(g, backRectButton, colorsButton);

                    // Draw the drop button area background
                    this.DrawGradientBack(g, backRectDrop, colorsDrop);

                    // Draw the split line between the areas
                    using (
                        LinearGradientBrush splitBrush =
                            new LinearGradientBrush(
                                new Rectangle(backRect.X + splitOffset, backRect.Top, 1, backRect.Height + 1),
                                colorsSplit.Border1, colorsSplit.Border2, 90f))
                    {
                        // Sigma curve, so go from color1 to color2 and back to color1 again
                        splitBrush.SetSigmaBellShape(0.5f);

                        // Convert the brush to a pen for DrawPath call
                        using (Pen splitPen = new Pen(splitBrush))
                            g.DrawLine(splitPen, backRect.X + splitOffset, backRect.Top + 1, backRect.X + splitOffset,
                                       backRect.Bottom - 1);
                    }

                    // Draw the border of the entire item
                    this.DrawGradientBorder(g, backRect, colorsButton);
                }
            }
        }
Пример #17
0
 private void InitializeComponent()
 {
     this.chooseToolButton = new ToolStripSplitButton();
     this.SuspendLayout();
     //
     // chooseToolButton
     //
     this.chooseToolButton.Name = "chooseToolButton";
     this.chooseToolButton.Text = this.chooseToolLabelText;
     this.chooseToolButton.TextImageRelation = TextImageRelation.TextBeforeImage;
     this.chooseToolButton.DisplayStyle = ToolStripItemDisplayStyle.ImageAndText;
     this.chooseToolButton.DropDownOpening += new EventHandler(ChooseToolButton_DropDownOpening);
     this.chooseToolButton.DropDownClosed += new EventHandler(ChooseToolButton_DropDownClosed);
     this.chooseToolButton.DropDownItemClicked += new ToolStripItemClickedEventHandler(ChooseToolButton_DropDownItemClicked);
     this.chooseToolButton.Click +=
         delegate(object sender, EventArgs e)
         {
             this.chooseToolButton.ShowDropDown();
         };
     //
     // ToolChooserStrip
     //
     this.Items.Add(new ToolStripSeparator());
     this.Items.Add(this.chooseToolButton);
     this.ResumeLayout(false);
 }
Пример #18
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(HouseServiceView));
     this.tsAddress = new System.Windows.Forms.ToolStrip();
     this.tslHouse = new System.Windows.Forms.ToolStripLabel();
     this.tstbApartmentAddress = new System.Windows.Forms.ToolStripTextBox();
     this.tabControl = new System.Windows.Forms.TabControl();
     this.MainInformation = new System.Windows.Forms.TabPage();
     this.ujfHouseInfoView1 = new UjfHouseInfoView();
     this.Square = new System.Windows.Forms.TabPage();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.dgvHouseApartmentDetail = new System.Windows.Forms.DataGridView();
     this.isCommunalDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.isRoomDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.apartmentSystemTypeNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.roomCountDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.apartmentCountDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.blockTotalAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.totalAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.livingAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.loggiaAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.balconyAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.verandaAreaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.buildingComponentTypeNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsHouseApartmentDetail = new System.Windows.Forms.BindingSource(this.components);
     this.tsSquare = new System.Windows.Forms.ToolStrip();
     this.tsbAddApartmentDetail = new System.Windows.Forms.ToolStripButton();
     this.tsbEditApartmentDetail = new System.Windows.Forms.ToolStripButton();
     this.tsbDeleteApartmentDetail = new System.Windows.Forms.ToolStripButton();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.btnSaveHouseInfoes = new System.Windows.Forms.Button();
     this.tbCorridorArea = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.tbStairsArea = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.nudMetalSchelterDoorNumber = new System.Windows.Forms.NumericUpDown();
     this.label9 = new System.Windows.Forms.Label();
     this.tbBuildInAreaState = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tbBuildInAreaPrvate = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tbBuildInAreaTotal = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.nudBuildInNumber = new System.Windows.Forms.NumericUpDown();
     this.label5 = new System.Windows.Forms.Label();
     this.tbCommonAreaState = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.tbCommonAreaPrivate = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.tbCommonAreaTotal = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.nudCommonNumber = new System.Windows.Forms.NumericUpDown();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.btnSaveHouseAreaInfo = new System.Windows.Forms.Button();
     this.tbLandAreaLawnsArea = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.tbLandAreaUncoveredArea = new System.Windows.Forms.TextBox();
     this.label35 = new System.Windows.Forms.Label();
     this.tbLandAreaInHouseArea = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.tbNonBuildUpGreenSpacesOther = new System.Windows.Forms.TextBox();
     this.label28 = new System.Windows.Forms.Label();
     this.tbNonBuildUpGreenSpacesLineWithTrees = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.tbNonBuildUpGreenSpacesSquare = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.tbNonBuildUpGreenSpacesTotal = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.tbNonBuildUpSiteOther = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.tbNonBuildUpSiteSport = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.tbNonBuildUpSiteChildren = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.tbNonBuildUpHardCoatingOther = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.tbNonBuildUpHardCoatingSidewalks = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.tbNonBuildUpHardCoatingLanes = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.tbNonBuildUpHardCoatingTotal = new System.Windows.Forms.TextBox();
     this.label18 = new System.Windows.Forms.Label();
     this.tbNonBuildUpAsphaltlessClaningArea = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.tbNonBuildUpTotal = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.tbLandAreaBuildUp = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.tbLandAreaTotal = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.tbLandAreaSurvey = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.tbTechInventory = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.EngineeringEquipment = new System.Windows.Forms.TabPage();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.panel4 = new System.Windows.Forms.Panel();
     this.btnHeatingSave = new System.Windows.Forms.Button();
     this.label54 = new System.Windows.Forms.Label();
     this.tbHeatingHeatedArea = new System.Windows.Forms.TextBox();
     this.label52 = new System.Windows.Forms.Label();
     this.nudHeatingConvectorsNumber = new System.Windows.Forms.NumericUpDown();
     this.label53 = new System.Windows.Forms.Label();
     this.nudHeatingHeatCenterNumber = new System.Windows.Forms.NumericUpDown();
     this.label49 = new System.Windows.Forms.Label();
     this.nudHeatingBoxes = new System.Windows.Forms.NumericUpDown();
     this.label50 = new System.Windows.Forms.Label();
     this.nudHeatingElevators = new System.Windows.Forms.NumericUpDown();
     this.label51 = new System.Windows.Forms.Label();
     this.nudHeatingThreewayValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label46 = new System.Windows.Forms.Label();
     this.nudHeatingValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label47 = new System.Windows.Forms.Label();
     this.nudHeatingDynamicValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label48 = new System.Windows.Forms.Label();
     this.nudHeatingSteelHeatersNumber = new System.Windows.Forms.NumericUpDown();
     this.label45 = new System.Windows.Forms.Label();
     this.tbHeatingThermalInsulation = new System.Windows.Forms.TextBox();
     this.label44 = new System.Windows.Forms.Label();
     this.nudHeatingLockedValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label43 = new System.Windows.Forms.Label();
     this.nudHeatingRadiatorNumberApartment = new System.Windows.Forms.NumericUpDown();
     this.label42 = new System.Windows.Forms.Label();
     this.nudHeatingRadiatorNumberStairwell = new System.Windows.Forms.NumericUpDown();
     this.label41 = new System.Windows.Forms.Label();
     this.tbHeatingArrangementApartment = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.tbHeatingRisesLengthApartment = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.tbHeatingRisesLengthBasement = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.tbHeatingPipelineLength = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.nudHeatingRisesNumber = new System.Windows.Forms.NumericUpDown();
     this.label34 = new System.Windows.Forms.Label();
     this.tbHeatingFillingLength = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.nudHeatingControlAssemblyNumber = new System.Windows.Forms.NumericUpDown();
     this.label30 = new System.Windows.Forms.Label();
     this.nudHeatingEntryPointNumber = new System.Windows.Forms.NumericUpDown();
     this.cbHeatingHasMeter = new System.Windows.Forms.CheckBox();
     this.label20 = new System.Windows.Forms.Label();
     this.sfdHeatingType = new SelectFasetData();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.panel5 = new System.Windows.Forms.Panel();
     this.nudHotWaterFillingLength = new System.Windows.Forms.NumericUpDown();
     this.btnHotWaterSave = new System.Windows.Forms.Button();
     this.label66 = new System.Windows.Forms.Label();
     this.nudHotWaterBasementPlugValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label64 = new System.Windows.Forms.Label();
     this.nudHotWaterBasementValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label65 = new System.Windows.Forms.Label();
     this.nudHotWaterDynamicValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label56 = new System.Windows.Forms.Label();
     this.tbHotWaterArrangementApartment = new System.Windows.Forms.TextBox();
     this.label57 = new System.Windows.Forms.Label();
     this.tbHotWaterRisesLengthApartment = new System.Windows.Forms.TextBox();
     this.label58 = new System.Windows.Forms.Label();
     this.tbHotWaterRisesLengthBasement = new System.Windows.Forms.TextBox();
     this.label59 = new System.Windows.Forms.Label();
     this.tbHotWaterPipelineLength = new System.Windows.Forms.TextBox();
     this.label60 = new System.Windows.Forms.Label();
     this.nudHotWaterRisesNumber = new System.Windows.Forms.NumericUpDown();
     this.label61 = new System.Windows.Forms.Label();
     this.label62 = new System.Windows.Forms.Label();
     this.nudHotWaterControlAssemblyNumber = new System.Windows.Forms.NumericUpDown();
     this.label63 = new System.Windows.Forms.Label();
     this.nudHotWaterEntryPointNumber = new System.Windows.Forms.NumericUpDown();
     this.cbHotWaterHasMeter = new System.Windows.Forms.CheckBox();
     this.label55 = new System.Windows.Forms.Label();
     this.sfdHotWaterType = new SelectFasetData();
     this.tabPage8 = new System.Windows.Forms.TabPage();
     this.panel6 = new System.Windows.Forms.Panel();
     this.btnSaveSewage = new System.Windows.Forms.Button();
     this.label72 = new System.Windows.Forms.Label();
     this.nudSewageAuditCoversNumber = new System.Windows.Forms.NumericUpDown();
     this.label73 = new System.Windows.Forms.Label();
     this.tbSewageRisesLength = new System.Windows.Forms.TextBox();
     this.label70 = new System.Windows.Forms.Label();
     this.nudSewageRisesNumber = new System.Windows.Forms.NumericUpDown();
     this.label71 = new System.Windows.Forms.Label();
     this.tbSewageBasementRisesLength = new System.Windows.Forms.TextBox();
     this.label68 = new System.Windows.Forms.Label();
     this.tbSewagePipelineLength = new System.Windows.Forms.TextBox();
     this.label69 = new System.Windows.Forms.Label();
     this.tbSewageBasementTubeLength = new System.Windows.Forms.TextBox();
     this.label67 = new System.Windows.Forms.Label();
     this.sfdSewageType = new SelectFasetData();
     this.tabPage9 = new System.Windows.Forms.TabPage();
     this.panel7 = new System.Windows.Forms.Panel();
     this.btnColdWaterSave = new System.Windows.Forms.Button();
     this.label84 = new System.Windows.Forms.Label();
     this.nudColdWaterBrassValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label82 = new System.Windows.Forms.Label();
     this.nudColdWaterBasementValvesNumber = new System.Windows.Forms.NumericUpDown();
     this.label83 = new System.Windows.Forms.Label();
     this.nudColdWaterGaugingSitesNumber = new System.Windows.Forms.NumericUpDown();
     this.cbColdWaterHasMeter = new System.Windows.Forms.CheckBox();
     this.label81 = new System.Windows.Forms.Label();
     this.numericUpDown24 = new System.Windows.Forms.NumericUpDown();
     this.label74 = new System.Windows.Forms.Label();
     this.tbColdWaterArrangementApartment = new System.Windows.Forms.TextBox();
     this.label75 = new System.Windows.Forms.Label();
     this.tbColdWaterRisesLengthApartment = new System.Windows.Forms.TextBox();
     this.label76 = new System.Windows.Forms.Label();
     this.tbColdWaterRisesLengthBasement = new System.Windows.Forms.TextBox();
     this.label77 = new System.Windows.Forms.Label();
     this.tbColdWaterPipelineLength = new System.Windows.Forms.TextBox();
     this.label78 = new System.Windows.Forms.Label();
     this.nudColdWaterRisesNumber = new System.Windows.Forms.NumericUpDown();
     this.label79 = new System.Windows.Forms.Label();
     this.tbColdWaterFillingLength = new System.Windows.Forms.TextBox();
     this.label80 = new System.Windows.Forms.Label();
     this.sfdColdWaterType = new SelectFasetData();
     this.tabPage10 = new System.Windows.Forms.TabPage();
     this.panel8 = new System.Windows.Forms.Panel();
     this.btnPowerSupplySave = new System.Windows.Forms.Button();
     this.label99 = new System.Windows.Forms.Label();
     this.nudPowerSupplyElectroStoveNumber = new System.Windows.Forms.NumericUpDown();
     this.label100 = new System.Windows.Forms.Label();
     this.nudPowerSupplyStreetLightNumber = new System.Windows.Forms.NumericUpDown();
     this.label101 = new System.Windows.Forms.Label();
     this.nudPowerSupplySwitchesNumber = new System.Windows.Forms.NumericUpDown();
     this.label85 = new System.Windows.Forms.Label();
     this.nudPowerSupplyLumpsNumberHID = new System.Windows.Forms.NumericUpDown();
     this.label91 = new System.Windows.Forms.Label();
     this.nudPowerSupplyLumpsNumberIncadescent = new System.Windows.Forms.NumericUpDown();
     this.label92 = new System.Windows.Forms.Label();
     this.nudPowerSupplyLumpsNumberDaylight = new System.Windows.Forms.NumericUpDown();
     this.label98 = new System.Windows.Forms.Label();
     this.nudPowerSupplyNumberPlateNumber = new System.Windows.Forms.NumericUpDown();
     this.label = new System.Windows.Forms.Label();
     this.nudPowerSupplyCountersNumberTwoRates = new System.Windows.Forms.NumericUpDown();
     this.label96 = new System.Windows.Forms.Label();
     this.nudPowerSupplyGroupPanelNumber = new System.Windows.Forms.NumericUpDown();
     this.label86 = new System.Windows.Forms.Label();
     this.nudPowerSupplyEntryPointNumber = new System.Windows.Forms.NumericUpDown();
     this.label87 = new System.Windows.Forms.Label();
     this.nudPowerSupplyPowerPanelNumber = new System.Windows.Forms.NumericUpDown();
     this.cbPowerSupplyHasMeter = new System.Windows.Forms.CheckBox();
     this.label88 = new System.Windows.Forms.Label();
     this.nudPowerSupplyDistributionSystemNumber = new System.Windows.Forms.NumericUpDown();
     this.label89 = new System.Windows.Forms.Label();
     this.tbPowerSupplySupplyNetworkLength = new System.Windows.Forms.TextBox();
     this.label90 = new System.Windows.Forms.Label();
     this.tbPowerSupplyCoverageNetworkLength = new System.Windows.Forms.TextBox();
     this.label93 = new System.Windows.Forms.Label();
     this.nudPowerSupplyCountersNumberTotal = new System.Windows.Forms.NumericUpDown();
     this.label94 = new System.Windows.Forms.Label();
     this.tbPowerSupplyTotalEquityAssetLenght = new System.Windows.Forms.TextBox();
     this.label95 = new System.Windows.Forms.Label();
     this.sfdPowerSupplyType = new SelectFasetData();
     this.tabPage11 = new System.Windows.Forms.TabPage();
     this.panel9 = new System.Windows.Forms.Panel();
     this.btnGasSupplySave = new System.Windows.Forms.Button();
     this.label110 = new System.Windows.Forms.Label();
     this.nudGasSupplyEntryPointNumber = new System.Windows.Forms.NumericUpDown();
     this.label109 = new System.Windows.Forms.Label();
     this.tbGasSupplyNotAppropriateReqLength = new System.Windows.Forms.TextBox();
     this.cbGasSupplyHasMeter = new System.Windows.Forms.CheckBox();
     this.label102 = new System.Windows.Forms.Label();
     this.nudGasStoveNumber = new System.Windows.Forms.NumericUpDown();
     this.label103 = new System.Windows.Forms.Label();
     this.nudGasSupplyGeyserNumber = new System.Windows.Forms.NumericUpDown();
     this.label104 = new System.Windows.Forms.Label();
     this.nudGasBoilerNumber = new System.Windows.Forms.NumericUpDown();
     this.label105 = new System.Windows.Forms.Label();
     this.nudGasSupplyCountersNumberTotal = new System.Windows.Forms.NumericUpDown();
     this.label106 = new System.Windows.Forms.Label();
     this.tbGasSupplySupplyNetworkLength = new System.Windows.Forms.TextBox();
     this.label107 = new System.Windows.Forms.Label();
     this.tbGasSupplyAppropriateReqLength = new System.Windows.Forms.TextBox();
     this.label108 = new System.Windows.Forms.Label();
     this.sfdGasSupplyType = new SelectFasetData();
     this.tabPage12 = new System.Windows.Forms.TabPage();
     this.panel10 = new System.Windows.Forms.Panel();
     this.btnChuteSave = new System.Windows.Forms.Button();
     this.label115 = new System.Windows.Forms.Label();
     this.sfdChuteType = new SelectFasetData();
     this.label111 = new System.Windows.Forms.Label();
     this.nudChuteRecievingValveNumber = new System.Windows.Forms.NumericUpDown();
     this.label112 = new System.Windows.Forms.Label();
     this.tbChuteBoxCapacity = new System.Windows.Forms.TextBox();
     this.label113 = new System.Windows.Forms.Label();
     this.tbChuteBoxArea = new System.Windows.Forms.TextBox();
     this.label114 = new System.Windows.Forms.Label();
     this.nudChuteBarrelNumber = new System.Windows.Forms.NumericUpDown();
     this.tabPage13 = new System.Windows.Forms.TabPage();
     this.panel11 = new System.Windows.Forms.Panel();
     this.btnOtherSave = new System.Windows.Forms.Button();
     this.label120 = new System.Windows.Forms.Label();
     this.nudPoolNumber = new System.Windows.Forms.NumericUpDown();
     this.label119 = new System.Windows.Forms.Label();
     this.nudSaunaNumber = new System.Windows.Forms.NumericUpDown();
     this.cbHasPhone = new System.Windows.Forms.CheckBox();
     this.cbIsCTTVSystem = new System.Windows.Forms.CheckBox();
     this.cbIsComputerNetworks = new System.Windows.Forms.CheckBox();
     this.cbIsCableTV = new System.Windows.Forms.CheckBox();
     this.cbIsSharedAntenna = new System.Windows.Forms.CheckBox();
     this.cbIsRadio = new System.Windows.Forms.CheckBox();
     this.cbIsCommonDispatchSystems = new System.Windows.Forms.CheckBox();
     this.cbIsAFPS = new System.Windows.Forms.CheckBox();
     this.label118 = new System.Windows.Forms.Label();
     this.nudIntercomNumber = new System.Windows.Forms.NumericUpDown();
     this.label117 = new System.Windows.Forms.Label();
     this.sfdDrainType = new SelectFasetData();
     this.label116 = new System.Windows.Forms.Label();
     this.sfdVentilationType = new SelectFasetData();
     this.tabPage14 = new System.Windows.Forms.TabPage();
     this.panel12 = new System.Windows.Forms.Panel();
     this.btnLiftSave = new System.Windows.Forms.Button();
     this.label127 = new System.Windows.Forms.Label();
     this.tbLiftControllerPhoneNumber = new System.Windows.Forms.TextBox();
     this.label124 = new System.Windows.Forms.Label();
     this.nudLiftOpeningDoorsNumber = new System.Windows.Forms.NumericUpDown();
     this.label125 = new System.Windows.Forms.Label();
     this.nudLiftFoldingDoorsNumber = new System.Windows.Forms.NumericUpDown();
     this.label126 = new System.Windows.Forms.Label();
     this.nudLiftCombiLiftNumber = new System.Windows.Forms.NumericUpDown();
     this.label121 = new System.Windows.Forms.Label();
     this.nudLiftTruckLiftNumber = new System.Windows.Forms.NumericUpDown();
     this.label122 = new System.Windows.Forms.Label();
     this.nudLiftPassengerLiftNumber = new System.Windows.Forms.NumericUpDown();
     this.label123 = new System.Windows.Forms.Label();
     this.nudLiftTotalNumber = new System.Windows.Forms.NumericUpDown();
     this.Service = new System.Windows.Forms.TabPage();
     this.dgvServices = new System.Windows.Forms.DataGridView();
     this.serviceNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fromDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.toDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.kDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsHouseService = new System.Windows.Forms.BindingSource(this.components);
     this.tsService = new System.Windows.Forms.ToolStrip();
     this.tsBtnAddService = new System.Windows.Forms.ToolStripButton();
     this.tsBtnChangeService = new System.Windows.Forms.ToolStripButton();
     this.tsBtnDeleteService = new System.Windows.Forms.ToolStripButton();
     this.btnShowMaterialAndWages = new System.Windows.Forms.ToolStripButton();
     this.Calc = new System.Windows.Forms.TabPage();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.dgvCalcService = new System.Windows.Forms.DataGridView();
     this.serviceNameDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.periodDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.algNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.apartmentSquareDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ladderSquareDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.FormulaUi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsCalcServices = new System.Windows.Forms.BindingSource(this.components);
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.dgvCalcServiceMaterial = new System.Windows.Forms.DataGridView();
     this.nameDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.priceValueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.normDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tariffDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usePerYearDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.formulaUiDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsCalcServiceMaterials = new System.Windows.Forms.BindingSource(this.components);
     this.dgvCalcServiceWages = new System.Windows.Forms.DataGridView();
     this.nameDataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rankDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.wageValueDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.normDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tariffDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.normChelChasDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.normNeVihodDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.formulaUiDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsCalcServiceWages = new System.Windows.Forms.BindingSource(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.btnShowErrors = new System.Windows.Forms.Button();
     this.labelError = new System.Windows.Forms.Label();
     this.btnCalcStart = new System.Windows.Forms.Button();
     this.datePeriod = new DatePeriod();
     this.Inspection = new System.Windows.Forms.TabPage();
     this.dgvInspections = new System.Windows.Forms.DataGridView();
     this.inspectionDateTimeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.StatusName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Inspector = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsHouseInspection = new System.Windows.Forms.BindingSource(this.components);
     this.tsInspection = new System.Windows.Forms.ToolStrip();
     this.tsBtnAddInspection = new System.Windows.Forms.ToolStripButton();
     this.tsBtnChangeInspection = new System.Windows.Forms.ToolStripButton();
     this.tsBtnDeleteInstepction = new System.Windows.Forms.ToolStripButton();
     this.tsBtnApartmentHousePartElement = new System.Windows.Forms.ToolStripButton();
     this.tssBtnActs = new System.Windows.Forms.ToolStripSplitButton();
     this.tsmiInspectionAct = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiInspectionAct_Pystograf = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiInspectionAct_PystografMin = new System.Windows.Forms.ToolStripMenuItem();
     this.tssReports = new System.Windows.Forms.ToolStripSplitButton();
     this.tsmiDefectsCoordinationWorkByInspection = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiDefectsDelayWorkByInspecion = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiListExpiredAndCurrentDefects = new System.Windows.Forms.ToolStripMenuItem();
     this.Vote = new System.Windows.Forms.TabPage();
     this.dgwMeeting = new System.Windows.Forms.DataGridView();
     this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.endVotingDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.publishVotingDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.votingKindNameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.votingAcceptAdressDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.meetingInitiatorDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.noticeDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.protocolDateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.protocolNumberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsUjfMeetings = new System.Windows.Forms.BindingSource(this.components);
     this.tsVote = new System.Windows.Forms.ToolStrip();
     this.tsbAddMeeting = new System.Windows.Forms.ToolStripButton();
     this.tsbChangeMeeting = new System.Windows.Forms.ToolStripButton();
     this.tsbDeleteMeeting = new System.Windows.Forms.ToolStripButton();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.addressTreeView = new HouseTree();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn12 = 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.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn47 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn48 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn49 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn50 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn51 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn52 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.InspectionDateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tsmiListCoordinationVolumesDefects = new System.Windows.Forms.ToolStripMenuItem();
     this.tsAddress.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.MainInformation.SuspendLayout();
     this.Square.SuspendLayout();
     this.splitContainer3.BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.dgvHouseApartmentDetail.BeginInit();
     this.bsHouseApartmentDetail.BeginInit();
     this.tsSquare.SuspendLayout();
     this.splitContainer4.BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.nudMetalSchelterDoorNumber.BeginInit();
     this.nudBuildInNumber.BeginInit();
     this.nudCommonNumber.BeginInit();
     this.groupBox2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.EngineeringEquipment.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.panel4.SuspendLayout();
     this.nudHeatingConvectorsNumber.BeginInit();
     this.nudHeatingHeatCenterNumber.BeginInit();
     this.nudHeatingBoxes.BeginInit();
     this.nudHeatingElevators.BeginInit();
     this.nudHeatingThreewayValvesNumber.BeginInit();
     this.nudHeatingValvesNumber.BeginInit();
     this.nudHeatingDynamicValvesNumber.BeginInit();
     this.nudHeatingSteelHeatersNumber.BeginInit();
     this.nudHeatingLockedValvesNumber.BeginInit();
     this.nudHeatingRadiatorNumberApartment.BeginInit();
     this.nudHeatingRadiatorNumberStairwell.BeginInit();
     this.nudHeatingRisesNumber.BeginInit();
     this.nudHeatingControlAssemblyNumber.BeginInit();
     this.nudHeatingEntryPointNumber.BeginInit();
     this.tabPage7.SuspendLayout();
     this.panel5.SuspendLayout();
     this.nudHotWaterFillingLength.BeginInit();
     this.nudHotWaterBasementPlugValvesNumber.BeginInit();
     this.nudHotWaterBasementValvesNumber.BeginInit();
     this.nudHotWaterDynamicValvesNumber.BeginInit();
     this.nudHotWaterRisesNumber.BeginInit();
     this.nudHotWaterControlAssemblyNumber.BeginInit();
     this.nudHotWaterEntryPointNumber.BeginInit();
     this.tabPage8.SuspendLayout();
     this.panel6.SuspendLayout();
     this.nudSewageAuditCoversNumber.BeginInit();
     this.nudSewageRisesNumber.BeginInit();
     this.tabPage9.SuspendLayout();
     this.panel7.SuspendLayout();
     this.nudColdWaterBrassValvesNumber.BeginInit();
     this.nudColdWaterBasementValvesNumber.BeginInit();
     this.nudColdWaterGaugingSitesNumber.BeginInit();
     this.numericUpDown24.BeginInit();
     this.nudColdWaterRisesNumber.BeginInit();
     this.tabPage10.SuspendLayout();
     this.panel8.SuspendLayout();
     this.nudPowerSupplyElectroStoveNumber.BeginInit();
     this.nudPowerSupplyStreetLightNumber.BeginInit();
     this.nudPowerSupplySwitchesNumber.BeginInit();
     this.nudPowerSupplyLumpsNumberHID.BeginInit();
     this.nudPowerSupplyLumpsNumberIncadescent.BeginInit();
     this.nudPowerSupplyLumpsNumberDaylight.BeginInit();
     this.nudPowerSupplyNumberPlateNumber.BeginInit();
     this.nudPowerSupplyCountersNumberTwoRates.BeginInit();
     this.nudPowerSupplyGroupPanelNumber.BeginInit();
     this.nudPowerSupplyEntryPointNumber.BeginInit();
     this.nudPowerSupplyPowerPanelNumber.BeginInit();
     this.nudPowerSupplyDistributionSystemNumber.BeginInit();
     this.nudPowerSupplyCountersNumberTotal.BeginInit();
     this.tabPage11.SuspendLayout();
     this.panel9.SuspendLayout();
     this.nudGasSupplyEntryPointNumber.BeginInit();
     this.nudGasStoveNumber.BeginInit();
     this.nudGasSupplyGeyserNumber.BeginInit();
     this.nudGasBoilerNumber.BeginInit();
     this.nudGasSupplyCountersNumberTotal.BeginInit();
     this.tabPage12.SuspendLayout();
     this.panel10.SuspendLayout();
     this.nudChuteRecievingValveNumber.BeginInit();
     this.nudChuteBarrelNumber.BeginInit();
     this.tabPage13.SuspendLayout();
     this.panel11.SuspendLayout();
     this.nudPoolNumber.BeginInit();
     this.nudSaunaNumber.BeginInit();
     this.nudIntercomNumber.BeginInit();
     this.tabPage14.SuspendLayout();
     this.panel12.SuspendLayout();
     this.nudLiftOpeningDoorsNumber.BeginInit();
     this.nudLiftFoldingDoorsNumber.BeginInit();
     this.nudLiftCombiLiftNumber.BeginInit();
     this.nudLiftTruckLiftNumber.BeginInit();
     this.nudLiftPassengerLiftNumber.BeginInit();
     this.nudLiftTotalNumber.BeginInit();
     this.Service.SuspendLayout();
     this.dgvServices.BeginInit();
     this.bsHouseService.BeginInit();
     this.tsService.SuspendLayout();
     this.Calc.SuspendLayout();
     this.splitContainer1.BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.dgvCalcService.BeginInit();
     this.bsCalcServices.BeginInit();
     this.splitContainer2.BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.dgvCalcServiceMaterial.BeginInit();
     this.bsCalcServiceMaterials.BeginInit();
     this.dgvCalcServiceWages.BeginInit();
     this.bsCalcServiceWages.BeginInit();
     this.panel1.SuspendLayout();
     this.Inspection.SuspendLayout();
     this.dgvInspections.BeginInit();
     this.bsHouseInspection.BeginInit();
     this.tsInspection.SuspendLayout();
     this.Vote.SuspendLayout();
     this.dgwMeeting.BeginInit();
     this.bsUjfMeetings.BeginInit();
     this.tsVote.SuspendLayout();
     base.SuspendLayout();
     this.tsAddress.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tslHouse, this.tstbApartmentAddress });
     this.tsAddress.set_Location(new System.Drawing.Point(0xe5, 0));
     this.tsAddress.set_Name("tsAddress");
     this.tsAddress.set_Size(new System.Drawing.Size(0x287, 0x19));
     this.tsAddress.set_TabIndex(2);
     this.tsAddress.set_Text("toolStrip1");
     this.tslHouse.set_AutoSize(false);
     this.tslHouse.set_Font(new System.Drawing.Font("Tahoma", 9.75f, System.Drawing.FontStyle.Bold));
     this.tslHouse.set_Name("tslHouse");
     this.tslHouse.set_Size(new System.Drawing.Size(50, 0x16));
     this.tslHouse.set_Text("АДРЕС");
     this.tslHouse.set_TextAlign(System.Drawing.ContentAlignment.MiddleLeft);
     this.tstbApartmentAddress.set_Name("tstbApartmentAddress");
     this.tstbApartmentAddress.set_ReadOnly(true);
     this.tstbApartmentAddress.set_Size(new System.Drawing.Size(200, 0x19));
     this.tabControl.Controls.Add(this.MainInformation);
     this.tabControl.Controls.Add(this.Square);
     this.tabControl.Controls.Add(this.EngineeringEquipment);
     this.tabControl.Controls.Add(this.Service);
     this.tabControl.Controls.Add(this.Calc);
     this.tabControl.Controls.Add(this.Inspection);
     this.tabControl.Controls.Add(this.Vote);
     this.tabControl.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.tabControl.set_Location(new System.Drawing.Point(0xe5, 0x19));
     this.tabControl.set_Name("tabControl");
     this.tabControl.set_SelectedIndex(0);
     this.tabControl.set_Size(new System.Drawing.Size(0x287, 0x25c));
     this.tabControl.set_TabIndex(3);
     this.tabControl.set_Visible(false);
     this.MainInformation.Controls.Add(this.ujfHouseInfoView1);
     this.MainInformation.set_Location(new System.Drawing.Point(4, 0x16));
     this.MainInformation.set_Name("MainInformation");
     this.MainInformation.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.MainInformation.set_TabIndex(2);
     this.MainInformation.set_Text("Общие сведения");
     this.MainInformation.set_UseVisualStyleBackColor(true);
     this.ujfHouseInfoView1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.ujfHouseInfoView1.set_Location(new System.Drawing.Point(0, 0));
     this.ujfHouseInfoView1.set_Name("ujfHouseInfoView1");
     this.ujfHouseInfoView1.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.ujfHouseInfoView1.set_TabIndex(0);
     this.Square.Controls.Add(this.splitContainer3);
     this.Square.set_Location(new System.Drawing.Point(4, 0x16));
     this.Square.set_Name("Square");
     this.Square.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.Square.set_TabIndex(3);
     this.Square.set_Text("Площади");
     this.Square.set_UseVisualStyleBackColor(true);
     this.splitContainer3.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer3.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer3.set_Name("splitContainer3");
     this.splitContainer3.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer3.Panel1.Controls.Add(this.dgvHouseApartmentDetail);
     this.splitContainer3.Panel1.Controls.Add(this.tsSquare);
     this.splitContainer3.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer3.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.splitContainer3.set_SplitterDistance(0x6a);
     this.splitContainer3.set_TabIndex(2);
     this.dgvHouseApartmentDetail.set_AllowUserToAddRows(false);
     this.dgvHouseApartmentDetail.set_AllowUserToDeleteRows(false);
     this.dgvHouseApartmentDetail.set_AutoGenerateColumns(false);
     this.dgvHouseApartmentDetail.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvHouseApartmentDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.isCommunalDataGridViewCheckBoxColumn, this.isRoomDataGridViewCheckBoxColumn, this.apartmentSystemTypeNameDataGridViewTextBoxColumn, this.roomCountDataGridViewTextBoxColumn, this.apartmentCountDataGridViewTextBoxColumn, this.blockTotalAreaDataGridViewTextBoxColumn, this.totalAreaDataGridViewTextBoxColumn, this.livingAreaDataGridViewTextBoxColumn, this.loggiaAreaDataGridViewTextBoxColumn, this.balconyAreaDataGridViewTextBoxColumn, this.verandaAreaDataGridViewTextBoxColumn, this.buildingComponentTypeNameDataGridViewTextBoxColumn });
     this.dgvHouseApartmentDetail.set_DataSource(this.bsHouseApartmentDetail);
     this.dgvHouseApartmentDetail.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvHouseApartmentDetail.set_Location(new System.Drawing.Point(0, 0x19));
     this.dgvHouseApartmentDetail.set_MultiSelect(false);
     this.dgvHouseApartmentDetail.set_Name("dgvHouseApartmentDetail");
     this.dgvHouseApartmentDetail.set_ReadOnly(true);
     this.dgvHouseApartmentDetail.set_RowHeadersVisible(false);
     this.dgvHouseApartmentDetail.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvHouseApartmentDetail.set_Size(new System.Drawing.Size(0x27f, 0x51));
     this.dgvHouseApartmentDetail.set_TabIndex(3);
     this.isCommunalDataGridViewCheckBoxColumn.set_DataPropertyName("IsCommunal");
     this.isCommunalDataGridViewCheckBoxColumn.set_HeaderText("Коммнунальная");
     this.isCommunalDataGridViewCheckBoxColumn.set_Name("isCommunalDataGridViewCheckBoxColumn");
     this.isCommunalDataGridViewCheckBoxColumn.set_ReadOnly(true);
     this.isRoomDataGridViewCheckBoxColumn.set_DataPropertyName("IsRoom");
     this.isRoomDataGridViewCheckBoxColumn.set_HeaderText("Квартира");
     this.isRoomDataGridViewCheckBoxColumn.set_Name("isRoomDataGridViewCheckBoxColumn");
     this.isRoomDataGridViewCheckBoxColumn.set_ReadOnly(true);
     this.apartmentSystemTypeNameDataGridViewTextBoxColumn.set_DataPropertyName("ApartmentSystemTypeName");
     this.apartmentSystemTypeNameDataGridViewTextBoxColumn.set_HeaderText("Планировка блока");
     this.apartmentSystemTypeNameDataGridViewTextBoxColumn.set_Name("apartmentSystemTypeNameDataGridViewTextBoxColumn");
     this.apartmentSystemTypeNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.roomCountDataGridViewTextBoxColumn.set_DataPropertyName("RoomCount");
     this.roomCountDataGridViewTextBoxColumn.set_HeaderText("Количество комнат");
     this.roomCountDataGridViewTextBoxColumn.set_Name("roomCountDataGridViewTextBoxColumn");
     this.roomCountDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.apartmentCountDataGridViewTextBoxColumn.set_DataPropertyName("ApartmentCount");
     this.apartmentCountDataGridViewTextBoxColumn.set_HeaderText("Количество квартир");
     this.apartmentCountDataGridViewTextBoxColumn.set_Name("apartmentCountDataGridViewTextBoxColumn");
     this.apartmentCountDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.blockTotalAreaDataGridViewTextBoxColumn.set_DataPropertyName("BlockTotalArea");
     this.blockTotalAreaDataGridViewTextBoxColumn.set_HeaderText("Общая площадь");
     this.blockTotalAreaDataGridViewTextBoxColumn.set_Name("blockTotalAreaDataGridViewTextBoxColumn");
     this.blockTotalAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.totalAreaDataGridViewTextBoxColumn.set_DataPropertyName("TotalArea");
     this.totalAreaDataGridViewTextBoxColumn.set_HeaderText("Площадь квартиры");
     this.totalAreaDataGridViewTextBoxColumn.set_Name("totalAreaDataGridViewTextBoxColumn");
     this.totalAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.livingAreaDataGridViewTextBoxColumn.set_DataPropertyName("LivingArea");
     this.livingAreaDataGridViewTextBoxColumn.set_HeaderText("Жилая площадь");
     this.livingAreaDataGridViewTextBoxColumn.set_Name("livingAreaDataGridViewTextBoxColumn");
     this.livingAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.loggiaAreaDataGridViewTextBoxColumn.set_DataPropertyName("LoggiaArea");
     this.loggiaAreaDataGridViewTextBoxColumn.set_HeaderText("Площадь лоджии");
     this.loggiaAreaDataGridViewTextBoxColumn.set_Name("loggiaAreaDataGridViewTextBoxColumn");
     this.loggiaAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.balconyAreaDataGridViewTextBoxColumn.set_DataPropertyName("BalconyArea");
     this.balconyAreaDataGridViewTextBoxColumn.set_HeaderText("Площадь балконов");
     this.balconyAreaDataGridViewTextBoxColumn.set_Name("balconyAreaDataGridViewTextBoxColumn");
     this.balconyAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.verandaAreaDataGridViewTextBoxColumn.set_DataPropertyName("VerandaArea");
     this.verandaAreaDataGridViewTextBoxColumn.set_HeaderText("Площадь веранд");
     this.verandaAreaDataGridViewTextBoxColumn.set_Name("verandaAreaDataGridViewTextBoxColumn");
     this.verandaAreaDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.buildingComponentTypeNameDataGridViewTextBoxColumn.set_DataPropertyName("BuildingComponentTypeName");
     this.buildingComponentTypeNameDataGridViewTextBoxColumn.set_HeaderText("Размещение");
     this.buildingComponentTypeNameDataGridViewTextBoxColumn.set_Name("buildingComponentTypeNameDataGridViewTextBoxColumn");
     this.buildingComponentTypeNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.bsHouseApartmentDetail.set_DataSource(typeof(UjfHouseApartmentDetail));
     this.tsSquare.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsbAddApartmentDetail, this.tsbEditApartmentDetail, this.tsbDeleteApartmentDetail });
     this.tsSquare.set_LayoutStyle(System.Windows.Forms.ToolStripLayoutStyle.Flow);
     this.tsSquare.set_Location(new System.Drawing.Point(0, 0));
     this.tsSquare.set_Name("tsSquare");
     this.tsSquare.set_Size(new System.Drawing.Size(0x27f, 0x19));
     this.tsSquare.set_TabIndex(2);
     this.tsSquare.set_Text("toolStrip3");
     this.tsbAddApartmentDetail.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbAddApartmentDetail.set_Image(Resources.ADD);
     this.tsbAddApartmentDetail.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbAddApartmentDetail.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbAddApartmentDetail.set_Name("tsbAddApartmentDetail");
     this.tsbAddApartmentDetail.set_Size(new System.Drawing.Size(0x18, 0x16));
     this.tsbAddApartmentDetail.set_Text("Добавить");
     this.tsbAddApartmentDetail.add_Click(new System.EventHandler(this.tsbAddApartmentDetail_Click));
     this.tsbEditApartmentDetail.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbEditApartmentDetail.set_Image(Resources.CHANGE);
     this.tsbEditApartmentDetail.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbEditApartmentDetail.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbEditApartmentDetail.set_Name("tsbEditApartmentDetail");
     this.tsbEditApartmentDetail.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsbEditApartmentDetail.set_Text("Изменить");
     this.tsbEditApartmentDetail.add_Click(new System.EventHandler(this.tsbEditApartmentDetail_Click));
     this.tsbDeleteApartmentDetail.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbDeleteApartmentDetail.set_Image(Resources.DELETE);
     this.tsbDeleteApartmentDetail.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbDeleteApartmentDetail.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbDeleteApartmentDetail.set_Name("tsbDeleteApartmentDetail");
     this.tsbDeleteApartmentDetail.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsbDeleteApartmentDetail.set_Text("Удалить");
     this.tsbDeleteApartmentDetail.add_Click(new System.EventHandler(this.tsbDeleteApartmentDetail_Click));
     this.splitContainer4.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer4.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer4.set_Name("splitContainer4");
     this.splitContainer4.Panel1.Controls.Add(this.groupBox1);
     this.splitContainer4.Panel2.Controls.Add(this.groupBox2);
     this.splitContainer4.set_Size(new System.Drawing.Size(0x27f, 0x1d4));
     this.splitContainer4.set_SplitterDistance(0x12e);
     this.splitContainer4.set_TabIndex(0);
     this.groupBox1.Controls.Add(this.panel3);
     this.groupBox1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.groupBox1.set_Location(new System.Drawing.Point(0, 0));
     this.groupBox1.set_Name("groupBox1");
     this.groupBox1.set_Size(new System.Drawing.Size(0x12e, 0x1d4));
     this.groupBox1.set_TabIndex(0);
     this.groupBox1.set_TabStop(false);
     this.groupBox1.set_Text("Нежилые помещения");
     this.panel3.set_AutoScroll(true);
     this.panel3.Controls.Add(this.btnSaveHouseInfoes);
     this.panel3.Controls.Add(this.tbCorridorArea);
     this.panel3.Controls.Add(this.label10);
     this.panel3.Controls.Add(this.tbStairsArea);
     this.panel3.Controls.Add(this.label11);
     this.panel3.Controls.Add(this.nudMetalSchelterDoorNumber);
     this.panel3.Controls.Add(this.label9);
     this.panel3.Controls.Add(this.tbBuildInAreaState);
     this.panel3.Controls.Add(this.label6);
     this.panel3.Controls.Add(this.tbBuildInAreaPrvate);
     this.panel3.Controls.Add(this.label7);
     this.panel3.Controls.Add(this.tbBuildInAreaTotal);
     this.panel3.Controls.Add(this.label8);
     this.panel3.Controls.Add(this.nudBuildInNumber);
     this.panel3.Controls.Add(this.label5);
     this.panel3.Controls.Add(this.tbCommonAreaState);
     this.panel3.Controls.Add(this.label4);
     this.panel3.Controls.Add(this.tbCommonAreaPrivate);
     this.panel3.Controls.Add(this.label3);
     this.panel3.Controls.Add(this.tbCommonAreaTotal);
     this.panel3.Controls.Add(this.label2);
     this.panel3.Controls.Add(this.nudCommonNumber);
     this.panel3.Controls.Add(this.label1);
     this.panel3.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel3.set_Location(new System.Drawing.Point(3, 0x10));
     this.panel3.set_Name("panel3");
     this.panel3.set_Size(new System.Drawing.Size(0x128, 0x1c1));
     this.panel3.set_TabIndex(0);
     this.btnSaveHouseInfoes.set_Location(new System.Drawing.Point(0x110, 0x110));
     this.btnSaveHouseInfoes.set_Name("btnSaveHouseInfoes");
     this.btnSaveHouseInfoes.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnSaveHouseInfoes.set_TabIndex(0x2d);
     this.btnSaveHouseInfoes.set_Text("Сохранить");
     this.btnSaveHouseInfoes.set_UseVisualStyleBackColor(true);
     this.btnSaveHouseInfoes.add_Click(new System.EventHandler(this.btnSaveHouseInfoes_Click));
     this.tbCorridorArea.set_Location(new System.Drawing.Point(0x110, 0xed));
     this.tbCorridorArea.set_Name("tbCorridorArea");
     this.tbCorridorArea.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbCorridorArea.set_TabIndex(0x2c);
     this.label10.set_AutoSize(true);
     this.label10.set_Location(new System.Drawing.Point(3, 0xdd));
     this.label10.set_Name("label10");
     this.label10.set_Size(new System.Drawing.Size(0x9a, 13));
     this.label10.set_TabIndex(0x2b);
     this.label10.set_Text("Площадь лестничных клеток");
     this.tbStairsArea.set_Location(new System.Drawing.Point(0x110, 0xd6));
     this.tbStairsArea.set_Name("tbStairsArea");
     this.tbStairsArea.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbStairsArea.set_TabIndex(0x2a);
     this.label11.set_AutoSize(true);
     this.label11.set_Location(new System.Drawing.Point(3, 0xf4));
     this.label11.set_Name("label11");
     this.label11.set_Size(new System.Drawing.Size(0x6f, 13));
     this.label11.set_TabIndex(0x29);
     this.label11.set_Text("Площадь коридоров");
     this.nudMetalSchelterDoorNumber.set_Location(new System.Drawing.Point(0x110, 190));
     int[] numArray = new int[4];
     numArray[0] = 0x989680;
     this.nudMetalSchelterDoorNumber.set_Maximum(new decimal(numArray));
     this.nudMetalSchelterDoorNumber.set_Name("nudMetalSchelterDoorNumber");
     this.nudMetalSchelterDoorNumber.set_Size(new System.Drawing.Size(0x45, 20));
     this.nudMetalSchelterDoorNumber.set_TabIndex(40);
     this.label9.set_AutoSize(true);
     this.label9.set_Location(new System.Drawing.Point(3, 0xc5));
     this.label9.set_Name("label9");
     this.label9.set_Size(new System.Drawing.Size(0x9f, 13));
     this.label9.set_TabIndex(0x27);
     this.label9.set_Text("Количество железных дверей");
     this.tbBuildInAreaState.set_Location(new System.Drawing.Point(0x110, 0xa6));
     this.tbBuildInAreaState.set_Name("tbBuildInAreaState");
     this.tbBuildInAreaState.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbBuildInAreaState.set_TabIndex(0x26);
     this.label6.set_AutoSize(true);
     this.label6.set_Location(new System.Drawing.Point(3, 0xad));
     this.label6.set_Name("label6");
     this.label6.set_Size(new System.Drawing.Size(0xb7, 13));
     this.label6.set_TabIndex(0x25);
     this.label6.set_Text("В государственной собственности");
     this.tbBuildInAreaPrvate.set_Location(new System.Drawing.Point(0x110, 0x8f));
     this.tbBuildInAreaPrvate.set_Name("tbBuildInAreaPrvate");
     this.tbBuildInAreaPrvate.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbBuildInAreaPrvate.set_TabIndex(0x24);
     this.label7.set_AutoSize(true);
     this.label7.set_Location(new System.Drawing.Point(3, 150));
     this.label7.set_Name("label7");
     this.label7.set_Size(new System.Drawing.Size(0x88, 13));
     this.label7.set_TabIndex(0x23);
     this.label7.set_Text("В частной собственности");
     this.tbBuildInAreaTotal.set_Location(new System.Drawing.Point(0x110, 120));
     this.tbBuildInAreaTotal.set_Name("tbBuildInAreaTotal");
     this.tbBuildInAreaTotal.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbBuildInAreaTotal.set_TabIndex(0x22);
     this.label8.set_AutoSize(true);
     this.label8.set_Location(new System.Drawing.Point(3, 0x7f));
     this.label8.set_Name("label8");
     this.label8.set_Size(new System.Drawing.Size(0x107, 13));
     this.label8.set_TabIndex(0x21);
     this.label8.set_Text("Общая площадь встроенных нежилых помещений");
     this.nudBuildInNumber.set_Location(new System.Drawing.Point(0x110, 0x61));
     int[] numArray2 = new int[4];
     numArray2[0] = 0x989680;
     this.nudBuildInNumber.set_Maximum(new decimal(numArray2));
     this.nudBuildInNumber.set_Name("nudBuildInNumber");
     this.nudBuildInNumber.set_Size(new System.Drawing.Size(0x45, 20));
     this.nudBuildInNumber.set_TabIndex(0x20);
     this.label5.set_AutoSize(true);
     this.label5.set_Location(new System.Drawing.Point(3, 0x68));
     this.label5.set_Name("label5");
     this.label5.set_Size(new System.Drawing.Size(0xef, 13));
     this.label5.set_TabIndex(0x1f);
     this.label5.set_Text("Количество встроенных нежилых помещений");
     this.tbCommonAreaState.set_Location(new System.Drawing.Point(0x110, 0x48));
     this.tbCommonAreaState.set_Name("tbCommonAreaState");
     this.tbCommonAreaState.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbCommonAreaState.set_TabIndex(30);
     this.label4.set_AutoSize(true);
     this.label4.set_Location(new System.Drawing.Point(3, 0x4f));
     this.label4.set_Name("label4");
     this.label4.set_Size(new System.Drawing.Size(0xb7, 13));
     this.label4.set_TabIndex(0x1d);
     this.label4.set_Text("В государственной собственности");
     this.tbCommonAreaPrivate.set_Location(new System.Drawing.Point(0x110, 0x31));
     this.tbCommonAreaPrivate.set_Name("tbCommonAreaPrivate");
     this.tbCommonAreaPrivate.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbCommonAreaPrivate.set_TabIndex(0x1c);
     this.label3.set_AutoSize(true);
     this.label3.set_Location(new System.Drawing.Point(3, 0x38));
     this.label3.set_Name("label3");
     this.label3.set_Size(new System.Drawing.Size(0x88, 13));
     this.label3.set_TabIndex(0x1b);
     this.label3.set_Text("В частной собственности");
     this.tbCommonAreaTotal.set_Location(new System.Drawing.Point(0x110, 0x1a));
     this.tbCommonAreaTotal.set_Name("tbCommonAreaTotal");
     this.tbCommonAreaTotal.set_Size(new System.Drawing.Size(0x45, 20));
     this.tbCommonAreaTotal.set_TabIndex(0x1a);
     this.label2.set_AutoSize(true);
     this.label2.set_Location(new System.Drawing.Point(3, 0x21));
     this.label2.set_Name("label2");
     this.label2.set_Size(new System.Drawing.Size(200, 13));
     this.label2.set_TabIndex(0x19);
     this.label2.set_Text("Общая площадь нежилых помещений");
     this.nudCommonNumber.set_Location(new System.Drawing.Point(0x110, 2));
     int[] numArray3 = new int[4];
     numArray3[0] = 0xf4240;
     this.nudCommonNumber.set_Maximum(new decimal(numArray3));
     this.nudCommonNumber.set_Name("nudCommonNumber");
     this.nudCommonNumber.set_Size(new System.Drawing.Size(0x45, 20));
     this.nudCommonNumber.set_TabIndex(0x18);
     this.label1.set_AutoSize(true);
     this.label1.set_Location(new System.Drawing.Point(3, 9));
     this.label1.set_Name("label1");
     this.label1.set_Size(new System.Drawing.Size(0xb0, 13));
     this.label1.set_TabIndex(0x17);
     this.label1.set_Text("Количество нежилых помещений");
     this.groupBox2.Controls.Add(this.panel2);
     this.groupBox2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.groupBox2.set_Location(new System.Drawing.Point(0, 0));
     this.groupBox2.set_Name("groupBox2");
     this.groupBox2.set_Size(new System.Drawing.Size(0x14d, 0x1d4));
     this.groupBox2.set_TabIndex(0);
     this.groupBox2.set_TabStop(false);
     this.groupBox2.set_Text("Экспликация земельного участка");
     this.panel2.set_AutoScroll(true);
     this.panel2.Controls.Add(this.btnSaveHouseAreaInfo);
     this.panel2.Controls.Add(this.tbLandAreaLawnsArea);
     this.panel2.Controls.Add(this.label33);
     this.panel2.Controls.Add(this.tbLandAreaUncoveredArea);
     this.panel2.Controls.Add(this.label35);
     this.panel2.Controls.Add(this.tbLandAreaInHouseArea);
     this.panel2.Controls.Add(this.label36);
     this.panel2.Controls.Add(this.tbNonBuildUpGreenSpacesOther);
     this.panel2.Controls.Add(this.label28);
     this.panel2.Controls.Add(this.tbNonBuildUpGreenSpacesLineWithTrees);
     this.panel2.Controls.Add(this.label29);
     this.panel2.Controls.Add(this.tbNonBuildUpGreenSpacesSquare);
     this.panel2.Controls.Add(this.label31);
     this.panel2.Controls.Add(this.tbNonBuildUpGreenSpacesTotal);
     this.panel2.Controls.Add(this.label27);
     this.panel2.Controls.Add(this.tbNonBuildUpSiteOther);
     this.panel2.Controls.Add(this.label23);
     this.panel2.Controls.Add(this.tbNonBuildUpSiteSport);
     this.panel2.Controls.Add(this.label24);
     this.panel2.Controls.Add(this.label25);
     this.panel2.Controls.Add(this.tbNonBuildUpSiteChildren);
     this.panel2.Controls.Add(this.label26);
     this.panel2.Controls.Add(this.tbNonBuildUpHardCoatingOther);
     this.panel2.Controls.Add(this.label22);
     this.panel2.Controls.Add(this.tbNonBuildUpHardCoatingSidewalks);
     this.panel2.Controls.Add(this.label21);
     this.panel2.Controls.Add(this.tbNonBuildUpHardCoatingLanes);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.tbNonBuildUpHardCoatingTotal);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.tbNonBuildUpAsphaltlessClaningArea);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.tbNonBuildUpTotal);
     this.panel2.Controls.Add(this.label16);
     this.panel2.Controls.Add(this.tbLandAreaBuildUp);
     this.panel2.Controls.Add(this.label15);
     this.panel2.Controls.Add(this.tbLandAreaTotal);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.tbLandAreaSurvey);
     this.panel2.Controls.Add(this.label13);
     this.panel2.Controls.Add(this.tbTechInventory);
     this.panel2.Controls.Add(this.label12);
     this.panel2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel2.set_Location(new System.Drawing.Point(3, 0x10));
     this.panel2.set_Name("panel2");
     this.panel2.set_Size(new System.Drawing.Size(0x147, 0x1c1));
     this.panel2.set_TabIndex(0);
     this.btnSaveHouseAreaInfo.set_Location(new System.Drawing.Point(0xfd, 0x17e));
     this.btnSaveHouseAreaInfo.set_Name("btnSaveHouseAreaInfo");
     this.btnSaveHouseAreaInfo.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnSaveHouseAreaInfo.set_TabIndex(0x56);
     this.btnSaveHouseAreaInfo.set_Text("Сохранить");
     this.btnSaveHouseAreaInfo.set_UseVisualStyleBackColor(true);
     this.btnSaveHouseAreaInfo.add_Click(new System.EventHandler(this.btnSaveHouseAreaInfo_Click));
     this.tbLandAreaLawnsArea.set_Location(new System.Drawing.Point(0x7a, 0x17e));
     this.tbLandAreaLawnsArea.set_Name("tbLandAreaLawnsArea");
     this.tbLandAreaLawnsArea.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaLawnsArea.set_TabIndex(0x55);
     this.label33.set_AutoSize(true);
     this.label33.set_Location(new System.Drawing.Point(0x77, 0x16d));
     this.label33.set_Name("label33");
     this.label33.set_Size(new System.Drawing.Size(0x2d, 13));
     this.label33.set_TabIndex(0x54);
     this.label33.set_Text("Газоны");
     this.tbLandAreaUncoveredArea.set_Location(new System.Drawing.Point(0x10, 0x17e));
     this.tbLandAreaUncoveredArea.set_Name("tbLandAreaUncoveredArea");
     this.tbLandAreaUncoveredArea.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaUncoveredArea.set_TabIndex(0x53);
     this.label35.set_AutoSize(true);
     this.label35.set_Location(new System.Drawing.Point(13, 0x16d));
     this.label35.set_Name("label35");
     this.label35.set_Size(new System.Drawing.Size(0x4e, 13));
     this.label35.set_TabIndex(0x52);
     this.label35.set_Text("Без покрытия");
     this.tbLandAreaInHouseArea.set_Location(new System.Drawing.Point(0xe4, 0x150));
     this.tbLandAreaInHouseArea.set_Name("tbLandAreaInHouseArea");
     this.tbLandAreaInHouseArea.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaInHouseArea.set_TabIndex(0x51);
     this.label36.set_AutoSize(true);
     this.label36.set_Location(new System.Drawing.Point(6, 340));
     this.label36.set_Name("label36");
     this.label36.set_Size(new System.Drawing.Size(0xda, 0x1a));
     this.label36.set_TabIndex(80);
     this.label36.set_Text("Площадь придомовой территории (всего)\r\nВ том числе:");
     this.tbNonBuildUpGreenSpacesOther.set_Location(new System.Drawing.Point(0xe4, 0x138));
     this.tbNonBuildUpGreenSpacesOther.set_Name("tbNonBuildUpGreenSpacesOther");
     this.tbNonBuildUpGreenSpacesOther.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpGreenSpacesOther.set_TabIndex(0x4f);
     this.label28.set_AutoSize(true);
     this.label28.set_Location(new System.Drawing.Point(0xe1, 0x128));
     this.label28.set_Name("label28");
     this.label28.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label28.set_TabIndex(0x4e);
     this.label28.set_Text("Прочее");
     this.tbNonBuildUpGreenSpacesLineWithTrees.set_Location(new System.Drawing.Point(0x7a, 0x138));
     this.tbNonBuildUpGreenSpacesLineWithTrees.set_Name("tbNonBuildUpGreenSpacesLineWithTrees");
     this.tbNonBuildUpGreenSpacesLineWithTrees.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpGreenSpacesLineWithTrees.set_TabIndex(0x4d);
     this.label29.set_AutoSize(true);
     this.label29.set_Location(new System.Drawing.Point(0x77, 0x128));
     this.label29.set_Name("label29");
     this.label29.set_Size(new System.Drawing.Size(0x25, 13));
     this.label29.set_TabIndex(0x4c);
     this.label29.set_Text("Газон");
     this.tbNonBuildUpGreenSpacesSquare.set_Location(new System.Drawing.Point(0x10, 0x138));
     this.tbNonBuildUpGreenSpacesSquare.set_Name("tbNonBuildUpGreenSpacesSquare");
     this.tbNonBuildUpGreenSpacesSquare.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpGreenSpacesSquare.set_TabIndex(0x4b);
     this.label31.set_AutoSize(true);
     this.label31.set_Location(new System.Drawing.Point(13, 0x128));
     this.label31.set_Name("label31");
     this.label31.set_Size(new System.Drawing.Size(0x26, 13));
     this.label31.set_TabIndex(0x4a);
     this.label31.set_Text("Сквер");
     this.tbNonBuildUpGreenSpacesTotal.set_Location(new System.Drawing.Point(0xe4, 0x108));
     this.tbNonBuildUpGreenSpacesTotal.set_Name("tbNonBuildUpGreenSpacesTotal");
     this.tbNonBuildUpGreenSpacesTotal.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpGreenSpacesTotal.set_TabIndex(0x49);
     this.label27.set_AutoSize(true);
     this.label27.set_Location(new System.Drawing.Point(6, 0x10f));
     this.label27.set_Name("label27");
     this.label27.set_Size(new System.Drawing.Size(0x9b, 0x1a));
     this.label27.set_TabIndex(0x48);
     this.label27.set_Text("Зеленые насаждения (всего)\r\nВ том числе:");
     this.tbNonBuildUpSiteOther.set_Location(new System.Drawing.Point(0xe4, 240));
     this.tbNonBuildUpSiteOther.set_Name("tbNonBuildUpSiteOther");
     this.tbNonBuildUpSiteOther.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpSiteOther.set_TabIndex(0x47);
     this.label23.set_AutoSize(true);
     this.label23.set_Location(new System.Drawing.Point(0xe1, 0xe1));
     this.label23.set_Name("label23");
     this.label23.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label23.set_TabIndex(70);
     this.label23.set_Text("Прочие");
     this.tbNonBuildUpSiteSport.set_Location(new System.Drawing.Point(0x7a, 240));
     this.tbNonBuildUpSiteSport.set_Name("tbNonBuildUpSiteSport");
     this.tbNonBuildUpSiteSport.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpSiteSport.set_TabIndex(0x45);
     this.label24.set_AutoSize(true);
     this.label24.set_Location(new System.Drawing.Point(0x77, 0xe1));
     this.label24.set_Name("label24");
     this.label24.set_Size(new System.Drawing.Size(0x45, 13));
     this.label24.set_TabIndex(0x44);
     this.label24.set_Text("Спортивные");
     this.label25.set_AutoSize(true);
     this.label25.set_Location(new System.Drawing.Point(6, 0xd3));
     this.label25.set_Name("label25");
     this.label25.set_Size(new System.Drawing.Size(60, 13));
     this.label25.set_TabIndex(0x43);
     this.label25.set_Text("Площадки");
     this.tbNonBuildUpSiteChildren.set_Location(new System.Drawing.Point(0x10, 240));
     this.tbNonBuildUpSiteChildren.set_Name("tbNonBuildUpSiteChildren");
     this.tbNonBuildUpSiteChildren.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpSiteChildren.set_TabIndex(0x42);
     this.label26.set_AutoSize(true);
     this.label26.set_Location(new System.Drawing.Point(13, 0xe1));
     this.label26.set_Name("label26");
     this.label26.set_Size(new System.Drawing.Size(0x33, 13));
     this.label26.set_TabIndex(0x41);
     this.label26.set_Text("Детские");
     this.tbNonBuildUpHardCoatingOther.set_Location(new System.Drawing.Point(0xe4, 190));
     this.tbNonBuildUpHardCoatingOther.set_Name("tbNonBuildUpHardCoatingOther");
     this.tbNonBuildUpHardCoatingOther.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpHardCoatingOther.set_TabIndex(0x40);
     this.label22.set_AutoSize(true);
     this.label22.set_Location(new System.Drawing.Point(0xe1, 0xae));
     this.label22.set_Name("label22");
     this.label22.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label22.set_TabIndex(0x3f);
     this.label22.set_Text("Прочие");
     this.tbNonBuildUpHardCoatingSidewalks.set_Location(new System.Drawing.Point(0x7a, 190));
     this.tbNonBuildUpHardCoatingSidewalks.set_Name("tbNonBuildUpHardCoatingSidewalks");
     this.tbNonBuildUpHardCoatingSidewalks.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpHardCoatingSidewalks.set_TabIndex(0x3e);
     this.label21.set_AutoSize(true);
     this.label21.set_Location(new System.Drawing.Point(0x77, 0xae));
     this.label21.set_Name("label21");
     this.label21.set_Size(new System.Drawing.Size(0x38, 13));
     this.label21.set_TabIndex(0x3d);
     this.label21.set_Text("Тротуары");
     this.tbNonBuildUpHardCoatingLanes.set_Location(new System.Drawing.Point(0x10, 190));
     this.tbNonBuildUpHardCoatingLanes.set_Name("tbNonBuildUpHardCoatingLanes");
     this.tbNonBuildUpHardCoatingLanes.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpHardCoatingLanes.set_TabIndex(60);
     this.label19.set_AutoSize(true);
     this.label19.set_Location(new System.Drawing.Point(13, 0xae));
     this.label19.set_Name("label19");
     this.label19.set_Size(new System.Drawing.Size(0x35, 13));
     this.label19.set_TabIndex(0x3b);
     this.label19.set_Text("Проезды");
     this.tbNonBuildUpHardCoatingTotal.set_Location(new System.Drawing.Point(0xe4, 0x8b));
     this.tbNonBuildUpHardCoatingTotal.set_Name("tbNonBuildUpHardCoatingTotal");
     this.tbNonBuildUpHardCoatingTotal.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpHardCoatingTotal.set_TabIndex(0x3a);
     this.label18.set_AutoSize(true);
     this.label18.set_Location(new System.Drawing.Point(6, 0x92));
     this.label18.set_Name("label18");
     this.label18.set_Size(new System.Drawing.Size(0x8e, 0x1a));
     this.label18.set_TabIndex(0x39);
     this.label18.set_Text("Твердые покрытия (всего)\r\nВ том числе:");
     this.tbNonBuildUpAsphaltlessClaningArea.set_Location(new System.Drawing.Point(0xe4, 0x73));
     this.tbNonBuildUpAsphaltlessClaningArea.set_Name("tbNonBuildUpAsphaltlessClaningArea");
     this.tbNonBuildUpAsphaltlessClaningArea.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpAsphaltlessClaningArea.set_TabIndex(0x38);
     this.label17.set_AutoSize(true);
     this.label17.set_Location(new System.Drawing.Point(6, 0x7a));
     this.label17.set_Name("label17");
     this.label17.set_Size(new System.Drawing.Size(0xa6, 13));
     this.label17.set_TabIndex(0x37);
     this.label17.set_Text("Неасфальтированная площадь");
     this.tbNonBuildUpTotal.set_Location(new System.Drawing.Point(0xe4, 0x5c));
     this.tbNonBuildUpTotal.set_Name("tbNonBuildUpTotal");
     this.tbNonBuildUpTotal.set_Size(new System.Drawing.Size(100, 20));
     this.tbNonBuildUpTotal.set_TabIndex(0x36);
     this.label16.set_AutoSize(true);
     this.label16.set_Location(new System.Drawing.Point(6, 0x62));
     this.label16.set_Name("label16");
     this.label16.set_Size(new System.Drawing.Size(0x86, 13));
     this.label16.set_TabIndex(0x35);
     this.label16.set_Text("Незастроенная площадь");
     this.tbLandAreaBuildUp.set_Location(new System.Drawing.Point(0xe4, 0x45));
     this.tbLandAreaBuildUp.set_Name("tbLandAreaBuildUp");
     this.tbLandAreaBuildUp.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaBuildUp.set_TabIndex(0x34);
     this.label15.set_AutoSize(true);
     this.label15.set_Location(new System.Drawing.Point(6, 0x4b));
     this.label15.set_Name("label15");
     this.label15.set_Size(new System.Drawing.Size(0x79, 13));
     this.label15.set_TabIndex(0x33);
     this.label15.set_Text("Застроенная площадь");
     this.tbLandAreaTotal.set_Location(new System.Drawing.Point(0xe4, 0x2e));
     this.tbLandAreaTotal.set_Name("tbLandAreaTotal");
     this.tbLandAreaTotal.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaTotal.set_TabIndex(50);
     this.label14.set_AutoSize(true);
     this.label14.set_Location(new System.Drawing.Point(6, 0x35));
     this.label14.set_Name("label14");
     this.label14.set_Size(new System.Drawing.Size(180, 13));
     this.label14.set_TabIndex(0x31);
     this.label14.set_Text("По фактическому использованию");
     this.tbLandAreaSurvey.set_Location(new System.Drawing.Point(0xe4, 0x18));
     this.tbLandAreaSurvey.set_Name("tbLandAreaSurvey");
     this.tbLandAreaSurvey.set_Size(new System.Drawing.Size(100, 20));
     this.tbLandAreaSurvey.set_TabIndex(0x30);
     this.label13.set_AutoSize(true);
     this.label13.set_Location(new System.Drawing.Point(6, 0x1f));
     this.label13.set_Name("label13");
     this.label13.set_Size(new System.Drawing.Size(0x7d, 13));
     this.label13.set_TabIndex(0x2f);
     this.label13.set_Text("По данным межевания");
     this.tbTechInventory.set_Location(new System.Drawing.Point(0xe4, 2));
     this.tbTechInventory.set_Name("tbTechInventory");
     this.tbTechInventory.set_Size(new System.Drawing.Size(100, 20));
     this.tbTechInventory.set_TabIndex(0x2e);
     this.label12.set_AutoSize(true);
     this.label12.set_Location(new System.Drawing.Point(6, 9));
     this.label12.set_Name("label12");
     this.label12.set_Size(new System.Drawing.Size(0xd8, 13));
     this.label12.set_TabIndex(0x2d);
     this.label12.set_Text("По данным технической инвентаризации");
     this.EngineeringEquipment.Controls.Add(this.tabControl1);
     this.EngineeringEquipment.set_Location(new System.Drawing.Point(4, 0x16));
     this.EngineeringEquipment.set_Name("EngineeringEquipment");
     this.EngineeringEquipment.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.EngineeringEquipment.set_TabIndex(4);
     this.EngineeringEquipment.set_Text("Инженерное оборудование");
     this.EngineeringEquipment.set_UseVisualStyleBackColor(true);
     this.tabControl1.Controls.Add(this.tabPage6);
     this.tabControl1.Controls.Add(this.tabPage7);
     this.tabControl1.Controls.Add(this.tabPage8);
     this.tabControl1.Controls.Add(this.tabPage9);
     this.tabControl1.Controls.Add(this.tabPage10);
     this.tabControl1.Controls.Add(this.tabPage11);
     this.tabControl1.Controls.Add(this.tabPage12);
     this.tabControl1.Controls.Add(this.tabPage13);
     this.tabControl1.Controls.Add(this.tabPage14);
     this.tabControl1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.tabControl1.set_Location(new System.Drawing.Point(0, 0));
     this.tabControl1.set_Name("tabControl1");
     this.tabControl1.set_SelectedIndex(0);
     this.tabControl1.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.tabControl1.set_TabIndex(0);
     this.tabPage6.Controls.Add(this.panel4);
     this.tabPage6.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage6.set_Name("tabPage6");
     this.tabPage6.set_Padding(new System.Windows.Forms.Padding(3));
     this.tabPage6.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage6.set_TabIndex(0);
     this.tabPage6.set_Text("Отопление");
     this.tabPage6.set_UseVisualStyleBackColor(true);
     this.panel4.set_AutoSize(true);
     this.panel4.Controls.Add(this.btnHeatingSave);
     this.panel4.Controls.Add(this.label54);
     this.panel4.Controls.Add(this.tbHeatingHeatedArea);
     this.panel4.Controls.Add(this.label52);
     this.panel4.Controls.Add(this.nudHeatingConvectorsNumber);
     this.panel4.Controls.Add(this.label53);
     this.panel4.Controls.Add(this.nudHeatingHeatCenterNumber);
     this.panel4.Controls.Add(this.label49);
     this.panel4.Controls.Add(this.nudHeatingBoxes);
     this.panel4.Controls.Add(this.label50);
     this.panel4.Controls.Add(this.nudHeatingElevators);
     this.panel4.Controls.Add(this.label51);
     this.panel4.Controls.Add(this.nudHeatingThreewayValvesNumber);
     this.panel4.Controls.Add(this.label46);
     this.panel4.Controls.Add(this.nudHeatingValvesNumber);
     this.panel4.Controls.Add(this.label47);
     this.panel4.Controls.Add(this.nudHeatingDynamicValvesNumber);
     this.panel4.Controls.Add(this.label48);
     this.panel4.Controls.Add(this.nudHeatingSteelHeatersNumber);
     this.panel4.Controls.Add(this.label45);
     this.panel4.Controls.Add(this.tbHeatingThermalInsulation);
     this.panel4.Controls.Add(this.label44);
     this.panel4.Controls.Add(this.nudHeatingLockedValvesNumber);
     this.panel4.Controls.Add(this.label43);
     this.panel4.Controls.Add(this.nudHeatingRadiatorNumberApartment);
     this.panel4.Controls.Add(this.label42);
     this.panel4.Controls.Add(this.nudHeatingRadiatorNumberStairwell);
     this.panel4.Controls.Add(this.label41);
     this.panel4.Controls.Add(this.tbHeatingArrangementApartment);
     this.panel4.Controls.Add(this.label40);
     this.panel4.Controls.Add(this.tbHeatingRisesLengthApartment);
     this.panel4.Controls.Add(this.label39);
     this.panel4.Controls.Add(this.tbHeatingRisesLengthBasement);
     this.panel4.Controls.Add(this.label38);
     this.panel4.Controls.Add(this.tbHeatingPipelineLength);
     this.panel4.Controls.Add(this.label37);
     this.panel4.Controls.Add(this.nudHeatingRisesNumber);
     this.panel4.Controls.Add(this.label34);
     this.panel4.Controls.Add(this.tbHeatingFillingLength);
     this.panel4.Controls.Add(this.label32);
     this.panel4.Controls.Add(this.nudHeatingControlAssemblyNumber);
     this.panel4.Controls.Add(this.label30);
     this.panel4.Controls.Add(this.nudHeatingEntryPointNumber);
     this.panel4.Controls.Add(this.cbHeatingHasMeter);
     this.panel4.Controls.Add(this.label20);
     this.panel4.Controls.Add(this.sfdHeatingType);
     this.panel4.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel4.set_Location(new System.Drawing.Point(3, 3));
     this.panel4.set_Name("panel4");
     this.panel4.set_Size(new System.Drawing.Size(0x271, 0x222));
     this.panel4.set_TabIndex(0);
     this.btnHeatingSave.set_Location(new System.Drawing.Point(0x115, 0x202));
     this.btnHeatingSave.set_Name("btnHeatingSave");
     this.btnHeatingSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnHeatingSave.set_TabIndex(0x47);
     this.btnHeatingSave.set_Text("Сохранить");
     this.btnHeatingSave.set_UseVisualStyleBackColor(true);
     this.btnHeatingSave.add_Click(new System.EventHandler(this.btnHeatingSave_Click));
     this.label54.set_AutoSize(true);
     this.label54.set_Location(new System.Drawing.Point(0, 0x1c3));
     this.label54.set_Name("label54");
     this.label54.set_Size(new System.Drawing.Size(130, 13));
     this.label54.set_TabIndex(0x5c);
     this.label54.set_Text("Отапливаемая площадь");
     this.tbHeatingHeatedArea.set_Location(new System.Drawing.Point(0xe7, 0x1bc));
     this.tbHeatingHeatedArea.set_Name("tbHeatingHeatedArea");
     this.tbHeatingHeatedArea.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingHeatedArea.set_TabIndex(0x43);
     this.label52.set_AutoSize(true);
     this.label52.set_Location(new System.Drawing.Point(1, 0x1f0));
     this.label52.set_Name("label52");
     this.label52.set_Size(new System.Drawing.Size(0x45, 13));
     this.label52.set_TabIndex(90);
     this.label52.set_Text("Конвекторы");
     this.nudHeatingConvectorsNumber.set_Location(new System.Drawing.Point(0xe7, 0x1eb));
     int[] numArray4 = new int[4];
     numArray4[0] = 0x5f5e100;
     this.nudHeatingConvectorsNumber.set_Maximum(new decimal(numArray4));
     this.nudHeatingConvectorsNumber.set_Name("nudHeatingConvectorsNumber");
     this.nudHeatingConvectorsNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingConvectorsNumber.set_TabIndex(0x45);
     this.label53.set_AutoSize(true);
     this.label53.set_Location(new System.Drawing.Point(1, 0x1d8));
     this.label53.set_Name("label53");
     this.label53.set_Size(new System.Drawing.Size(0x95, 13));
     this.label53.set_TabIndex(0x58);
     this.label53.set_Text("Количество тепловых узлов");
     this.nudHeatingHeatCenterNumber.set_Location(new System.Drawing.Point(0xe7, 0x1d3));
     int[] numArray5 = new int[4];
     numArray5[0] = 0xf4240;
     this.nudHeatingHeatCenterNumber.set_Maximum(new decimal(numArray5));
     this.nudHeatingHeatCenterNumber.set_Name("nudHeatingHeatCenterNumber");
     this.nudHeatingHeatCenterNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingHeatCenterNumber.set_TabIndex(0x44);
     this.label49.set_AutoSize(true);
     this.label49.set_Location(new System.Drawing.Point(1, 0x1ad));
     this.label49.set_Name("label49");
     this.label49.set_Size(new System.Drawing.Size(0x2c, 13));
     this.label49.set_TabIndex(0x56);
     this.label49.set_Text("Короба");
     this.nudHeatingBoxes.set_Location(new System.Drawing.Point(0xe7, 0x1a6));
     int[] numArray6 = new int[4];
     numArray6[0] = 0x989680;
     this.nudHeatingBoxes.set_Maximum(new decimal(numArray6));
     this.nudHeatingBoxes.set_Name("nudHeatingBoxes");
     this.nudHeatingBoxes.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingBoxes.set_TabIndex(0x42);
     this.label50.set_AutoSize(true);
     this.label50.set_Location(new System.Drawing.Point(1, 0x195));
     this.label50.set_Name("label50");
     this.label50.set_Size(new System.Drawing.Size(0x8e, 13));
     this.label50.set_TabIndex(0x54);
     this.label50.set_Text("Кол-во элеваторных узлов");
     this.nudHeatingElevators.set_Location(new System.Drawing.Point(0xe7, 0x18e));
     int[] numArray7 = new int[4];
     numArray7[0] = 0x989680;
     this.nudHeatingElevators.set_Maximum(new decimal(numArray7));
     this.nudHeatingElevators.set_Name("nudHeatingElevators");
     this.nudHeatingElevators.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingElevators.set_TabIndex(0x41);
     this.label51.set_AutoSize(true);
     this.label51.set_Location(new System.Drawing.Point(1, 0x17d));
     this.label51.set_Name("label51");
     this.label51.set_Size(new System.Drawing.Size(0x6d, 13));
     this.label51.set_TabIndex(0x52);
     this.label51.set_Text("Трехходовые краны");
     this.nudHeatingThreewayValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0x176));
     int[] numArray8 = new int[4];
     numArray8[0] = 0x989680;
     this.nudHeatingThreewayValvesNumber.set_Maximum(new decimal(numArray8));
     this.nudHeatingThreewayValvesNumber.set_Name("nudHeatingThreewayValvesNumber");
     this.nudHeatingThreewayValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingThreewayValvesNumber.set_TabIndex(0x40);
     this.label46.set_AutoSize(true);
     this.label46.set_Location(new System.Drawing.Point(2, 0x167));
     this.label46.set_Name("label46");
     this.label46.set_Size(new System.Drawing.Size(0x31, 13));
     this.label46.set_TabIndex(80);
     this.label46.set_Text("Вентили");
     this.nudHeatingValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0x160));
     int[] numArray9 = new int[4];
     numArray9[0] = 0x989680;
     this.nudHeatingValvesNumber.set_Maximum(new decimal(numArray9));
     this.nudHeatingValvesNumber.set_Name("nudHeatingValvesNumber");
     this.nudHeatingValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingValvesNumber.set_TabIndex(0x3f);
     this.label47.set_AutoSize(true);
     this.label47.set_Location(new System.Drawing.Point(2, 0x150));
     this.label47.set_Name("label47");
     this.label47.set_Size(new System.Drawing.Size(0x3a, 13));
     this.label47.set_TabIndex(0x4e);
     this.label47.set_Text("Задвижки");
     this.nudHeatingDynamicValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0x149));
     int[] numArray10 = new int[4];
     numArray10[0] = 0x989680;
     this.nudHeatingDynamicValvesNumber.set_Maximum(new decimal(numArray10));
     this.nudHeatingDynamicValvesNumber.set_Name("nudHeatingDynamicValvesNumber");
     this.nudHeatingDynamicValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingDynamicValvesNumber.set_TabIndex(0x3e);
     this.label48.set_AutoSize(true);
     this.label48.set_Location(new System.Drawing.Point(2, 0x138));
     this.label48.set_Name("label48");
     this.label48.set_Size(new System.Drawing.Size(0x7c, 13));
     this.label48.set_TabIndex(0x4c);
     this.label48.set_Text("Калориферы стальные");
     this.nudHeatingSteelHeatersNumber.set_Location(new System.Drawing.Point(0xe7, 0x133));
     int[] numArray11 = new int[4];
     numArray11[0] = 0x989680;
     this.nudHeatingSteelHeatersNumber.set_Maximum(new decimal(numArray11));
     this.nudHeatingSteelHeatersNumber.set_Name("nudHeatingSteelHeatersNumber");
     this.nudHeatingSteelHeatersNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingSteelHeatersNumber.set_TabIndex(0x3d);
     this.label45.set_AutoSize(true);
     this.label45.set_Location(new System.Drawing.Point(1, 0x123));
     this.label45.set_Name("label45");
     this.label45.set_Size(new System.Drawing.Size(0x86, 13));
     this.label45.set_TabIndex(0x4a);
     this.label45.set_Text("Площадь теплоизоляции");
     this.tbHeatingThermalInsulation.set_Location(new System.Drawing.Point(0xe7, 0x11c));
     this.tbHeatingThermalInsulation.set_Name("tbHeatingThermalInsulation");
     this.tbHeatingThermalInsulation.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingThermalInsulation.set_TabIndex(60);
     this.label44.set_AutoSize(true);
     this.label44.set_Location(new System.Drawing.Point(2, 0x10b));
     this.label44.set_Name("label44");
     this.label44.set_Size(new System.Drawing.Size(0xd8, 13));
     this.label44.set_TabIndex(0x48);
     this.label44.set_Text("Кол-во запорно-регулирующая арматуры");
     this.nudHeatingLockedValvesNumber.set_Location(new System.Drawing.Point(0xe7, 260));
     int[] numArray12 = new int[4];
     numArray12[0] = 0x989680;
     this.nudHeatingLockedValvesNumber.set_Maximum(new decimal(numArray12));
     this.nudHeatingLockedValvesNumber.set_Name("nudHeatingLockedValvesNumber");
     this.nudHeatingLockedValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingLockedValvesNumber.set_TabIndex(0x3b);
     this.label43.set_AutoSize(true);
     this.label43.set_Location(new System.Drawing.Point(2, 0xf2));
     this.label43.set_Name("label43");
     this.label43.set_Size(new System.Drawing.Size(0xa7, 13));
     this.label43.set_TabIndex(70);
     this.label43.set_Text("Кол-во радиаторов в квартирах");
     this.nudHeatingRadiatorNumberApartment.set_Location(new System.Drawing.Point(0xe7, 0xeb));
     int[] numArray13 = new int[4];
     numArray13[0] = 0xf4240;
     this.nudHeatingRadiatorNumberApartment.set_Maximum(new decimal(numArray13));
     this.nudHeatingRadiatorNumberApartment.set_Name("nudHeatingRadiatorNumberApartment");
     this.nudHeatingRadiatorNumberApartment.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingRadiatorNumberApartment.set_TabIndex(0x3a);
     this.label42.set_AutoSize(true);
     this.label42.set_Location(new System.Drawing.Point(2, 0xda));
     this.label42.set_Name("label42");
     this.label42.set_Size(new System.Drawing.Size(0xdf, 13));
     this.label42.set_TabIndex(0x44);
     this.label42.set_Text("Кол-во радиаторов на лестничных клетках");
     this.nudHeatingRadiatorNumberStairwell.set_Location(new System.Drawing.Point(0xe7, 0xd3));
     int[] numArray14 = new int[4];
     numArray14[0] = 0xf4240;
     this.nudHeatingRadiatorNumberStairwell.set_Maximum(new decimal(numArray14));
     this.nudHeatingRadiatorNumberStairwell.set_Name("nudHeatingRadiatorNumberStairwell");
     this.nudHeatingRadiatorNumberStairwell.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingRadiatorNumberStairwell.set_TabIndex(0x39);
     this.label41.set_AutoSize(true);
     this.label41.set_Location(new System.Drawing.Point(1, 0xc2));
     this.label41.set_Name("label41");
     this.label41.set_Size(new System.Drawing.Size(0x9b, 13));
     this.label41.set_TabIndex(0x42);
     this.label41.set_Text("Длина разводки в квартирах");
     this.tbHeatingArrangementApartment.set_Location(new System.Drawing.Point(0xe7, 0xbb));
     this.tbHeatingArrangementApartment.set_Name("tbHeatingArrangementApartment");
     this.tbHeatingArrangementApartment.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbHeatingArrangementApartment.set_TabIndex(0x38);
     this.label40.set_AutoSize(true);
     this.label40.set_Location(new System.Drawing.Point(1, 170));
     this.label40.set_Name("label40");
     this.label40.set_Size(new System.Drawing.Size(0x94, 13));
     this.label40.set_TabIndex(0x40);
     this.label40.set_Text("Длина стояков в квартирах");
     this.tbHeatingRisesLengthApartment.set_Location(new System.Drawing.Point(0xe7, 0xa3));
     this.tbHeatingRisesLengthApartment.set_Name("tbHeatingRisesLengthApartment");
     this.tbHeatingRisesLengthApartment.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingRisesLengthApartment.set_TabIndex(0x37);
     this.label39.set_AutoSize(true);
     this.label39.set_Location(new System.Drawing.Point(2, 0x93));
     this.label39.set_Name("label39");
     this.label39.set_Size(new System.Drawing.Size(0x8f, 13));
     this.label39.set_TabIndex(0x3e);
     this.label39.set_Text("Длина стояков в подвалах");
     this.tbHeatingRisesLengthBasement.set_Location(new System.Drawing.Point(0xe7, 140));
     this.tbHeatingRisesLengthBasement.set_Name("tbHeatingRisesLengthBasement");
     this.tbHeatingRisesLengthBasement.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingRisesLengthBasement.set_TabIndex(0x36);
     this.label38.set_AutoSize(true);
     this.label38.set_Location(new System.Drawing.Point(1, 0x7c));
     this.label38.set_Name("label38");
     this.label38.set_Size(new System.Drawing.Size(0x77, 13));
     this.label38.set_TabIndex(60);
     this.label38.set_Text("Длина трубопроводов");
     this.tbHeatingPipelineLength.set_Location(new System.Drawing.Point(0xe7, 0x75));
     this.tbHeatingPipelineLength.set_Name("tbHeatingPipelineLength");
     this.tbHeatingPipelineLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingPipelineLength.set_TabIndex(0x35);
     this.label37.set_AutoSize(true);
     this.label37.set_Location(new System.Drawing.Point(2, 100));
     this.label37.set_Name("label37");
     this.label37.set_Size(new System.Drawing.Size(0x55, 13));
     this.label37.set_TabIndex(0x3a);
     this.label37.set_Text("Кол-во стояков");
     this.nudHeatingRisesNumber.set_Location(new System.Drawing.Point(0xe7, 0x5d));
     int[] numArray15 = new int[4];
     numArray15[0] = 0xf4240;
     this.nudHeatingRisesNumber.set_Maximum(new decimal(numArray15));
     this.nudHeatingRisesNumber.set_Name("nudHeatingRisesNumber");
     this.nudHeatingRisesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingRisesNumber.set_TabIndex(0x34);
     this.label34.set_AutoSize(true);
     this.label34.set_Location(new System.Drawing.Point(3, 0x4e));
     this.label34.set_Name("label34");
     this.label34.set_Size(new System.Drawing.Size(0x55, 13));
     this.label34.set_TabIndex(0x38);
     this.label34.set_Text("Длина разлива");
     this.tbHeatingFillingLength.set_Location(new System.Drawing.Point(0xe7, 70));
     this.tbHeatingFillingLength.set_Name("tbHeatingFillingLength");
     this.tbHeatingFillingLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbHeatingFillingLength.set_TabIndex(0x33);
     this.label32.set_AutoSize(true);
     this.label32.set_Location(new System.Drawing.Point(2, 0x37));
     this.label32.set_Name("label32");
     this.label32.set_Size(new System.Drawing.Size(0x87, 13));
     this.label32.set_TabIndex(0x36);
     this.label32.set_Text("Кол-во узлов управления");
     this.nudHeatingControlAssemblyNumber.set_Location(new System.Drawing.Point(0xe7, 0x30));
     int[] numArray16 = new int[4];
     numArray16[0] = 0xf4240;
     this.nudHeatingControlAssemblyNumber.set_Maximum(new decimal(numArray16));
     this.nudHeatingControlAssemblyNumber.set_Name("nudHeatingControlAssemblyNumber");
     this.nudHeatingControlAssemblyNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingControlAssemblyNumber.set_TabIndex(50);
     this.label30.set_AutoSize(true);
     this.label30.set_Location(new System.Drawing.Point(3, 0x21));
     this.label30.set_Name("label30");
     this.label30.set_Size(new System.Drawing.Size(0x68, 13));
     this.label30.set_TabIndex(0x34);
     this.label30.set_Text("Кол-во точек входа");
     this.nudHeatingEntryPointNumber.set_Location(new System.Drawing.Point(0xe7, 0x1a));
     int[] numArray17 = new int[4];
     numArray17[0] = 0xf4240;
     this.nudHeatingEntryPointNumber.set_Maximum(new decimal(numArray17));
     this.nudHeatingEntryPointNumber.set_Name("nudHeatingEntryPointNumber");
     this.nudHeatingEntryPointNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHeatingEntryPointNumber.set_TabIndex(0x31);
     this.cbHeatingHasMeter.set_AutoSize(true);
     this.cbHeatingHasMeter.set_Location(new System.Drawing.Point(0, 520));
     this.cbHeatingHasMeter.set_Name("cbHeatingHasMeter");
     this.cbHeatingHasMeter.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbHeatingHasMeter.set_Size(new System.Drawing.Size(150, 0x11));
     this.cbHeatingHasMeter.set_TabIndex(70);
     this.cbHeatingHasMeter.set_Text("Наличие приборов учета");
     this.cbHeatingHasMeter.set_UseVisualStyleBackColor(true);
     this.label20.set_AutoSize(true);
     this.label20.set_Location(new System.Drawing.Point(3, 11));
     this.label20.set_Name("label20");
     this.label20.set_Size(new System.Drawing.Size(0x1a, 13));
     this.label20.set_TabIndex(0x31);
     this.label20.set_Text("Тип");
     this.sfdHeatingType.set_FormattingEnabled(true);
     this.sfdHeatingType.set_Location(new System.Drawing.Point(0xe7, 3));
     this.sfdHeatingType.set_Name("sfdHeatingType");
     this.sfdHeatingType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdHeatingType.set_Sorted(true);
     this.sfdHeatingType.set_TabIndex(0x30);
     this.tabPage7.Controls.Add(this.panel5);
     this.tabPage7.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage7.set_Name("tabPage7");
     this.tabPage7.set_Padding(new System.Windows.Forms.Padding(3));
     this.tabPage7.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage7.set_TabIndex(1);
     this.tabPage7.set_Text("ГВС");
     this.tabPage7.set_UseVisualStyleBackColor(true);
     this.panel5.set_AutoScroll(true);
     this.panel5.Controls.Add(this.nudHotWaterFillingLength);
     this.panel5.Controls.Add(this.btnHotWaterSave);
     this.panel5.Controls.Add(this.label66);
     this.panel5.Controls.Add(this.nudHotWaterBasementPlugValvesNumber);
     this.panel5.Controls.Add(this.label64);
     this.panel5.Controls.Add(this.nudHotWaterBasementValvesNumber);
     this.panel5.Controls.Add(this.label65);
     this.panel5.Controls.Add(this.nudHotWaterDynamicValvesNumber);
     this.panel5.Controls.Add(this.label56);
     this.panel5.Controls.Add(this.tbHotWaterArrangementApartment);
     this.panel5.Controls.Add(this.label57);
     this.panel5.Controls.Add(this.tbHotWaterRisesLengthApartment);
     this.panel5.Controls.Add(this.label58);
     this.panel5.Controls.Add(this.tbHotWaterRisesLengthBasement);
     this.panel5.Controls.Add(this.label59);
     this.panel5.Controls.Add(this.tbHotWaterPipelineLength);
     this.panel5.Controls.Add(this.label60);
     this.panel5.Controls.Add(this.nudHotWaterRisesNumber);
     this.panel5.Controls.Add(this.label61);
     this.panel5.Controls.Add(this.label62);
     this.panel5.Controls.Add(this.nudHotWaterControlAssemblyNumber);
     this.panel5.Controls.Add(this.label63);
     this.panel5.Controls.Add(this.nudHotWaterEntryPointNumber);
     this.panel5.Controls.Add(this.cbHotWaterHasMeter);
     this.panel5.Controls.Add(this.label55);
     this.panel5.Controls.Add(this.sfdHotWaterType);
     this.panel5.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel5.set_Location(new System.Drawing.Point(3, 3));
     this.panel5.set_Name("panel5");
     this.panel5.set_Size(new System.Drawing.Size(0x271, 0x222));
     this.panel5.set_TabIndex(0);
     this.nudHotWaterFillingLength.set_Location(new System.Drawing.Point(0xe7, 0x47));
     int[] numArray18 = new int[4];
     numArray18[0] = 0x989680;
     this.nudHotWaterFillingLength.set_Maximum(new decimal(numArray18));
     this.nudHotWaterFillingLength.set_Name("nudHotWaterFillingLength");
     this.nudHotWaterFillingLength.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterFillingLength.set_TabIndex(0x4b);
     this.btnHotWaterSave.set_Location(new System.Drawing.Point(0x114, 0x119));
     this.btnHotWaterSave.set_Name("btnHotWaterSave");
     this.btnHotWaterSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnHotWaterSave.set_TabIndex(0x55);
     this.btnHotWaterSave.set_Text("Сохранить");
     this.btnHotWaterSave.set_UseVisualStyleBackColor(true);
     this.btnHotWaterSave.add_Click(new System.EventHandler(this.btnHotWaterSave_Click));
     this.label66.set_AutoSize(true);
     this.label66.set_Location(new System.Drawing.Point(2, 0x108));
     this.label66.set_Name("label66");
     this.label66.set_Size(new System.Drawing.Size(0xc5, 13));
     this.label66.set_TabIndex(0x58);
     this.label66.set_Text("Кол-во пробковых кранов в подвалах");
     this.nudHotWaterBasementPlugValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0x101));
     int[] numArray19 = new int[4];
     numArray19[0] = 0x989680;
     this.nudHotWaterBasementPlugValvesNumber.set_Maximum(new decimal(numArray19));
     this.nudHotWaterBasementPlugValvesNumber.set_Name("nudHotWaterBasementPlugValvesNumber");
     this.nudHotWaterBasementPlugValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterBasementPlugValvesNumber.set_TabIndex(0x53);
     this.label64.set_AutoSize(true);
     this.label64.set_Location(new System.Drawing.Point(2, 0xf1));
     this.label64.set_Name("label64");
     this.label64.set_Size(new System.Drawing.Size(150, 13));
     this.label64.set_TabIndex(0x56);
     this.label64.set_Text("Кол-во вентилей в подвалах");
     this.nudHotWaterBasementValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0xea));
     int[] numArray20 = new int[4];
     numArray20[0] = 0x989680;
     this.nudHotWaterBasementValvesNumber.set_Maximum(new decimal(numArray20));
     this.nudHotWaterBasementValvesNumber.set_Name("nudHotWaterBasementValvesNumber");
     this.nudHotWaterBasementValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterBasementValvesNumber.set_TabIndex(0x52);
     this.label65.set_AutoSize(true);
     this.label65.set_Location(new System.Drawing.Point(3, 0xda));
     this.label65.set_Name("label65");
     this.label65.set_Size(new System.Drawing.Size(0x5e, 13));
     this.label65.set_TabIndex(0x54);
     this.label65.set_Text("Кол-во задвижек");
     this.nudHotWaterDynamicValvesNumber.set_Location(new System.Drawing.Point(0xe7, 0xd3));
     int[] numArray21 = new int[4];
     numArray21[0] = 0x989680;
     this.nudHotWaterDynamicValvesNumber.set_Maximum(new decimal(numArray21));
     this.nudHotWaterDynamicValvesNumber.set_Name("nudHotWaterDynamicValvesNumber");
     this.nudHotWaterDynamicValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterDynamicValvesNumber.set_TabIndex(0x51);
     this.label56.set_AutoSize(true);
     this.label56.set_Location(new System.Drawing.Point(1, 0xc2));
     this.label56.set_Name("label56");
     this.label56.set_Size(new System.Drawing.Size(0x9b, 13));
     this.label56.set_TabIndex(0x52);
     this.label56.set_Text("Длина разводки в квартирах");
     this.tbHotWaterArrangementApartment.set_Location(new System.Drawing.Point(0xe7, 0xbb));
     this.tbHotWaterArrangementApartment.set_Name("tbHotWaterArrangementApartment");
     this.tbHotWaterArrangementApartment.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbHotWaterArrangementApartment.set_TabIndex(80);
     this.label57.set_AutoSize(true);
     this.label57.set_Location(new System.Drawing.Point(1, 170));
     this.label57.set_Name("label57");
     this.label57.set_Size(new System.Drawing.Size(0x94, 13));
     this.label57.set_TabIndex(80);
     this.label57.set_Text("Длина стояков в квартирах");
     this.tbHotWaterRisesLengthApartment.set_Location(new System.Drawing.Point(0xe7, 0xa3));
     this.tbHotWaterRisesLengthApartment.set_Name("tbHotWaterRisesLengthApartment");
     this.tbHotWaterRisesLengthApartment.set_Size(new System.Drawing.Size(120, 20));
     this.tbHotWaterRisesLengthApartment.set_TabIndex(0x4f);
     this.label58.set_AutoSize(true);
     this.label58.set_Location(new System.Drawing.Point(2, 0x93));
     this.label58.set_Name("label58");
     this.label58.set_Size(new System.Drawing.Size(0x8f, 13));
     this.label58.set_TabIndex(0x4e);
     this.label58.set_Text("Длина стояков в подвалах");
     this.tbHotWaterRisesLengthBasement.set_Location(new System.Drawing.Point(0xe7, 140));
     this.tbHotWaterRisesLengthBasement.set_Name("tbHotWaterRisesLengthBasement");
     this.tbHotWaterRisesLengthBasement.set_Size(new System.Drawing.Size(120, 20));
     this.tbHotWaterRisesLengthBasement.set_TabIndex(0x4e);
     this.label59.set_AutoSize(true);
     this.label59.set_Location(new System.Drawing.Point(1, 0x7c));
     this.label59.set_Name("label59");
     this.label59.set_Size(new System.Drawing.Size(0x77, 13));
     this.label59.set_TabIndex(0x4c);
     this.label59.set_Text("Длина трубопроводов");
     this.tbHotWaterPipelineLength.set_Location(new System.Drawing.Point(0xe7, 0x75));
     this.tbHotWaterPipelineLength.set_Name("tbHotWaterPipelineLength");
     this.tbHotWaterPipelineLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbHotWaterPipelineLength.set_TabIndex(0x4d);
     this.label60.set_AutoSize(true);
     this.label60.set_Location(new System.Drawing.Point(2, 100));
     this.label60.set_Name("label60");
     this.label60.set_Size(new System.Drawing.Size(0x55, 13));
     this.label60.set_TabIndex(0x4a);
     this.label60.set_Text("Кол-во стояков");
     this.nudHotWaterRisesNumber.set_Location(new System.Drawing.Point(0xe7, 0x5d));
     int[] numArray22 = new int[4];
     numArray22[0] = 0x989680;
     this.nudHotWaterRisesNumber.set_Maximum(new decimal(numArray22));
     this.nudHotWaterRisesNumber.set_Name("nudHotWaterRisesNumber");
     this.nudHotWaterRisesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterRisesNumber.set_TabIndex(0x4c);
     this.label61.set_AutoSize(true);
     this.label61.set_Location(new System.Drawing.Point(3, 0x4f));
     this.label61.set_Name("label61");
     this.label61.set_Size(new System.Drawing.Size(0x55, 13));
     this.label61.set_TabIndex(0x48);
     this.label61.set_Text("Длина разлива");
     this.label62.set_AutoSize(true);
     this.label62.set_Location(new System.Drawing.Point(2, 0x38));
     this.label62.set_Name("label62");
     this.label62.set_Size(new System.Drawing.Size(0x87, 13));
     this.label62.set_TabIndex(70);
     this.label62.set_Text("Кол-во узлов управления");
     this.nudHotWaterControlAssemblyNumber.set_Location(new System.Drawing.Point(0xe7, 0x31));
     int[] numArray23 = new int[4];
     numArray23[0] = 0x989680;
     this.nudHotWaterControlAssemblyNumber.set_Maximum(new decimal(numArray23));
     this.nudHotWaterControlAssemblyNumber.set_Name("nudHotWaterControlAssemblyNumber");
     this.nudHotWaterControlAssemblyNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterControlAssemblyNumber.set_TabIndex(0x4a);
     this.label63.set_AutoSize(true);
     this.label63.set_Location(new System.Drawing.Point(3, 0x22));
     this.label63.set_Name("label63");
     this.label63.set_Size(new System.Drawing.Size(0x68, 13));
     this.label63.set_TabIndex(0x44);
     this.label63.set_Text("Кол-во точек входа");
     this.nudHotWaterEntryPointNumber.set_Location(new System.Drawing.Point(0xe7, 0x1b));
     int[] numArray24 = new int[4];
     numArray24[0] = 0xf4240;
     this.nudHotWaterEntryPointNumber.set_Maximum(new decimal(numArray24));
     this.nudHotWaterEntryPointNumber.set_Name("nudHotWaterEntryPointNumber");
     this.nudHotWaterEntryPointNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudHotWaterEntryPointNumber.set_TabIndex(0x49);
     this.cbHotWaterHasMeter.set_AutoSize(true);
     this.cbHotWaterHasMeter.set_Location(new System.Drawing.Point(1, 0x11f));
     this.cbHotWaterHasMeter.set_Name("cbHotWaterHasMeter");
     this.cbHotWaterHasMeter.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbHotWaterHasMeter.set_Size(new System.Drawing.Size(150, 0x11));
     this.cbHotWaterHasMeter.set_TabIndex(0x54);
     this.cbHotWaterHasMeter.set_Text("Наличие приборов учета");
     this.cbHotWaterHasMeter.set_UseVisualStyleBackColor(true);
     this.label55.set_AutoSize(true);
     this.label55.set_Location(new System.Drawing.Point(3, 11));
     this.label55.set_Name("label55");
     this.label55.set_Size(new System.Drawing.Size(0x1a, 13));
     this.label55.set_TabIndex(0x33);
     this.label55.set_Text("Тип");
     this.sfdHotWaterType.set_FormattingEnabled(true);
     this.sfdHotWaterType.set_Location(new System.Drawing.Point(0xe7, 3));
     this.sfdHotWaterType.set_Name("sfdHotWaterType");
     this.sfdHotWaterType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdHotWaterType.set_Sorted(true);
     this.sfdHotWaterType.set_TabIndex(0x48);
     this.tabPage8.Controls.Add(this.panel6);
     this.tabPage8.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage8.set_Name("tabPage8");
     this.tabPage8.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage8.set_TabIndex(2);
     this.tabPage8.set_Text("Водоотведение");
     this.tabPage8.set_UseVisualStyleBackColor(true);
     this.panel6.set_AutoScroll(true);
     this.panel6.Controls.Add(this.btnSaveSewage);
     this.panel6.Controls.Add(this.label72);
     this.panel6.Controls.Add(this.nudSewageAuditCoversNumber);
     this.panel6.Controls.Add(this.label73);
     this.panel6.Controls.Add(this.tbSewageRisesLength);
     this.panel6.Controls.Add(this.label70);
     this.panel6.Controls.Add(this.nudSewageRisesNumber);
     this.panel6.Controls.Add(this.label71);
     this.panel6.Controls.Add(this.tbSewageBasementRisesLength);
     this.panel6.Controls.Add(this.label68);
     this.panel6.Controls.Add(this.tbSewagePipelineLength);
     this.panel6.Controls.Add(this.label69);
     this.panel6.Controls.Add(this.tbSewageBasementTubeLength);
     this.panel6.Controls.Add(this.label67);
     this.panel6.Controls.Add(this.sfdSewageType);
     this.panel6.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel6.set_Location(new System.Drawing.Point(0, 0));
     this.panel6.set_Name("panel6");
     this.panel6.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel6.set_TabIndex(0);
     this.btnSaveSewage.set_Location(new System.Drawing.Point(0x120, 0xae));
     this.btnSaveSewage.set_Name("btnSaveSewage");
     this.btnSaveSewage.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnSaveSewage.set_TabIndex(0x5d);
     this.btnSaveSewage.set_Text("Сохранить");
     this.btnSaveSewage.set_UseVisualStyleBackColor(true);
     this.btnSaveSewage.add_Click(new System.EventHandler(this.btnSaveSewage_Click));
     this.label72.set_AutoSize(true);
     this.label72.set_Location(new System.Drawing.Point(2, 0x9b));
     this.label72.set_Name("label72");
     this.label72.set_Size(new System.Drawing.Size(0x9a, 13));
     this.label72.set_TabIndex(90);
     this.label72.set_Text("Количество крышек ревизий");
     this.nudSewageAuditCoversNumber.set_Location(new System.Drawing.Point(0xf2, 0x94));
     int[] numArray25 = new int[4];
     numArray25[0] = 0x5f5e100;
     this.nudSewageAuditCoversNumber.set_Maximum(new decimal(numArray25));
     this.nudSewageAuditCoversNumber.set_Name("nudSewageAuditCoversNumber");
     this.nudSewageAuditCoversNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudSewageAuditCoversNumber.set_TabIndex(0x5c);
     this.label73.set_AutoSize(true);
     this.label73.set_Location(new System.Drawing.Point(3, 0x85));
     this.label73.set_Name("label73");
     this.label73.set_Size(new System.Drawing.Size(0x54, 13));
     this.label73.set_TabIndex(0x58);
     this.label73.set_Text("Длина стояков");
     this.tbSewageRisesLength.set_Location(new System.Drawing.Point(0xf2, 0x7d));
     this.tbSewageRisesLength.set_Name("tbSewageRisesLength");
     this.tbSewageRisesLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbSewageRisesLength.set_TabIndex(0x5b);
     this.label70.set_AutoSize(true);
     this.label70.set_Location(new System.Drawing.Point(2, 0x6d));
     this.label70.set_Name("label70");
     this.label70.set_Size(new System.Drawing.Size(0x55, 13));
     this.label70.set_TabIndex(0x56);
     this.label70.set_Text("Кол-во стояков");
     this.nudSewageRisesNumber.set_Location(new System.Drawing.Point(0xf2, 0x66));
     int[] numArray26 = new int[4];
     numArray26[0] = 0x989680;
     this.nudSewageRisesNumber.set_Maximum(new decimal(numArray26));
     this.nudSewageRisesNumber.set_Name("nudSewageRisesNumber");
     this.nudSewageRisesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudSewageRisesNumber.set_TabIndex(90);
     this.label71.set_AutoSize(true);
     this.label71.set_Location(new System.Drawing.Point(3, 0x57));
     this.label71.set_Name("label71");
     this.label71.set_Size(new System.Drawing.Size(0xed, 13));
     this.label71.set_TabIndex(0x54);
     this.label71.set_Text("Длина канализационных стояков в подвалах");
     this.tbSewageBasementRisesLength.set_Location(new System.Drawing.Point(0xf2, 0x4f));
     this.tbSewageBasementRisesLength.set_Name("tbSewageBasementRisesLength");
     this.tbSewageBasementRisesLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbSewageBasementRisesLength.set_TabIndex(0x59);
     this.label68.set_AutoSize(true);
     this.label68.set_Location(new System.Drawing.Point(2, 0x3d));
     this.label68.set_Name("label68");
     this.label68.set_Size(new System.Drawing.Size(0x77, 13));
     this.label68.set_TabIndex(0x52);
     this.label68.set_Text("Длина трубопроводов");
     this.tbSewagePipelineLength.set_Location(new System.Drawing.Point(0xf2, 0x37));
     this.tbSewagePipelineLength.set_Name("tbSewagePipelineLength");
     this.tbSewagePipelineLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbSewagePipelineLength.set_TabIndex(0x58);
     this.label69.set_AutoSize(true);
     this.label69.set_Location(new System.Drawing.Point(1, 0x27));
     this.label69.set_Name("label69");
     this.label69.set_Size(new System.Drawing.Size(0xda, 13));
     this.label69.set_TabIndex(80);
     this.label69.set_Text("Длина канализационных труб в подвалах");
     this.tbSewageBasementTubeLength.set_Location(new System.Drawing.Point(0xf2, 0x20));
     this.tbSewageBasementTubeLength.set_Name("tbSewageBasementTubeLength");
     this.tbSewageBasementTubeLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbSewageBasementTubeLength.set_TabIndex(0x57);
     this.label67.set_AutoSize(true);
     this.label67.set_Location(new System.Drawing.Point(3, 15));
     this.label67.set_Name("label67");
     this.label67.set_Size(new System.Drawing.Size(0x1a, 13));
     this.label67.set_TabIndex(0x35);
     this.label67.set_Text("Тип");
     this.sfdSewageType.set_FormattingEnabled(true);
     this.sfdSewageType.set_Location(new System.Drawing.Point(0xf2, 7));
     this.sfdSewageType.set_Name("sfdSewageType");
     this.sfdSewageType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdSewageType.set_Sorted(true);
     this.sfdSewageType.set_TabIndex(0x56);
     this.tabPage9.Controls.Add(this.panel7);
     this.tabPage9.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage9.set_Name("tabPage9");
     this.tabPage9.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage9.set_TabIndex(3);
     this.tabPage9.set_Text("ХВС");
     this.tabPage9.set_UseVisualStyleBackColor(true);
     this.panel7.set_AutoScroll(true);
     this.panel7.Controls.Add(this.btnColdWaterSave);
     this.panel7.Controls.Add(this.label84);
     this.panel7.Controls.Add(this.nudColdWaterBrassValvesNumber);
     this.panel7.Controls.Add(this.label82);
     this.panel7.Controls.Add(this.nudColdWaterBasementValvesNumber);
     this.panel7.Controls.Add(this.label83);
     this.panel7.Controls.Add(this.nudColdWaterGaugingSitesNumber);
     this.panel7.Controls.Add(this.cbColdWaterHasMeter);
     this.panel7.Controls.Add(this.label81);
     this.panel7.Controls.Add(this.numericUpDown24);
     this.panel7.Controls.Add(this.label74);
     this.panel7.Controls.Add(this.tbColdWaterArrangementApartment);
     this.panel7.Controls.Add(this.label75);
     this.panel7.Controls.Add(this.tbColdWaterRisesLengthApartment);
     this.panel7.Controls.Add(this.label76);
     this.panel7.Controls.Add(this.tbColdWaterRisesLengthBasement);
     this.panel7.Controls.Add(this.label77);
     this.panel7.Controls.Add(this.tbColdWaterPipelineLength);
     this.panel7.Controls.Add(this.label78);
     this.panel7.Controls.Add(this.nudColdWaterRisesNumber);
     this.panel7.Controls.Add(this.label79);
     this.panel7.Controls.Add(this.tbColdWaterFillingLength);
     this.panel7.Controls.Add(this.label80);
     this.panel7.Controls.Add(this.sfdColdWaterType);
     this.panel7.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel7.set_Location(new System.Drawing.Point(0, 0));
     this.panel7.set_Name("panel7");
     this.panel7.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel7.set_TabIndex(1);
     this.btnColdWaterSave.set_Location(new System.Drawing.Point(0xe4, 0x101));
     this.btnColdWaterSave.set_Name("btnColdWaterSave");
     this.btnColdWaterSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnColdWaterSave.set_TabIndex(0x6a);
     this.btnColdWaterSave.set_Text("Сохранить");
     this.btnColdWaterSave.set_UseVisualStyleBackColor(true);
     this.btnColdWaterSave.add_Click(new System.EventHandler(this.btnColdWaterSave_Click));
     this.label84.set_AutoSize(true);
     this.label84.set_Location(new System.Drawing.Point(4, 0xbf));
     this.label84.set_Name("label84");
     this.label84.set_Size(new System.Drawing.Size(100, 13));
     this.label84.set_TabIndex(0x71);
     this.label84.set_Text("Вентили латунные");
     this.nudColdWaterBrassValvesNumber.set_Location(new System.Drawing.Point(0xb6, 0xba));
     int[] numArray27 = new int[4];
     numArray27[0] = 0x989680;
     this.nudColdWaterBrassValvesNumber.set_Maximum(new decimal(numArray27));
     this.nudColdWaterBrassValvesNumber.set_Name("nudColdWaterBrassValvesNumber");
     this.nudColdWaterBrassValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudColdWaterBrassValvesNumber.set_TabIndex(0x66);
     this.label82.set_AutoSize(true);
     this.label82.set_Location(new System.Drawing.Point(4, 0xef));
     this.label82.set_Name("label82");
     this.label82.set_Size(new System.Drawing.Size(0xaf, 13));
     this.label82.set_TabIndex(0x6f);
     this.label82.set_Text("Количество вентилей в подвалах");
     this.nudColdWaterBasementValvesNumber.set_Location(new System.Drawing.Point(0xb6, 0xea));
     int[] numArray28 = new int[4];
     numArray28[0] = 0x989680;
     this.nudColdWaterBasementValvesNumber.set_Maximum(new decimal(numArray28));
     this.nudColdWaterBasementValvesNumber.set_Name("nudColdWaterBasementValvesNumber");
     this.nudColdWaterBasementValvesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudColdWaterBasementValvesNumber.set_TabIndex(0x68);
     this.label83.set_AutoSize(true);
     this.label83.set_Location(new System.Drawing.Point(4, 0xd7));
     this.label83.set_Name("label83");
     this.label83.set_Size(new System.Drawing.Size(0xa4, 13));
     this.label83.set_TabIndex(0x6d);
     this.label83.set_Text("Количество водомерных узлов");
     this.nudColdWaterGaugingSitesNumber.set_Location(new System.Drawing.Point(0xb6, 210));
     int[] numArray29 = new int[4];
     numArray29[0] = 0x989680;
     this.nudColdWaterGaugingSitesNumber.set_Maximum(new decimal(numArray29));
     this.nudColdWaterGaugingSitesNumber.set_Name("nudColdWaterGaugingSitesNumber");
     this.nudColdWaterGaugingSitesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudColdWaterGaugingSitesNumber.set_TabIndex(0x67);
     this.cbColdWaterHasMeter.set_AutoSize(true);
     this.cbColdWaterHasMeter.set_Location(new System.Drawing.Point(3, 0x107));
     this.cbColdWaterHasMeter.set_Name("cbColdWaterHasMeter");
     this.cbColdWaterHasMeter.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbColdWaterHasMeter.set_Size(new System.Drawing.Size(150, 0x11));
     this.cbColdWaterHasMeter.set_TabIndex(0x69);
     this.cbColdWaterHasMeter.set_Text("Наличие приборов учета");
     this.cbColdWaterHasMeter.set_UseVisualStyleBackColor(true);
     this.label81.set_AutoSize(true);
     this.label81.set_Location(new System.Drawing.Point(5, 0x22));
     this.label81.set_Name("label81");
     this.label81.set_Size(new System.Drawing.Size(0x68, 13));
     this.label81.set_TabIndex(0x6a);
     this.label81.set_Text("Кол-во точек входа");
     this.numericUpDown24.set_Location(new System.Drawing.Point(0xb6, 0x1b));
     int[] numArray30 = new int[4];
     numArray30[0] = 0x989680;
     this.numericUpDown24.set_Maximum(new decimal(numArray30));
     this.numericUpDown24.set_Name("numericUpDown24");
     this.numericUpDown24.set_Size(new System.Drawing.Size(120, 20));
     this.numericUpDown24.set_TabIndex(0x5f);
     this.label74.set_AutoSize(true);
     this.label74.set_Location(new System.Drawing.Point(3, 170));
     this.label74.set_Name("label74");
     this.label74.set_Size(new System.Drawing.Size(0x9b, 13));
     this.label74.set_TabIndex(0x68);
     this.label74.set_Text("Длина разводки в квартирах");
     this.tbColdWaterArrangementApartment.set_Location(new System.Drawing.Point(0xb6, 0xa3));
     this.tbColdWaterArrangementApartment.set_Name("tbColdWaterArrangementApartment");
     this.tbColdWaterArrangementApartment.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbColdWaterArrangementApartment.set_TabIndex(0x65);
     this.label75.set_AutoSize(true);
     this.label75.set_Location(new System.Drawing.Point(3, 0x93));
     this.label75.set_Name("label75");
     this.label75.set_Size(new System.Drawing.Size(0x94, 13));
     this.label75.set_TabIndex(0x66);
     this.label75.set_Text("Длина стояков в квартирах");
     this.tbColdWaterRisesLengthApartment.set_Location(new System.Drawing.Point(0xb6, 140));
     this.tbColdWaterRisesLengthApartment.set_Name("tbColdWaterRisesLengthApartment");
     this.tbColdWaterRisesLengthApartment.set_Size(new System.Drawing.Size(120, 20));
     this.tbColdWaterRisesLengthApartment.set_TabIndex(100);
     this.label76.set_AutoSize(true);
     this.label76.set_Location(new System.Drawing.Point(4, 0x7c));
     this.label76.set_Name("label76");
     this.label76.set_Size(new System.Drawing.Size(0x8f, 13));
     this.label76.set_TabIndex(100);
     this.label76.set_Text("Длина стояков в подвалах");
     this.tbColdWaterRisesLengthBasement.set_Location(new System.Drawing.Point(0xb6, 0x75));
     this.tbColdWaterRisesLengthBasement.set_Name("tbColdWaterRisesLengthBasement");
     this.tbColdWaterRisesLengthBasement.set_Size(new System.Drawing.Size(120, 20));
     this.tbColdWaterRisesLengthBasement.set_TabIndex(0x63);
     this.label77.set_AutoSize(true);
     this.label77.set_Location(new System.Drawing.Point(3, 0x4e));
     this.label77.set_Name("label77");
     this.label77.set_Size(new System.Drawing.Size(0x77, 13));
     this.label77.set_TabIndex(0x62);
     this.label77.set_Text("Длина трубопроводов");
     this.tbColdWaterPipelineLength.set_Location(new System.Drawing.Point(0xb6, 0x47));
     this.tbColdWaterPipelineLength.set_Name("tbColdWaterPipelineLength");
     this.tbColdWaterPipelineLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbColdWaterPipelineLength.set_TabIndex(0x61);
     this.label78.set_AutoSize(true);
     this.label78.set_Location(new System.Drawing.Point(5, 0x65));
     this.label78.set_Name("label78");
     this.label78.set_Size(new System.Drawing.Size(0x55, 13));
     this.label78.set_TabIndex(0x60);
     this.label78.set_Text("Кол-во стояков");
     this.nudColdWaterRisesNumber.set_Location(new System.Drawing.Point(0xb6, 0x5e));
     int[] numArray31 = new int[4];
     numArray31[0] = 0x989680;
     this.nudColdWaterRisesNumber.set_Maximum(new decimal(numArray31));
     this.nudColdWaterRisesNumber.set_Name("nudColdWaterRisesNumber");
     this.nudColdWaterRisesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudColdWaterRisesNumber.set_TabIndex(0x62);
     this.label79.set_AutoSize(true);
     this.label79.set_Location(new System.Drawing.Point(5, 0x39));
     this.label79.set_Name("label79");
     this.label79.set_Size(new System.Drawing.Size(0x55, 13));
     this.label79.set_TabIndex(0x5e);
     this.label79.set_Text("Длина разлива");
     this.tbColdWaterFillingLength.set_Location(new System.Drawing.Point(0xb6, 0x31));
     this.tbColdWaterFillingLength.set_Name("tbColdWaterFillingLength");
     this.tbColdWaterFillingLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbColdWaterFillingLength.set_TabIndex(0x60);
     this.label80.set_AutoSize(true);
     this.label80.set_Location(new System.Drawing.Point(5, 12));
     this.label80.set_Name("label80");
     this.label80.set_Size(new System.Drawing.Size(0x1a, 13));
     this.label80.set_TabIndex(0x5c);
     this.label80.set_Text("Тип");
     this.sfdColdWaterType.set_FormattingEnabled(true);
     this.sfdColdWaterType.set_Location(new System.Drawing.Point(0xb6, 4));
     this.sfdColdWaterType.set_Name("sfdColdWaterType");
     this.sfdColdWaterType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdColdWaterType.set_Sorted(true);
     this.sfdColdWaterType.set_TabIndex(0x5e);
     this.tabPage10.Controls.Add(this.panel8);
     this.tabPage10.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage10.set_Name("tabPage10");
     this.tabPage10.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage10.set_TabIndex(4);
     this.tabPage10.set_Text("Электроснабжение");
     this.tabPage10.set_UseVisualStyleBackColor(true);
     this.panel8.set_AutoScroll(true);
     this.panel8.Controls.Add(this.btnPowerSupplySave);
     this.panel8.Controls.Add(this.label99);
     this.panel8.Controls.Add(this.nudPowerSupplyElectroStoveNumber);
     this.panel8.Controls.Add(this.label100);
     this.panel8.Controls.Add(this.nudPowerSupplyStreetLightNumber);
     this.panel8.Controls.Add(this.label101);
     this.panel8.Controls.Add(this.nudPowerSupplySwitchesNumber);
     this.panel8.Controls.Add(this.label85);
     this.panel8.Controls.Add(this.nudPowerSupplyLumpsNumberHID);
     this.panel8.Controls.Add(this.label91);
     this.panel8.Controls.Add(this.nudPowerSupplyLumpsNumberIncadescent);
     this.panel8.Controls.Add(this.label92);
     this.panel8.Controls.Add(this.nudPowerSupplyLumpsNumberDaylight);
     this.panel8.Controls.Add(this.label98);
     this.panel8.Controls.Add(this.nudPowerSupplyNumberPlateNumber);
     this.panel8.Controls.Add(this.label);
     this.panel8.Controls.Add(this.nudPowerSupplyCountersNumberTwoRates);
     this.panel8.Controls.Add(this.label96);
     this.panel8.Controls.Add(this.nudPowerSupplyGroupPanelNumber);
     this.panel8.Controls.Add(this.label86);
     this.panel8.Controls.Add(this.nudPowerSupplyEntryPointNumber);
     this.panel8.Controls.Add(this.label87);
     this.panel8.Controls.Add(this.nudPowerSupplyPowerPanelNumber);
     this.panel8.Controls.Add(this.cbPowerSupplyHasMeter);
     this.panel8.Controls.Add(this.label88);
     this.panel8.Controls.Add(this.nudPowerSupplyDistributionSystemNumber);
     this.panel8.Controls.Add(this.label89);
     this.panel8.Controls.Add(this.tbPowerSupplySupplyNetworkLength);
     this.panel8.Controls.Add(this.label90);
     this.panel8.Controls.Add(this.tbPowerSupplyCoverageNetworkLength);
     this.panel8.Controls.Add(this.label93);
     this.panel8.Controls.Add(this.nudPowerSupplyCountersNumberTotal);
     this.panel8.Controls.Add(this.label94);
     this.panel8.Controls.Add(this.tbPowerSupplyTotalEquityAssetLenght);
     this.panel8.Controls.Add(this.label95);
     this.panel8.Controls.Add(this.sfdPowerSupplyType);
     this.panel8.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel8.set_Location(new System.Drawing.Point(0, 0));
     this.panel8.set_Name("panel8");
     this.panel8.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel8.set_TabIndex(1);
     this.btnPowerSupplySave.set_Location(new System.Drawing.Point(0x158, 0x18c));
     this.btnPowerSupplySave.set_Name("btnPowerSupplySave");
     this.btnPowerSupplySave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnPowerSupplySave.set_TabIndex(0x7d);
     this.btnPowerSupplySave.set_Text("Сохранить");
     this.btnPowerSupplySave.set_UseVisualStyleBackColor(true);
     this.btnPowerSupplySave.add_Click(new System.EventHandler(this.btnPowerSupplySave_Click));
     this.label99.set_AutoSize(true);
     this.label99.set_Location(new System.Drawing.Point(2, 380));
     this.label99.set_Name("label99");
     this.label99.set_Size(new System.Drawing.Size(170, 13));
     this.label99.set_TabIndex(0x9a);
     this.label99.set_Text("Количество электрических плит");
     this.nudPowerSupplyElectroStoveNumber.set_Location(new System.Drawing.Point(0x12a, 0x175));
     int[] numArray32 = new int[4];
     numArray32[0] = 0x989680;
     this.nudPowerSupplyElectroStoveNumber.set_Maximum(new decimal(numArray32));
     this.nudPowerSupplyElectroStoveNumber.set_Name("nudPowerSupplyElectroStoveNumber");
     this.nudPowerSupplyElectroStoveNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyElectroStoveNumber.set_TabIndex(0x7b);
     this.label100.set_AutoSize(true);
     this.label100.set_Location(new System.Drawing.Point(2, 0x165));
     this.label100.set_Name("label100");
     this.label100.set_Size(new System.Drawing.Size(0xf1, 13));
     this.label100.set_TabIndex(0x98);
     this.label100.set_Text("Количество уличных осветительных приборов");
     this.nudPowerSupplyStreetLightNumber.set_Location(new System.Drawing.Point(0x12a, 350));
     int[] numArray33 = new int[4];
     numArray33[0] = 0x989680;
     this.nudPowerSupplyStreetLightNumber.set_Maximum(new decimal(numArray33));
     this.nudPowerSupplyStreetLightNumber.set_Name("nudPowerSupplyStreetLightNumber");
     this.nudPowerSupplyStreetLightNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyStreetLightNumber.set_TabIndex(0x7a);
     this.label101.set_AutoSize(true);
     this.label101.set_Location(new System.Drawing.Point(3, 0x14e));
     this.label101.set_Name("label101");
     this.label101.set_Size(new System.Drawing.Size(0x8f, 13));
     this.label101.set_TabIndex(150);
     this.label101.set_Text("Количество выключаталей");
     this.nudPowerSupplySwitchesNumber.set_Location(new System.Drawing.Point(0x12a, 0x147));
     int[] numArray34 = new int[4];
     numArray34[0] = 0x989680;
     this.nudPowerSupplySwitchesNumber.set_Maximum(new decimal(numArray34));
     this.nudPowerSupplySwitchesNumber.set_Name("nudPowerSupplySwitchesNumber");
     this.nudPowerSupplySwitchesNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplySwitchesNumber.set_TabIndex(0x79);
     this.label85.set_AutoSize(true);
     this.label85.set_Location(new System.Drawing.Point(2, 310));
     this.label85.set_Name("label85");
     this.label85.set_Size(new System.Drawing.Size(0xe1, 13));
     this.label85.set_TabIndex(0x94);
     this.label85.set_Text("Количество светильников с лампами ДРЛ");
     this.nudPowerSupplyLumpsNumberHID.set_Location(new System.Drawing.Point(0x12a, 0x12f));
     int[] numArray35 = new int[4];
     numArray35[0] = 0x989680;
     this.nudPowerSupplyLumpsNumberHID.set_Maximum(new decimal(numArray35));
     this.nudPowerSupplyLumpsNumberHID.set_Name("nudPowerSupplyLumpsNumberHID");
     this.nudPowerSupplyLumpsNumberHID.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyLumpsNumberHID.set_TabIndex(120);
     this.label91.set_AutoSize(true);
     this.label91.set_Location(new System.Drawing.Point(2, 0x11f));
     this.label91.set_Name("label91");
     this.label91.set_Size(new System.Drawing.Size(0x10b, 13));
     this.label91.set_TabIndex(0x92);
     this.label91.set_Text("Количество светильников с лампами накаливания");
     this.nudPowerSupplyLumpsNumberIncadescent.set_Location(new System.Drawing.Point(0x12a, 280));
     int[] numArray36 = new int[4];
     numArray36[0] = 0x989680;
     this.nudPowerSupplyLumpsNumberIncadescent.set_Maximum(new decimal(numArray36));
     this.nudPowerSupplyLumpsNumberIncadescent.set_Name("nudPowerSupplyLumpsNumberIncadescent");
     this.nudPowerSupplyLumpsNumberIncadescent.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyLumpsNumberIncadescent.set_TabIndex(0x77);
     this.label92.set_AutoSize(true);
     this.label92.set_Location(new System.Drawing.Point(3, 0x108));
     this.label92.set_Name("label92");
     this.label92.set_Size(new System.Drawing.Size(0xde, 13));
     this.label92.set_TabIndex(0x90);
     this.label92.set_Text("Количество светильников дневного света");
     this.nudPowerSupplyLumpsNumberDaylight.set_Location(new System.Drawing.Point(0x12a, 0x101));
     int[] numArray37 = new int[4];
     numArray37[0] = 0x989680;
     this.nudPowerSupplyLumpsNumberDaylight.set_Maximum(new decimal(numArray37));
     this.nudPowerSupplyLumpsNumberDaylight.set_Name("nudPowerSupplyLumpsNumberDaylight");
     this.nudPowerSupplyLumpsNumberDaylight.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyLumpsNumberDaylight.set_TabIndex(0x76);
     this.label98.set_AutoSize(true);
     this.label98.set_Location(new System.Drawing.Point(2, 0xf2));
     this.label98.set_Name("label98");
     this.label98.set_Size(new System.Drawing.Size(0x9f, 13));
     this.label98.set_TabIndex(0x8e);
     this.label98.set_Text("Количество номерных знаков");
     this.nudPowerSupplyNumberPlateNumber.set_Location(new System.Drawing.Point(0x12a, 0xeb));
     int[] numArray38 = new int[4];
     numArray38[0] = 0x989680;
     this.nudPowerSupplyNumberPlateNumber.set_Maximum(new decimal(numArray38));
     this.nudPowerSupplyNumberPlateNumber.set_Name("nudPowerSupplyNumberPlateNumber");
     this.nudPowerSupplyNumberPlateNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyNumberPlateNumber.set_TabIndex(0x75);
     this.label.set_AutoSize(true);
     this.label.set_Location(new System.Drawing.Point(3, 0xdb));
     this.label.set_Name("label");
     this.label.set_Size(new System.Drawing.Size(110, 13));
     this.label.set_TabIndex(140);
     this.label.set_Text("в т.ч. двухставочных");
     this.nudPowerSupplyCountersNumberTwoRates.set_Location(new System.Drawing.Point(0x12a, 0xd4));
     int[] numArray39 = new int[4];
     numArray39[0] = 0xf4240;
     this.nudPowerSupplyCountersNumberTwoRates.set_Maximum(new decimal(numArray39));
     this.nudPowerSupplyCountersNumberTwoRates.set_Name("nudPowerSupplyCountersNumberTwoRates");
     this.nudPowerSupplyCountersNumberTwoRates.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyCountersNumberTwoRates.set_TabIndex(0x74);
     this.label96.set_AutoSize(true);
     this.label96.set_Location(new System.Drawing.Point(2, 0x39));
     this.label96.set_Name("label96");
     this.label96.set_Size(new System.Drawing.Size(0xec, 13));
     this.label96.set_TabIndex(0x8a);
     this.label96.set_Text("Кол-во групповых щитков в подвале и на л/к");
     this.nudPowerSupplyGroupPanelNumber.set_Location(new System.Drawing.Point(0x12a, 50));
     int[] numArray40 = new int[4];
     numArray40[0] = 0x989680;
     this.nudPowerSupplyGroupPanelNumber.set_Maximum(new decimal(numArray40));
     this.nudPowerSupplyGroupPanelNumber.set_Name("nudPowerSupplyGroupPanelNumber");
     this.nudPowerSupplyGroupPanelNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyGroupPanelNumber.set_TabIndex(0x6d);
     this.label86.set_AutoSize(true);
     this.label86.set_Location(new System.Drawing.Point(3, 0x66));
     this.label86.set_Name("label86");
     this.label86.set_Size(new System.Drawing.Size(0x81, 13));
     this.label86.set_TabIndex(0x86);
     this.label86.set_Text("Количество точек входа");
     this.nudPowerSupplyEntryPointNumber.set_Location(new System.Drawing.Point(0x12a, 0x5f));
     int[] numArray41 = new int[4];
     numArray41[0] = 0x989680;
     this.nudPowerSupplyEntryPointNumber.set_Maximum(new decimal(numArray41));
     this.nudPowerSupplyEntryPointNumber.set_Name("nudPowerSupplyEntryPointNumber");
     this.nudPowerSupplyEntryPointNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyEntryPointNumber.set_TabIndex(0x6f);
     this.label87.set_AutoSize(true);
     this.label87.set_Location(new System.Drawing.Point(3, 0x4e));
     this.label87.set_Name("label87");
     this.label87.set_Size(new System.Drawing.Size(0x93, 13));
     this.label87.set_TabIndex(0x84);
     this.label87.set_Text("Количество силовых щитов");
     this.nudPowerSupplyPowerPanelNumber.set_Location(new System.Drawing.Point(0x12a, 0x47));
     int[] numArray42 = new int[4];
     numArray42[0] = 0x989680;
     this.nudPowerSupplyPowerPanelNumber.set_Maximum(new decimal(numArray42));
     this.nudPowerSupplyPowerPanelNumber.set_Name("nudPowerSupplyPowerPanelNumber");
     this.nudPowerSupplyPowerPanelNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyPowerPanelNumber.set_TabIndex(110);
     this.cbPowerSupplyHasMeter.set_AutoSize(true);
     this.cbPowerSupplyHasMeter.set_Location(new System.Drawing.Point(1, 0x192));
     this.cbPowerSupplyHasMeter.set_Name("cbPowerSupplyHasMeter");
     this.cbPowerSupplyHasMeter.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbPowerSupplyHasMeter.set_Size(new System.Drawing.Size(150, 0x11));
     this.cbPowerSupplyHasMeter.set_TabIndex(0x7c);
     this.cbPowerSupplyHasMeter.set_Text("Наличие приборов учета");
     this.cbPowerSupplyHasMeter.set_UseVisualStyleBackColor(true);
     this.label88.set_AutoSize(true);
     this.label88.set_Location(new System.Drawing.Point(3, 0x22));
     this.label88.set_Name("label88");
     this.label88.set_Size(new System.Drawing.Size(210, 13));
     this.label88.set_TabIndex(0x81);
     this.label88.set_Text("Вводно-распределительные устройства");
     this.nudPowerSupplyDistributionSystemNumber.set_Location(new System.Drawing.Point(0x12a, 0x1b));
     int[] numArray43 = new int[4];
     numArray43[0] = 0xf4240;
     this.nudPowerSupplyDistributionSystemNumber.set_Maximum(new decimal(numArray43));
     this.nudPowerSupplyDistributionSystemNumber.set_Name("nudPowerSupplyDistributionSystemNumber");
     this.nudPowerSupplyDistributionSystemNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyDistributionSystemNumber.set_TabIndex(0x6c);
     this.label89.set_AutoSize(true);
     this.label89.set_Location(new System.Drawing.Point(3, 0xac));
     this.label89.set_Name("label89");
     this.label89.set_Size(new System.Drawing.Size(0x124, 13));
     this.label89.set_TabIndex(0x7f);
     this.label89.set_Text("Протяженность сетей питания лифтов и элетронасосов");
     this.tbPowerSupplySupplyNetworkLength.set_Location(new System.Drawing.Point(0x12a, 0xa5));
     this.tbPowerSupplySupplyNetworkLength.set_Name("tbPowerSupplySupplyNetworkLength");
     this.tbPowerSupplySupplyNetworkLength.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbPowerSupplySupplyNetworkLength.set_TabIndex(0x72);
     this.label90.set_AutoSize(true);
     this.label90.set_Location(new System.Drawing.Point(3, 0x94));
     this.label90.set_Name("label90");
     this.label90.set_Size(new System.Drawing.Size(0x106, 13));
     this.label90.set_TabIndex(0x7d);
     this.label90.set_Text("Протяженность сетей коммунального освещения");
     this.tbPowerSupplyCoverageNetworkLength.set_Location(new System.Drawing.Point(0x12a, 0x8d));
     this.tbPowerSupplyCoverageNetworkLength.set_Name("tbPowerSupplyCoverageNetworkLength");
     this.tbPowerSupplyCoverageNetworkLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbPowerSupplyCoverageNetworkLength.set_TabIndex(0x71);
     this.label93.set_AutoSize(true);
     this.label93.set_Location(new System.Drawing.Point(3, 0xc4));
     this.label93.set_Name("label93");
     this.label93.set_Size(new System.Drawing.Size(0x98, 13));
     this.label93.set_TabIndex(0x77);
     this.label93.set_Text("Количество счетчиков всего");
     this.nudPowerSupplyCountersNumberTotal.set_Location(new System.Drawing.Point(0x12a, 0xbd));
     int[] numArray44 = new int[4];
     numArray44[0] = 0x989680;
     this.nudPowerSupplyCountersNumberTotal.set_Maximum(new decimal(numArray44));
     this.nudPowerSupplyCountersNumberTotal.set_Name("nudPowerSupplyCountersNumberTotal");
     this.nudPowerSupplyCountersNumberTotal.set_Size(new System.Drawing.Size(120, 20));
     this.nudPowerSupplyCountersNumberTotal.set_TabIndex(0x73);
     this.label94.set_AutoSize(true);
     this.label94.set_Location(new System.Drawing.Point(3, 0x7c));
     this.label94.set_Name("label94");
     this.label94.set_Size(new System.Drawing.Size(230, 13));
     this.label94.set_TabIndex(0x75);
     this.label94.set_Text("Длина сетей в местах общего пользования");
     this.tbPowerSupplyTotalEquityAssetLenght.set_Location(new System.Drawing.Point(0x12a, 0x75));
     this.tbPowerSupplyTotalEquityAssetLenght.set_Name("tbPowerSupplyTotalEquityAssetLenght");
     this.tbPowerSupplyTotalEquityAssetLenght.set_Size(new System.Drawing.Size(120, 20));
     this.tbPowerSupplyTotalEquityAssetLenght.set_TabIndex(0x70);
     this.label95.set_AutoSize(true);
     this.label95.set_Location(new System.Drawing.Point(3, 12));
     this.label95.set_Name("label95");
     this.label95.set_Size(new System.Drawing.Size(0x1a, 13));
     this.label95.set_TabIndex(0x73);
     this.label95.set_Text("Тип");
     this.sfdPowerSupplyType.set_FormattingEnabled(true);
     this.sfdPowerSupplyType.set_Location(new System.Drawing.Point(0x12a, 3));
     this.sfdPowerSupplyType.set_Name("sfdPowerSupplyType");
     this.sfdPowerSupplyType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdPowerSupplyType.set_Sorted(true);
     this.sfdPowerSupplyType.set_TabIndex(0x6b);
     this.tabPage11.Controls.Add(this.panel9);
     this.tabPage11.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage11.set_Name("tabPage11");
     this.tabPage11.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage11.set_TabIndex(5);
     this.tabPage11.set_Text("Газоснабжение");
     this.tabPage11.set_UseVisualStyleBackColor(true);
     this.panel9.set_AutoScroll(true);
     this.panel9.Controls.Add(this.btnGasSupplySave);
     this.panel9.Controls.Add(this.label110);
     this.panel9.Controls.Add(this.nudGasSupplyEntryPointNumber);
     this.panel9.Controls.Add(this.label109);
     this.panel9.Controls.Add(this.tbGasSupplyNotAppropriateReqLength);
     this.panel9.Controls.Add(this.cbGasSupplyHasMeter);
     this.panel9.Controls.Add(this.label102);
     this.panel9.Controls.Add(this.nudGasStoveNumber);
     this.panel9.Controls.Add(this.label103);
     this.panel9.Controls.Add(this.nudGasSupplyGeyserNumber);
     this.panel9.Controls.Add(this.label104);
     this.panel9.Controls.Add(this.nudGasBoilerNumber);
     this.panel9.Controls.Add(this.label105);
     this.panel9.Controls.Add(this.nudGasSupplyCountersNumberTotal);
     this.panel9.Controls.Add(this.label106);
     this.panel9.Controls.Add(this.tbGasSupplySupplyNetworkLength);
     this.panel9.Controls.Add(this.label107);
     this.panel9.Controls.Add(this.tbGasSupplyAppropriateReqLength);
     this.panel9.Controls.Add(this.label108);
     this.panel9.Controls.Add(this.sfdGasSupplyType);
     this.panel9.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel9.set_Location(new System.Drawing.Point(0, 0));
     this.panel9.set_Name("panel9");
     this.panel9.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel9.set_TabIndex(1);
     this.btnGasSupplySave.set_Location(new System.Drawing.Point(0x157, 0xd8));
     this.btnGasSupplySave.set_Name("btnGasSupplySave");
     this.btnGasSupplySave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnGasSupplySave.set_TabIndex(0x88);
     this.btnGasSupplySave.set_Text("Сохранить");
     this.btnGasSupplySave.set_UseVisualStyleBackColor(true);
     this.btnGasSupplySave.add_Click(new System.EventHandler(this.btnGasSupplySave_Click));
     this.label110.set_AutoSize(true);
     this.label110.set_Location(new System.Drawing.Point(3, 200));
     this.label110.set_Name("label110");
     this.label110.set_Size(new System.Drawing.Size(0x81, 13));
     this.label110.set_TabIndex(0x9e);
     this.label110.set_Text("Количество точек входа");
     this.nudGasSupplyEntryPointNumber.set_Location(new System.Drawing.Point(0x12a, 0xc1));
     int[] numArray45 = new int[4];
     numArray45[0] = 0x989680;
     this.nudGasSupplyEntryPointNumber.set_Maximum(new decimal(numArray45));
     this.nudGasSupplyEntryPointNumber.set_Name("nudGasSupplyEntryPointNumber");
     this.nudGasSupplyEntryPointNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudGasSupplyEntryPointNumber.set_TabIndex(0x86);
     this.label109.set_AutoSize(true);
     this.label109.set_Location(new System.Drawing.Point(0x13, 0x54));
     this.label109.set_Name("label109");
     this.label109.set_Size(new System.Drawing.Size(0x7e, 13));
     this.label109.set_TabIndex(0x9c);
     this.label109.set_Text("Не соотв. требованиям");
     this.tbGasSupplyNotAppropriateReqLength.set_Location(new System.Drawing.Point(0x12a, 0x4d));
     this.tbGasSupplyNotAppropriateReqLength.set_Name("tbGasSupplyNotAppropriateReqLength");
     this.tbGasSupplyNotAppropriateReqLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbGasSupplyNotAppropriateReqLength.set_TabIndex(0x81);
     this.cbGasSupplyHasMeter.set_AutoSize(true);
     this.cbGasSupplyHasMeter.set_Location(new System.Drawing.Point(2, 0xde));
     this.cbGasSupplyHasMeter.set_Name("cbGasSupplyHasMeter");
     this.cbGasSupplyHasMeter.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbGasSupplyHasMeter.set_Size(new System.Drawing.Size(150, 0x11));
     this.cbGasSupplyHasMeter.set_TabIndex(0x87);
     this.cbGasSupplyHasMeter.set_Text("Наличие приборов учета");
     this.cbGasSupplyHasMeter.set_UseVisualStyleBackColor(true);
     this.label102.set_AutoSize(true);
     this.label102.set_Location(new System.Drawing.Point(2, 0x83));
     this.label102.set_Name("label102");
     this.label102.set_Size(new System.Drawing.Size(0xac, 13));
     this.label102.set_TabIndex(0x99);
     this.label102.set_Text("Количество газовых плит, всего");
     this.nudGasStoveNumber.set_Location(new System.Drawing.Point(0x12a, 0x7c));
     int[] numArray46 = new int[4];
     numArray46[0] = 0x989680;
     this.nudGasStoveNumber.set_Maximum(new decimal(numArray46));
     this.nudGasStoveNumber.set_Name("nudGasStoveNumber");
     this.nudGasStoveNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudGasStoveNumber.set_TabIndex(0x83);
     this.label103.set_AutoSize(true);
     this.label103.set_Location(new System.Drawing.Point(3, 0xb0));
     this.label103.set_Name("label103");
     this.label103.set_Size(new System.Drawing.Size(0xbf, 13));
     this.label103.set_TabIndex(0x97);
     this.label103.set_Text("Количество газовых колонок, всего");
     this.nudGasSupplyGeyserNumber.set_Location(new System.Drawing.Point(0x12a, 0xa9));
     int[] numArray47 = new int[4];
     numArray47[0] = 0xf4240;
     this.nudGasSupplyGeyserNumber.set_Maximum(new decimal(numArray47));
     this.nudGasSupplyGeyserNumber.set_Name("nudGasSupplyGeyserNumber");
     this.nudGasSupplyGeyserNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudGasSupplyGeyserNumber.set_TabIndex(0x85);
     this.label104.set_AutoSize(true);
     this.label104.set_Location(new System.Drawing.Point(3, 0x99));
     this.label104.set_Name("label104");
     this.label104.set_Size(new System.Drawing.Size(0xb8, 13));
     this.label104.set_TabIndex(0x95);
     this.label104.set_Text("Количество газовых котлов, всего");
     this.nudGasBoilerNumber.set_Location(new System.Drawing.Point(0x12a, 0x92));
     int[] numArray48 = new int[4];
     numArray48[0] = 0x989680;
     this.nudGasBoilerNumber.set_Maximum(new decimal(numArray48));
     this.nudGasBoilerNumber.set_Name("nudGasBoilerNumber");
     this.nudGasBoilerNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudGasBoilerNumber.set_TabIndex(0x84);
     this.label105.set_AutoSize(true);
     this.label105.set_Location(new System.Drawing.Point(3, 0x6c));
     this.label105.set_Name("label105");
     this.label105.set_Size(new System.Drawing.Size(0x9b, 13));
     this.label105.set_TabIndex(0x93);
     this.label105.set_Text("Количество счетчиков, всего");
     this.nudGasSupplyCountersNumberTotal.set_Location(new System.Drawing.Point(0x12a, 0x65));
     int[] numArray49 = new int[4];
     numArray49[0] = 0x989680;
     this.nudGasSupplyCountersNumberTotal.set_Maximum(new decimal(numArray49));
     this.nudGasSupplyCountersNumberTotal.set_Name("nudGasSupplyCountersNumberTotal");
     this.nudGasSupplyCountersNumberTotal.set_Size(new System.Drawing.Size(120, 20));
     this.nudGasSupplyCountersNumberTotal.set_TabIndex(130);
     this.label106.set_AutoSize(true);
     this.label106.set_Location(new System.Drawing.Point(3, 0x20));
     this.label106.set_Name("label106");
     this.label106.set_Size(new System.Drawing.Size(0x9a, 0x1a));
     this.label106.set_TabIndex(0x90);
     this.label106.set_Text("Длина сетей газоснабжения\r\nВ том числе:");
     this.tbGasSupplySupplyNetworkLength.set_Location(new System.Drawing.Point(0x12a, 0x1c));
     this.tbGasSupplySupplyNetworkLength.set_Name("tbGasSupplySupplyNetworkLength");
     this.tbGasSupplySupplyNetworkLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbGasSupplySupplyNetworkLength.set_TabIndex(0x7f);
     this.label107.set_AutoSize(true);
     this.label107.set_Location(new System.Drawing.Point(0x13, 60));
     this.label107.set_Name("label107");
     this.label107.set_Size(new System.Drawing.Size(110, 13));
     this.label107.set_TabIndex(0x8e);
     this.label107.set_Text("Cоотв. требованиям");
     this.tbGasSupplyAppropriateReqLength.set_Location(new System.Drawing.Point(0x12a, 0x35));
     this.tbGasSupplyAppropriateReqLength.set_Name("tbGasSupplyAppropriateReqLength");
     this.tbGasSupplyAppropriateReqLength.set_Size(new System.Drawing.Size(120, 20));
     this.tbGasSupplyAppropriateReqLength.set_TabIndex(0x7f);
     this.label108.set_AutoSize(true);
     this.label108.set_Location(new System.Drawing.Point(3, 12));
     this.label108.set_Name("label108");
     this.label108.set_Size(new System.Drawing.Size(0x6c, 13));
     this.label108.set_TabIndex(140);
     this.label108.set_Text("Тип газоснабжения");
     this.sfdGasSupplyType.set_FormattingEnabled(true);
     this.sfdGasSupplyType.set_Location(new System.Drawing.Point(0x12a, 3));
     this.sfdGasSupplyType.set_Name("sfdGasSupplyType");
     this.sfdGasSupplyType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdGasSupplyType.set_Sorted(true);
     this.sfdGasSupplyType.set_TabIndex(0x7e);
     this.tabPage12.Controls.Add(this.panel10);
     this.tabPage12.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage12.set_Name("tabPage12");
     this.tabPage12.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage12.set_TabIndex(6);
     this.tabPage12.set_Text("Мусоропроводы");
     this.tabPage12.set_UseVisualStyleBackColor(true);
     this.panel10.set_AutoScroll(true);
     this.panel10.Controls.Add(this.btnChuteSave);
     this.panel10.Controls.Add(this.label115);
     this.panel10.Controls.Add(this.sfdChuteType);
     this.panel10.Controls.Add(this.label111);
     this.panel10.Controls.Add(this.nudChuteRecievingValveNumber);
     this.panel10.Controls.Add(this.label112);
     this.panel10.Controls.Add(this.tbChuteBoxCapacity);
     this.panel10.Controls.Add(this.label113);
     this.panel10.Controls.Add(this.tbChuteBoxArea);
     this.panel10.Controls.Add(this.label114);
     this.panel10.Controls.Add(this.nudChuteBarrelNumber);
     this.panel10.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel10.set_Location(new System.Drawing.Point(0, 0));
     this.panel10.set_Name("panel10");
     this.panel10.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel10.set_TabIndex(1);
     this.btnChuteSave.set_Location(new System.Drawing.Point(0x113, 0x7d));
     this.btnChuteSave.set_Name("btnChuteSave");
     this.btnChuteSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnChuteSave.set_TabIndex(0x8e);
     this.btnChuteSave.set_Text("Сохранить");
     this.btnChuteSave.set_UseVisualStyleBackColor(true);
     this.btnChuteSave.add_Click(new System.EventHandler(this.btnChuteSave_Click));
     this.label115.set_AutoSize(true);
     this.label115.set_Location(new System.Drawing.Point(3, 13));
     this.label115.set_Name("label115");
     this.label115.set_Size(new System.Drawing.Size(0x5d, 13));
     this.label115.set_TabIndex(150);
     this.label115.set_Text("Тип конструкции");
     this.sfdChuteType.set_FormattingEnabled(true);
     this.sfdChuteType.set_Location(new System.Drawing.Point(230, 4));
     this.sfdChuteType.set_Name("sfdChuteType");
     this.sfdChuteType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdChuteType.set_Sorted(true);
     this.sfdChuteType.set_TabIndex(0x89);
     this.label111.set_AutoSize(true);
     this.label111.set_Location(new System.Drawing.Point(2, 0x6a));
     this.label111.set_Name("label111");
     this.label111.set_Size(new System.Drawing.Size(0xe1, 13));
     this.label111.set_TabIndex(0x94);
     this.label111.set_Text("Количество приемо-загрузочных клапанов");
     this.nudChuteRecievingValveNumber.set_Location(new System.Drawing.Point(230, 0x63));
     int[] numArray50 = new int[4];
     numArray50[0] = 0xf4240;
     this.nudChuteRecievingValveNumber.set_Maximum(new decimal(numArray50));
     this.nudChuteRecievingValveNumber.set_Name("nudChuteRecievingValveNumber");
     this.nudChuteRecievingValveNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudChuteRecievingValveNumber.set_TabIndex(0x8d);
     this.label112.set_AutoSize(true);
     this.label112.set_Location(new System.Drawing.Point(3, 0x3b));
     this.label112.set_Name("label112");
     this.label112.set_Size(new System.Drawing.Size(0xa8, 13));
     this.label112.set_TabIndex(0x92);
     this.label112.set_Text("Объем мусороприемных камер");
     this.tbChuteBoxCapacity.set_Location(new System.Drawing.Point(230, 0x34));
     this.tbChuteBoxCapacity.set_Name("tbChuteBoxCapacity");
     this.tbChuteBoxCapacity.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbChuteBoxCapacity.set_TabIndex(0x8b);
     this.label113.set_AutoSize(true);
     this.label113.set_Location(new System.Drawing.Point(3, 0x23));
     this.label113.set_Name("label113");
     this.label113.set_Size(new System.Drawing.Size(180, 13));
     this.label113.set_TabIndex(0x90);
     this.label113.set_Text("Площадь мусороприемных камер");
     this.tbChuteBoxArea.set_Location(new System.Drawing.Point(230, 0x1c));
     this.tbChuteBoxArea.set_Name("tbChuteBoxArea");
     this.tbChuteBoxArea.set_Size(new System.Drawing.Size(120, 20));
     this.tbChuteBoxArea.set_TabIndex(0x8a);
     this.label114.set_AutoSize(true);
     this.label114.set_Location(new System.Drawing.Point(3, 0x53));
     this.label114.set_Name("label114");
     this.label114.set_Size(new System.Drawing.Size(110, 13));
     this.label114.set_TabIndex(0x8e);
     this.label114.set_Text("Количество стволов");
     this.nudChuteBarrelNumber.set_Location(new System.Drawing.Point(230, 0x4c));
     int[] numArray51 = new int[4];
     numArray51[0] = 0x989680;
     this.nudChuteBarrelNumber.set_Maximum(new decimal(numArray51));
     this.nudChuteBarrelNumber.set_Name("nudChuteBarrelNumber");
     this.nudChuteBarrelNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudChuteBarrelNumber.set_TabIndex(140);
     this.tabPage13.Controls.Add(this.panel11);
     this.tabPage13.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage13.set_Name("tabPage13");
     this.tabPage13.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage13.set_TabIndex(7);
     this.tabPage13.set_Text("Прочее");
     this.tabPage13.set_UseVisualStyleBackColor(true);
     this.panel11.set_AutoScroll(true);
     this.panel11.Controls.Add(this.btnOtherSave);
     this.panel11.Controls.Add(this.label120);
     this.panel11.Controls.Add(this.nudPoolNumber);
     this.panel11.Controls.Add(this.label119);
     this.panel11.Controls.Add(this.nudSaunaNumber);
     this.panel11.Controls.Add(this.cbHasPhone);
     this.panel11.Controls.Add(this.cbIsCTTVSystem);
     this.panel11.Controls.Add(this.cbIsComputerNetworks);
     this.panel11.Controls.Add(this.cbIsCableTV);
     this.panel11.Controls.Add(this.cbIsSharedAntenna);
     this.panel11.Controls.Add(this.cbIsRadio);
     this.panel11.Controls.Add(this.cbIsCommonDispatchSystems);
     this.panel11.Controls.Add(this.cbIsAFPS);
     this.panel11.Controls.Add(this.label118);
     this.panel11.Controls.Add(this.nudIntercomNumber);
     this.panel11.Controls.Add(this.label117);
     this.panel11.Controls.Add(this.sfdDrainType);
     this.panel11.Controls.Add(this.label116);
     this.panel11.Controls.Add(this.sfdVentilationType);
     this.panel11.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel11.set_Location(new System.Drawing.Point(0, 0));
     this.panel11.set_Name("panel11");
     this.panel11.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel11.set_TabIndex(1);
     this.btnOtherSave.set_Location(new System.Drawing.Point(0x114, 280));
     this.btnOtherSave.set_Name("btnOtherSave");
     this.btnOtherSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnOtherSave.set_TabIndex(0x9c);
     this.btnOtherSave.set_Text("Сохранить");
     this.btnOtherSave.set_UseVisualStyleBackColor(true);
     this.btnOtherSave.add_Click(new System.EventHandler(this.btnOtherSave_Click));
     this.label120.set_AutoSize(true);
     this.label120.set_Location(new System.Drawing.Point(4, 0x6a));
     this.label120.set_Name("label120");
     this.label120.set_Size(new System.Drawing.Size(0x7b, 13));
     this.label120.set_TabIndex(0xa8);
     this.label120.set_Text("Количество бассейнов");
     this.nudPoolNumber.set_Location(new System.Drawing.Point(0xe7, 0x63));
     int[] numArray52 = new int[4];
     numArray52[0] = 0x989680;
     this.nudPoolNumber.set_Maximum(new decimal(numArray52));
     this.nudPoolNumber.set_Name("nudPoolNumber");
     this.nudPoolNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudPoolNumber.set_TabIndex(0x93);
     this.label119.set_AutoSize(true);
     this.label119.set_Location(new System.Drawing.Point(4, 0x53));
     this.label119.set_Name("label119");
     this.label119.set_Size(new System.Drawing.Size(0x5c, 13));
     this.label119.set_TabIndex(0xa6);
     this.label119.set_Text("Количество саун");
     this.nudSaunaNumber.set_Location(new System.Drawing.Point(0xe7, 0x4c));
     int[] numArray53 = new int[4];
     numArray53[0] = 0xf4240;
     this.nudSaunaNumber.set_Maximum(new decimal(numArray53));
     this.nudSaunaNumber.set_Name("nudSaunaNumber");
     this.nudSaunaNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudSaunaNumber.set_TabIndex(0x92);
     this.cbHasPhone.set_AutoSize(true);
     this.cbHasPhone.set_Location(new System.Drawing.Point(3, 0x11e));
     this.cbHasPhone.set_Name("cbHasPhone");
     this.cbHasPhone.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbHasPhone.set_Size(new System.Drawing.Size(0x47, 0x11));
     this.cbHasPhone.set_TabIndex(0x9b);
     this.cbHasPhone.set_Text("Телефон");
     this.cbHasPhone.set_UseVisualStyleBackColor(true);
     this.cbIsCTTVSystem.set_AutoSize(true);
     this.cbIsCTTVSystem.set_Location(new System.Drawing.Point(3, 0x107));
     this.cbIsCTTVSystem.set_Name("cbIsCTTVSystem");
     this.cbIsCTTVSystem.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsCTTVSystem.set_Size(new System.Drawing.Size(0xa5, 0x11));
     this.cbIsCTTVSystem.set_TabIndex(0x9a);
     this.cbIsCTTVSystem.set_Text("Система видеонаблюдения");
     this.cbIsCTTVSystem.set_UseVisualStyleBackColor(true);
     this.cbIsComputerNetworks.set_AutoSize(true);
     this.cbIsComputerNetworks.set_Location(new System.Drawing.Point(2, 240));
     this.cbIsComputerNetworks.set_Name("cbIsComputerNetworks");
     this.cbIsComputerNetworks.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsComputerNetworks.set_Size(new System.Drawing.Size(220, 0x11));
     this.cbIsComputerNetworks.set_TabIndex(0x99);
     this.cbIsComputerNetworks.set_Text("Подключение к компьютерным сетям");
     this.cbIsComputerNetworks.set_UseVisualStyleBackColor(true);
     this.cbIsCableTV.set_AutoSize(true);
     this.cbIsCableTV.set_Location(new System.Drawing.Point(3, 0xd9));
     this.cbIsCableTV.set_Name("cbIsCableTV");
     this.cbIsCableTV.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsCableTV.set_Size(new System.Drawing.Size(0x62, 0x11));
     this.cbIsCableTV.set_TabIndex(0x98);
     this.cbIsCableTV.set_Text("Кабельное ТВ");
     this.cbIsCableTV.set_UseVisualStyleBackColor(true);
     this.cbIsSharedAntenna.set_AutoSize(true);
     this.cbIsSharedAntenna.set_Location(new System.Drawing.Point(3, 0xc2));
     this.cbIsSharedAntenna.set_Name("cbIsSharedAntenna");
     this.cbIsSharedAntenna.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsSharedAntenna.set_Size(new System.Drawing.Size(0xda, 0x11));
     this.cbIsSharedAntenna.set_TabIndex(0x97);
     this.cbIsSharedAntenna.set_Text("Антенны коллективного пользования");
     this.cbIsSharedAntenna.set_UseVisualStyleBackColor(true);
     this.cbIsRadio.set_AutoSize(true);
     this.cbIsRadio.set_Location(new System.Drawing.Point(3, 0xab));
     this.cbIsRadio.set_Name("cbIsRadio");
     this.cbIsRadio.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsRadio.set_Size(new System.Drawing.Size(0x39, 0x11));
     this.cbIsRadio.set_TabIndex(150);
     this.cbIsRadio.set_Text("Радио");
     this.cbIsRadio.set_UseVisualStyleBackColor(true);
     this.cbIsCommonDispatchSystems.set_AutoSize(true);
     this.cbIsCommonDispatchSystems.set_Location(new System.Drawing.Point(3, 0x94));
     this.cbIsCommonDispatchSystems.set_Name("cbIsCommonDispatchSystems");
     this.cbIsCommonDispatchSystems.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsCommonDispatchSystems.set_Size(new System.Drawing.Size(0xe7, 0x11));
     this.cbIsCommonDispatchSystems.set_TabIndex(0x95);
     this.cbIsCommonDispatchSystems.set_Text("Объединенные диспечерсекие системы");
     this.cbIsCommonDispatchSystems.set_UseVisualStyleBackColor(true);
     this.cbIsAFPS.set_AutoSize(true);
     this.cbIsAFPS.set_Location(new System.Drawing.Point(3, 0x7d));
     this.cbIsAFPS.set_Name("cbIsAFPS");
     this.cbIsAFPS.set_RightToLeft(System.Windows.Forms.RightToLeft.Yes);
     this.cbIsAFPS.set_Size(new System.Drawing.Size(0xeb, 0x11));
     this.cbIsAFPS.set_TabIndex(0x94);
     this.cbIsAFPS.set_Text("Наличие противопожарной защиты дома");
     this.cbIsAFPS.set_UseVisualStyleBackColor(true);
     this.label118.set_AutoSize(true);
     this.label118.set_Location(new System.Drawing.Point(4, 0x3d));
     this.label118.set_Name("label118");
     this.label118.set_Size(new System.Drawing.Size(0xba, 13));
     this.label118.set_TabIndex(0x9c);
     this.label118.set_Text("Переговорно-замочное устройство");
     this.nudIntercomNumber.set_Location(new System.Drawing.Point(0xe7, 0x36));
     int[] numArray54 = new int[4];
     numArray54[0] = 0xf4240;
     this.nudIntercomNumber.set_Maximum(new decimal(numArray54));
     this.nudIntercomNumber.set_Name("nudIntercomNumber");
     this.nudIntercomNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudIntercomNumber.set_TabIndex(0x91);
     this.label117.set_AutoSize(true);
     this.label117.set_Location(new System.Drawing.Point(3, 0x27));
     this.label117.set_Name("label117");
     this.label117.set_Size(new System.Drawing.Size(0x6a, 13));
     this.label117.set_TabIndex(0x9a);
     this.label117.set_Text("Тип водоотведения");
     this.sfdDrainType.set_FormattingEnabled(true);
     this.sfdDrainType.set_Location(new System.Drawing.Point(230, 30));
     this.sfdDrainType.set_Name("sfdDrainType");
     this.sfdDrainType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdDrainType.set_Sorted(true);
     this.sfdDrainType.set_TabIndex(0x90);
     this.label116.set_AutoSize(true);
     this.label116.set_Location(new System.Drawing.Point(3, 15));
     this.label116.set_Name("label116");
     this.label116.set_Size(new System.Drawing.Size(0x58, 13));
     this.label116.set_TabIndex(0x98);
     this.label116.set_Text("Тип вентиляции");
     this.sfdVentilationType.set_FormattingEnabled(true);
     this.sfdVentilationType.set_Location(new System.Drawing.Point(230, 6));
     this.sfdVentilationType.set_Name("sfdVentilationType");
     this.sfdVentilationType.set_Size(new System.Drawing.Size(0x79, 0x15));
     this.sfdVentilationType.set_Sorted(true);
     this.sfdVentilationType.set_TabIndex(0x8f);
     this.tabPage14.Controls.Add(this.panel12);
     this.tabPage14.set_Location(new System.Drawing.Point(4, 0x16));
     this.tabPage14.set_Name("tabPage14");
     this.tabPage14.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.tabPage14.set_TabIndex(8);
     this.tabPage14.set_Text("Лифты");
     this.tabPage14.set_UseVisualStyleBackColor(true);
     this.panel12.set_AutoScroll(true);
     this.panel12.Controls.Add(this.btnLiftSave);
     this.panel12.Controls.Add(this.label127);
     this.panel12.Controls.Add(this.tbLiftControllerPhoneNumber);
     this.panel12.Controls.Add(this.label124);
     this.panel12.Controls.Add(this.nudLiftOpeningDoorsNumber);
     this.panel12.Controls.Add(this.label125);
     this.panel12.Controls.Add(this.nudLiftFoldingDoorsNumber);
     this.panel12.Controls.Add(this.label126);
     this.panel12.Controls.Add(this.nudLiftCombiLiftNumber);
     this.panel12.Controls.Add(this.label121);
     this.panel12.Controls.Add(this.nudLiftTruckLiftNumber);
     this.panel12.Controls.Add(this.label122);
     this.panel12.Controls.Add(this.nudLiftPassengerLiftNumber);
     this.panel12.Controls.Add(this.label123);
     this.panel12.Controls.Add(this.nudLiftTotalNumber);
     this.panel12.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.panel12.set_Location(new System.Drawing.Point(0, 0));
     this.panel12.set_Name("panel12");
     this.panel12.set_Size(new System.Drawing.Size(0x277, 0x228));
     this.panel12.set_TabIndex(1);
     this.btnLiftSave.set_Location(new System.Drawing.Point(0x115, 0xab));
     this.btnLiftSave.set_Name("btnLiftSave");
     this.btnLiftSave.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnLiftSave.set_TabIndex(0xa4);
     this.btnLiftSave.set_Text("Сохранить");
     this.btnLiftSave.set_UseVisualStyleBackColor(true);
     this.btnLiftSave.add_Click(new System.EventHandler(this.btnLiftSave_Click));
     this.label127.set_AutoSize(true);
     this.label127.set_Location(new System.Drawing.Point(4, 0x98));
     this.label127.set_Name("label127");
     this.label127.set_Size(new System.Drawing.Size(0x71, 13));
     this.label127.set_TabIndex(0xb6);
     this.label127.set_Text("Телефон диспетчера");
     this.tbLiftControllerPhoneNumber.set_Location(new System.Drawing.Point(0xe7, 0x91));
     this.tbLiftControllerPhoneNumber.set_Name("tbLiftControllerPhoneNumber");
     this.tbLiftControllerPhoneNumber.set_Size(new System.Drawing.Size(0x79, 20));
     this.tbLiftControllerPhoneNumber.set_TabIndex(0xa3);
     this.label124.set_AutoSize(true);
     this.label124.set_Location(new System.Drawing.Point(4, 0x81));
     this.label124.set_Name("label124");
     this.label124.set_Size(new System.Drawing.Size(0x9b, 13));
     this.label124.set_TabIndex(180);
     this.label124.set_Text("с открывающимися дверями");
     this.nudLiftOpeningDoorsNumber.set_Location(new System.Drawing.Point(0xe7, 0x7a));
     int[] numArray55 = new int[4];
     numArray55[0] = 0x989680;
     this.nudLiftOpeningDoorsNumber.set_Maximum(new decimal(numArray55));
     this.nudLiftOpeningDoorsNumber.set_Name("nudLiftOpeningDoorsNumber");
     this.nudLiftOpeningDoorsNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftOpeningDoorsNumber.set_TabIndex(0xa2);
     this.label125.set_AutoSize(true);
     this.label125.set_Location(new System.Drawing.Point(4, 0x6b));
     this.label125.set_Name("label125");
     this.label125.set_Size(new System.Drawing.Size(0x87, 13));
     this.label125.set_TabIndex(0xb2);
     this.label125.set_Text("с раздвижными дверями");
     this.nudLiftFoldingDoorsNumber.set_Location(new System.Drawing.Point(0xe7, 100));
     int[] numArray56 = new int[4];
     numArray56[0] = 0x989680;
     this.nudLiftFoldingDoorsNumber.set_Maximum(new decimal(numArray56));
     this.nudLiftFoldingDoorsNumber.set_Name("nudLiftFoldingDoorsNumber");
     this.nudLiftFoldingDoorsNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftFoldingDoorsNumber.set_TabIndex(0xa1);
     this.label126.set_AutoSize(true);
     this.label126.set_Location(new System.Drawing.Point(4, 0x54));
     this.label126.set_Name("label126");
     this.label126.set_Size(new System.Drawing.Size(0x43, 13));
     this.label126.set_TabIndex(0xb0);
     this.label126.set_Text("смешанные");
     this.nudLiftCombiLiftNumber.set_Location(new System.Drawing.Point(0xe7, 0x4d));
     int[] numArray57 = new int[4];
     numArray57[0] = 0x989680;
     this.nudLiftCombiLiftNumber.set_Maximum(new decimal(numArray57));
     this.nudLiftCombiLiftNumber.set_Name("nudLiftCombiLiftNumber");
     this.nudLiftCombiLiftNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftCombiLiftNumber.set_TabIndex(160);
     this.label121.set_AutoSize(true);
     this.label121.set_Location(new System.Drawing.Point(4, 0x3d));
     this.label121.set_Name("label121");
     this.label121.set_Size(new System.Drawing.Size(0x37, 13));
     this.label121.set_TabIndex(0xae);
     this.label121.set_Text("грузовые");
     this.nudLiftTruckLiftNumber.set_Location(new System.Drawing.Point(0xe7, 0x36));
     numArray = new int[4];
     numArray[0] = 0x989680;
     this.nudLiftTruckLiftNumber.set_Maximum(new decimal(numArray));
     this.nudLiftTruckLiftNumber.set_Name("nudLiftTruckLiftNumber");
     this.nudLiftTruckLiftNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftTruckLiftNumber.set_TabIndex(0x9f);
     this.label122.set_AutoSize(true);
     this.label122.set_Location(new System.Drawing.Point(4, 0x27));
     this.label122.set_Name("label122");
     this.label122.set_Size(new System.Drawing.Size(0x51, 13));
     this.label122.set_TabIndex(0xac);
     this.label122.set_Text("пассажирские");
     this.nudLiftPassengerLiftNumber.set_Location(new System.Drawing.Point(0xe7, 0x20));
     numArray = new int[4];
     numArray[0] = 0x989680;
     this.nudLiftPassengerLiftNumber.set_Maximum(new decimal(numArray));
     this.nudLiftPassengerLiftNumber.set_Name("nudLiftPassengerLiftNumber");
     this.nudLiftPassengerLiftNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftPassengerLiftNumber.set_TabIndex(0x9e);
     this.label123.set_AutoSize(true);
     this.label123.set_Location(new System.Drawing.Point(4, 10));
     this.label123.set_Name("label123");
     this.label123.set_Size(new System.Drawing.Size(0x8d, 0x1a));
     this.label123.set_TabIndex(170);
     this.label123.set_Text("Количество лифтов, всего\r\nВ том числе:\r\n");
     this.nudLiftTotalNumber.set_Location(new System.Drawing.Point(0xe7, 9));
     numArray = new int[4];
     numArray[0] = 0xf4240;
     this.nudLiftTotalNumber.set_Maximum(new decimal(numArray));
     this.nudLiftTotalNumber.set_Name("nudLiftTotalNumber");
     this.nudLiftTotalNumber.set_Size(new System.Drawing.Size(120, 20));
     this.nudLiftTotalNumber.set_TabIndex(0x9d);
     this.Service.Controls.Add(this.dgvServices);
     this.Service.Controls.Add(this.tsService);
     this.Service.set_Location(new System.Drawing.Point(4, 0x16));
     this.Service.set_Name("Service");
     this.Service.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.Service.set_TabIndex(0);
     this.Service.set_Text("Услуги");
     this.Service.set_UseVisualStyleBackColor(true);
     this.dgvServices.set_AllowUserToAddRows(false);
     this.dgvServices.set_AllowUserToDeleteRows(false);
     this.dgvServices.set_AutoGenerateColumns(false);
     this.dgvServices.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvServices.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.serviceNameDataGridViewTextBoxColumn, this.fromDateDataGridViewTextBoxColumn, this.toDateDataGridViewTextBoxColumn, this.kDataGridViewTextBoxColumn, this.nameDataGridViewTextBoxColumn });
     this.dgvServices.set_DataSource(this.bsHouseService);
     this.dgvServices.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvServices.set_Location(new System.Drawing.Point(0, 0x19));
     this.dgvServices.set_MultiSelect(false);
     this.dgvServices.set_Name("dgvServices");
     this.dgvServices.set_ReadOnly(true);
     this.dgvServices.set_RowHeadersVisible(false);
     this.dgvServices.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvServices.set_Size(new System.Drawing.Size(0x27f, 0x229));
     this.dgvServices.set_TabIndex(1);
     this.serviceNameDataGridViewTextBoxColumn.set_DataPropertyName("ServiceName");
     this.serviceNameDataGridViewTextBoxColumn.set_HeaderText("Название услуги");
     this.serviceNameDataGridViewTextBoxColumn.set_Name("serviceNameDataGridViewTextBoxColumn");
     this.serviceNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.serviceNameDataGridViewTextBoxColumn.set_Width(0xf7);
     this.fromDateDataGridViewTextBoxColumn.set_DataPropertyName("FromDate");
     this.fromDateDataGridViewTextBoxColumn.set_HeaderText("C");
     this.fromDateDataGridViewTextBoxColumn.set_Name("fromDateDataGridViewTextBoxColumn");
     this.fromDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.toDateDataGridViewTextBoxColumn.set_DataPropertyName("ToDate");
     this.toDateDataGridViewTextBoxColumn.set_HeaderText("По");
     this.toDateDataGridViewTextBoxColumn.set_Name("toDateDataGridViewTextBoxColumn");
     this.toDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.kDataGridViewTextBoxColumn.set_DataPropertyName("K");
     this.kDataGridViewTextBoxColumn.set_HeaderText("Коэффициент");
     this.kDataGridViewTextBoxColumn.set_Name("kDataGridViewTextBoxColumn");
     this.kDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.nameDataGridViewTextBoxColumn.set_DataPropertyName("Name");
     this.nameDataGridViewTextBoxColumn.set_HeaderText("Переодичность");
     this.nameDataGridViewTextBoxColumn.set_Name("nameDataGridViewTextBoxColumn");
     this.nameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.bsHouseService.set_DataSource(typeof(UjfHouseService));
     this.tsService.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsBtnAddService, this.tsBtnChangeService, this.tsBtnDeleteService, this.btnShowMaterialAndWages });
     this.tsService.set_LayoutStyle(System.Windows.Forms.ToolStripLayoutStyle.Flow);
     this.tsService.set_Location(new System.Drawing.Point(0, 0));
     this.tsService.set_Name("tsService");
     this.tsService.set_Size(new System.Drawing.Size(0x27f, 0x19));
     this.tsService.set_TabIndex(0);
     this.tsService.set_Text("toolStrip2");
     this.tsBtnAddService.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnAddService.set_Image(Resources.ADD);
     this.tsBtnAddService.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnAddService.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnAddService.set_Name("tsBtnAddService");
     this.tsBtnAddService.set_Size(new System.Drawing.Size(0x18, 0x16));
     this.tsBtnAddService.set_Text("Добавить");
     this.tsBtnAddService.add_Click(new System.EventHandler(this.tsBtnAddService_Click));
     this.tsBtnChangeService.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnChangeService.set_Image(Resources.CHANGE);
     this.tsBtnChangeService.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnChangeService.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnChangeService.set_Name("tsBtnChangeService");
     this.tsBtnChangeService.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsBtnChangeService.set_Text("Изменить");
     this.tsBtnChangeService.add_Click(new System.EventHandler(this.tsBtnChangeService_Click));
     this.tsBtnDeleteService.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnDeleteService.set_Image(Resources.DELETE);
     this.tsBtnDeleteService.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnDeleteService.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnDeleteService.set_Name("tsBtnDeleteService");
     this.tsBtnDeleteService.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsBtnDeleteService.set_Text("Удалить");
     this.tsBtnDeleteService.add_Click(new System.EventHandler(this.tsBtnDeleteService_Click));
     this.btnShowMaterialAndWages.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.btnShowMaterialAndWages.set_Image((System.Drawing.Image) manager.GetObject("btnShowMaterialAndWages.Image"));
     this.btnShowMaterialAndWages.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.btnShowMaterialAndWages.set_Name("btnShowMaterialAndWages");
     this.btnShowMaterialAndWages.set_Size(new System.Drawing.Size(0x6f, 0x13));
     this.btnShowMaterialAndWages.set_Text("Показать ресурсы");
     this.btnShowMaterialAndWages.add_Click(new System.EventHandler(this.btnShowMaterialAndWages_Click));
     this.Calc.Controls.Add(this.splitContainer1);
     this.Calc.Controls.Add(this.panel1);
     this.Calc.set_Location(new System.Drawing.Point(4, 0x16));
     this.Calc.set_Name("Calc");
     this.Calc.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.Calc.set_TabIndex(1);
     this.Calc.set_Text("Перерасчет");
     this.Calc.set_UseVisualStyleBackColor(true);
     this.splitContainer1.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer1.set_Location(new System.Drawing.Point(0, 0x21));
     this.splitContainer1.set_Name("splitContainer1");
     this.splitContainer1.set_Orientation(System.Windows.Forms.Orientation.Horizontal);
     this.splitContainer1.Panel1.Controls.Add(this.dgvCalcService);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
     this.splitContainer1.set_Size(new System.Drawing.Size(0x27f, 0x221));
     this.splitContainer1.set_SplitterDistance(0xe8);
     this.splitContainer1.set_TabIndex(3);
     this.dgvCalcService.set_AllowUserToAddRows(false);
     this.dgvCalcService.set_AllowUserToDeleteRows(false);
     this.dgvCalcService.set_AutoGenerateColumns(false);
     this.dgvCalcService.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvCalcService.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.serviceNameDataGridViewTextBoxColumn1, this.periodDataGridViewTextBoxColumn, this.algNameDataGridViewTextBoxColumn, this.apartmentSquareDataGridViewTextBoxColumn, this.ladderSquareDataGridViewTextBoxColumn, this.FormulaUi, this.valueDataGridViewTextBoxColumn });
     this.dgvCalcService.set_DataSource(this.bsCalcServices);
     this.dgvCalcService.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvCalcService.set_Location(new System.Drawing.Point(0, 0));
     this.dgvCalcService.set_MultiSelect(false);
     this.dgvCalcService.set_Name("dgvCalcService");
     this.dgvCalcService.set_ReadOnly(true);
     this.dgvCalcService.set_RowHeadersVisible(false);
     this.dgvCalcService.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvCalcService.set_Size(new System.Drawing.Size(0x27f, 0xe8));
     this.dgvCalcService.set_TabIndex(0);
     this.dgvCalcService.add_SelectionChanged(new System.EventHandler(this.calcServiceDGV_SelectionChanged));
     this.serviceNameDataGridViewTextBoxColumn1.set_DataPropertyName("ServiceName");
     this.serviceNameDataGridViewTextBoxColumn1.set_HeaderText("Название услуги");
     this.serviceNameDataGridViewTextBoxColumn1.set_Name("serviceNameDataGridViewTextBoxColumn1");
     this.serviceNameDataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.periodDataGridViewTextBoxColumn.set_DataPropertyName("Period");
     this.periodDataGridViewTextBoxColumn.set_HeaderText("Период");
     this.periodDataGridViewTextBoxColumn.set_Name("periodDataGridViewTextBoxColumn");
     this.periodDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.algNameDataGridViewTextBoxColumn.set_DataPropertyName("AlgName");
     this.algNameDataGridViewTextBoxColumn.set_HeaderText("Название алгоритма");
     this.algNameDataGridViewTextBoxColumn.set_Name("algNameDataGridViewTextBoxColumn");
     this.algNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.apartmentSquareDataGridViewTextBoxColumn.set_DataPropertyName("ApartmentSquare");
     this.apartmentSquareDataGridViewTextBoxColumn.set_HeaderText("Общая площадь");
     this.apartmentSquareDataGridViewTextBoxColumn.set_Name("apartmentSquareDataGridViewTextBoxColumn");
     this.apartmentSquareDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.ladderSquareDataGridViewTextBoxColumn.set_DataPropertyName("LadderSquare");
     this.ladderSquareDataGridViewTextBoxColumn.set_HeaderText("Площадь лестничных клеток");
     this.ladderSquareDataGridViewTextBoxColumn.set_Name("ladderSquareDataGridViewTextBoxColumn");
     this.ladderSquareDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.FormulaUi.set_DataPropertyName("FormulaView");
     this.FormulaUi.set_HeaderText("Формула");
     this.FormulaUi.set_Name("FormulaUi");
     this.FormulaUi.set_ReadOnly(true);
     this.valueDataGridViewTextBoxColumn.set_DataPropertyName("Value");
     this.valueDataGridViewTextBoxColumn.set_HeaderText("Итог");
     this.valueDataGridViewTextBoxColumn.set_Name("valueDataGridViewTextBoxColumn");
     this.valueDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.bsCalcServices.set_DataSource(typeof(UjfCalcService));
     this.splitContainer2.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.splitContainer2.set_Location(new System.Drawing.Point(0, 0));
     this.splitContainer2.set_Name("splitContainer2");
     this.splitContainer2.Panel1.Controls.Add(this.dgvCalcServiceMaterial);
     this.splitContainer2.Panel2.Controls.Add(this.dgvCalcServiceWages);
     this.splitContainer2.set_Size(new System.Drawing.Size(0x27f, 0x135));
     this.splitContainer2.set_SplitterDistance(0x148);
     this.splitContainer2.set_TabIndex(0);
     this.dgvCalcServiceMaterial.set_AllowUserToAddRows(false);
     this.dgvCalcServiceMaterial.set_AllowUserToDeleteRows(false);
     this.dgvCalcServiceMaterial.set_AutoGenerateColumns(false);
     this.dgvCalcServiceMaterial.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells);
     this.dgvCalcServiceMaterial.set_AutoSizeRowsMode(System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders);
     this.dgvCalcServiceMaterial.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvCalcServiceMaterial.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.nameDataGridViewTextBoxColumn1, this.priceValueDataGridViewTextBoxColumn, this.normDataGridViewTextBoxColumn, this.tariffDataGridViewTextBoxColumn, this.usePerYearDataGridViewTextBoxColumn, this.formulaUiDataGridViewTextBoxColumn });
     this.dgvCalcServiceMaterial.set_DataSource(this.bsCalcServiceMaterials);
     this.dgvCalcServiceMaterial.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvCalcServiceMaterial.set_Location(new System.Drawing.Point(0, 0));
     this.dgvCalcServiceMaterial.set_MultiSelect(false);
     this.dgvCalcServiceMaterial.set_Name("dgvCalcServiceMaterial");
     this.dgvCalcServiceMaterial.set_ReadOnly(true);
     this.dgvCalcServiceMaterial.set_RowHeadersVisible(false);
     this.dgvCalcServiceMaterial.set_Size(new System.Drawing.Size(0x148, 0x135));
     this.dgvCalcServiceMaterial.set_TabIndex(0);
     this.nameDataGridViewTextBoxColumn1.set_DataPropertyName("Name");
     this.nameDataGridViewTextBoxColumn1.set_HeaderText("Название материала");
     this.nameDataGridViewTextBoxColumn1.set_Name("nameDataGridViewTextBoxColumn1");
     this.nameDataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.nameDataGridViewTextBoxColumn1.set_Width(0x80);
     this.priceValueDataGridViewTextBoxColumn.set_DataPropertyName("PriceValue");
     this.priceValueDataGridViewTextBoxColumn.set_HeaderText("Цена");
     this.priceValueDataGridViewTextBoxColumn.set_Name("priceValueDataGridViewTextBoxColumn");
     this.priceValueDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.priceValueDataGridViewTextBoxColumn.set_Width(0x3a);
     this.normDataGridViewTextBoxColumn.set_DataPropertyName("Norm");
     this.normDataGridViewTextBoxColumn.set_HeaderText("Норма");
     this.normDataGridViewTextBoxColumn.set_Name("normDataGridViewTextBoxColumn");
     this.normDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.normDataGridViewTextBoxColumn.set_Width(0x42);
     this.tariffDataGridViewTextBoxColumn.set_DataPropertyName("Tariff");
     this.tariffDataGridViewTextBoxColumn.set_HeaderText("Тариф");
     this.tariffDataGridViewTextBoxColumn.set_Name("tariffDataGridViewTextBoxColumn");
     this.tariffDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.tariffDataGridViewTextBoxColumn.set_Width(0x41);
     this.usePerYearDataGridViewTextBoxColumn.set_DataPropertyName("UsePerYear");
     this.usePerYearDataGridViewTextBoxColumn.set_HeaderText("Использование в год");
     this.usePerYearDataGridViewTextBoxColumn.set_Name("usePerYearDataGridViewTextBoxColumn");
     this.usePerYearDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.usePerYearDataGridViewTextBoxColumn.set_Width(0x72);
     this.formulaUiDataGridViewTextBoxColumn.set_DataPropertyName("FormulaUi");
     this.formulaUiDataGridViewTextBoxColumn.set_HeaderText("Формула");
     this.formulaUiDataGridViewTextBoxColumn.set_Name("formulaUiDataGridViewTextBoxColumn");
     this.formulaUiDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.formulaUiDataGridViewTextBoxColumn.set_Width(80);
     this.bsCalcServiceMaterials.set_DataSource(typeof(UjfCalcServiceMaterial));
     this.dgvCalcServiceWages.set_AllowUserToAddRows(false);
     this.dgvCalcServiceWages.set_AllowUserToDeleteRows(false);
     this.dgvCalcServiceWages.set_AutoGenerateColumns(false);
     this.dgvCalcServiceWages.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells);
     this.dgvCalcServiceWages.set_AutoSizeRowsMode(System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCellsExceptHeaders);
     this.dgvCalcServiceWages.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvCalcServiceWages.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.nameDataGridViewTextBoxColumn2, this.rankDataGridViewTextBoxColumn, this.wageValueDataGridViewTextBoxColumn, this.normDataGridViewTextBoxColumn1, this.tariffDataGridViewTextBoxColumn1, this.normChelChasDataGridViewTextBoxColumn, this.normNeVihodDataGridViewTextBoxColumn, this.formulaUiDataGridViewTextBoxColumn1 });
     this.dgvCalcServiceWages.set_DataSource(this.bsCalcServiceWages);
     this.dgvCalcServiceWages.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvCalcServiceWages.set_Location(new System.Drawing.Point(0, 0));
     this.dgvCalcServiceWages.set_MultiSelect(false);
     this.dgvCalcServiceWages.set_Name("dgvCalcServiceWages");
     this.dgvCalcServiceWages.set_ReadOnly(true);
     this.dgvCalcServiceWages.set_RowHeadersVisible(false);
     this.dgvCalcServiceWages.set_Size(new System.Drawing.Size(0x133, 0x135));
     this.dgvCalcServiceWages.set_TabIndex(0);
     this.nameDataGridViewTextBoxColumn2.set_DataPropertyName("Name");
     this.nameDataGridViewTextBoxColumn2.set_HeaderText("Название профессии");
     this.nameDataGridViewTextBoxColumn2.set_Name("nameDataGridViewTextBoxColumn2");
     this.nameDataGridViewTextBoxColumn2.set_ReadOnly(true);
     this.nameDataGridViewTextBoxColumn2.set_Width(0x81);
     this.rankDataGridViewTextBoxColumn.set_DataPropertyName("Rank");
     this.rankDataGridViewTextBoxColumn.set_HeaderText("Разряд");
     this.rankDataGridViewTextBoxColumn.set_Name("rankDataGridViewTextBoxColumn");
     this.rankDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.rankDataGridViewTextBoxColumn.set_Width(0x45);
     this.wageValueDataGridViewTextBoxColumn.set_DataPropertyName("WageValue");
     this.wageValueDataGridViewTextBoxColumn.set_HeaderText("Зарплата");
     this.wageValueDataGridViewTextBoxColumn.set_Name("wageValueDataGridViewTextBoxColumn");
     this.wageValueDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.wageValueDataGridViewTextBoxColumn.set_Width(80);
     this.normDataGridViewTextBoxColumn1.set_DataPropertyName("Norm");
     this.normDataGridViewTextBoxColumn1.set_HeaderText("Норма");
     this.normDataGridViewTextBoxColumn1.set_Name("normDataGridViewTextBoxColumn1");
     this.normDataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.normDataGridViewTextBoxColumn1.set_Width(0x42);
     this.tariffDataGridViewTextBoxColumn1.set_DataPropertyName("Tariff");
     this.tariffDataGridViewTextBoxColumn1.set_HeaderText("Тариф");
     this.tariffDataGridViewTextBoxColumn1.set_Name("tariffDataGridViewTextBoxColumn1");
     this.tariffDataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.tariffDataGridViewTextBoxColumn1.set_Width(0x41);
     this.normChelChasDataGridViewTextBoxColumn.set_DataPropertyName("NormChelChas");
     this.normChelChasDataGridViewTextBoxColumn.set_HeaderText("Трудоемкость чел.-час. в год");
     this.normChelChasDataGridViewTextBoxColumn.set_Name("normChelChasDataGridViewTextBoxColumn");
     this.normChelChasDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.normChelChasDataGridViewTextBoxColumn.set_Width(0x95);
     this.normNeVihodDataGridViewTextBoxColumn.set_DataPropertyName("NormNeVihod");
     this.normNeVihodDataGridViewTextBoxColumn.set_HeaderText("Трудоемкость с учетом невыхода");
     this.normNeVihodDataGridViewTextBoxColumn.set_Name("normNeVihodDataGridViewTextBoxColumn");
     this.normNeVihodDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.normNeVihodDataGridViewTextBoxColumn.set_Width(0x8e);
     this.formulaUiDataGridViewTextBoxColumn1.set_DataPropertyName("FormulaUi");
     this.formulaUiDataGridViewTextBoxColumn1.set_HeaderText("Формула");
     this.formulaUiDataGridViewTextBoxColumn1.set_Name("formulaUiDataGridViewTextBoxColumn1");
     this.formulaUiDataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.formulaUiDataGridViewTextBoxColumn1.set_Width(80);
     this.bsCalcServiceWages.set_DataSource(typeof(UjfCalcServiceWage));
     this.panel1.Controls.Add(this.btnShowErrors);
     this.panel1.Controls.Add(this.labelError);
     this.panel1.Controls.Add(this.btnCalcStart);
     this.panel1.Controls.Add(this.datePeriod);
     this.panel1.set_Dock(System.Windows.Forms.DockStyle.Top);
     this.panel1.set_Location(new System.Drawing.Point(0, 0));
     this.panel1.set_Name("panel1");
     this.panel1.set_Size(new System.Drawing.Size(0x27f, 0x21));
     this.panel1.set_TabIndex(0);
     this.btnShowErrors.set_Location(new System.Drawing.Point(0x21a, 5));
     this.btnShowErrors.set_Name("btnShowErrors");
     this.btnShowErrors.set_Size(new System.Drawing.Size(0x4b, 0x17));
     this.btnShowErrors.set_TabIndex(3);
     this.btnShowErrors.set_Text("Просмотр");
     this.btnShowErrors.set_UseVisualStyleBackColor(true);
     this.btnShowErrors.set_Visible(false);
     this.btnShowErrors.add_Click(new System.EventHandler(this.btnShowErrors_Click));
     this.labelError.set_AutoSize(true);
     this.labelError.set_ForeColor(System.Drawing.Color.Maroon);
     this.labelError.set_Location(new System.Drawing.Point(0x13c, 3));
     this.labelError.set_Name("labelError");
     this.labelError.set_Size(new System.Drawing.Size(0xd7, 0x1a));
     this.labelError.set_TabIndex(2);
     this.labelError.set_Text("В ходе расчета возникли ошибки.\r\nНажмите кнопку для просмотра ошибок.");
     this.labelError.set_Visible(false);
     this.btnCalcStart.set_Location(new System.Drawing.Point(0xeb, 5));
     this.btnCalcStart.set_Name("btnCalcStart");
     this.btnCalcStart.set_Size(new System.Drawing.Size(0x4b, 0x16));
     this.btnCalcStart.set_TabIndex(1);
     this.btnCalcStart.set_Text("Расчитать");
     this.btnCalcStart.set_UseVisualStyleBackColor(true);
     this.btnCalcStart.add_Click(new System.EventHandler(this.btnCalcStart_Click));
     this.datePeriod.AttachToPeriod = false;
     this.datePeriod.DateBeginReadonly = false;
     this.datePeriod.DateEndReadonly = false;
     this.datePeriod.set_Location(new System.Drawing.Point(-5, 4));
     this.datePeriod.set_Margin(new System.Windows.Forms.Padding(4));
     this.datePeriod.set_Name("datePeriod");
     this.datePeriod.set_Size(new System.Drawing.Size(0xe9, 0x17));
     this.datePeriod.set_TabIndex(0);
     this.Inspection.Controls.Add(this.dgvInspections);
     this.Inspection.Controls.Add(this.tsInspection);
     this.Inspection.set_Location(new System.Drawing.Point(4, 0x16));
     this.Inspection.set_Name("Inspection");
     this.Inspection.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.Inspection.set_TabIndex(5);
     this.Inspection.set_Text("Осмотры");
     this.Inspection.set_UseVisualStyleBackColor(true);
     this.dgvInspections.set_AllowUserToAddRows(false);
     this.dgvInspections.set_AllowUserToDeleteRows(false);
     this.dgvInspections.set_AllowUserToResizeRows(false);
     this.dgvInspections.set_AutoGenerateColumns(false);
     this.dgvInspections.set_AutoSizeColumnsMode(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill);
     this.dgvInspections.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgvInspections.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.inspectionDateTimeDataGridViewTextBoxColumn, this.StatusName, this.Inspector, this.UserName });
     this.dgvInspections.set_DataSource(this.bsHouseInspection);
     this.dgvInspections.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgvInspections.set_Location(new System.Drawing.Point(0, 0x19));
     this.dgvInspections.set_MultiSelect(false);
     this.dgvInspections.set_Name("dgvInspections");
     this.dgvInspections.set_ReadOnly(true);
     this.dgvInspections.set_RowHeadersVisible(false);
     this.dgvInspections.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgvInspections.set_Size(new System.Drawing.Size(0x27f, 0x229));
     this.dgvInspections.set_TabIndex(1);
     this.dgvInspections.add_CellMouseDoubleClick(new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvInspections_CellMouseDoubleClick));
     this.dgvInspections.add_PreviewKeyDown(new System.Windows.Forms.PreviewKeyDownEventHandler(this.dgvInspections_PreviewKeyDown));
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells);
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_DataPropertyName("InspectionDateTime");
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_HeaderText("Дата проведения осмотра");
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_Name("inspectionDateTimeDataGridViewTextBoxColumn");
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.inspectionDateTimeDataGridViewTextBoxColumn.set_Width(0x98);
     this.StatusName.set_DataPropertyName("StatusName");
     this.StatusName.set_HeaderText("Статус");
     this.StatusName.set_Name("StatusName");
     this.StatusName.set_ReadOnly(true);
     this.Inspector.set_DataPropertyName("Inspector");
     this.Inspector.set_HeaderText("Инспектор");
     this.Inspector.set_Name("Inspector");
     this.Inspector.set_ReadOnly(true);
     this.UserName.set_DataPropertyName("UserName");
     this.UserName.set_HeaderText("Пользователь");
     this.UserName.set_Name("UserName");
     this.UserName.set_ReadOnly(true);
     this.bsHouseInspection.set_DataSource(typeof(UjfApartmentHouseInspection));
     this.tsInspection.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsBtnAddInspection, this.tsBtnChangeInspection, this.tsBtnDeleteInstepction, this.tsBtnApartmentHousePartElement, this.tssBtnActs, this.tssReports });
     this.tsInspection.set_Location(new System.Drawing.Point(0, 0));
     this.tsInspection.set_Name("tsInspection");
     this.tsInspection.set_Size(new System.Drawing.Size(0x27f, 0x19));
     this.tsInspection.set_TabIndex(0);
     this.tsInspection.set_Text("toolStrip4");
     this.tsBtnAddInspection.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnAddInspection.set_Image(Resources.ADD);
     this.tsBtnAddInspection.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnAddInspection.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnAddInspection.set_Name("tsBtnAddInspection");
     this.tsBtnAddInspection.set_Size(new System.Drawing.Size(0x18, 0x16));
     this.tsBtnAddInspection.set_Text("Добавить");
     this.tsBtnAddInspection.add_Click(new System.EventHandler(this.tsBtnAddInspection_Click));
     this.tsBtnChangeInspection.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnChangeInspection.set_Image(Resources.CHANGE);
     this.tsBtnChangeInspection.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnChangeInspection.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnChangeInspection.set_Name("tsBtnChangeInspection");
     this.tsBtnChangeInspection.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsBtnChangeInspection.set_Text("Изменить");
     this.tsBtnChangeInspection.add_Click(new System.EventHandler(this.tsBtnChangeInspection_Click));
     this.tsBtnDeleteInstepction.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnDeleteInstepction.set_Image(Resources.DELETE);
     this.tsBtnDeleteInstepction.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnDeleteInstepction.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnDeleteInstepction.set_Name("tsBtnDeleteInstepction");
     this.tsBtnDeleteInstepction.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsBtnDeleteInstepction.set_Text("Удалить");
     this.tsBtnDeleteInstepction.add_Click(new System.EventHandler(this.tsBtnDeleteInstepction_Click));
     this.tsBtnApartmentHousePartElement.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsBtnApartmentHousePartElement.set_Image(Resources.COPY);
     this.tsBtnApartmentHousePartElement.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsBtnApartmentHousePartElement.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsBtnApartmentHousePartElement.set_Name("tsBtnApartmentHousePartElement");
     this.tsBtnApartmentHousePartElement.set_Size(new System.Drawing.Size(0x18, 0x16));
     this.tsBtnApartmentHousePartElement.set_Text("Дефекты");
     this.tsBtnApartmentHousePartElement.add_Click(new System.EventHandler(this.tsBtnApartmentHousePartElement_Click));
     this.tssBtnActs.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tssBtnActs.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiInspectionAct, this.tsmiInspectionAct_Pystograf, this.tsmiInspectionAct_PystografMin });
     this.tssBtnActs.set_Image((System.Drawing.Image) manager.GetObject("tssBtnActs.Image"));
     this.tssBtnActs.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tssBtnActs.set_Name("tssBtnActs");
     this.tssBtnActs.set_Size(new System.Drawing.Size(0x33, 0x16));
     this.tssBtnActs.set_Text("Акты");
     this.tsmiInspectionAct.set_Name("tsmiInspectionAct");
     this.tsmiInspectionAct.set_Size(new System.Drawing.Size(0xe0, 0x16));
     this.tsmiInspectionAct.set_Text("Акт осмотра");
     this.tsmiInspectionAct.add_Click(new System.EventHandler(this.tsmiInspectionAct_Click));
     this.tsmiInspectionAct_Pystograf.set_Name("tsmiInspectionAct_Pystograf");
     this.tsmiInspectionAct_Pystograf.set_Size(new System.Drawing.Size(0xe0, 0x16));
     this.tsmiInspectionAct_Pystograf.set_Text("Акт осмотра по элементам");
     this.tsmiInspectionAct_Pystograf.add_Click(new System.EventHandler(this.tsmiInspectionAct_Pystograf_Click));
     this.tsmiInspectionAct_PystografMin.set_Name("tsmiInspectionAct_PystografMin");
     this.tsmiInspectionAct_PystografMin.set_Size(new System.Drawing.Size(0xe0, 0x16));
     this.tsmiInspectionAct_PystografMin.set_Text("Акт проверки");
     this.tsmiInspectionAct_PystografMin.add_Click(new System.EventHandler(this.tsmiInspectionAct_PystografMin_Click));
     this.tssReports.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.tssReports.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsmiDefectsCoordinationWorkByInspection, this.tsmiDefectsDelayWorkByInspecion, this.tsmiListExpiredAndCurrentDefects, this.tsmiListCoordinationVolumesDefects });
     this.tssReports.set_Image((System.Drawing.Image) manager.GetObject("tssReports.Image"));
     this.tssReports.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tssReports.set_Name("tssReports");
     this.tssReports.set_Size(new System.Drawing.Size(0x40, 0x16));
     this.tssReports.set_Text("Отчёты");
     this.tsmiDefectsCoordinationWorkByInspection.set_Enabled(false);
     this.tsmiDefectsCoordinationWorkByInspection.set_Name("tsmiDefectsCoordinationWorkByInspection");
     this.tsmiDefectsCoordinationWorkByInspection.set_Size(new System.Drawing.Size(0x17b, 0x16));
     this.tsmiDefectsCoordinationWorkByInspection.set_Text("Перечень согласованных объёмов дефектов");
     this.tsmiDefectsCoordinationWorkByInspection.add_Click(new System.EventHandler(this.tsmiDefectsCoordinationWorkByInspection_Click));
     this.tsmiDefectsDelayWorkByInspecion.set_Enabled(false);
     this.tsmiDefectsDelayWorkByInspecion.set_Name("tsmiDefectsDelayWorkByInspecion");
     this.tsmiDefectsDelayWorkByInspecion.set_Size(new System.Drawing.Size(0x17b, 0x16));
     this.tsmiDefectsDelayWorkByInspecion.set_Text("Сводная ведомость просроченных и текущих дефектов");
     this.tsmiDefectsDelayWorkByInspecion.add_Click(new System.EventHandler(this.tsmiDefectsDelayWorkByInspecion_Click));
     this.tsmiListExpiredAndCurrentDefects.set_Name("tsmiListExpiredAndCurrentDefects");
     this.tsmiListExpiredAndCurrentDefects.set_Size(new System.Drawing.Size(0x17b, 0x16));
     this.tsmiListExpiredAndCurrentDefects.set_Text("Перечень просроченных и текущих дефектов");
     this.tsmiListExpiredAndCurrentDefects.add_Click(new System.EventHandler(this.tsmiListExpiredAndCurrentDefects_Click));
     this.Vote.Controls.Add(this.dgwMeeting);
     this.Vote.Controls.Add(this.tsVote);
     this.Vote.set_Location(new System.Drawing.Point(4, 0x16));
     this.Vote.set_Name("Vote");
     this.Vote.set_Size(new System.Drawing.Size(0x27f, 0x242));
     this.Vote.set_TabIndex(6);
     this.Vote.set_Text("Собрания");
     this.Vote.set_UseVisualStyleBackColor(true);
     this.dgwMeeting.set_AllowUserToAddRows(false);
     this.dgwMeeting.set_AllowUserToDeleteRows(false);
     this.dgwMeeting.set_AutoGenerateColumns(false);
     this.dgwMeeting.set_ColumnHeadersHeightSizeMode(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize);
     this.dgwMeeting.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.dateDataGridViewTextBoxColumn, this.endVotingDateDataGridViewTextBoxColumn, this.publishVotingDateDataGridViewTextBoxColumn, this.votingKindNameDataGridViewTextBoxColumn, this.votingAcceptAdressDataGridViewTextBoxColumn, this.meetingInitiatorDataGridViewTextBoxColumn, this.noticeDateDataGridViewTextBoxColumn, this.protocolDateDataGridViewTextBoxColumn, this.protocolNumberDataGridViewTextBoxColumn });
     this.dgwMeeting.set_DataSource(this.bsUjfMeetings);
     this.dgwMeeting.set_Dock(System.Windows.Forms.DockStyle.Fill);
     this.dgwMeeting.set_Location(new System.Drawing.Point(0, 0x19));
     this.dgwMeeting.set_MultiSelect(false);
     this.dgwMeeting.set_Name("dgwMeeting");
     this.dgwMeeting.set_ReadOnly(true);
     this.dgwMeeting.set_RowHeadersVisible(false);
     this.dgwMeeting.set_SelectionMode(System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect);
     this.dgwMeeting.set_Size(new System.Drawing.Size(0x27f, 0x229));
     this.dgwMeeting.set_TabIndex(1);
     this.dgwMeeting.add_CellMouseDoubleClick(new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgwMeeting_CellMouseDoubleClick));
     this.dateDataGridViewTextBoxColumn.set_DataPropertyName("Date");
     this.dateDataGridViewTextBoxColumn.set_HeaderText("Дата собрания");
     this.dateDataGridViewTextBoxColumn.set_Name("dateDataGridViewTextBoxColumn");
     this.dateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.endVotingDateDataGridViewTextBoxColumn.set_DataPropertyName("EndVotingDate");
     this.endVotingDateDataGridViewTextBoxColumn.set_HeaderText("Дата окончания голосования");
     this.endVotingDateDataGridViewTextBoxColumn.set_Name("endVotingDateDataGridViewTextBoxColumn");
     this.endVotingDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.publishVotingDateDataGridViewTextBoxColumn.set_DataPropertyName("PublishVotingDate");
     this.publishVotingDateDataGridViewTextBoxColumn.set_HeaderText("Дата объявления результатов");
     this.publishVotingDateDataGridViewTextBoxColumn.set_Name("publishVotingDateDataGridViewTextBoxColumn");
     this.publishVotingDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.votingKindNameDataGridViewTextBoxColumn.set_DataPropertyName("VotingKindName");
     this.votingKindNameDataGridViewTextBoxColumn.set_HeaderText("Форма голосования");
     this.votingKindNameDataGridViewTextBoxColumn.set_Name("votingKindNameDataGridViewTextBoxColumn");
     this.votingKindNameDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.votingAcceptAdressDataGridViewTextBoxColumn.set_DataPropertyName("VotingAcceptAdress");
     this.votingAcceptAdressDataGridViewTextBoxColumn.set_HeaderText("Место приема бюллетеней");
     this.votingAcceptAdressDataGridViewTextBoxColumn.set_Name("votingAcceptAdressDataGridViewTextBoxColumn");
     this.votingAcceptAdressDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.meetingInitiatorDataGridViewTextBoxColumn.set_DataPropertyName("MeetingInitiator");
     this.meetingInitiatorDataGridViewTextBoxColumn.set_HeaderText("Инициатор голосования");
     this.meetingInitiatorDataGridViewTextBoxColumn.set_Name("meetingInitiatorDataGridViewTextBoxColumn");
     this.meetingInitiatorDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.noticeDateDataGridViewTextBoxColumn.set_DataPropertyName("NoticeDate");
     this.noticeDateDataGridViewTextBoxColumn.set_HeaderText("Дата рассылки извещений");
     this.noticeDateDataGridViewTextBoxColumn.set_Name("noticeDateDataGridViewTextBoxColumn");
     this.noticeDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.protocolDateDataGridViewTextBoxColumn.set_DataPropertyName("ProtocolDate");
     this.protocolDateDataGridViewTextBoxColumn.set_HeaderText("Дата протокола");
     this.protocolDateDataGridViewTextBoxColumn.set_Name("protocolDateDataGridViewTextBoxColumn");
     this.protocolDateDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.protocolNumberDataGridViewTextBoxColumn.set_DataPropertyName("ProtocolNumber");
     this.protocolNumberDataGridViewTextBoxColumn.set_HeaderText("Номер протокола");
     this.protocolNumberDataGridViewTextBoxColumn.set_Name("protocolNumberDataGridViewTextBoxColumn");
     this.protocolNumberDataGridViewTextBoxColumn.set_ReadOnly(true);
     this.bsUjfMeetings.set_DataSource(typeof(UjfMeeting));
     this.tsVote.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.tsbAddMeeting, this.tsbChangeMeeting, this.tsbDeleteMeeting });
     this.tsVote.set_Location(new System.Drawing.Point(0, 0));
     this.tsVote.set_Name("tsVote");
     this.tsVote.set_Size(new System.Drawing.Size(0x27f, 0x19));
     this.tsVote.set_TabIndex(0);
     this.tsVote.set_Text("toolStrip1");
     this.tsbAddMeeting.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbAddMeeting.set_Image(Resources.ADD);
     this.tsbAddMeeting.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbAddMeeting.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbAddMeeting.set_Name("tsbAddMeeting");
     this.tsbAddMeeting.set_Size(new System.Drawing.Size(0x18, 0x16));
     this.tsbAddMeeting.set_Text("Добавить");
     this.tsbAddMeeting.add_Click(new System.EventHandler(this.tsbAddMeeting_Click));
     this.tsbChangeMeeting.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbChangeMeeting.set_Image(Resources.CHANGE);
     this.tsbChangeMeeting.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbChangeMeeting.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbChangeMeeting.set_Name("tsbChangeMeeting");
     this.tsbChangeMeeting.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsbChangeMeeting.set_Text("Редактировать");
     this.tsbChangeMeeting.add_Click(new System.EventHandler(this.tsbChangeMeeting_Click));
     this.tsbDeleteMeeting.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.tsbDeleteMeeting.set_Image(Resources.DELETE);
     this.tsbDeleteMeeting.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.tsbDeleteMeeting.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.tsbDeleteMeeting.set_Name("tsbDeleteMeeting");
     this.tsbDeleteMeeting.set_Size(new System.Drawing.Size(0x1c, 0x16));
     this.tsbDeleteMeeting.set_Text("Удалить");
     this.tsbDeleteMeeting.add_Click(new System.EventHandler(this.tsbDeleteMeeting_Click));
     this.dataGridViewTextBoxColumn1.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill);
     this.dataGridViewTextBoxColumn1.set_DataPropertyName("HouseId");
     this.dataGridViewTextBoxColumn1.set_HeaderText("HouseId");
     this.dataGridViewTextBoxColumn1.set_Name("dataGridViewTextBoxColumn1");
     this.dataGridViewTextBoxColumn1.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn1.set_Visible(false);
     this.dataGridViewTextBoxColumn2.set_DataPropertyName("ServiceId");
     this.dataGridViewTextBoxColumn2.set_HeaderText("ServiceId");
     this.dataGridViewTextBoxColumn2.set_Name("dataGridViewTextBoxColumn2");
     this.dataGridViewTextBoxColumn2.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn2.set_Visible(false);
     this.dataGridViewTextBoxColumn2.set_Width(0x42);
     this.dataGridViewTextBoxColumn3.set_DataPropertyName("ServiceName");
     this.dataGridViewTextBoxColumn3.set_HeaderText("Название сервиса");
     this.dataGridViewTextBoxColumn3.set_Name("dataGridViewTextBoxColumn3");
     this.dataGridViewTextBoxColumn3.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn3.set_Visible(false);
     this.dataGridViewTextBoxColumn3.set_Width(0xd4);
     this.dataGridViewTextBoxColumn4.set_DataPropertyName("FromDate");
     this.dataGridViewTextBoxColumn4.set_HeaderText("С");
     this.dataGridViewTextBoxColumn4.set_Name("dataGridViewTextBoxColumn4");
     this.dataGridViewTextBoxColumn4.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn4.set_Visible(false);
     this.dataGridViewTextBoxColumn4.set_Width(0xd4);
     this.addressTreeView.DenyEditing = false;
     this.addressTreeView.set_Dock(System.Windows.Forms.DockStyle.Left);
     this.addressTreeView.set_HideSelection(false);
     this.addressTreeView.set_Location(new System.Drawing.Point(0, 0));
     this.addressTreeView.set_Name("addressTreeView");
     this.addressTreeView.SelectedAddress = null;
     this.addressTreeView.set_ShowNodeToolTips(true);
     this.addressTreeView.set_Size(new System.Drawing.Size(0xe5, 0x275));
     this.addressTreeView.set_TabIndex(1);
     this.addressTreeView.add_BeforeExpand(new System.Windows.Forms.TreeViewCancelEventHandler(this.addressTreeView_BeforeExpand));
     this.addressTreeView.add_AfterSelect(new System.Windows.Forms.TreeViewEventHandler(this.addressTreeView_AfterSelect));
     this.dataGridViewTextBoxColumn5.set_DataPropertyName("ToDate");
     this.dataGridViewTextBoxColumn5.set_HeaderText("По");
     this.dataGridViewTextBoxColumn5.set_Name("dataGridViewTextBoxColumn5");
     this.dataGridViewTextBoxColumn5.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn5.set_Visible(false);
     this.dataGridViewTextBoxColumn6.set_DataPropertyName("ObjectWithIdType");
     this.dataGridViewTextBoxColumn6.set_HeaderText("ObjectWithIdType");
     this.dataGridViewTextBoxColumn6.set_Name("dataGridViewTextBoxColumn6");
     this.dataGridViewTextBoxColumn6.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn6.set_Visible(false);
     this.dataGridViewTextBoxColumn7.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn7.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn7.set_Name("dataGridViewTextBoxColumn7");
     this.dataGridViewTextBoxColumn7.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn7.set_Visible(false);
     this.dataGridViewTextBoxColumn8.set_DataPropertyName("ServiceName");
     this.dataGridViewTextBoxColumn8.set_HeaderText("Название сервиса");
     this.dataGridViewTextBoxColumn8.set_Name("dataGridViewTextBoxColumn8");
     this.dataGridViewTextBoxColumn8.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn8.set_Visible(false);
     this.dataGridViewTextBoxColumn9.set_DataPropertyName("FromDate");
     this.dataGridViewTextBoxColumn9.set_HeaderText("С");
     this.dataGridViewTextBoxColumn9.set_Name("dataGridViewTextBoxColumn9");
     this.dataGridViewTextBoxColumn9.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn9.set_Visible(false);
     this.dataGridViewTextBoxColumn10.set_DataPropertyName("ToDate");
     this.dataGridViewTextBoxColumn10.set_HeaderText("По");
     this.dataGridViewTextBoxColumn10.set_Name("dataGridViewTextBoxColumn10");
     this.dataGridViewTextBoxColumn10.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn11.set_DataPropertyName("ApartmentSquare");
     this.dataGridViewTextBoxColumn11.set_HeaderText("ApartmentSquare");
     this.dataGridViewTextBoxColumn11.set_Name("dataGridViewTextBoxColumn11");
     this.dataGridViewTextBoxColumn11.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn11.set_Width(0xf7);
     this.dataGridViewTextBoxColumn12.set_DataPropertyName("LadderSquare");
     this.dataGridViewTextBoxColumn12.set_HeaderText("LadderSquare");
     this.dataGridViewTextBoxColumn12.set_Name("dataGridViewTextBoxColumn12");
     this.dataGridViewTextBoxColumn12.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn13.set_DataPropertyName("FormulaValue");
     this.dataGridViewTextBoxColumn13.set_HeaderText("FormulaValue");
     this.dataGridViewTextBoxColumn13.set_Name("dataGridViewTextBoxColumn13");
     this.dataGridViewTextBoxColumn13.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn14.set_DataPropertyName("HouseHolderId");
     this.dataGridViewTextBoxColumn14.set_HeaderText("HouseHolderId");
     this.dataGridViewTextBoxColumn14.set_Name("dataGridViewTextBoxColumn14");
     this.dataGridViewTextBoxColumn14.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn15.set_DataPropertyName("ObjectWithIdType");
     this.dataGridViewTextBoxColumn15.set_HeaderText("ObjectWithIdType");
     this.dataGridViewTextBoxColumn15.set_Name("dataGridViewTextBoxColumn15");
     this.dataGridViewTextBoxColumn15.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn16.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn16.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn16.set_Name("dataGridViewTextBoxColumn16");
     this.dataGridViewTextBoxColumn16.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn17.set_DataPropertyName("MaterialId");
     this.dataGridViewTextBoxColumn17.set_HeaderText("MaterialId");
     this.dataGridViewTextBoxColumn17.set_Name("dataGridViewTextBoxColumn17");
     this.dataGridViewTextBoxColumn17.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn18.set_DataPropertyName("CalcServiceId");
     this.dataGridViewTextBoxColumn18.set_HeaderText("CalcServiceId");
     this.dataGridViewTextBoxColumn18.set_Name("dataGridViewTextBoxColumn18");
     this.dataGridViewTextBoxColumn18.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn19.set_DataPropertyName("Norm");
     this.dataGridViewTextBoxColumn19.set_HeaderText("Norm");
     this.dataGridViewTextBoxColumn19.set_Name("dataGridViewTextBoxColumn19");
     this.dataGridViewTextBoxColumn19.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn20.set_DataPropertyName("Tariff");
     this.dataGridViewTextBoxColumn20.set_HeaderText("Tariff");
     this.dataGridViewTextBoxColumn20.set_Name("dataGridViewTextBoxColumn20");
     this.dataGridViewTextBoxColumn20.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn21.set_DataPropertyName("FormulaValue");
     this.dataGridViewTextBoxColumn21.set_HeaderText("FormulaValue");
     this.dataGridViewTextBoxColumn21.set_Name("dataGridViewTextBoxColumn21");
     this.dataGridViewTextBoxColumn21.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn22.set_DataPropertyName("PriceValue");
     this.dataGridViewTextBoxColumn22.set_HeaderText("PriceValue");
     this.dataGridViewTextBoxColumn22.set_Name("dataGridViewTextBoxColumn22");
     this.dataGridViewTextBoxColumn22.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn23.set_DataPropertyName("ObjectWithIdType");
     this.dataGridViewTextBoxColumn23.set_HeaderText("ObjectWithIdType");
     this.dataGridViewTextBoxColumn23.set_Name("dataGridViewTextBoxColumn23");
     this.dataGridViewTextBoxColumn23.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn23.set_Width(0x80);
     this.dataGridViewTextBoxColumn24.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn24.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn24.set_Name("dataGridViewTextBoxColumn24");
     this.dataGridViewTextBoxColumn24.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn24.set_Width(0x3a);
     this.dataGridViewTextBoxColumn25.set_DataPropertyName("ProfessionId");
     this.dataGridViewTextBoxColumn25.set_HeaderText("ProfessionId");
     this.dataGridViewTextBoxColumn25.set_Name("dataGridViewTextBoxColumn25");
     this.dataGridViewTextBoxColumn25.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn25.set_Width(0x42);
     this.dataGridViewTextBoxColumn26.set_DataPropertyName("Rank");
     this.dataGridViewTextBoxColumn26.set_HeaderText("Rank");
     this.dataGridViewTextBoxColumn26.set_Name("dataGridViewTextBoxColumn26");
     this.dataGridViewTextBoxColumn26.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn26.set_Width(0x41);
     this.dataGridViewTextBoxColumn27.set_DataPropertyName("CalcServiceId");
     this.dataGridViewTextBoxColumn27.set_HeaderText("CalcServiceId");
     this.dataGridViewTextBoxColumn27.set_Name("dataGridViewTextBoxColumn27");
     this.dataGridViewTextBoxColumn27.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn27.set_Width(0x72);
     this.dataGridViewTextBoxColumn28.set_DataPropertyName("Norm");
     this.dataGridViewTextBoxColumn28.set_HeaderText("Norm");
     this.dataGridViewTextBoxColumn28.set_Name("dataGridViewTextBoxColumn28");
     this.dataGridViewTextBoxColumn28.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn28.set_Width(80);
     this.dataGridViewTextBoxColumn29.set_DataPropertyName("Tariff");
     this.dataGridViewTextBoxColumn29.set_HeaderText("Tariff");
     this.dataGridViewTextBoxColumn29.set_Name("dataGridViewTextBoxColumn29");
     this.dataGridViewTextBoxColumn29.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn29.set_Width(0x81);
     this.dataGridViewTextBoxColumn30.set_DataPropertyName("FormulaValue");
     this.dataGridViewTextBoxColumn30.set_HeaderText("FormulaValue");
     this.dataGridViewTextBoxColumn30.set_Name("dataGridViewTextBoxColumn30");
     this.dataGridViewTextBoxColumn30.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn30.set_Width(0x45);
     this.dataGridViewTextBoxColumn31.set_DataPropertyName("WageValue");
     this.dataGridViewTextBoxColumn31.set_HeaderText("WageValue");
     this.dataGridViewTextBoxColumn31.set_Name("dataGridViewTextBoxColumn31");
     this.dataGridViewTextBoxColumn31.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn31.set_Width(80);
     this.dataGridViewTextBoxColumn32.set_DataPropertyName("ObjectWithIdType");
     this.dataGridViewTextBoxColumn32.set_HeaderText("ObjectWithIdType");
     this.dataGridViewTextBoxColumn32.set_Name("dataGridViewTextBoxColumn32");
     this.dataGridViewTextBoxColumn32.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn32.set_Width(0x42);
     this.dataGridViewTextBoxColumn33.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn33.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn33.set_Name("dataGridViewTextBoxColumn33");
     this.dataGridViewTextBoxColumn33.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn33.set_Width(0x41);
     this.dataGridViewTextBoxColumn34.set_DataPropertyName("NormChelChas");
     this.dataGridViewTextBoxColumn34.set_HeaderText("Трудоемкость чел.-час. в год");
     this.dataGridViewTextBoxColumn34.set_Name("dataGridViewTextBoxColumn34");
     this.dataGridViewTextBoxColumn34.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn34.set_Width(0x95);
     this.dataGridViewTextBoxColumn35.set_DataPropertyName("NormNeVihod");
     this.dataGridViewTextBoxColumn35.set_HeaderText("Трудоемкость с учетом невыхода");
     this.dataGridViewTextBoxColumn35.set_Name("dataGridViewTextBoxColumn35");
     this.dataGridViewTextBoxColumn35.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn35.set_Width(0x8e);
     this.dataGridViewTextBoxColumn36.set_DataPropertyName("FormulaUi");
     this.dataGridViewTextBoxColumn36.set_HeaderText("Формула");
     this.dataGridViewTextBoxColumn36.set_Name("dataGridViewTextBoxColumn36");
     this.dataGridViewTextBoxColumn36.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn36.set_Width(80);
     this.dataGridViewTextBoxColumn37.set_AutoSizeMode(System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells);
     this.dataGridViewTextBoxColumn37.set_DataPropertyName("InspectionDataTime");
     this.dataGridViewTextBoxColumn37.set_HeaderText("Дата проведения осмотра");
     this.dataGridViewTextBoxColumn37.set_Name("dataGridViewTextBoxColumn37");
     this.dataGridViewTextBoxColumn37.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn38.set_DataPropertyName("StatusId");
     this.dataGridViewTextBoxColumn38.set_HeaderText("Статус");
     this.dataGridViewTextBoxColumn38.set_Name("dataGridViewTextBoxColumn38");
     this.dataGridViewTextBoxColumn38.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn38.set_Width(0x42);
     this.dataGridViewTextBoxColumn39.set_DataPropertyName("InspectionKindId");
     this.dataGridViewTextBoxColumn39.set_HeaderText("Тип осмотра");
     this.dataGridViewTextBoxColumn39.set_Name("dataGridViewTextBoxColumn39");
     this.dataGridViewTextBoxColumn39.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn39.set_Width(0x61);
     this.dataGridViewTextBoxColumn40.set_DataPropertyName("Date");
     this.dataGridViewTextBoxColumn40.set_HeaderText("Date");
     this.dataGridViewTextBoxColumn40.set_Name("dataGridViewTextBoxColumn40");
     this.dataGridViewTextBoxColumn40.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn40.set_Width(0xa2);
     this.dataGridViewTextBoxColumn41.set_DataPropertyName("EndVotingDate");
     this.dataGridViewTextBoxColumn41.set_HeaderText("EndVotingDate");
     this.dataGridViewTextBoxColumn41.set_Name("dataGridViewTextBoxColumn41");
     this.dataGridViewTextBoxColumn41.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn41.set_Width(0x79);
     this.dataGridViewTextBoxColumn42.set_DataPropertyName("HouseId");
     this.dataGridViewTextBoxColumn42.set_HeaderText("HouseId");
     this.dataGridViewTextBoxColumn42.set_Name("dataGridViewTextBoxColumn42");
     this.dataGridViewTextBoxColumn42.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn43.set_DataPropertyName("MeetingInitiator");
     this.dataGridViewTextBoxColumn43.set_HeaderText("MeetingInitiator");
     this.dataGridViewTextBoxColumn43.set_Name("dataGridViewTextBoxColumn43");
     this.dataGridViewTextBoxColumn43.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn44.set_DataPropertyName("NoticeDate");
     this.dataGridViewTextBoxColumn44.set_HeaderText("NoticeDate");
     this.dataGridViewTextBoxColumn44.set_Name("dataGridViewTextBoxColumn44");
     this.dataGridViewTextBoxColumn44.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn45.set_DataPropertyName("ProtocolDate");
     this.dataGridViewTextBoxColumn45.set_HeaderText("ProtocolDate");
     this.dataGridViewTextBoxColumn45.set_Name("dataGridViewTextBoxColumn45");
     this.dataGridViewTextBoxColumn45.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn46.set_DataPropertyName("ProtocolNumber");
     this.dataGridViewTextBoxColumn46.set_HeaderText("ProtocolNumber");
     this.dataGridViewTextBoxColumn46.set_Name("dataGridViewTextBoxColumn46");
     this.dataGridViewTextBoxColumn46.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn47.set_DataPropertyName("PublishVotingDate");
     this.dataGridViewTextBoxColumn47.set_HeaderText("PublishVotingDate");
     this.dataGridViewTextBoxColumn47.set_Name("dataGridViewTextBoxColumn47");
     this.dataGridViewTextBoxColumn47.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn48.set_DataPropertyName("VotingAcceptAdress");
     this.dataGridViewTextBoxColumn48.set_HeaderText("VotingAcceptAdress");
     this.dataGridViewTextBoxColumn48.set_Name("dataGridViewTextBoxColumn48");
     this.dataGridViewTextBoxColumn48.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn49.set_DataPropertyName("VotingKindId");
     this.dataGridViewTextBoxColumn49.set_HeaderText("VotingKindId");
     this.dataGridViewTextBoxColumn49.set_Name("dataGridViewTextBoxColumn49");
     this.dataGridViewTextBoxColumn49.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn50.set_DataPropertyName("VotingKindName");
     this.dataGridViewTextBoxColumn50.set_HeaderText("VotingKindName");
     this.dataGridViewTextBoxColumn50.set_Name("dataGridViewTextBoxColumn50");
     this.dataGridViewTextBoxColumn50.set_ReadOnly(true);
     this.dataGridViewTextBoxColumn51.set_DataPropertyName("ObjectWithIdType");
     this.dataGridViewTextBoxColumn51.set_HeaderText("ObjectWithIdType");
     this.dataGridViewTextBoxColumn51.set_Name("dataGridViewTextBoxColumn51");
     this.dataGridViewTextBoxColumn52.set_DataPropertyName("Id");
     this.dataGridViewTextBoxColumn52.set_HeaderText("Id");
     this.dataGridViewTextBoxColumn52.set_Name("dataGridViewTextBoxColumn52");
     this.InspectionDateTime.set_DataPropertyName("InspectionDataTime");
     this.InspectionDateTime.set_HeaderText("Дата проведения осмотра");
     this.InspectionDateTime.set_Name("InspectionDateTime");
     this.InspectionDateTime.set_ReadOnly(true);
     this.tsmiListCoordinationVolumesDefects.set_Name("tsmiListCoordinationVolumesDefects");
     this.tsmiListCoordinationVolumesDefects.set_Size(new System.Drawing.Size(0x17b, 0x16));
     this.tsmiListCoordinationVolumesDefects.set_Text("Перечень согласованных объемов дефектов");
     this.tsmiListCoordinationVolumesDefects.add_Click(new System.EventHandler(this.tsmiListCoordinationVolumesDefects_Click));
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.Controls.Add(this.tabControl);
     base.Controls.Add(this.tsAddress);
     base.Controls.Add(this.addressTreeView);
     base.set_Name("HouseServiceView");
     base.set_Size(new System.Drawing.Size(0x36c, 0x275));
     base.add_Load(new System.EventHandler(this.HouseServiceView_Load));
     this.tsAddress.ResumeLayout(false);
     this.tsAddress.PerformLayout();
     this.tabControl.ResumeLayout(false);
     this.MainInformation.ResumeLayout(false);
     this.Square.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel1.PerformLayout();
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.dgvHouseApartmentDetail.EndInit();
     this.bsHouseApartmentDetail.EndInit();
     this.tsSquare.ResumeLayout(false);
     this.tsSquare.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.EndInit();
     this.splitContainer4.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.nudMetalSchelterDoorNumber.EndInit();
     this.nudBuildInNumber.EndInit();
     this.nudCommonNumber.EndInit();
     this.groupBox2.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.EngineeringEquipment.ResumeLayout(false);
     this.tabControl1.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage6.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.nudHeatingConvectorsNumber.EndInit();
     this.nudHeatingHeatCenterNumber.EndInit();
     this.nudHeatingBoxes.EndInit();
     this.nudHeatingElevators.EndInit();
     this.nudHeatingThreewayValvesNumber.EndInit();
     this.nudHeatingValvesNumber.EndInit();
     this.nudHeatingDynamicValvesNumber.EndInit();
     this.nudHeatingSteelHeatersNumber.EndInit();
     this.nudHeatingLockedValvesNumber.EndInit();
     this.nudHeatingRadiatorNumberApartment.EndInit();
     this.nudHeatingRadiatorNumberStairwell.EndInit();
     this.nudHeatingRisesNumber.EndInit();
     this.nudHeatingControlAssemblyNumber.EndInit();
     this.nudHeatingEntryPointNumber.EndInit();
     this.tabPage7.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.nudHotWaterFillingLength.EndInit();
     this.nudHotWaterBasementPlugValvesNumber.EndInit();
     this.nudHotWaterBasementValvesNumber.EndInit();
     this.nudHotWaterDynamicValvesNumber.EndInit();
     this.nudHotWaterRisesNumber.EndInit();
     this.nudHotWaterControlAssemblyNumber.EndInit();
     this.nudHotWaterEntryPointNumber.EndInit();
     this.tabPage8.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.nudSewageAuditCoversNumber.EndInit();
     this.nudSewageRisesNumber.EndInit();
     this.tabPage9.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.nudColdWaterBrassValvesNumber.EndInit();
     this.nudColdWaterBasementValvesNumber.EndInit();
     this.nudColdWaterGaugingSitesNumber.EndInit();
     this.numericUpDown24.EndInit();
     this.nudColdWaterRisesNumber.EndInit();
     this.tabPage10.ResumeLayout(false);
     this.panel8.ResumeLayout(false);
     this.panel8.PerformLayout();
     this.nudPowerSupplyElectroStoveNumber.EndInit();
     this.nudPowerSupplyStreetLightNumber.EndInit();
     this.nudPowerSupplySwitchesNumber.EndInit();
     this.nudPowerSupplyLumpsNumberHID.EndInit();
     this.nudPowerSupplyLumpsNumberIncadescent.EndInit();
     this.nudPowerSupplyLumpsNumberDaylight.EndInit();
     this.nudPowerSupplyNumberPlateNumber.EndInit();
     this.nudPowerSupplyCountersNumberTwoRates.EndInit();
     this.nudPowerSupplyGroupPanelNumber.EndInit();
     this.nudPowerSupplyEntryPointNumber.EndInit();
     this.nudPowerSupplyPowerPanelNumber.EndInit();
     this.nudPowerSupplyDistributionSystemNumber.EndInit();
     this.nudPowerSupplyCountersNumberTotal.EndInit();
     this.tabPage11.ResumeLayout(false);
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     this.nudGasSupplyEntryPointNumber.EndInit();
     this.nudGasStoveNumber.EndInit();
     this.nudGasSupplyGeyserNumber.EndInit();
     this.nudGasBoilerNumber.EndInit();
     this.nudGasSupplyCountersNumberTotal.EndInit();
     this.tabPage12.ResumeLayout(false);
     this.panel10.ResumeLayout(false);
     this.panel10.PerformLayout();
     this.nudChuteRecievingValveNumber.EndInit();
     this.nudChuteBarrelNumber.EndInit();
     this.tabPage13.ResumeLayout(false);
     this.panel11.ResumeLayout(false);
     this.panel11.PerformLayout();
     this.nudPoolNumber.EndInit();
     this.nudSaunaNumber.EndInit();
     this.nudIntercomNumber.EndInit();
     this.tabPage14.ResumeLayout(false);
     this.panel12.ResumeLayout(false);
     this.panel12.PerformLayout();
     this.nudLiftOpeningDoorsNumber.EndInit();
     this.nudLiftFoldingDoorsNumber.EndInit();
     this.nudLiftCombiLiftNumber.EndInit();
     this.nudLiftTruckLiftNumber.EndInit();
     this.nudLiftPassengerLiftNumber.EndInit();
     this.nudLiftTotalNumber.EndInit();
     this.Service.ResumeLayout(false);
     this.Service.PerformLayout();
     this.dgvServices.EndInit();
     this.bsHouseService.EndInit();
     this.tsService.ResumeLayout(false);
     this.tsService.PerformLayout();
     this.Calc.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.dgvCalcService.EndInit();
     this.bsCalcServices.EndInit();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.dgvCalcServiceMaterial.EndInit();
     this.bsCalcServiceMaterials.EndInit();
     this.dgvCalcServiceWages.EndInit();
     this.bsCalcServiceWages.EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Inspection.ResumeLayout(false);
     this.Inspection.PerformLayout();
     this.dgvInspections.EndInit();
     this.bsHouseInspection.EndInit();
     this.tsInspection.ResumeLayout(false);
     this.tsInspection.PerformLayout();
     this.Vote.ResumeLayout(false);
     this.Vote.PerformLayout();
     this.dgwMeeting.EndInit();
     this.bsUjfMeetings.EndInit();
     this.tsVote.ResumeLayout(false);
     this.tsVote.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Пример #19
0
        /// <summary>
        ///
        /// </summary>
        public void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StringsControlToolStripEx));

            this.toolStripComboBox          = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripButtonRemove      = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripLabel1            = new System.Windows.Forms.ToolStripLabel();
            this.deleteAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripButtonAdd         = new System.Windows.Forms.ToolStripButton();
            this.SuspendLayout();
            //
            // toolStrip1
            //
            this.Dock = System.Windows.Forms.DockStyle.None;
            this.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.toolStripLabel1,
                this.toolStripComboBox,
                this.toolStripButtonAdd,
                this.toolStripButtonRemove
            });
            this.Location = new System.Drawing.Point(124, 180);
            this.Name     = "toolStrip1";
            this.Size     = new System.Drawing.Size(263, 25);
            this.TabIndex = 0;
            this.Text     = "toolStrip1";
            //
            // toolStripComboBox1
            //
            this.toolStripComboBox.Name = "toolStripComboBox1";
            this.toolStripComboBox.Size = new System.Drawing.Size(121, 25);
            //
            // toolStripButton1
            //
            this.toolStripButtonRemove.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonRemove.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.deleteAllToolStripMenuItem
            });
            this.toolStripButtonRemove.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonRemove")));
            this.toolStripButtonRemove.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonRemove.Name         = "toolStripButton1";
            this.toolStripButtonRemove.Size         = new System.Drawing.Size(32, 22);
            this.toolStripButtonRemove.Text         = "Delete / Remove";
            this.toolStripButtonRemove.ToolTipText  = "Delete / Remove";
            this.toolStripButtonRemove.DisplayStyle = ToolStripItemDisplayStyle.Image;
            //
            // toolStripLabel1
            //
            this.toolStripLabel1.Enabled = true;
            this.toolStripLabel1.Name    = "toolStripLabel1";
            this.toolStripLabel1.Size    = new System.Drawing.Size(44, 22);
            this.toolStripLabel1.Text    = "";
            //
            // deleteAllToolStripMenuItem
            //
            this.deleteAllToolStripMenuItem.Name = "deleteAllToolStripMenuItem";
            this.deleteAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.deleteAllToolStripMenuItem.Text = "Delete All";
            //
            // toolStripButton2
            //
            this.toolStripButtonAdd.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAdd")));
            this.toolStripButtonAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAdd.Name         = "toolStripButtonAdd";
            this.toolStripButtonAdd.Size         = new System.Drawing.Size(23, 22);
            this.toolStripButtonAdd.Text         = "Add / Assign";
            this.toolStripButtonAdd.ToolTipText  = "Add / Assign";
            this.toolStripButtonAdd.DisplayStyle = ToolStripItemDisplayStyle.Image;
            //
            // Form1
            //
            this.ClientSize = new System.Drawing.Size(609, 307);
            this.Name       = "Form1";
            this.Text       = "Form1";
            this.PerformLayout();
            this.ResumeLayout(false);
        }
Пример #20
0
 public ToolStripSplitButtonButtonLayout(ToolStripSplitButton owner) : base(owner.SplitButtonButton)
 {
     this.owner = owner;
 }
Пример #21
0
        protected override void OnRenderSplitButtonBackground(ToolStripItemRenderEventArgs e)
        {
            ToolStripSplitButton splitButton = e.Item as ToolStripSplitButton;
            Graphics             g           = e.Graphics;

            bool  rightToLeft = (splitButton.RightToLeft == RightToLeft.Yes);
            Color arrowColor  = splitButton.Enabled ? SystemColors.ControlText : SystemColors.ControlDark;

            // in right to left - we need to swap the parts so we don't draw  v][ toolStripSplitButton
            VisualStyleElement splitButtonDropDownPart = (rightToLeft) ? VisualStyleElement.ToolBar.SplitButton.Normal : VisualStyleElement.ToolBar.SplitButtonDropDown.Normal;
            VisualStyleElement splitButtonPart         = (rightToLeft) ? VisualStyleElement.ToolBar.DropDownButton.Normal : VisualStyleElement.ToolBar.SplitButton.Normal;

            Rectangle bounds = new Rectangle(Point.Empty, splitButton.Size);

            if (ToolStripManager.VisualStylesEnabled &&
                VisualStyleRenderer.IsElementDefined(splitButtonDropDownPart) &&
                VisualStyleRenderer.IsElementDefined(splitButtonPart))
            {
                VisualStyleRenderer vsRenderer = VisualStyleRenderer;

                // Draw the SplitButton Button portion of it.
                vsRenderer.SetParameters(splitButtonPart.ClassName, splitButtonPart.Part, GetSplitButtonItemState(splitButton));

                // the lovely Windows theming for split button comes in three pieces:
                //  SplitButtonDropDown: [ v |
                //  Separator:                |
                //  SplitButton:               |  ]
                // this is great except if you want to swap the button in RTL.  In this case we need
                // to use the DropDownButton instead of the SplitButtonDropDown and paint the arrow ourselves.
                Rectangle splitButtonBounds = splitButton.ButtonBounds;
                if (rightToLeft)
                {
                    // scoot to the left so we don't draw double shadow like so: ][
                    splitButtonBounds.Inflate(2, 0);
                }

                // Draw the button portion of it.
                vsRenderer.DrawBackground(g, splitButtonBounds);

                // Draw the SplitButton DropDownButton portion of it.
                vsRenderer.SetParameters(splitButtonDropDownPart.ClassName, splitButtonDropDownPart.Part, GetSplitButtonDropDownItemState(splitButton));

                // Draw the drop down button portion
                vsRenderer.DrawBackground(g, splitButton.DropDownButtonBounds);

                // fill in the background image
                Rectangle fillRect = splitButton.ContentRectangle;
                if (splitButton.BackgroundImage is not null)
                {
                    ControlPaint.DrawBackgroundImage(g, splitButton.BackgroundImage, splitButton.BackColor, splitButton.BackgroundImageLayout, fillRect, fillRect);
                }

                // draw the separator over it.
                RenderSeparatorInternal(g, splitButton, splitButton.SplitterBounds, true);

                // and of course, now if we're in RTL we now need to paint the arrow
                // because we're no longer using a part that has it built in.
                if (rightToLeft || splitButton.BackgroundImage is not null)
                {
                    DrawArrow(new ToolStripArrowRenderEventArgs(g, splitButton, splitButton.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
                }
            }
            else
            {
                // Draw the split button button
                Rectangle splitButtonButtonRect = splitButton.ButtonBounds;

                if (splitButton.BackgroundImage is not null)
                {
                    // fill in the background image
                    Rectangle fillRect = (splitButton.Selected) ? splitButton.ContentRectangle : bounds;
                    if (splitButton.BackgroundImage is not null)
                    {
                        ControlPaint.DrawBackgroundImage(g, splitButton.BackgroundImage, splitButton.BackColor, splitButton.BackgroundImageLayout, bounds, fillRect);
                    }
                }
                else
                {
                    FillBackground(g, splitButtonButtonRect, splitButton.BackColor);
                }

                ToolBarState state = GetSplitButtonToolBarState(splitButton, false);

                RenderSmall3DBorderInternal(g, splitButtonButtonRect, state, rightToLeft);

                // draw the split button drop down
                Rectangle dropDownRect = splitButton.DropDownButtonBounds;

                // fill the color in the dropdown button
                if (splitButton.BackgroundImage is null)
                {
                    FillBackground(g, dropDownRect, splitButton.BackColor);
                }

                state = GetSplitButtonToolBarState(splitButton, true);

                if ((state == ToolBarState.Pressed) || (state == ToolBarState.Hot))
                {
                    RenderSmall3DBorderInternal(g, dropDownRect, state, rightToLeft);
                }

                DrawArrow(new ToolStripArrowRenderEventArgs(g, splitButton, dropDownRect, arrowColor, ArrowDirection.Down));
            }
        }
 public ToolStripSplitButtonUiaProvider(ToolStripSplitButton owner) : base(owner)
 {
     _accessibleObject = new ToolStripSplitButtonExAccessibleObject(owner);
 }
Пример #23
0
        private void LocalInitializeComponent()
        {
            this.components                      = new System.ComponentModel.Container();
            this.toolStrip1                      = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonRefresh          = new System.Windows.Forms.ToolStripButton();
            this.autoRefreshToolStripSplitButton = new System.Windows.Forms.ToolStripSplitButton();
            this.pollDisabledToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
            this.pollSlowToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
            this.pollNormalToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
            this.pollFastToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
            this.pollConfigureToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshTimer                    = new System.Windows.Forms.Timer(this.components);
            this.refreshContextMenuStrip         = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.refreshToolStripMenuItem        = new System.Windows.Forms.ToolStripMenuItem();
            this.autoRefreshToolStripMenuItem    = new ToolStripMenuItem();
            this.toolStripButtonExportData       = new ToolStripButton();
            this.lvwEntries                      = new ListViewEx();
            this.statusStrip1                    = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabelDetails     = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStrip1.SuspendLayout();
            this.refreshContextMenuStrip.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.SuspendLayout();
            //
            //lvwEntries
            //
            this.lvwEntries.ContextMenuStrip = this.refreshContextMenuStrip;
            this.lvwEntries.Dock             = System.Windows.Forms.DockStyle.Fill;
            this.lvwEntries.FullRowSelect    = true;
            this.lvwEntries.Location         = new System.Drawing.Point(0, 39);
            this.lvwEntries.Name             = "lvwHosts";
            this.lvwEntries.Size             = new System.Drawing.Size(504, 269);
            this.lvwEntries.TabIndex         = 13;
            this.lvwEntries.UseCompatibleStateImageBehavior = false;
            this.lvwEntries.View = System.Windows.Forms.View.Details;

            //
            // toolStrip1
            //
            this.toolStrip1.GripStyle        = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.toolStripButtonRefresh,
                this.autoRefreshToolStripSplitButton,
                this.toolStripButtonExportData
            });
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name     = "toolStrip1";
            this.toolStrip1.Size     = new System.Drawing.Size(504, 39);
            this.toolStrip1.TabIndex = 8;
            this.toolStrip1.Text     = "toolStrip1";
            //
            // toolStripButtonRefresh
            //
            this.toolStripButtonRefresh.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonRefresh.Image                 = global::QuickMon.Properties.Resources.doc_refresh;
            this.toolStripButtonRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonRefresh.Name   = "toolStripButtonRefresh";
            this.toolStripButtonRefresh.Size   = new System.Drawing.Size(36, 36);
            this.toolStripButtonRefresh.Text   = "Refresh";
            this.toolStripButtonRefresh.Click += new System.EventHandler(this.toolStripButtonRefresh_Click);
            //
            // autoRefreshToolStripSplitButton
            //
            this.autoRefreshToolStripSplitButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.autoRefreshToolStripSplitButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.pollDisabledToolStripMenuItem,
                this.pollSlowToolStripMenuItem,
                this.pollNormalToolStripMenuItem,
                this.pollFastToolStripMenuItem,
                this.pollConfigureToolStripMenuItem
            });
            this.autoRefreshToolStripSplitButton.Image = global::QuickMon.Properties.Resources.clockBW;
            this.autoRefreshToolStripSplitButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.autoRefreshToolStripSplitButton.Name         = "autoRefreshToolStripSplitButton";
            this.autoRefreshToolStripSplitButton.Size         = new System.Drawing.Size(48, 36);
            this.autoRefreshToolStripSplitButton.Text         = "Auto refresh";
            this.autoRefreshToolStripSplitButton.ButtonClick += new System.EventHandler(this.autoRefreshToolStripSplitButton_ButtonClick);
            //
            // pollDisabledToolStripMenuItem
            //
            this.pollDisabledToolStripMenuItem.Name   = "pollDisabledToolStripMenuItem";
            this.pollDisabledToolStripMenuItem.Size   = new System.Drawing.Size(121, 22);
            this.pollDisabledToolStripMenuItem.Text   = "Stop";
            this.pollDisabledToolStripMenuItem.Click += new System.EventHandler(this.pollDisabledToolStripMenuItem_Click);
            //
            // pollSlowToolStripMenuItem
            //
            this.pollSlowToolStripMenuItem.Name   = "pollSlowToolStripMenuItem";
            this.pollSlowToolStripMenuItem.Size   = new System.Drawing.Size(121, 22);
            this.pollSlowToolStripMenuItem.Text   = "Slow";
            this.pollSlowToolStripMenuItem.Click += new System.EventHandler(this.pollSlowToolStripMenuItem_Click);
            //
            // pollNormalToolStripMenuItem
            //
            this.pollNormalToolStripMenuItem.Name   = "pollNormalToolStripMenuItem";
            this.pollNormalToolStripMenuItem.Size   = new System.Drawing.Size(121, 22);
            this.pollNormalToolStripMenuItem.Text   = "Normal";
            this.pollNormalToolStripMenuItem.Click += new System.EventHandler(this.pollNormalToolStripMenuItem_Click);
            //
            // pollFastToolStripMenuItem
            //
            this.pollFastToolStripMenuItem.Name   = "pollFastToolStripMenuItem";
            this.pollFastToolStripMenuItem.Size   = new System.Drawing.Size(121, 22);
            this.pollFastToolStripMenuItem.Text   = "Fast";
            this.pollFastToolStripMenuItem.Click += new System.EventHandler(this.pollFastToolStripMenuItem_Click);
            //
            // pollConfigureToolStripMenuItem
            //
            this.pollConfigureToolStripMenuItem.Name   = "pollConfigureToolStripMenuItem";
            this.pollConfigureToolStripMenuItem.Size   = new System.Drawing.Size(121, 22);
            this.pollConfigureToolStripMenuItem.Text   = "Configure";
            this.pollConfigureToolStripMenuItem.Click += new System.EventHandler(this.pollConfigureToolStripMenuItem_Click);
            //
            // toolStripButtonExportData
            //
            this.toolStripButtonExportData.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonExportData.Image                 = global::QuickMon.Properties.Resources.edit_32;
            this.toolStripButtonExportData.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonExportData.Name    = "toolStripButtonExportData";
            this.toolStripButtonExportData.Size    = new System.Drawing.Size(36, 36);
            this.toolStripButtonExportData.Text    = "Export";
            this.toolStripButtonExportData.Click  += new System.EventHandler(this.toolStripButtonExportData_Click);
            this.toolStripButtonExportData.Visible = false;
            //
            // refreshTimer
            //
            this.refreshTimer.Interval = 5000;
            this.refreshTimer.Tick    += new System.EventHandler(this.refreshTimer_Tick);
            //
            // contextMenuStrip1
            //
            this.refreshContextMenuStrip.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuPopup;
            this.refreshContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.refreshToolStripMenuItem,
                this.autoRefreshToolStripMenuItem
            });
            this.refreshContextMenuStrip.Name = "contextMenuStrip1";
            this.refreshContextMenuStrip.Size = new System.Drawing.Size(136, 48);
            //
            // refreshToolStripMenuItem
            //
            this.refreshToolStripMenuItem.AccessibleRole = System.Windows.Forms.AccessibleRole.MenuItem;
            this.refreshToolStripMenuItem.Name           = "refreshToolStripMenuItem";
            this.refreshToolStripMenuItem.ShortcutKeys   = System.Windows.Forms.Keys.F5;
            this.refreshToolStripMenuItem.Size           = new System.Drawing.Size(135, 22);
            this.refreshToolStripMenuItem.Text           = "Refresh";
            this.refreshToolStripMenuItem.Click         += new System.EventHandler(this.toolStripButtonRefresh_Click);
            //
            // autoRefreshToolStripMenuItem
            //
            this.autoRefreshToolStripMenuItem.Name   = "autoRefreshToolStripMenuItem";
            this.autoRefreshToolStripMenuItem.Size   = new System.Drawing.Size(135, 22);
            this.autoRefreshToolStripMenuItem.Text   = "Auto refresh";
            this.autoRefreshToolStripMenuItem.Click += new System.EventHandler(this.autoRefreshToolStripMenuItem_Click);
            //
            // statusStrip1
            //
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.toolStripStatusLabelDetails
            });
            this.statusStrip1.Location = new System.Drawing.Point(0, 308);
            this.statusStrip1.Name     = "statusStrip1";
            this.statusStrip1.Size     = new System.Drawing.Size(504, 22);
            this.statusStrip1.TabIndex = 11;
            this.statusStrip1.Text     = "statusStrip1";
            //
            // toolStripStatusLabel1
            //
            this.toolStripStatusLabelDetails.AutoSize  = false;
            this.toolStripStatusLabelDetails.Name      = "toolStripStatusLabel1";
            this.toolStripStatusLabelDetails.Size      = new System.Drawing.Size(489, 17);
            this.toolStripStatusLabelDetails.Spring    = true;
            this.toolStripStatusLabelDetails.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // PingCollectorShowDetails
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(504, 330);

            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.lvwEntries);
            //this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "PingCollectorShowDetails";
            this.Text = "PingCollectorShowDetails";
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.refreshContextMenuStrip.ResumeLayout(false);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.Controls.SetChildIndex(this.lvwEntries, 0);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
        private void InitForm()
        {
            ComponentResourceManager manager = new ComponentResourceManager(typeof(PrintPreviewDialog));

            this.toolStrip1                   = new ToolStrip();
            this.printToolStripButton         = new ToolStripButton();
            this.zoomToolStripSplitButton     = new ToolStripSplitButton();
            this.autoToolStripMenuItem        = new ToolStripMenuItem();
            this.toolStripMenuItem1           = new ToolStripMenuItem();
            this.toolStripMenuItem2           = new ToolStripMenuItem();
            this.toolStripMenuItem3           = new ToolStripMenuItem();
            this.toolStripMenuItem4           = new ToolStripMenuItem();
            this.toolStripMenuItem5           = new ToolStripMenuItem();
            this.toolStripMenuItem6           = new ToolStripMenuItem();
            this.toolStripMenuItem7           = new ToolStripMenuItem();
            this.toolStripMenuItem8           = new ToolStripMenuItem();
            this.separatorToolStripSeparator  = new ToolStripSeparator();
            this.onepageToolStripButton       = new ToolStripButton();
            this.twopagesToolStripButton      = new ToolStripButton();
            this.threepagesToolStripButton    = new ToolStripButton();
            this.fourpagesToolStripButton     = new ToolStripButton();
            this.sixpagesToolStripButton      = new ToolStripButton();
            this.separatorToolStripSeparator1 = new ToolStripSeparator();
            this.closeToolStripButton         = new ToolStripButton();
            this.pageCounter                  = new NumericUpDown();
            this.pageToolStripLabel           = new ToolStripLabel();
            this.toolStrip1.SuspendLayout();
            this.pageCounter.BeginInit();
            base.SuspendLayout();
            manager.ApplyResources(this.toolStrip1, "toolStrip1");
            this.toolStrip1.Items.AddRange(new ToolStripItem[] { this.printToolStripButton, this.zoomToolStripSplitButton, this.separatorToolStripSeparator, this.onepageToolStripButton, this.twopagesToolStripButton, this.threepagesToolStripButton, this.fourpagesToolStripButton, this.sixpagesToolStripButton, this.separatorToolStripSeparator1, this.closeToolStripButton });
            this.toolStrip1.Name                   = "toolStrip1";
            this.toolStrip1.RenderMode             = ToolStripRenderMode.System;
            this.toolStrip1.GripStyle              = ToolStripGripStyle.Hidden;
            this.printToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.printToolStripButton.Name         = "printToolStripButton";
            manager.ApplyResources(this.printToolStripButton, "printToolStripButton");
            this.zoomToolStripSplitButton.DisplayStyle       = ToolStripItemDisplayStyle.Image;
            this.zoomToolStripSplitButton.DoubleClickEnabled = true;
            this.zoomToolStripSplitButton.DropDownItems.AddRange(new ToolStripItem[] { this.autoToolStripMenuItem, this.toolStripMenuItem1, this.toolStripMenuItem2, this.toolStripMenuItem3, this.toolStripMenuItem4, this.toolStripMenuItem5, this.toolStripMenuItem6, this.toolStripMenuItem7, this.toolStripMenuItem8 });
            this.zoomToolStripSplitButton.Name          = "zoomToolStripSplitButton";
            this.zoomToolStripSplitButton.SplitterWidth = 1;
            manager.ApplyResources(this.zoomToolStripSplitButton, "zoomToolStripSplitButton");
            this.autoToolStripMenuItem.CheckOnClick       = true;
            this.autoToolStripMenuItem.DoubleClickEnabled = true;
            this.autoToolStripMenuItem.Checked            = true;
            this.autoToolStripMenuItem.Name = "autoToolStripMenuItem";
            manager.ApplyResources(this.autoToolStripMenuItem, "autoToolStripMenuItem");
            this.toolStripMenuItem1.CheckOnClick       = true;
            this.toolStripMenuItem1.DoubleClickEnabled = true;
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            manager.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
            this.toolStripMenuItem2.CheckOnClick       = true;
            this.toolStripMenuItem2.DoubleClickEnabled = true;
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            manager.ApplyResources(this.toolStripMenuItem2, "toolStripMenuItem2");
            this.toolStripMenuItem3.CheckOnClick       = true;
            this.toolStripMenuItem3.DoubleClickEnabled = true;
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            manager.ApplyResources(this.toolStripMenuItem3, "toolStripMenuItem3");
            this.toolStripMenuItem4.CheckOnClick       = true;
            this.toolStripMenuItem4.DoubleClickEnabled = true;
            this.toolStripMenuItem4.Name = "toolStripMenuItem4";
            manager.ApplyResources(this.toolStripMenuItem4, "toolStripMenuItem4");
            this.toolStripMenuItem5.CheckOnClick       = true;
            this.toolStripMenuItem5.DoubleClickEnabled = true;
            this.toolStripMenuItem5.Name = "toolStripMenuItem5";
            manager.ApplyResources(this.toolStripMenuItem5, "toolStripMenuItem5");
            this.toolStripMenuItem6.CheckOnClick       = true;
            this.toolStripMenuItem6.DoubleClickEnabled = true;
            this.toolStripMenuItem6.Name = "toolStripMenuItem6";
            manager.ApplyResources(this.toolStripMenuItem6, "toolStripMenuItem6");
            this.toolStripMenuItem7.CheckOnClick       = true;
            this.toolStripMenuItem7.DoubleClickEnabled = true;
            this.toolStripMenuItem7.Name = "toolStripMenuItem7";
            manager.ApplyResources(this.toolStripMenuItem7, "toolStripMenuItem7");
            this.toolStripMenuItem8.CheckOnClick       = true;
            this.toolStripMenuItem8.DoubleClickEnabled = true;
            this.toolStripMenuItem8.Name = "toolStripMenuItem8";
            manager.ApplyResources(this.toolStripMenuItem8, "toolStripMenuItem8");
            this.separatorToolStripSeparator.Name    = "separatorToolStripSeparator";
            this.onepageToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.onepageToolStripButton.Name         = "onepageToolStripButton";
            manager.ApplyResources(this.onepageToolStripButton, "onepageToolStripButton");
            this.twopagesToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.twopagesToolStripButton.Name         = "twopagesToolStripButton";
            manager.ApplyResources(this.twopagesToolStripButton, "twopagesToolStripButton");
            this.threepagesToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.threepagesToolStripButton.Name         = "threepagesToolStripButton";
            manager.ApplyResources(this.threepagesToolStripButton, "threepagesToolStripButton");
            this.fourpagesToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.fourpagesToolStripButton.Name         = "fourpagesToolStripButton";
            manager.ApplyResources(this.fourpagesToolStripButton, "fourpagesToolStripButton");
            this.sixpagesToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.sixpagesToolStripButton.Name         = "sixpagesToolStripButton";
            manager.ApplyResources(this.sixpagesToolStripButton, "sixpagesToolStripButton");
            this.separatorToolStripSeparator1.Name = "separatorToolStripSeparator1";
            this.closeToolStripButton.DisplayStyle = ToolStripItemDisplayStyle.Text;
            this.closeToolStripButton.Name         = "closeToolStripButton";
            manager.ApplyResources(this.closeToolStripButton, "closeToolStripButton");
            manager.ApplyResources(this.pageCounter, "pageCounter");
            this.pageCounter.Text             = "1";
            this.pageCounter.TextAlign        = HorizontalAlignment.Right;
            this.pageCounter.DecimalPlaces    = 0;
            this.pageCounter.Minimum          = 0M;
            this.pageCounter.Maximum          = 1000M;
            this.pageCounter.ValueChanged    += new EventHandler(this.UpdownMove);
            this.pageCounter.Name             = "pageCounter";
            this.pageToolStripLabel.Alignment = ToolStripItemAlignment.Right;
            this.pageToolStripLabel.Name      = "pageToolStripLabel";
            manager.ApplyResources(this.pageToolStripLabel, "pageToolStripLabel");
            this.previewControl.Size                  = new System.Drawing.Size(0x318, 610);
            this.previewControl.Location              = new Point(0, 0x2b);
            this.previewControl.Dock                  = DockStyle.Fill;
            this.previewControl.StartPageChanged     += new EventHandler(this.previewControl_StartPageChanged);
            this.printToolStripButton.Click          += new EventHandler(this.OnprintToolStripButtonClick);
            this.autoToolStripMenuItem.Click         += new EventHandler(this.ZoomAuto);
            this.toolStripMenuItem1.Click            += new EventHandler(this.Zoom500);
            this.toolStripMenuItem2.Click            += new EventHandler(this.Zoom250);
            this.toolStripMenuItem3.Click            += new EventHandler(this.Zoom150);
            this.toolStripMenuItem4.Click            += new EventHandler(this.Zoom100);
            this.toolStripMenuItem5.Click            += new EventHandler(this.Zoom75);
            this.toolStripMenuItem6.Click            += new EventHandler(this.Zoom50);
            this.toolStripMenuItem7.Click            += new EventHandler(this.Zoom25);
            this.toolStripMenuItem8.Click            += new EventHandler(this.Zoom10);
            this.onepageToolStripButton.Click        += new EventHandler(this.OnonepageToolStripButtonClick);
            this.twopagesToolStripButton.Click       += new EventHandler(this.OntwopagesToolStripButtonClick);
            this.threepagesToolStripButton.Click     += new EventHandler(this.OnthreepagesToolStripButtonClick);
            this.fourpagesToolStripButton.Click      += new EventHandler(this.OnfourpagesToolStripButtonClick);
            this.sixpagesToolStripButton.Click       += new EventHandler(this.OnsixpagesToolStripButtonClick);
            this.closeToolStripButton.Click          += new EventHandler(this.OncloseToolStripButtonClick);
            this.closeToolStripButton.Paint          += new PaintEventHandler(this.OncloseToolStripButtonPaint);
            this.toolStrip1.ImageList                 = this.imageList;
            this.printToolStripButton.ImageIndex      = 0;
            this.zoomToolStripSplitButton.ImageIndex  = 1;
            this.onepageToolStripButton.ImageIndex    = 2;
            this.twopagesToolStripButton.ImageIndex   = 3;
            this.threepagesToolStripButton.ImageIndex = 4;
            this.fourpagesToolStripButton.ImageIndex  = 5;
            this.sixpagesToolStripButton.ImageIndex   = 6;
            this.previewControl.TabIndex              = 0;
            this.toolStrip1.TabIndex                  = 1;
            this.zoomToolStripSplitButton.DefaultItem = this.autoToolStripMenuItem;
            ToolStripDropDownMenu dropDown = this.zoomToolStripSplitButton.DropDown as ToolStripDropDownMenu;

            if (dropDown != null)
            {
                dropDown.ShowCheckMargin = true;
                dropDown.ShowImageMargin = false;
                dropDown.RenderMode      = ToolStripRenderMode.System;
            }
            ToolStripControlHost host = new ToolStripControlHost(this.pageCounter)
            {
                Alignment = ToolStripItemAlignment.Right
            };

            this.toolStrip1.Items.Add(host);
            this.toolStrip1.Items.Add(this.pageToolStripLabel);
            manager.ApplyResources(this, "$this");
            base.Controls.Add(this.previewControl);
            base.Controls.Add(this.toolStrip1);
            base.ClientSize    = new System.Drawing.Size(400, 300);
            this.MinimizeBox   = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.toolStrip1.ResumeLayout(false);
            this.pageCounter.EndInit();
            base.ResumeLayout(false);
            base.PerformLayout();
        }
Пример #25
0
 /// <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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MetadataDocumentGenerator));
     this.toolStripMenu = new System.Windows.Forms.ToolStrip();
     this.tssbLoadEntities = new System.Windows.Forms.ToolStripSplitButton();
     this.tsmiLoadEntitiesFromSolution = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbGenerate = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.settingsToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
     this.saveCurrentSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolImageList = new System.Windows.Forms.ImageList(this.components);
     this.panel1 = new System.Windows.Forms.Panel();
     this.gbOptions = new System.Windows.Forms.GroupBox();
     this.chkAddFormLocation = new System.Windows.Forms.CheckBox();
     this.chkDisplayEntityList = new System.Windows.Forms.CheckBox();
     this.chkAddValidForAf = new System.Windows.Forms.CheckBox();
     this.chkAddRequiredLevel = new System.Windows.Forms.CheckBox();
     this.chkAddFls = new System.Windows.Forms.CheckBox();
     this.chkAddAudit = new System.Windows.Forms.CheckBox();
     this.chkOneSheet = new System.Windows.Forms.CheckBox();
     this.gbAttributeSelection = new System.Windows.Forms.GroupBox();
     this.chkFilterByPrefix = new System.Windows.Forms.CheckBox();
     this.btnEdit = new System.Windows.Forms.Button();
     this.txtPrefixes = new System.Windows.Forms.TextBox();
     this.chkSelectAll = new System.Windows.Forms.CheckBox();
     this.lblSubSelect = new System.Windows.Forms.Label();
     this.lblEntities = new System.Windows.Forms.Label();
     this.lvEntities = new System.Windows.Forms.ListView();
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label1 = new System.Windows.Forms.Label();
     this.cbbSelectionType = new System.Windows.Forms.ComboBox();
     this.lvForms = new System.Windows.Forms.ListView();
     this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.lvAttributes = new System.Windows.Forms.ListView();
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.gbOutput = new System.Windows.Forms.GroupBox();
     this.lblLcid = new System.Windows.Forms.Label();
     this.cbbLcid = new System.Windows.Forms.ComboBox();
     this.btnBrowseFilePath = new System.Windows.Forms.Button();
     this.txtOutputFilePath = new System.Windows.Forms.TextBox();
     this.lblOutputFilePath = new System.Windows.Forms.Label();
     this.lblOutputType = new System.Windows.Forms.Label();
     this.cbbOutputType = new System.Windows.Forms.ComboBox();
     this.toolStripMenu.SuspendLayout();
     this.panel1.SuspendLayout();
     this.gbOptions.SuspendLayout();
     this.gbAttributeSelection.SuspendLayout();
     this.gbOutput.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripMenu
     //
     this.toolStripMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tssbLoadEntities,
     this.toolStripSeparator1,
     this.tsbGenerate,
     this.toolStripSeparator2,
     this.settingsToolStripDropDownButton});
     this.toolStripMenu.Location = new System.Drawing.Point(0, 0);
     this.toolStripMenu.Name = "toolStripMenu";
     this.toolStripMenu.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
     this.toolStripMenu.Size = new System.Drawing.Size(1366, 32);
     this.toolStripMenu.TabIndex = 2;
     this.toolStripMenu.Text = "toolStrip1";
     //
     // tssbLoadEntities
     //
     this.tssbLoadEntities.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiLoadEntitiesFromSolution});
     this.tssbLoadEntities.Image = global::MsCrmTools.MetadataDocumentGenerator.Properties.Resources.ico_16_0;
     this.tssbLoadEntities.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tssbLoadEntities.Name = "tssbLoadEntities";
     this.tssbLoadEntities.Size = new System.Drawing.Size(157, 29);
     this.tssbLoadEntities.Text = "Load Entities";
     this.tssbLoadEntities.ToolTipText = "Load all entities from the connected organization";
     this.tssbLoadEntities.ButtonClick += new System.EventHandler(this.tssbLoadEntities_ButtonClick);
     //
     // tsmiLoadEntitiesFromSolution
     //
     this.tsmiLoadEntitiesFromSolution.Name = "tsmiLoadEntitiesFromSolution";
     this.tsmiLoadEntitiesFromSolution.Size = new System.Drawing.Size(327, 30);
     this.tsmiLoadEntitiesFromSolution.Text = "Load Entities from solution(s)";
     this.tsmiLoadEntitiesFromSolution.Click += new System.EventHandler(this.tsmiLoadEntitiesFromSolution_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 32);
     //
     // tsbGenerate
     //
     this.tsbGenerate.Enabled = false;
     this.tsbGenerate.Image = ((System.Drawing.Image)(resources.GetObject("tsbGenerate.Image")));
     this.tsbGenerate.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbGenerate.Name = "tsbGenerate";
     this.tsbGenerate.Size = new System.Drawing.Size(196, 29);
     this.tsbGenerate.Text = "Generate document";
     this.tsbGenerate.Click += new System.EventHandler(this.TsbGenerateClick);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 32);
     //
     // settingsToolStripDropDownButton
     //
     this.settingsToolStripDropDownButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.saveCurrentSettingsToolStripMenuItem,
     this.loadSettingsToolStripMenuItem});
     this.settingsToolStripDropDownButton.Enabled = false;
     this.settingsToolStripDropDownButton.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripDropDownButton.Image")));
     this.settingsToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.settingsToolStripDropDownButton.Name = "settingsToolStripDropDownButton";
     this.settingsToolStripDropDownButton.Size = new System.Drawing.Size(207, 29);
     this.settingsToolStripDropDownButton.Text = "Generation settings";
     //
     // saveCurrentSettingsToolStripMenuItem
     //
     this.saveCurrentSettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("saveCurrentSettingsToolStripMenuItem.Image")));
     this.saveCurrentSettingsToolStripMenuItem.Name = "saveCurrentSettingsToolStripMenuItem";
     this.saveCurrentSettingsToolStripMenuItem.Size = new System.Drawing.Size(350, 30);
     this.saveCurrentSettingsToolStripMenuItem.Text = "Save current generation settings";
     this.saveCurrentSettingsToolStripMenuItem.Click += new System.EventHandler(this.SaveCurrentSettingsToolStripMenuItemClick);
     //
     // loadSettingsToolStripMenuItem
     //
     this.loadSettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("loadSettingsToolStripMenuItem.Image")));
     this.loadSettingsToolStripMenuItem.Name = "loadSettingsToolStripMenuItem";
     this.loadSettingsToolStripMenuItem.Size = new System.Drawing.Size(350, 30);
     this.loadSettingsToolStripMenuItem.Text = "Load generation settings";
     this.loadSettingsToolStripMenuItem.Click += new System.EventHandler(this.LoadSettingsToolStripMenuItemClick);
     //
     // toolImageList
     //
     this.toolImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("toolImageList.ImageStream")));
     this.toolImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.toolImageList.Images.SetKeyName(0, "Icon.png");
     //
     // panel1
     //
     this.panel1.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.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.gbOptions);
     this.panel1.Controls.Add(this.gbAttributeSelection);
     this.panel1.Controls.Add(this.gbOutput);
     this.panel1.Location = new System.Drawing.Point(0, 38);
     this.panel1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1366, 885);
     this.panel1.TabIndex = 3;
     //
     // gbOptions
     //
     this.gbOptions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gbOptions.Controls.Add(this.chkAddFormLocation);
     this.gbOptions.Controls.Add(this.chkDisplayEntityList);
     this.gbOptions.Controls.Add(this.chkAddValidForAf);
     this.gbOptions.Controls.Add(this.chkAddRequiredLevel);
     this.gbOptions.Controls.Add(this.chkAddFls);
     this.gbOptions.Controls.Add(this.chkAddAudit);
     this.gbOptions.Controls.Add(this.chkOneSheet);
     this.gbOptions.Enabled = false;
     this.gbOptions.Location = new System.Drawing.Point(4, 689);
     this.gbOptions.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbOptions.Name = "gbOptions";
     this.gbOptions.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbOptions.Size = new System.Drawing.Size(1307, 200);
     this.gbOptions.TabIndex = 8;
     this.gbOptions.TabStop = false;
     this.gbOptions.Text = "Options";
     //
     // chkAddFormLocation
     //
     this.chkAddFormLocation.AutoSize = true;
     this.chkAddFormLocation.Location = new System.Drawing.Point(390, 65);
     this.chkAddFormLocation.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkAddFormLocation.Name = "chkAddFormLocation";
     this.chkAddFormLocation.Size = new System.Drawing.Size(276, 24);
     this.chkAddFormLocation.TabIndex = 5;
     this.chkAddFormLocation.Text = "Include Attribute location in Forms";
     this.chkAddFormLocation.UseVisualStyleBackColor = true;
     //
     // chkDisplayEntityList
     //
     this.chkDisplayEntityList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkDisplayEntityList.AutoSize = true;
     this.chkDisplayEntityList.Location = new System.Drawing.Point(903, 29);
     this.chkDisplayEntityList.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkDisplayEntityList.Name = "chkDisplayEntityList";
     this.chkDisplayEntityList.Size = new System.Drawing.Size(344, 24);
     this.chkDisplayEntityList.TabIndex = 4;
     this.chkDisplayEntityList.Text = "Gather entities list in a summary (Excel only)";
     this.chkDisplayEntityList.UseVisualStyleBackColor = true;
     //
     // chkAddValidForAf
     //
     this.chkAddValidForAf.AutoSize = true;
     this.chkAddValidForAf.Location = new System.Drawing.Point(390, 29);
     this.chkAddValidForAf.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkAddValidForAf.Name = "chkAddValidForAf";
     this.chkAddValidForAf.Size = new System.Drawing.Size(342, 24);
     this.chkAddValidForAf.TabIndex = 3;
     this.chkAddValidForAf.Text = "Include Valid for Advanced Find information";
     this.chkAddValidForAf.UseVisualStyleBackColor = true;
     //
     // chkAddRequiredLevel
     //
     this.chkAddRequiredLevel.AutoSize = true;
     this.chkAddRequiredLevel.Location = new System.Drawing.Point(9, 100);
     this.chkAddRequiredLevel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkAddRequiredLevel.Name = "chkAddRequiredLevel";
     this.chkAddRequiredLevel.Size = new System.Drawing.Size(301, 24);
     this.chkAddRequiredLevel.TabIndex = 2;
     this.chkAddRequiredLevel.Text = "Include Requirement level information";
     this.chkAddRequiredLevel.UseVisualStyleBackColor = true;
     //
     // chkAddFls
     //
     this.chkAddFls.AutoSize = true;
     this.chkAddFls.Location = new System.Drawing.Point(9, 65);
     this.chkAddFls.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkAddFls.Name = "chkAddFls";
     this.chkAddFls.Size = new System.Drawing.Size(310, 24);
     this.chkAddFls.TabIndex = 1;
     this.chkAddFls.Text = "Include Field Level Security information";
     this.chkAddFls.UseVisualStyleBackColor = true;
     //
     // chkAddAudit
     //
     this.chkAddAudit.AutoSize = true;
     this.chkAddAudit.Location = new System.Drawing.Point(9, 29);
     this.chkAddAudit.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkAddAudit.Name = "chkAddAudit";
     this.chkAddAudit.Size = new System.Drawing.Size(211, 24);
     this.chkAddAudit.TabIndex = 0;
     this.chkAddAudit.Text = "Include Audit information";
     this.chkAddAudit.UseVisualStyleBackColor = true;
     //
     // chkOneSheet
     //
     this.chkOneSheet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.chkOneSheet.AutoSize = true;
     this.chkOneSheet.Location = new System.Drawing.Point(903, 65);
     this.chkOneSheet.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkOneSheet.Name = "chkOneSheet";
     this.chkOneSheet.Size = new System.Drawing.Size(346, 24);
     this.chkOneSheet.TabIndex = 1;
     this.chkOneSheet.Text = "Export all attributes in one sheet (Excel only)";
     this.chkOneSheet.UseVisualStyleBackColor = true;
     //
     // gbAttributeSelection
     //
     this.gbAttributeSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gbAttributeSelection.Controls.Add(this.chkFilterByPrefix);
     this.gbAttributeSelection.Controls.Add(this.btnEdit);
     this.gbAttributeSelection.Controls.Add(this.txtPrefixes);
     this.gbAttributeSelection.Controls.Add(this.chkSelectAll);
     this.gbAttributeSelection.Controls.Add(this.lblSubSelect);
     this.gbAttributeSelection.Controls.Add(this.lblEntities);
     this.gbAttributeSelection.Controls.Add(this.lvEntities);
     this.gbAttributeSelection.Controls.Add(this.label1);
     this.gbAttributeSelection.Controls.Add(this.cbbSelectionType);
     this.gbAttributeSelection.Controls.Add(this.lvForms);
     this.gbAttributeSelection.Controls.Add(this.lvAttributes);
     this.gbAttributeSelection.Enabled = false;
     this.gbAttributeSelection.Location = new System.Drawing.Point(4, 177);
     this.gbAttributeSelection.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbAttributeSelection.Name = "gbAttributeSelection";
     this.gbAttributeSelection.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbAttributeSelection.Size = new System.Drawing.Size(1307, 503);
     this.gbAttributeSelection.TabIndex = 7;
     this.gbAttributeSelection.TabStop = false;
     this.gbAttributeSelection.Text = "Attributes Selection";
     //
     // chkFilterByPrefix
     //
     this.chkFilterByPrefix.AutoSize = true;
     this.chkFilterByPrefix.Location = new System.Drawing.Point(612, 32);
     this.chkFilterByPrefix.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkFilterByPrefix.Name = "chkFilterByPrefix";
     this.chkFilterByPrefix.Size = new System.Drawing.Size(259, 24);
     this.chkFilterByPrefix.TabIndex = 89;
     this.chkFilterByPrefix.Text = "Filter custom attributes by prefix";
     this.chkFilterByPrefix.UseVisualStyleBackColor = true;
     this.chkFilterByPrefix.CheckedChanged += new System.EventHandler(this.chkFilterByPrefix_CheckedChanged);
     //
     // btnEdit
     //
     this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.Enabled = false;
     this.btnEdit.Image = ((System.Drawing.Image)(resources.GetObject("btnEdit.Image")));
     this.btnEdit.Location = new System.Drawing.Point(1262, 26);
     this.btnEdit.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(34, 35);
     this.btnEdit.TabIndex = 88;
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // txtPrefixes
     //
     this.txtPrefixes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPrefixes.Enabled = false;
     this.txtPrefixes.Location = new System.Drawing.Point(914, 29);
     this.txtPrefixes.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.txtPrefixes.Name = "txtPrefixes";
     this.txtPrefixes.Size = new System.Drawing.Size(339, 26);
     this.txtPrefixes.TabIndex = 87;
     //
     // chkSelectAll
     //
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.Location = new System.Drawing.Point(424, 78);
     this.chkSelectAll.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(166, 24);
     this.chkSelectAll.TabIndex = 85;
     this.chkSelectAll.Text = "Select/Unselect all";
     this.chkSelectAll.UseVisualStyleBackColor = true;
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // lblSubSelect
     //
     this.lblSubSelect.AutoSize = true;
     this.lblSubSelect.Location = new System.Drawing.Point(608, 80);
     this.lblSubSelect.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblSubSelect.Name = "lblSubSelect";
     this.lblSubSelect.Size = new System.Drawing.Size(78, 20);
     this.lblSubSelect.TabIndex = 83;
     this.lblSubSelect.Text = "Attributes";
     this.lblSubSelect.Visible = false;
     //
     // lblEntities
     //
     this.lblEntities.AutoSize = true;
     this.lblEntities.Location = new System.Drawing.Point(14, 80);
     this.lblEntities.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblEntities.Name = "lblEntities";
     this.lblEntities.Size = new System.Drawing.Size(62, 20);
     this.lblEntities.TabIndex = 82;
     this.lblEntities.Text = "Entities";
     //
     // lvEntities
     //
     this.lvEntities.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lvEntities.CheckBoxes = true;
     this.lvEntities.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader4,
     this.columnHeader7});
     this.lvEntities.FullRowSelect = true;
     this.lvEntities.GridLines = true;
     this.lvEntities.HideSelection = false;
     this.lvEntities.Location = new System.Drawing.Point(14, 105);
     this.lvEntities.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.lvEntities.Name = "lvEntities";
     this.lvEntities.Size = new System.Drawing.Size(583, 387);
     this.lvEntities.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.lvEntities.TabIndex = 80;
     this.lvEntities.UseCompatibleStateImageBehavior = false;
     this.lvEntities.View = System.Windows.Forms.View.Details;
     this.lvEntities.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ListViewsColumnClick);
     this.lvEntities.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.LvEntitiesItemChecked);
     this.lvEntities.SelectedIndexChanged += new System.EventHandler(this.LvEntitiesSelectedIndexChanged);
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Display name";
     this.columnHeader4.Width = 200;
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "Schema name";
     this.columnHeader7.Width = 160;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 34);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(100, 20);
     this.label1.TabIndex = 3;
     this.label1.Text = "Generate for";
     //
     // cbbSelectionType
     //
     this.cbbSelectionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbSelectionType.FormattingEnabled = true;
     this.cbbSelectionType.Items.AddRange(new object[] {
     "All attributes",
     "All attributes contained in forms",
     "All attributes NOT contained in forms",
     "Option Sets, Boolean, State and Status attributes",
     "Selected attributes",
     "Unmanaged attributes"});
     this.cbbSelectionType.Location = new System.Drawing.Point(177, 29);
     this.cbbSelectionType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.cbbSelectionType.Name = "cbbSelectionType";
     this.cbbSelectionType.Size = new System.Drawing.Size(420, 28);
     this.cbbSelectionType.TabIndex = 2;
     this.cbbSelectionType.SelectedIndexChanged += new System.EventHandler(this.CbbSelectionTypeSelectedIndexChanged);
     //
     // lvForms
     //
     this.lvForms.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.lvForms.CheckBoxes = true;
     this.lvForms.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader8});
     this.lvForms.FullRowSelect = true;
     this.lvForms.GridLines = true;
     this.lvForms.HideSelection = false;
     this.lvForms.Location = new System.Drawing.Point(608, 105);
     this.lvForms.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.lvForms.Name = "lvForms";
     this.lvForms.Size = new System.Drawing.Size(688, 387);
     this.lvForms.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.lvForms.TabIndex = 84;
     this.lvForms.UseCompatibleStateImageBehavior = false;
     this.lvForms.View = System.Windows.Forms.View.Details;
     this.lvForms.Visible = false;
     this.lvForms.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ListViewsColumnClick);
     this.lvForms.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.LvFormsItemChecked);
     //
     // columnHeader8
     //
     this.columnHeader8.Text = "Form name";
     this.columnHeader8.Width = 400;
     //
     // lvAttributes
     //
     this.lvAttributes.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.lvAttributes.CheckBoxes = true;
     this.lvAttributes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2,
     this.columnHeader1});
     this.lvAttributes.FullRowSelect = true;
     this.lvAttributes.GridLines = true;
     this.lvAttributes.HideSelection = false;
     this.lvAttributes.Location = new System.Drawing.Point(608, 105);
     this.lvAttributes.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.lvAttributes.Name = "lvAttributes";
     this.lvAttributes.Size = new System.Drawing.Size(688, 387);
     this.lvAttributes.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.lvAttributes.TabIndex = 81;
     this.lvAttributes.UseCompatibleStateImageBehavior = false;
     this.lvAttributes.View = System.Windows.Forms.View.Details;
     this.lvAttributes.Visible = false;
     this.lvAttributes.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.ListViewsColumnClick);
     this.lvAttributes.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.LvAttributesItemChecked);
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Attribute Display Name";
     this.columnHeader2.Width = 200;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Attribute Logical Name";
     this.columnHeader1.Width = 200;
     //
     // gbOutput
     //
     this.gbOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gbOutput.Controls.Add(this.lblLcid);
     this.gbOutput.Controls.Add(this.cbbLcid);
     this.gbOutput.Controls.Add(this.btnBrowseFilePath);
     this.gbOutput.Controls.Add(this.txtOutputFilePath);
     this.gbOutput.Controls.Add(this.lblOutputFilePath);
     this.gbOutput.Controls.Add(this.lblOutputType);
     this.gbOutput.Controls.Add(this.cbbOutputType);
     this.gbOutput.Enabled = false;
     this.gbOutput.Location = new System.Drawing.Point(4, 5);
     this.gbOutput.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbOutput.Name = "gbOutput";
     this.gbOutput.Padding = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.gbOutput.Size = new System.Drawing.Size(1307, 163);
     this.gbOutput.TabIndex = 6;
     this.gbOutput.TabStop = false;
     this.gbOutput.Text = "Output";
     //
     // lblLcid
     //
     this.lblLcid.AutoSize = true;
     this.lblLcid.Location = new System.Drawing.Point(9, 117);
     this.lblLcid.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblLcid.Name = "lblLcid";
     this.lblLcid.Size = new System.Drawing.Size(81, 20);
     this.lblLcid.TabIndex = 6;
     this.lblLcid.Text = "Language";
     //
     // cbbLcid
     //
     this.cbbLcid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cbbLcid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbLcid.FormattingEnabled = true;
     this.cbbLcid.Location = new System.Drawing.Point(177, 112);
     this.cbbLcid.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.cbbLcid.Name = "cbbLcid";
     this.cbbLcid.Size = new System.Drawing.Size(1119, 28);
     this.cbbLcid.TabIndex = 5;
     //
     // btnBrowseFilePath
     //
     this.btnBrowseFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBrowseFilePath.Location = new System.Drawing.Point(1236, 68);
     this.btnBrowseFilePath.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.btnBrowseFilePath.Name = "btnBrowseFilePath";
     this.btnBrowseFilePath.Size = new System.Drawing.Size(60, 35);
     this.btnBrowseFilePath.TabIndex = 4;
     this.btnBrowseFilePath.Text = "...";
     this.btnBrowseFilePath.UseVisualStyleBackColor = true;
     this.btnBrowseFilePath.Click += new System.EventHandler(this.BtnBrowseFilePathClick);
     //
     // txtOutputFilePath
     //
     this.txtOutputFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtOutputFilePath.Location = new System.Drawing.Point(177, 71);
     this.txtOutputFilePath.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.txtOutputFilePath.Name = "txtOutputFilePath";
     this.txtOutputFilePath.ReadOnly = true;
     this.txtOutputFilePath.Size = new System.Drawing.Size(1048, 26);
     this.txtOutputFilePath.TabIndex = 3;
     //
     // lblOutputFilePath
     //
     this.lblOutputFilePath.AutoSize = true;
     this.lblOutputFilePath.Location = new System.Drawing.Point(9, 75);
     this.lblOutputFilePath.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblOutputFilePath.Name = "lblOutputFilePath";
     this.lblOutputFilePath.Size = new System.Drawing.Size(70, 20);
     this.lblOutputFilePath.TabIndex = 2;
     this.lblOutputFilePath.Text = "File path";
     //
     // lblOutputType
     //
     this.lblOutputType.AutoSize = true;
     this.lblOutputType.Location = new System.Drawing.Point(9, 34);
     this.lblOutputType.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lblOutputType.Name = "lblOutputType";
     this.lblOutputType.Size = new System.Drawing.Size(133, 20);
     this.lblOutputType.TabIndex = 1;
     this.lblOutputType.Text = "Document format";
     //
     // cbbOutputType
     //
     this.cbbOutputType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cbbOutputType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbbOutputType.FormattingEnabled = true;
     this.cbbOutputType.Items.AddRange(new object[] {
     "Excel Workbook",
     "Word Document"});
     this.cbbOutputType.Location = new System.Drawing.Point(177, 29);
     this.cbbOutputType.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.cbbOutputType.Name = "cbbOutputType";
     this.cbbOutputType.Size = new System.Drawing.Size(1119, 28);
     this.cbbOutputType.TabIndex = 0;
     this.cbbOutputType.SelectedIndexChanged += new System.EventHandler(this.CbbOutputTypeSelectedIndexChanged);
     //
     // MetadataDocumentGenerator
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolStripMenu);
     this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.Name = "MetadataDocumentGenerator";
     this.Size = new System.Drawing.Size(1366, 923);
     this.toolStripMenu.ResumeLayout(false);
     this.toolStripMenu.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.gbOptions.ResumeLayout(false);
     this.gbOptions.PerformLayout();
     this.gbAttributeSelection.ResumeLayout(false);
     this.gbAttributeSelection.PerformLayout();
     this.gbOutput.ResumeLayout(false);
     this.gbOutput.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        //*************************************************************************
        //  Constructor: LayoutManagerForToolStripSplitButton()
        //
        /// <summary>
        /// Initializes a new instance of the <see
        /// cref="LayoutManagerForToolStripSplitButton" /> class.
        /// </summary>
        //*************************************************************************
        public LayoutManagerForToolStripSplitButton()
        {
            m_oToolStripSplitButton = null;

            AssertValid();
        }
Пример #27
0
        private ToolStripSplitButton CreateSplitButton(string text, Image resource)
        {
            ToolStripSplitButton button = new ToolStripSplitButton();

            button.DisplayStyle = ToolStripItemDisplayStyle.Image;
            button.Size = new Size(22, 22);
            button.Text = text;
            button.Image = resource;

            return button;
        }
Пример #28
0
 public ToolStripSplitButtonAccessibleObject(ToolStripSplitButton item) : base(item)
 {
     owner = item;
 }
Пример #29
0
 public ToolStripSplitButtonAccessibleObject(ToolStripSplitButton item)
     : base(item)
 {
     throw null;
 }
Пример #30
0
 public ToolStripSplitButtonExAccessibleObject(ToolStripSplitButton item)
     : base(item)
 {
     _owningToolStripSplitButton = item;
 }
		private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EnginePanel));
      this.Profiling = new System.Windows.Forms.MenuItem();
      this.Profiling_Previous = new System.Windows.Forms.MenuItem();
      this.Profiling_Next = new System.Windows.Forms.MenuItem();
      this.panel_VisionView = new System.Windows.Forms.Panel();
      this.transformStrip_EnginePanel = new System.Windows.Forms.ToolStrip();
      this.transformStrip_toggleTransformMode = new System.Windows.Forms.ToolStripButton();
      this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
      this.toolStripDropDownButton_Translation = new System.Windows.Forms.ToolStripDropDownButton();
      this.toolStripMenuItem_CopyTranslation = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem_PasteTranslation = new System.Windows.Forms.ToolStripMenuItem();
      this.labelX = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_TranslateX = new System.Windows.Forms.ToolStripTextBox();
      this.labelY = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_TranslateY = new System.Windows.Forms.ToolStripTextBox();
      this.labelZ = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_TranslateZ = new System.Windows.Forms.ToolStripTextBox();
      this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
      this.toolStripDropDownButton_Rotation = new System.Windows.Forms.ToolStripDropDownButton();
      this.toolStripMenuItem_CopyRotation = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem_PasteRotation = new System.Windows.Forms.ToolStripMenuItem();
      this.labelYaw = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_Yaw = new System.Windows.Forms.ToolStripTextBox();
      this.labelPitch = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_Pitch = new System.Windows.Forms.ToolStripTextBox();
      this.labelRoll = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_Roll = new System.Windows.Forms.ToolStripTextBox();
      this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
      this.toolStripDropDownButton_Scale = new System.Windows.Forms.ToolStripDropDownButton();
      this.toolStripMenuItem_CopyScale = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem_PasteScale = new System.Windows.Forms.ToolStripMenuItem();
      this.labelXScale = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_ScaleX = new System.Windows.Forms.ToolStripTextBox();
      this.labelYScale = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_ScaleY = new System.Windows.Forms.ToolStripTextBox();
      this.labelZScale = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_ScaleZ = new System.Windows.Forms.ToolStripTextBox();
      this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
      this.transformStrip_ScaleXYZ = new System.Windows.Forms.ToolStripTextBox();
      this.toolStrip_EnginePanel = new System.Windows.Forms.ToolStrip();
      this.ToolStripButton_Select = new System.Windows.Forms.ToolStripSplitButton();
      this.ToolStripButton_Move = new CSharpFramework.Controls.ToolStripSplitButtonCheckable();
      this.toolStripButton_EnableMoveSnap = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_StickToGround = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_localPos = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripButton_Rotate = new CSharpFramework.Controls.ToolStripSplitButtonCheckable();
      this.toolStripButton_EnableAngleSnap = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_localOri = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripButton_Link = new CSharpFramework.Controls.ToolStripSplitButtonCheckable();
      this.toolStripButton_Link_ShowNone = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_Link_ShowAll = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_Link_ShowSelected = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_Link_ShowActiveLayer = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
      this.toolStripDropDownButton_PlayMode = new System.Windows.Forms.ToolStripSplitButton();
      this.animateToolStripMenuItem_Animate = new System.Windows.Forms.ToolStripMenuItem();
      this.runInEditorToolStripMenuItem_RunInEditor = new System.Windows.Forms.ToolStripMenuItem();
      this.playTheGameToolStripMenuItem_PlayTheGame = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_Camera = new System.Windows.Forms.ToolStripDropDownButton();
      this.toolStripButton_MoveContext = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripButton_MoveCameraWithKeys = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraSep1 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripSplitButton_CameraStyle_Pan = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraStyle_PanHoriz = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraStyle_Orbit = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraStyle_Max = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraStyle_Maya = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_CameraSep2 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripSplitButton_Camera_MoveOrigin = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_Camera_MoveShapeOrigin = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_Camera_MoveSelection = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_MoveSensitivity = new System.Windows.Forms.ToolStripSplitButton();
      this.toolStripSplitButton_ViewIcons = new System.Windows.Forms.ToolStripSplitButton();
      this.showViewIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.showHiddenShapesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.viewIconActionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_None = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_Select = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripMenuItem_IconAction_Delete = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_ToggleFreeze = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_Drop = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_Drop_BB = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_IconAction_Drop_BC = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripButton_ZoomFit = new CSharpFramework.Controls.ToolStripSplitButtonCheckable();
      this.ToolStripButton_IsolateSelection = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripButton_AutomaticZoomFit = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_SelectionFilter = new System.Windows.Forms.ToolStripSplitButton();
      this.ToolStripSplitButton_SelectionFilterUse = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_SelectionFilterOtherShapes = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem16 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripSplitButton_Rendering = new System.Windows.Forms.ToolStripSplitButton();
      this.ToolStrip_Rendering_Solid = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStrip_Rendering_Wireframe = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStrip_Rendering_Sep1 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStrip_Rendering_Sep2 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStrip_Rendering_AffectsScene = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStrip_Rendering_AffectsSelection = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_DebugFlags = new System.Windows.Forms.ToolStripSplitButton();
      this.toolStripDropDownButton_PerspectiveMode = new System.Windows.Forms.ToolStripDropDownButton();
      this.ToolStripMenuItem_Perspective = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_PerspectiveTop = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_PerspectiveFront = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_PerspectiveRight = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem19 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripMenuItem_Top = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_Front = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_Right = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripMenuItem_View_EditClipRange = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_View_Size = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_View_SetSize = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripMenuItem_View_SafeMode = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_View_SetCustomSafeMode = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripMenuItem_View_DisableSafeMode = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripSeparator();
      this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripMenuItem_View_Properties = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
      this.contextMenuStrip_SelShapes = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.transformGizmoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.moveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.rotateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.scaleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.AlignmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.AlignToGridToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.AlignToObjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.AlignToHitPointToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.AlignToHitPointNormalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.dropToFloorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.pivotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.boundingBoxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.bottomCenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
      this.directionFloorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.directionCeilingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.directionPosXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.directionNegXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.directionPosYToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.directionNegYToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.linksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.unlinkFromSourcesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.unlinkAllTargetsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.moveToToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.cameraPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.shapeOriginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
      this.selectInTreeViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.lockShapesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
      this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.contextMenuStrip_View = new System.Windows.Forms.ContextMenuStrip(this.components);
      this.pasteAtCursorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
      this.gridToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.showGridToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
      this.renderingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.solidToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.wireframeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.shadingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.debugFlagsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.dummyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.pickToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.Pick_UV0_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.Pick_UV1_ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
      this.createToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.insertHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.shapeOriginToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.sceneOriginToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.cameraPositionToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.traceHitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.zonesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.selectZoneAtCameraPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.loadZoneAtCameraPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.loadZonesCloseToCameraToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
      this.dummyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
      this.UnitScaleImageList = new System.Windows.Forms.ImageList(this.components);
      this.ToolStripSplitButton_Tools = new System.Windows.Forms.ToolStripDropDownButton();
      this.toolStripButton_MeasureTool = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripSplitButton_Tools_Sep1 = new System.Windows.Forms.ToolStripSeparator();
      this.ToolStripButton_HighlightSelection = new System.Windows.Forms.ToolStripMenuItem();
      this.ToolStripButton_OneClickSelection = new System.Windows.Forms.ToolStripMenuItem();
      this.transformStrip_EnginePanel.SuspendLayout();
      this.ToolStripButton_Scale = new System.Windows.Forms.ToolStripButton();
      this.toolStrip_EnginePanel.SuspendLayout();
      this.contextMenuStrip_SelShapes.SuspendLayout();
      this.contextMenuStrip_View.SuspendLayout();
      this.SuspendLayout();
      // 
      // Profiling
      // 
      this.Profiling.Index = -1;
      this.Profiling.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.Profiling_Previous,
            this.Profiling_Next});
      this.Profiling.Text = "Profiling";
      // 
      // Profiling_Previous
      // 
      this.Profiling_Previous.Index = 0;
      this.Profiling_Previous.Text = "Previous Chart";
      this.Profiling_Previous.Click += new System.EventHandler(this.Profiling_Previous_Click);
      // 
      // Profiling_Next
      // 
      this.Profiling_Next.Index = 1;
      this.Profiling_Next.Text = "Next Chart";
      this.Profiling_Next.Click += new System.EventHandler(this.Profiling_Next_Click);
      // 
      // panel_VisionView
      // 
      this.panel_VisionView.Dock = System.Windows.Forms.DockStyle.Fill;
      this.panel_VisionView.Location = new System.Drawing.Point(0, 31);
      this.panel_VisionView.MinimumSize = new System.Drawing.Size(16, 16);
      this.panel_VisionView.Name = "panel_VisionView";
      this.panel_VisionView.Size = new System.Drawing.Size(769, 413);
      this.panel_VisionView.TabIndex = 1;
      // 
      // transformStrip_EnginePanel
      // 
      this.transformStrip_EnginePanel.Dock = System.Windows.Forms.DockStyle.Bottom;
      this.transformStrip_EnginePanel.Enabled = false;
      this.transformStrip_EnginePanel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.transformStrip_toggleTransformMode,
            this.toolStripSeparator5,
            this.toolStripDropDownButton_Translation,
            this.labelX,
            this.transformStrip_TranslateX,
            this.labelY,
            this.transformStrip_TranslateY,
            this.labelZ,
            this.transformStrip_TranslateZ,
            this.toolStripSeparator1,
            this.toolStripDropDownButton_Rotation,
            this.labelYaw,
            this.transformStrip_Yaw,
            this.labelPitch,
            this.transformStrip_Pitch,
            this.labelRoll,
            this.transformStrip_Roll,
            this.toolStripSeparator2,
            this.toolStripDropDownButton_Scale,
            this.labelXScale,
            this.transformStrip_ScaleX,
            this.labelYScale,
            this.transformStrip_ScaleY,
            this.labelZScale,
            this.transformStrip_ScaleZ,
            this.toolStripLabel1,
            this.transformStrip_ScaleXYZ});
      this.transformStrip_EnginePanel.Location = new System.Drawing.Point(0, 463);
      this.transformStrip_EnginePanel.Name = "transformStrip_EnginePanel";
      this.transformStrip_EnginePanel.Size = new System.Drawing.Size(890, 31);
      this.transformStrip_EnginePanel.TabIndex = 0;
      this.transformStrip_EnginePanel.Text = "transformStrip";
      // 
      // transformStrip_toggleTransformMode
      // 
      this.transformStrip_toggleTransformMode.AutoSize = false;
      this.transformStrip_toggleTransformMode.CheckOnClick = true;
      this.transformStrip_toggleTransformMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.transformStrip_toggleTransformMode.Image = global::Editor.Properties.Resources.toolbar_transform_absolute;
      this.transformStrip_toggleTransformMode.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.transformStrip_toggleTransformMode.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.transformStrip_toggleTransformMode.Name = "transformStrip_toggleTransformMode";
      this.transformStrip_toggleTransformMode.Size = new System.Drawing.Size(28, 28);
      this.transformStrip_toggleTransformMode.Text = "toolStripButton2";
      this.transformStrip_toggleTransformMode.ToolTipText = "Toggles whether transformations in absolute (world) space or relative (model spac" +
    "e)";
      this.transformStrip_toggleTransformMode.Click += new System.EventHandler(this.transformStrip_toggleTransformMode_Click);
      // 
      // toolStripSeparator5
      // 
      this.toolStripSeparator5.Name = "toolStripSeparator5";
      this.toolStripSeparator5.Size = new System.Drawing.Size(6, 31);
      // 
      // toolStripDropDownButton_Translation
      // 
      this.toolStripDropDownButton_Translation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripDropDownButton_Translation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem_CopyTranslation,
            this.toolStripMenuItem_PasteTranslation});
      this.toolStripDropDownButton_Translation.Image = global::Editor.Properties.Resources.toolbar_move;
      this.toolStripDropDownButton_Translation.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripDropDownButton_Translation.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripDropDownButton_Translation.Name = "toolStripDropDownButton_Translation";
      this.toolStripDropDownButton_Translation.Size = new System.Drawing.Size(37, 28);
      this.toolStripDropDownButton_Translation.ToolTipText = "Modify selected object rotation";
      // 
      // toolStripMenuItem_CopyTranslation
      // 
      this.toolStripMenuItem_CopyTranslation.Image = global::Editor.Properties.Resources.toolbar_copy;
      this.toolStripMenuItem_CopyTranslation.Name = "toolStripMenuItem_CopyTranslation";
      this.toolStripMenuItem_CopyTranslation.Size = new System.Drawing.Size(214, 22);
      this.toolStripMenuItem_CopyTranslation.Text = "Copy Absolute Translation";
      this.toolStripMenuItem_CopyTranslation.Click += new System.EventHandler(this.copyTranslationStripMenuItem1_Click);
      // 
      // toolStripMenuItem_PasteTranslation
      // 
      this.toolStripMenuItem_PasteTranslation.Image = global::Editor.Properties.Resources.toolbar_paste;
      this.toolStripMenuItem_PasteTranslation.Name = "toolStripMenuItem_PasteTranslation";
      this.toolStripMenuItem_PasteTranslation.Size = new System.Drawing.Size(214, 22);
      this.toolStripMenuItem_PasteTranslation.Text = "Paste Absolute Translation";
      this.toolStripMenuItem_PasteTranslation.Click += new System.EventHandler(this.pasteTranslationToolStripMenuItem_Click);
      // 
      // labelX
      // 
      this.labelX.Name = "labelX";
      this.labelX.Size = new System.Drawing.Size(14, 28);
      this.labelX.Text = "X";
      // 
      // transformStrip_TranslateX
      // 
      this.transformStrip_TranslateX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_TranslateX.Name = "transformStrip_TranslateX";
      this.transformStrip_TranslateX.Size = new System.Drawing.Size(48, 31);
      this.transformStrip_TranslateX.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_TranslateX.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_TranslateX.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_TranslateX.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelY
      // 
      this.labelY.Name = "labelY";
      this.labelY.Size = new System.Drawing.Size(14, 28);
      this.labelY.Text = "Y";
      // 
      // transformStrip_TranslateY
      // 
      this.transformStrip_TranslateY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_TranslateY.Name = "transformStrip_TranslateY";
      this.transformStrip_TranslateY.Size = new System.Drawing.Size(48, 31);
      this.transformStrip_TranslateY.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_TranslateY.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_TranslateY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_TranslateY.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelZ
      // 
      this.labelZ.Name = "labelZ";
      this.labelZ.Size = new System.Drawing.Size(14, 28);
      this.labelZ.Text = "Z";
      // 
      // transformStrip_TranslateZ
      // 
      this.transformStrip_TranslateZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_TranslateZ.Name = "transformStrip_TranslateZ";
      this.transformStrip_TranslateZ.Size = new System.Drawing.Size(48, 31);
      this.transformStrip_TranslateZ.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_TranslateZ.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_TranslateZ.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_TranslateZ.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // toolStripSeparator1
      // 
      this.toolStripSeparator1.Name = "toolStripSeparator1";
      this.toolStripSeparator1.Size = new System.Drawing.Size(6, 31);
      // 
      // toolStripDropDownButton_Rotation
      // 
      this.toolStripDropDownButton_Rotation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripDropDownButton_Rotation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem_CopyRotation,
            this.toolStripMenuItem_PasteRotation});
      this.toolStripDropDownButton_Rotation.Image = global::Editor.Properties.Resources.toolbar_rotate;
      this.toolStripDropDownButton_Rotation.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripDropDownButton_Rotation.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripDropDownButton_Rotation.Name = "toolStripDropDownButton_Rotation";
      this.toolStripDropDownButton_Rotation.Size = new System.Drawing.Size(37, 28);
      this.toolStripDropDownButton_Rotation.Text = "toolStripDropDownButton_Rotation";
      this.toolStripDropDownButton_Rotation.ToolTipText = "Modify selected object rotation";
      // 
      // toolStripMenuItem_CopyRotation
      // 
      this.toolStripMenuItem_CopyRotation.Image = global::Editor.Properties.Resources.toolbar_copy;
      this.toolStripMenuItem_CopyRotation.Name = "toolStripMenuItem_CopyRotation";
      this.toolStripMenuItem_CopyRotation.Size = new System.Drawing.Size(200, 22);
      this.toolStripMenuItem_CopyRotation.Text = "Copy Absolute Rotation";
      this.toolStripMenuItem_CopyRotation.Click += new System.EventHandler(this.copyRotationToolStripMenuItem_Click);
      // 
      // toolStripMenuItem_PasteRotation
      // 
      this.toolStripMenuItem_PasteRotation.Image = global::Editor.Properties.Resources.toolbar_paste;
      this.toolStripMenuItem_PasteRotation.Name = "toolStripMenuItem_PasteRotation";
      this.toolStripMenuItem_PasteRotation.Size = new System.Drawing.Size(200, 22);
      this.toolStripMenuItem_PasteRotation.Text = "Paste Absolute Rotation";
      this.toolStripMenuItem_PasteRotation.Click += new System.EventHandler(this.pasteRotationToolStripMenuItem_Click);
      // 
      // labelYaw
      // 
      this.labelYaw.Name = "labelYaw";
      this.labelYaw.Size = new System.Drawing.Size(29, 28);
      this.labelYaw.Text = "Yaw";
      // 
      // transformStrip_Yaw
      // 
      this.transformStrip_Yaw.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_Yaw.Name = "transformStrip_Yaw";
      this.transformStrip_Yaw.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_Yaw.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_Yaw.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_Yaw.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_Yaw.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelPitch
      // 
      this.labelPitch.Name = "labelPitch";
      this.labelPitch.Size = new System.Drawing.Size(34, 28);
      this.labelPitch.Text = "Pitch";
      // 
      // transformStrip_Pitch
      // 
      this.transformStrip_Pitch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_Pitch.Name = "transformStrip_Pitch";
      this.transformStrip_Pitch.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_Pitch.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_Pitch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_Pitch.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_Pitch.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelRoll
      // 
      this.labelRoll.Name = "labelRoll";
      this.labelRoll.Size = new System.Drawing.Size(27, 28);
      this.labelRoll.Text = "Roll";
      // 
      // transformStrip_Roll
      // 
      this.transformStrip_Roll.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_Roll.Name = "transformStrip_Roll";
      this.transformStrip_Roll.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_Roll.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_Roll.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_Roll.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_Roll.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // toolStripSeparator2
      // 
      this.toolStripSeparator2.Name = "toolStripSeparator2";
      this.toolStripSeparator2.Size = new System.Drawing.Size(6, 31);
      // 
      // toolStripDropDownButton_Scale
      // 
      this.toolStripDropDownButton_Scale.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripDropDownButton_Scale.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem_CopyScale,
            this.toolStripMenuItem_PasteScale});
      this.toolStripDropDownButton_Scale.Image = global::Editor.Properties.Resources.toolbar_scale_nonuniform;
      this.toolStripDropDownButton_Scale.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripDropDownButton_Scale.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripDropDownButton_Scale.Name = "toolStripDropDownButton_Scale";
      this.toolStripDropDownButton_Scale.Size = new System.Drawing.Size(37, 28);
      this.toolStripDropDownButton_Scale.Text = "toolStripDropDownButton_Rotation";
      this.toolStripDropDownButton_Scale.ToolTipText = "Modify selected object rotation";
      // 
      // toolStripMenuItem_CopyScale
      // 
      this.toolStripMenuItem_CopyScale.Image = global::Editor.Properties.Resources.toolbar_copy;
      this.toolStripMenuItem_CopyScale.Name = "toolStripMenuItem_CopyScale";
      this.toolStripMenuItem_CopyScale.Size = new System.Drawing.Size(182, 22);
      this.toolStripMenuItem_CopyScale.Text = "Copy Absolute Scale";
      this.toolStripMenuItem_CopyScale.Click += new System.EventHandler(this.copyScaleToolStripMenuItem_Click);
      // 
      // toolStripMenuItem_PasteScale
      // 
      this.toolStripMenuItem_PasteScale.Image = global::Editor.Properties.Resources.toolbar_paste;
      this.toolStripMenuItem_PasteScale.Name = "toolStripMenuItem_PasteScale";
      this.toolStripMenuItem_PasteScale.Size = new System.Drawing.Size(182, 22);
      this.toolStripMenuItem_PasteScale.Text = "Paste Absolute Scale";
      this.toolStripMenuItem_PasteScale.Click += new System.EventHandler(this.pasteScaleToolStripMenuItem_Click);
      // 
      // labelXScale
      // 
      this.labelXScale.Name = "labelXScale";
      this.labelXScale.Size = new System.Drawing.Size(14, 28);
      this.labelXScale.Text = "X";
      // 
      // transformStrip_ScaleX
      // 
      this.transformStrip_ScaleX.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_ScaleX.Name = "transformStrip_ScaleX";
      this.transformStrip_ScaleX.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_ScaleX.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_ScaleX.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_ScaleX.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_ScaleX.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelYScale
      // 
      this.labelYScale.Name = "labelYScale";
      this.labelYScale.Size = new System.Drawing.Size(14, 28);
      this.labelYScale.Text = "Y";
      // 
      // transformStrip_ScaleY
      // 
      this.transformStrip_ScaleY.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_ScaleY.Name = "transformStrip_ScaleY";
      this.transformStrip_ScaleY.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_ScaleY.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_ScaleY.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_ScaleY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_ScaleY.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // labelZScale
      // 
      this.labelZScale.Name = "labelZScale";
      this.labelZScale.Size = new System.Drawing.Size(14, 28);
      this.labelZScale.Text = "Z";
      // 
      // transformStrip_ScaleZ
      // 
      this.transformStrip_ScaleZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_ScaleZ.Name = "transformStrip_ScaleZ";
      this.transformStrip_ScaleZ.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_ScaleZ.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_ScaleZ.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_ScaleZ.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_ScaleZ.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // toolStripLabel1
      // 
      this.toolStripLabel1.Name = "toolStripLabel1";
      this.toolStripLabel1.Size = new System.Drawing.Size(28, 28);
      this.toolStripLabel1.Text = "XYZ";
      // 
      // transformStrip_ScaleXYZ
      // 
      this.transformStrip_ScaleXYZ.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
      this.transformStrip_ScaleXYZ.Name = "transformStrip_ScaleXYZ";
      this.transformStrip_ScaleXYZ.Size = new System.Drawing.Size(36, 31);
      this.transformStrip_ScaleXYZ.Leave += new System.EventHandler(this.transformStrip_Leave);
      this.transformStrip_ScaleXYZ.KeyDown += new System.Windows.Forms.KeyEventHandler(this.transformStrip_KeyDown);
      this.transformStrip_ScaleXYZ.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.transformStripTextBox_KeyPress);
      this.transformStrip_ScaleXYZ.Click += new System.EventHandler(this.transformStripTextBox_Click);
      // 
      // toolStrip_EnginePanel
      // 
      this.toolStrip_EnginePanel.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
      this.toolStrip_EnginePanel.ImageScalingSize = new System.Drawing.Size(24, 24);
      this.toolStrip_EnginePanel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripButton_Select,
            this.ToolStripButton_Move,
            this.ToolStripButton_Rotate,
            this.ToolStripButton_Scale,
            this.ToolStripButton_Link,
            this.toolStripSeparator3,
            this.toolStripDropDownButton_PlayMode,
            this.ToolStripSplitButton_Camera,
            this.ToolStripSplitButton_MoveSensitivity,
            this.toolStripSplitButton_ViewIcons,
            this.ToolStripButton_ZoomFit,
            this.ToolStripSplitButton_SelectionFilter,
            this.ToolStripSplitButton_Rendering,
            this.ToolStripSplitButton_DebugFlags,
            this.toolStripDropDownButton_PerspectiveMode,
            this.ToolStripSplitButton_Tools,
            this.toolStripSeparator4});
      this.toolStrip_EnginePanel.Location = new System.Drawing.Point(0, 0);
      this.toolStrip_EnginePanel.Name = "toolStrip_EnginePanel";
      this.toolStrip_EnginePanel.Size = new System.Drawing.Size(769, 31);
      this.toolStrip_EnginePanel.TabIndex = 0;
      this.toolStrip_EnginePanel.Text = "Engine View Toolbar";
      // 
      // ToolStripButton_Select
      // 
      this.ToolStripButton_Select.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_Select.Image = global::Editor.Properties.Resources.toolbar_select;
      this.ToolStripButton_Select.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_Select.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_Select.Name = "ToolStripButton_Select";
      this.ToolStripButton_Select.Size = new System.Drawing.Size(40, 28);
      this.ToolStripButton_Select.Text = "Select";
      this.ToolStripButton_Select.Visible = false;
      // 
      // ToolStripButton_Move
      // 
      this.ToolStripButton_Move.Checked = System.Windows.Forms.CheckState.Unchecked;
      this.ToolStripButton_Move.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_Move.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton_EnableMoveSnap,
            this.toolStripButton_StickToGround,
            this.toolStripButton_localPos});
      this.ToolStripButton_Move.Image = global::Editor.Properties.Resources.toolbar_move;
      this.ToolStripButton_Move.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_Move.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_Move.Name = "ToolStripButton_Move";
      this.ToolStripButton_Move.Size = new System.Drawing.Size(40, 28);
      this.ToolStripButton_Move.Text = "Move";
      this.ToolStripButton_Move.ToolTipText = "Move Selected Shapes";
      this.ToolStripButton_Move.DropDownOpening += new System.EventHandler(this.toolStripButton_Move_DropDownOpening);
      this.ToolStripButton_Move.Click += new System.EventHandler(this.toolStripButton_Move_Click);
      // 
      // toolStripButton_EnableMoveSnap
      // 
      this.toolStripButton_EnableMoveSnap.CheckOnClick = true;
      this.toolStripButton_EnableMoveSnap.Image = global::Editor.Properties.Resources.magnet;
      this.toolStripButton_EnableMoveSnap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_EnableMoveSnap.Name = "toolStripButton_EnableMoveSnap";
      this.toolStripButton_EnableMoveSnap.Size = new System.Drawing.Size(171, 22);
      this.toolStripButton_EnableMoveSnap.Text = "Enable Move Snap";
      this.toolStripButton_EnableMoveSnap.Click += new System.EventHandler(this.toolStripButton_EnableMoveSnap_Click);
      // 
      // toolStripButton_StickToGround
      // 
      this.toolStripButton_StickToGround.CheckOnClick = true;
      this.toolStripButton_StickToGround.Image = global::Editor.Properties.Resources.arrow_green_down;
      this.toolStripButton_StickToGround.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_StickToGround.Name = "toolStripButton_StickToGround";
      this.toolStripButton_StickToGround.Size = new System.Drawing.Size(171, 22);
      this.toolStripButton_StickToGround.Text = "Stick To Ground";
      this.toolStripButton_StickToGround.ToolTipText = "If enabled, objects stick to the ground surface while moving the shapes";
      this.toolStripButton_StickToGround.Click += new System.EventHandler(this.toolStripButton_StickToGround_Click);
      // 
      // toolStripButton_localPos
      // 
      this.toolStripButton_localPos.CheckOnClick = true;
      this.toolStripButton_localPos.Image = global::Editor.Properties.Resources.toolbar_gizmo;
      this.toolStripButton_localPos.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_localPos.Name = "toolStripButton_localPos";
      this.toolStripButton_localPos.Size = new System.Drawing.Size(171, 22);
      this.toolStripButton_localPos.Text = "Local Transform";
      this.toolStripButton_localPos.Click += new System.EventHandler(this.toolStripButton_localPos_Click);
      // 
      // ToolStripButton_Rotate
      // 
      this.ToolStripButton_Rotate.Checked = System.Windows.Forms.CheckState.Unchecked;
      this.ToolStripButton_Rotate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_Rotate.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton_EnableAngleSnap,
            this.toolStripButton_localOri});
      this.ToolStripButton_Rotate.Image = global::Editor.Properties.Resources.toolbar_rotate;
      this.ToolStripButton_Rotate.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_Rotate.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_Rotate.Name = "ToolStripButton_Rotate";
      this.ToolStripButton_Rotate.Size = new System.Drawing.Size(40, 28);
      this.ToolStripButton_Rotate.Text = "Rotate";
      this.ToolStripButton_Rotate.ToolTipText = "Rotate Selected Shapes";
      this.ToolStripButton_Rotate.DropDownOpening += new System.EventHandler(this.toolStripButton_Rotate_DropDownOpening);
      this.ToolStripButton_Rotate.Click += new System.EventHandler(this.toolStripButton_Rotate_Click);
      // 
      // toolStripButton_EnableAngleSnap
      // 
      this.toolStripButton_EnableAngleSnap.CheckOnClick = true;
      this.toolStripButton_EnableAngleSnap.Image = global::Editor.Properties.Resources.magnet;
      this.toolStripButton_EnableAngleSnap.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_EnableAngleSnap.Name = "toolStripButton_EnableAngleSnap";
      this.toolStripButton_EnableAngleSnap.Size = new System.Drawing.Size(172, 22);
      this.toolStripButton_EnableAngleSnap.Text = "Enable Angle Snap";
      this.toolStripButton_EnableAngleSnap.Click += new System.EventHandler(this.toolStripButton_EnableAngleSnap_Click);
      // 
      // toolStripButton_localOri
      // 
      this.toolStripButton_localOri.CheckOnClick = true;
      this.toolStripButton_localOri.Image = global::Editor.Properties.Resources.toolbar_gizmo;
      this.toolStripButton_localOri.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_localOri.Name = "toolStripButton_localOri";
      this.toolStripButton_localOri.Size = new System.Drawing.Size(172, 22);
      this.toolStripButton_localOri.Text = "Local Transform";
      this.toolStripButton_localOri.Click += new System.EventHandler(this.toolStripButton_localOri_Click);
      // 
      // ToolStripButton_Link
      // 
      this.ToolStripButton_Link.Checked = System.Windows.Forms.CheckState.Unchecked;
      this.ToolStripButton_Link.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_Link.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton_Link_ShowNone,
            this.toolStripButton_Link_ShowAll,
            this.toolStripButton_Link_ShowSelected,
            this.toolStripButton_Link_ShowActiveLayer});
      this.ToolStripButton_Link.Image = global::Editor.Properties.Resources.toolbar_link;
      this.ToolStripButton_Link.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_Link.Name = "ToolStripButton_Link";
      this.ToolStripButton_Link.Size = new System.Drawing.Size(40, 28);
      this.ToolStripButton_Link.Text = "Link";
      this.ToolStripButton_Link.ToolTipText = "Shape Linking Context";
      this.ToolStripButton_Link.DropDownOpening += new System.EventHandler(this.toolStripButton_Link_DropDownOpening);
      this.ToolStripButton_Link.Click += new System.EventHandler(this.toolStripButton_Link_Click);
      // 
      // toolStripButton_Link_ShowNone
      // 
      this.toolStripButton_Link_ShowNone.CheckOnClick = true;
      this.toolStripButton_Link_ShowNone.Image = global::Editor.Properties.Resources.toolbar_link_small;
      this.toolStripButton_Link_ShowNone.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_Link_ShowNone.Name = "toolStripButton_Link_ShowNone";
      this.toolStripButton_Link_ShowNone.Size = new System.Drawing.Size(200, 22);
      this.toolStripButton_Link_ShowNone.Text = "Hide All Links";
      this.toolStripButton_Link_ShowNone.Click += new System.EventHandler(this.toolStripButton_Link_Show_Click);
      // 
      // toolStripButton_Link_ShowAll
      // 
      this.toolStripButton_Link_ShowAll.CheckOnClick = true;
      this.toolStripButton_Link_ShowAll.Image = global::Editor.Properties.Resources.toolbar_link_small;
      this.toolStripButton_Link_ShowAll.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_Link_ShowAll.Name = "toolStripButton_Link_ShowAll";
      this.toolStripButton_Link_ShowAll.Size = new System.Drawing.Size(200, 22);
      this.toolStripButton_Link_ShowAll.Text = "Show All Links";
      this.toolStripButton_Link_ShowAll.Click += new System.EventHandler(this.toolStripButton_Link_Show_Click);
      // 
      // toolStripButton_Link_ShowSelected
      // 
      this.toolStripButton_Link_ShowSelected.CheckOnClick = true;
      this.toolStripButton_Link_ShowSelected.Image = global::Editor.Properties.Resources.toolbar_link_small;
      this.toolStripButton_Link_ShowSelected.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_Link_ShowSelected.Name = "toolStripButton_Link_ShowSelected";
      this.toolStripButton_Link_ShowSelected.Size = new System.Drawing.Size(200, 22);
      this.toolStripButton_Link_ShowSelected.Text = "Show Links Selected";
      this.toolStripButton_Link_ShowSelected.Click += new System.EventHandler(this.toolStripButton_Link_Show_Click);
      // 
      // toolStripButton_Link_ShowActiveLayer
      // 
      this.toolStripButton_Link_ShowActiveLayer.CheckOnClick = true;
      this.toolStripButton_Link_ShowActiveLayer.Image = global::Editor.Properties.Resources.toolbar_link_small;
      this.toolStripButton_Link_ShowActiveLayer.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_Link_ShowActiveLayer.Name = "toolStripButton_Link_ShowActiveLayer";
      this.toolStripButton_Link_ShowActiveLayer.Size = new System.Drawing.Size(200, 22);
      this.toolStripButton_Link_ShowActiveLayer.Text = "Show Links Active Layer";
      this.toolStripButton_Link_ShowActiveLayer.Click += new System.EventHandler(this.toolStripButton_Link_Show_Click);
      // 
      // toolStripSeparator3
      // 
      this.toolStripSeparator3.Name = "toolStripSeparator3";
      this.toolStripSeparator3.Size = new System.Drawing.Size(6, 31);
      // 
      // toolStripDropDownButton_PlayMode
      // 
      this.toolStripDropDownButton_PlayMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripDropDownButton_PlayMode.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.animateToolStripMenuItem_Animate,
            this.runInEditorToolStripMenuItem_RunInEditor,
            this.playTheGameToolStripMenuItem_PlayTheGame});
      this.toolStripDropDownButton_PlayMode.Image = global::Editor.Properties.Resources.toolbar_play_editor;
      this.toolStripDropDownButton_PlayMode.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripDropDownButton_PlayMode.Name = "toolStripDropDownButton_PlayMode";
      this.toolStripDropDownButton_PlayMode.Size = new System.Drawing.Size(40, 28);
      this.toolStripDropDownButton_PlayMode.ButtonClick += new System.EventHandler(this.toolStripDropDownButton_PlayMode_ButtonClick);
      // 
      // animateToolStripMenuItem_Animate
      // 
      this.animateToolStripMenuItem_Animate.Image = global::Editor.Properties.Resources.toolbar_timeofday;
      this.animateToolStripMenuItem_Animate.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.animateToolStripMenuItem_Animate.Name = "animateToolStripMenuItem_Animate";
      this.animateToolStripMenuItem_Animate.Size = new System.Drawing.Size(150, 22);
      this.animateToolStripMenuItem_Animate.Text = "Animate";
      this.animateToolStripMenuItem_Animate.Click += new System.EventHandler(this.animateToolStripMenuItem_Animate_Click);
      // 
      // runInEditorToolStripMenuItem_RunInEditor
      // 
      this.runInEditorToolStripMenuItem_RunInEditor.Image = global::Editor.Properties.Resources.toolbar_editor;
      this.runInEditorToolStripMenuItem_RunInEditor.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.runInEditorToolStripMenuItem_RunInEditor.Name = "runInEditorToolStripMenuItem_RunInEditor";
      this.runInEditorToolStripMenuItem_RunInEditor.Size = new System.Drawing.Size(150, 22);
      this.runInEditorToolStripMenuItem_RunInEditor.Text = "Run in Editor";
      this.runInEditorToolStripMenuItem_RunInEditor.Click += new System.EventHandler(this.runInEditorToolStripMenuItem_RunInEditor_Click);
      // 
      // playTheGameToolStripMenuItem_PlayTheGame
      // 
      this.playTheGameToolStripMenuItem_PlayTheGame.Image = global::Editor.Properties.Resources.toolbar_gamepad;
      this.playTheGameToolStripMenuItem_PlayTheGame.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.playTheGameToolStripMenuItem_PlayTheGame.Name = "playTheGameToolStripMenuItem_PlayTheGame";
      this.playTheGameToolStripMenuItem_PlayTheGame.Size = new System.Drawing.Size(150, 22);
      this.playTheGameToolStripMenuItem_PlayTheGame.Text = "Play the Game";
      this.playTheGameToolStripMenuItem_PlayTheGame.Click += new System.EventHandler(this.playTheGameToolStripMenuItem_PlayTheGame_Click);
      // 
      // ToolStripSplitButton_Camera
      // 
      this.ToolStripSplitButton_Camera.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_Camera.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton_MoveContext,
            this.toolStripButton_MoveCameraWithKeys,
            this.ToolStripSplitButton_CameraSep1,
            this.ToolStripSplitButton_CameraStyle_Pan,
            this.ToolStripSplitButton_CameraStyle_PanHoriz,
            this.ToolStripSplitButton_CameraStyle_Orbit,
            this.ToolStripSplitButton_CameraStyle_Max,
            this.ToolStripSplitButton_CameraStyle_Maya,
            this.ToolStripSplitButton_CameraSep2,
            this.ToolStripSplitButton_Camera_MoveOrigin,
            this.ToolStripSplitButton_Camera_MoveShapeOrigin,
            this.ToolStripSplitButton_Camera_MoveSelection});
      this.ToolStripSplitButton_Camera.Image = global::Editor.Properties.Resources.toolbar_camera;
      this.ToolStripSplitButton_Camera.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_Camera.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_Camera.Name = "ToolStripSplitButton_Camera";
      this.ToolStripSplitButton_Camera.Size = new System.Drawing.Size(37, 28);
      this.ToolStripSplitButton_Camera.Text = "Camera Control Options";
      this.ToolStripSplitButton_Camera.DropDownOpening += new System.EventHandler(this.ToolStripSplitButton_Camera_DropDownOpening);
      // 
      // toolStripButton_MoveContext
      // 
      this.toolStripButton_MoveContext.Image = global::Editor.Properties.Resources.toolbar_camera_move;
      this.toolStripButton_MoveContext.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_MoveContext.Name = "toolStripButton_MoveContext";
      this.toolStripButton_MoveContext.Size = new System.Drawing.Size(262, 22);
      this.toolStripButton_MoveContext.Text = "Enable Standard Move Context";
      this.toolStripButton_MoveContext.ToolTipText = "Enables the Standard Move Context";
      this.toolStripButton_MoveContext.Click += new System.EventHandler(this.toolStripButton_MoveContext_Click);
      // 
      // toolStripButton_MoveCameraWithKeys
      // 
      this.toolStripButton_MoveCameraWithKeys.Image = global::Editor.Properties.Resources.toolbar_camera_keys;
      this.toolStripButton_MoveCameraWithKeys.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_MoveCameraWithKeys.Name = "toolStripButton_MoveCameraWithKeys";
      this.toolStripButton_MoveCameraWithKeys.Size = new System.Drawing.Size(262, 22);
      this.toolStripButton_MoveCameraWithKeys.Text = "Control Camera with WASD Keys";
      this.toolStripButton_MoveCameraWithKeys.ToolTipText = "Camera Control with [W,A,S,D] Keys (Disables Hotkeys)";
      this.toolStripButton_MoveCameraWithKeys.Click += new System.EventHandler(this.toolStripButton_MoveCameraWithKeys_Click);
      // 
      // ToolStripSplitButton_CameraSep1
      // 
      this.ToolStripSplitButton_CameraSep1.Name = "ToolStripSplitButton_CameraSep1";
      this.ToolStripSplitButton_CameraSep1.Size = new System.Drawing.Size(259, 6);
      // 
      // ToolStripSplitButton_CameraStyle_Pan
      // 
      this.ToolStripSplitButton_CameraStyle_Pan.Image = global::Editor.Properties.Resources.toolbar_camera_move;
      this.ToolStripSplitButton_CameraStyle_Pan.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_CameraStyle_Pan.Name = "ToolStripSplitButton_CameraStyle_Pan";
      this.ToolStripSplitButton_CameraStyle_Pan.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_CameraStyle_Pan.Text = "Style: Middle Mouse Pan";
      this.ToolStripSplitButton_CameraStyle_Pan.Click += new System.EventHandler(this.ToolStripSplitButton_CameraStyle_Click);
      // 
      // ToolStripSplitButton_CameraStyle_PanHoriz
      // 
      this.ToolStripSplitButton_CameraStyle_PanHoriz.Image = global::Editor.Properties.Resources.toolbar_camera_move;
      this.ToolStripSplitButton_CameraStyle_PanHoriz.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_CameraStyle_PanHoriz.Name = "ToolStripSplitButton_CameraStyle_PanHoriz";
      this.ToolStripSplitButton_CameraStyle_PanHoriz.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_CameraStyle_PanHoriz.Text = "Style: Middle Mouse Pan Horizontal";
      this.ToolStripSplitButton_CameraStyle_PanHoriz.Click += new System.EventHandler(this.ToolStripSplitButton_CameraStyle_Click);
      // 
      // ToolStripSplitButton_CameraStyle_Orbit
      // 
      this.ToolStripSplitButton_CameraStyle_Orbit.Image = global::Editor.Properties.Resources.toolbar_camera_orbit;
      this.ToolStripSplitButton_CameraStyle_Orbit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_CameraStyle_Orbit.Name = "ToolStripSplitButton_CameraStyle_Orbit";
      this.ToolStripSplitButton_CameraStyle_Orbit.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_CameraStyle_Orbit.Text = "Style: Middle Mouse Orbit Selection";
      this.ToolStripSplitButton_CameraStyle_Orbit.Click += new System.EventHandler(this.ToolStripSplitButton_CameraStyle_Click);
      // 
      // ToolStripSplitButton_CameraStyle_Max
      // 
      this.ToolStripSplitButton_CameraStyle_Max.Image = ((System.Drawing.Image)(resources.GetObject("ToolStripSplitButton_CameraStyle_Max.Image")));
      this.ToolStripSplitButton_CameraStyle_Max.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_CameraStyle_Max.Name = "ToolStripSplitButton_CameraStyle_Max";
      this.ToolStripSplitButton_CameraStyle_Max.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_CameraStyle_Max.Text = "Style: 3dsMax Camera";
      this.ToolStripSplitButton_CameraStyle_Max.Click += new System.EventHandler(this.ToolStripSplitButton_CameraStyle_Click);
      // 
      // ToolStripSplitButton_CameraStyle_Maya
      // 
      this.ToolStripSplitButton_CameraStyle_Maya.Image = ((System.Drawing.Image)(resources.GetObject("ToolStripSplitButton_CameraStyle_Maya.Image")));
      this.ToolStripSplitButton_CameraStyle_Maya.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_CameraStyle_Maya.Name = "ToolStripSplitButton_CameraStyle_Maya";
      this.ToolStripSplitButton_CameraStyle_Maya.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_CameraStyle_Maya.Text = "Style: Maya Camera";
      this.ToolStripSplitButton_CameraStyle_Maya.Click += new System.EventHandler(this.ToolStripSplitButton_CameraStyle_Click);
      // 
      // ToolStripSplitButton_CameraSep2
      // 
      this.ToolStripSplitButton_CameraSep2.Name = "ToolStripSplitButton_CameraSep2";
      this.ToolStripSplitButton_CameraSep2.Size = new System.Drawing.Size(259, 6);
      // 
      // ToolStripSplitButton_Camera_MoveOrigin
      // 
      this.ToolStripSplitButton_Camera_MoveOrigin.Image = global::Editor.Properties.Resources.gizmo;
      this.ToolStripSplitButton_Camera_MoveOrigin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_Camera_MoveOrigin.Name = "ToolStripSplitButton_Camera_MoveOrigin";
      this.ToolStripSplitButton_Camera_MoveOrigin.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_Camera_MoveOrigin.Text = "Move Camera to Origin";
      this.ToolStripSplitButton_Camera_MoveOrigin.Click += new System.EventHandler(this.ToolStripSplitButton_Camera_MoveOrigin_Click);
      // 
      // ToolStripSplitButton_Camera_MoveShapeOrigin
      // 
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.Image = global::Editor.Properties.Resources.node;
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.Name = "ToolStripSplitButton_Camera_MoveShapeOrigin";
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.Text = "Move Camera to Shape Origin";
      this.ToolStripSplitButton_Camera_MoveShapeOrigin.Click += new System.EventHandler(this.ToolStripSplitButton_Camera_MoveShapeOrigin_Click);
      // 
      // ToolStripSplitButton_Camera_MoveSelection
      // 
      this.ToolStripSplitButton_Camera_MoveSelection.Image = global::Editor.Properties.Resources.pick;
      this.ToolStripSplitButton_Camera_MoveSelection.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_Camera_MoveSelection.Name = "ToolStripSplitButton_Camera_MoveSelection";
      this.ToolStripSplitButton_Camera_MoveSelection.Size = new System.Drawing.Size(262, 22);
      this.ToolStripSplitButton_Camera_MoveSelection.Text = "Move Camera to Selection";
      this.ToolStripSplitButton_Camera_MoveSelection.Click += new System.EventHandler(this.ToolStripSplitButton_Camera_MoveSelection_Click);
      // 
      // ToolStripSplitButton_MoveSensitivity
      // 
      this.ToolStripSplitButton_MoveSensitivity.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_MoveSensitivity.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_MoveSensitivity.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_MoveSensitivity.Name = "ToolStripSplitButton_MoveSensitivity";
      this.ToolStripSplitButton_MoveSensitivity.Size = new System.Drawing.Size(16, 28);
      this.ToolStripSplitButton_MoveSensitivity.Text = "Camera Move and Rotate Sensitivity";
      this.ToolStripSplitButton_MoveSensitivity.ButtonClick += new System.EventHandler(this.ToolStripSplitButton_UIUnitScale_ButtonClick);
      // 
      // toolStripSplitButton_ViewIcons
      // 
      this.toolStripSplitButton_ViewIcons.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripSplitButton_ViewIcons.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showViewIconsToolStripMenuItem,
            this.showHiddenShapesToolStripMenuItem,
            this.viewIconActionToolStripMenuItem});
      this.toolStripSplitButton_ViewIcons.Image = global::Editor.Properties.Resources.icons;
      this.toolStripSplitButton_ViewIcons.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripSplitButton_ViewIcons.Name = "toolStripSplitButton_ViewIcons";
      this.toolStripSplitButton_ViewIcons.Size = new System.Drawing.Size(40, 28);
      this.toolStripSplitButton_ViewIcons.Text = "Shape View Icons";
      this.toolStripSplitButton_ViewIcons.ToolTipText = "Shape View Icons";
      this.toolStripSplitButton_ViewIcons.ButtonClick += new System.EventHandler(this.toolStripSplitButton_ViewIcons_ButtonClick);
      this.toolStripSplitButton_ViewIcons.DropDownOpening += new System.EventHandler(this.toolStripSplitButton_ViewIcons_DropDownOpening);
      // 
      // showViewIconsToolStripMenuItem
      // 
      this.showViewIconsToolStripMenuItem.Image = global::Editor.Properties.Resources.ball_glass_blue_16;
      this.showViewIconsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.showViewIconsToolStripMenuItem.Name = "showViewIconsToolStripMenuItem";
      this.showViewIconsToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
      this.showViewIconsToolStripMenuItem.Text = "Show Shape Icons";
      this.showViewIconsToolStripMenuItem.ToolTipText = "Indicates whether per-shape view icons are displayed in the first place";
      this.showViewIconsToolStripMenuItem.Click += new System.EventHandler(this.showViewIconsToolStripMenuItem_Click);
      // 
      // showHiddenShapesToolStripMenuItem
      // 
      this.showHiddenShapesToolStripMenuItem.Image = global::Editor.Properties.Resources.ball_glass_grey_16;
      this.showHiddenShapesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.showHiddenShapesToolStripMenuItem.Name = "showHiddenShapesToolStripMenuItem";
      this.showHiddenShapesToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
      this.showHiddenShapesToolStripMenuItem.Text = "Show Hidden Shapes";
      this.showHiddenShapesToolStripMenuItem.ToolTipText = "If enabled, also hidden shapes are shown";
      this.showHiddenShapesToolStripMenuItem.Click += new System.EventHandler(this.showHiddenShapesToolStripMenuItem_Click);
      // 
      // viewIconActionToolStripMenuItem
      // 
      this.viewIconActionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem_IconAction_None,
            this.ToolStripMenuItem_IconAction_Select,
            this.toolStripMenuItem11,
            this.ToolStripMenuItem_IconAction_Delete,
            this.ToolStripMenuItem_IconAction_ToggleFreeze,
            this.ToolStripMenuItem_IconAction_Drop,
            this.ToolStripMenuItem_IconAction_Drop_BB,
            this.ToolStripMenuItem_IconAction_Drop_BC});
      this.viewIconActionToolStripMenuItem.Image = global::Editor.Properties.Resources.wrench;
      this.viewIconActionToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.viewIconActionToolStripMenuItem.Name = "viewIconActionToolStripMenuItem";
      this.viewIconActionToolStripMenuItem.Size = new System.Drawing.Size(185, 22);
      this.viewIconActionToolStripMenuItem.Text = "On Icon Click";
      // 
      // ToolStripMenuItem_IconAction_None
      // 
      this.ToolStripMenuItem_IconAction_None.Name = "ToolStripMenuItem_IconAction_None";
      this.ToolStripMenuItem_IconAction_None.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_None.Text = "Nothing";
      this.ToolStripMenuItem_IconAction_None.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_None_Click);
      // 
      // ToolStripMenuItem_IconAction_Select
      // 
      this.ToolStripMenuItem_IconAction_Select.Image = global::Editor.Properties.Resources.pick;
      this.ToolStripMenuItem_IconAction_Select.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_Select.Name = "ToolStripMenuItem_IconAction_Select";
      this.ToolStripMenuItem_IconAction_Select.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_Select.Text = "Select Shape";
      this.ToolStripMenuItem_IconAction_Select.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_Select_Click);
      // 
      // toolStripMenuItem11
      // 
      this.toolStripMenuItem11.Name = "toolStripMenuItem11";
      this.toolStripMenuItem11.Size = new System.Drawing.Size(226, 6);
      // 
      // ToolStripMenuItem_IconAction_Delete
      // 
      this.ToolStripMenuItem_IconAction_Delete.Image = global::Editor.Properties.Resources.delete2;
      this.ToolStripMenuItem_IconAction_Delete.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_Delete.Name = "ToolStripMenuItem_IconAction_Delete";
      this.ToolStripMenuItem_IconAction_Delete.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_Delete.Text = "Delete Shape";
      this.ToolStripMenuItem_IconAction_Delete.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_Delete_Click);
      // 
      // ToolStripMenuItem_IconAction_ToggleFreeze
      // 
      this.ToolStripMenuItem_IconAction_ToggleFreeze.Image = ((System.Drawing.Image)(resources.GetObject("ToolStripMenuItem_IconAction_ToggleFreeze.Image")));
      this.ToolStripMenuItem_IconAction_ToggleFreeze.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_ToggleFreeze.Name = "ToolStripMenuItem_IconAction_ToggleFreeze";
      this.ToolStripMenuItem_IconAction_ToggleFreeze.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_ToggleFreeze.Text = "Freeze/Un-freeze Shape";
      this.ToolStripMenuItem_IconAction_ToggleFreeze.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_ToggleFreeze_Click);
      // 
      // ToolStripMenuItem_IconAction_Drop
      // 
      this.ToolStripMenuItem_IconAction_Drop.Image = global::Editor.Properties.Resources.arrow_down_blue;
      this.ToolStripMenuItem_IconAction_Drop.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_Drop.Name = "ToolStripMenuItem_IconAction_Drop";
      this.ToolStripMenuItem_IconAction_Drop.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_Drop.Text = "Drop to Floor : Pivot";
      this.ToolStripMenuItem_IconAction_Drop.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_Drop_Click);
      // 
      // ToolStripMenuItem_IconAction_Drop_BB
      // 
      this.ToolStripMenuItem_IconAction_Drop_BB.Image = global::Editor.Properties.Resources.arrow_down_blue;
      this.ToolStripMenuItem_IconAction_Drop_BB.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_Drop_BB.Name = "ToolStripMenuItem_IconAction_Drop_BB";
      this.ToolStripMenuItem_IconAction_Drop_BB.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_Drop_BB.Text = "Drop to Floor : Bounding box";
      this.ToolStripMenuItem_IconAction_Drop_BB.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_Drop_BB_Click);
      // 
      // ToolStripMenuItem_IconAction_Drop_BC
      // 
      this.ToolStripMenuItem_IconAction_Drop_BC.Image = global::Editor.Properties.Resources.arrow_down_blue;
      this.ToolStripMenuItem_IconAction_Drop_BC.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_IconAction_Drop_BC.Name = "ToolStripMenuItem_IconAction_Drop_BC";
      this.ToolStripMenuItem_IconAction_Drop_BC.Size = new System.Drawing.Size(229, 22);
      this.ToolStripMenuItem_IconAction_Drop_BC.Text = "Drop to Floor : Bottom center";
      this.ToolStripMenuItem_IconAction_Drop_BC.Click += new System.EventHandler(this.ToolStripMenuItem_IconAction_Drop_BC_Click);
      // 
      // ToolStripButton_ZoomFit
      // 
      this.ToolStripButton_ZoomFit.Checked = System.Windows.Forms.CheckState.Unchecked;
      this.ToolStripButton_ZoomFit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_ZoomFit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripButton_IsolateSelection,
            this.ToolStripButton_AutomaticZoomFit});
      this.ToolStripButton_ZoomFit.Image = global::Editor.Properties.Resources.frame_all;
      this.ToolStripButton_ZoomFit.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_ZoomFit.Name = "ToolStripButton_ZoomFit";
      this.ToolStripButton_ZoomFit.Size = new System.Drawing.Size(40, 28);
      this.ToolStripButton_ZoomFit.Text = "Focus On Selection";
      this.ToolStripButton_ZoomFit.ToolTipText = "Focus Scene";
      this.ToolStripButton_ZoomFit.ButtonClick += new System.EventHandler(this.ToolStripButton_ZoomFit_ButtonClick);
      this.ToolStripButton_ZoomFit.DropDownOpening += new System.EventHandler(this.ToolStripButton_ZoomFit_DropDownOpening);
      // 
      // ToolStripButton_IsolateSelection
      // 
      this.ToolStripButton_IsolateSelection.CheckOnClick = true;
      this.ToolStripButton_IsolateSelection.Image = global::Editor.Properties.Resources.isolate_selection;
      this.ToolStripButton_IsolateSelection.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_IsolateSelection.Name = "ToolStripButton_IsolateSelection";
      this.ToolStripButton_IsolateSelection.Size = new System.Drawing.Size(242, 30);
      this.ToolStripButton_IsolateSelection.Text = "Isolate Selection";
      this.ToolStripButton_IsolateSelection.CheckedChanged += new System.EventHandler(this.ToolStripButton_IsolateSelection_CheckedChanged);
      // 
      // ToolStripButton_AutomaticZoomFit
      // 
      this.ToolStripButton_AutomaticZoomFit.CheckOnClick = true;
      this.ToolStripButton_AutomaticZoomFit.Image = global::Editor.Properties.Resources.frame_autoselect;
      this.ToolStripButton_AutomaticZoomFit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_AutomaticZoomFit.Name = "ToolStripButton_AutomaticZoomFit";
      this.ToolStripButton_AutomaticZoomFit.Size = new System.Drawing.Size(242, 30);
      this.ToolStripButton_AutomaticZoomFit.Text = "Automatic Focus On Selection";
      this.ToolStripButton_AutomaticZoomFit.ToolTipText = "Toggle Automatic Focus On Selection";
      this.ToolStripButton_AutomaticZoomFit.Click += new System.EventHandler(this.ToolStripButton_AutomaticZoomFit_Click);
      // 
      // ToolStripSplitButton_SelectionFilter
      // 
      this.ToolStripSplitButton_SelectionFilter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_SelectionFilter.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripSplitButton_SelectionFilterUse,
            this.ToolStripSplitButton_SelectionFilterOtherShapes,
            this.toolStripMenuItem16});
      this.ToolStripSplitButton_SelectionFilter.Image = global::Editor.Properties.Resources.toolbar_filter;
      this.ToolStripSplitButton_SelectionFilter.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_SelectionFilter.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_SelectionFilter.Name = "ToolStripSplitButton_SelectionFilter";
      this.ToolStripSplitButton_SelectionFilter.Size = new System.Drawing.Size(40, 28);
      this.ToolStripSplitButton_SelectionFilter.Text = "Configure Shape Selection Filter";
      this.ToolStripSplitButton_SelectionFilter.ToolTipText = "Configures the Shape Selection Filter";
      this.ToolStripSplitButton_SelectionFilter.ButtonClick += new System.EventHandler(this.ToolStripSplitButton_SelectionFilter_Click);
      this.ToolStripSplitButton_SelectionFilter.DropDownOpening += new System.EventHandler(this.ToolStripSplitButton_SelectionFilter_DropDownOpening);
      // 
      // ToolStripSplitButton_SelectionFilterUse
      // 
      this.ToolStripSplitButton_SelectionFilterUse.CheckOnClick = true;
      this.ToolStripSplitButton_SelectionFilterUse.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_SelectionFilterUse.Name = "ToolStripSplitButton_SelectionFilterUse";
      this.ToolStripSplitButton_SelectionFilterUse.Size = new System.Drawing.Size(191, 22);
      this.ToolStripSplitButton_SelectionFilterUse.Text = "Enable Selection Filter";
      this.ToolStripSplitButton_SelectionFilterUse.ToolTipText = "Enables the Shape Selection Filter";
      this.ToolStripSplitButton_SelectionFilterUse.Click += new System.EventHandler(this.ToolStripSplitButton_SelectionFilterUse_Click);
      // 
      // ToolStripSplitButton_SelectionFilterOtherShapes
      // 
      this.ToolStripSplitButton_SelectionFilterOtherShapes.CheckOnClick = true;
      this.ToolStripSplitButton_SelectionFilterOtherShapes.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_SelectionFilterOtherShapes.Name = "ToolStripSplitButton_SelectionFilterOtherShapes";
      this.ToolStripSplitButton_SelectionFilterOtherShapes.Size = new System.Drawing.Size(191, 22);
      this.ToolStripSplitButton_SelectionFilterOtherShapes.Text = "Other Shapes Pickable";
      this.ToolStripSplitButton_SelectionFilterOtherShapes.ToolTipText = "Determines whether other shapes type not in the list are still pickable";
      this.ToolStripSplitButton_SelectionFilterOtherShapes.Click += new System.EventHandler(this.ToolStripSplitButton_SelectionFilterOtherShapes_Click);
      // 
      // toolStripMenuItem16
      // 
      this.toolStripMenuItem16.Name = "toolStripMenuItem16";
      this.toolStripMenuItem16.Size = new System.Drawing.Size(188, 6);
      // 
      // ToolStripSplitButton_Rendering
      // 
      this.ToolStripSplitButton_Rendering.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_Rendering.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStrip_Rendering_Solid,
            this.ToolStrip_Rendering_Wireframe,
            this.ToolStrip_Rendering_Sep1,
            this.ToolStrip_Rendering_Sep2,
            this.ToolStrip_Rendering_AffectsScene,
            this.ToolStrip_Rendering_AffectsSelection});
      this.ToolStripSplitButton_Rendering.Image = global::Editor.Properties.Resources.view_mode;
      this.ToolStripSplitButton_Rendering.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_Rendering.Name = "ToolStripSplitButton_Rendering";
      this.ToolStripSplitButton_Rendering.Size = new System.Drawing.Size(40, 28);
      this.ToolStripSplitButton_Rendering.ToolTipText = "Rendering & Shading Modes";
      this.ToolStripSplitButton_Rendering.ButtonClick += new System.EventHandler(this.ToolStripSplitButton_Rendering_ButtonClick);
      this.ToolStripSplitButton_Rendering.DropDownOpening += new System.EventHandler(this.ToolStripSplitButton_Rendering_DropDownOpening);
      // 
      // ToolStrip_Rendering_Solid
      // 
      this.ToolStrip_Rendering_Solid.Image = global::Editor.Properties.Resources.view_solid;
      this.ToolStrip_Rendering_Solid.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStrip_Rendering_Solid.Name = "ToolStrip_Rendering_Solid";
      this.ToolStrip_Rendering_Solid.Size = new System.Drawing.Size(208, 22);
      this.ToolStrip_Rendering_Solid.Text = "Solid";
      this.ToolStrip_Rendering_Solid.Click += new System.EventHandler(this.solidToolStripMenuItem_Click);
      // 
      // ToolStrip_Rendering_Wireframe
      // 
      this.ToolStrip_Rendering_Wireframe.Image = global::Editor.Properties.Resources.view_wireframe;
      this.ToolStrip_Rendering_Wireframe.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStrip_Rendering_Wireframe.Name = "ToolStrip_Rendering_Wireframe";
      this.ToolStrip_Rendering_Wireframe.Size = new System.Drawing.Size(208, 22);
      this.ToolStrip_Rendering_Wireframe.Text = "Wireframe";
      this.ToolStrip_Rendering_Wireframe.Click += new System.EventHandler(this.wireframeToolStripMenuItem_Click);
      // 
      // ToolStrip_Rendering_Sep1
      // 
      this.ToolStrip_Rendering_Sep1.Name = "ToolStrip_Rendering_Sep1";
      this.ToolStrip_Rendering_Sep1.Size = new System.Drawing.Size(205, 6);
      // 
      // ToolStrip_Rendering_Sep2
      // 
      this.ToolStrip_Rendering_Sep2.Name = "ToolStrip_Rendering_Sep2";
      this.ToolStrip_Rendering_Sep2.Size = new System.Drawing.Size(205, 6);
      this.ToolStrip_Rendering_Sep2.Visible = false;
      // 
      // ToolStrip_Rendering_AffectsScene
      // 
      this.ToolStrip_Rendering_AffectsScene.Name = "ToolStrip_Rendering_AffectsScene";
      this.ToolStrip_Rendering_AffectsScene.Size = new System.Drawing.Size(208, 22);
      this.ToolStrip_Rendering_AffectsScene.Text = "Shading Affects Scene";
      this.ToolStrip_Rendering_AffectsScene.Visible = false;
      // 
      // ToolStrip_Rendering_AffectsSelection
      // 
      this.ToolStrip_Rendering_AffectsSelection.Name = "ToolStrip_Rendering_AffectsSelection";
      this.ToolStrip_Rendering_AffectsSelection.Size = new System.Drawing.Size(208, 22);
      this.ToolStrip_Rendering_AffectsSelection.Text = "Shading Affects Selection";
      this.ToolStrip_Rendering_AffectsSelection.Visible = false;
      // 
      // ToolStripSplitButton_DebugFlags
      // 
      this.ToolStripSplitButton_DebugFlags.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_DebugFlags.Image = global::Editor.Properties.Resources.flags;
      this.ToolStripSplitButton_DebugFlags.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_DebugFlags.Name = "ToolStripSplitButton_DebugFlags";
      this.ToolStripSplitButton_DebugFlags.Size = new System.Drawing.Size(40, 28);
      this.ToolStripSplitButton_DebugFlags.ToolTipText = "Engine Debug Flags";
      this.ToolStripSplitButton_DebugFlags.ButtonClick += new System.EventHandler(this.ToolStripSplitButton_DebugFlags_ButtonClick);
      this.ToolStripSplitButton_DebugFlags.DropDownOpening += new System.EventHandler(this.ToolStripSplitButton_DebugFlags_DropDownOpening);
      // 
      // toolStripDropDownButton_PerspectiveMode
      // 
      this.toolStripDropDownButton_PerspectiveMode.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.toolStripDropDownButton_PerspectiveMode.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem_Perspective,
            this.ToolStripMenuItem_PerspectiveTop,
            this.ToolStripMenuItem_PerspectiveFront,
            this.ToolStripMenuItem_PerspectiveRight,
            this.toolStripMenuItem19,
            this.ToolStripMenuItem_Top,
            this.ToolStripMenuItem_Front,
            this.ToolStripMenuItem_Right,
            this.toolStripMenuItem1,
            this.ToolStripMenuItem_View_EditClipRange,
            this.ToolStripMenuItem_View_Size,
            this.ToolStripMenuItem_View_SafeMode,
            this.toolStripMenuItem14,
            this.ToolStripMenuItem_View_Properties});
      this.toolStripDropDownButton_PerspectiveMode.Image = global::Editor.Properties.Resources.view_properties;
      this.toolStripDropDownButton_PerspectiveMode.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.toolStripDropDownButton_PerspectiveMode.Name = "toolStripDropDownButton_PerspectiveMode";
      this.toolStripDropDownButton_PerspectiveMode.Size = new System.Drawing.Size(37, 28);
      this.toolStripDropDownButton_PerspectiveMode.Text = "3D View";
      this.toolStripDropDownButton_PerspectiveMode.ToolTipText = "View Mode";
      this.toolStripDropDownButton_PerspectiveMode.DropDownOpening += new System.EventHandler(this.toolStripDropDownButton_PerspectiveMode_DropDownOpening);
      // 
      // ToolStripMenuItem_Perspective
      // 
      this.ToolStripMenuItem_Perspective.Image = global::Editor.Properties.Resources.view_perspective;
      this.ToolStripMenuItem_Perspective.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_Perspective.Name = "ToolStripMenuItem_Perspective";
      this.ToolStripMenuItem_Perspective.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_Perspective.Text = "Perspective";
      this.ToolStripMenuItem_Perspective.ToolTipText = "Switches View to Perspective Mode";
      this.ToolStripMenuItem_Perspective.Click += new System.EventHandler(this.perspectiveToolStripMenuItem_Perspective_Click);
      // 
      // ToolStripMenuItem_PerspectiveTop
      // 
      this.ToolStripMenuItem_PerspectiveTop.Image = global::Editor.Properties.Resources.toolbar_zgizmo;
      this.ToolStripMenuItem_PerspectiveTop.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_PerspectiveTop.Name = "ToolStripMenuItem_PerspectiveTop";
      this.ToolStripMenuItem_PerspectiveTop.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_PerspectiveTop.Text = "  Orient Top";
      this.ToolStripMenuItem_PerspectiveTop.ToolTipText = "Reorients camera to a top-down perspective view";
      this.ToolStripMenuItem_PerspectiveTop.Click += new System.EventHandler(this.perspectiveToolStripMenuItem_PerspectiveTop_Click);
      // 
      // ToolStripMenuItem_PerspectiveFront
      // 
      this.ToolStripMenuItem_PerspectiveFront.Image = global::Editor.Properties.Resources.toolbar_xgizmo;
      this.ToolStripMenuItem_PerspectiveFront.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_PerspectiveFront.Name = "ToolStripMenuItem_PerspectiveFront";
      this.ToolStripMenuItem_PerspectiveFront.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_PerspectiveFront.Text = "  Orient Front";
      this.ToolStripMenuItem_PerspectiveFront.ToolTipText = "Reorients camera to a front-facing perspective view";
      this.ToolStripMenuItem_PerspectiveFront.Click += new System.EventHandler(this.perspectiveToolStripMenuItem_PerspectiveFront_Click);
      // 
      // ToolStripMenuItem_PerspectiveRight
      // 
      this.ToolStripMenuItem_PerspectiveRight.Image = global::Editor.Properties.Resources.toolbar_ygizmo;
      this.ToolStripMenuItem_PerspectiveRight.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_PerspectiveRight.Name = "ToolStripMenuItem_PerspectiveRight";
      this.ToolStripMenuItem_PerspectiveRight.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_PerspectiveRight.Text = "  Orient Right";
      this.ToolStripMenuItem_PerspectiveRight.ToolTipText = "Reorients camera to a right-facing perspective view";
      this.ToolStripMenuItem_PerspectiveRight.Click += new System.EventHandler(this.perspectiveToolStripMenuItem_PerspectiveRight_Click);
      // 
      // toolStripMenuItem19
      // 
      this.toolStripMenuItem19.Name = "toolStripMenuItem19";
      this.toolStripMenuItem19.Size = new System.Drawing.Size(251, 6);
      // 
      // ToolStripMenuItem_Top
      // 
      this.ToolStripMenuItem_Top.Image = ((System.Drawing.Image)(resources.GetObject("ToolStripMenuItem_Top.Image")));
      this.ToolStripMenuItem_Top.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_Top.Name = "ToolStripMenuItem_Top";
      this.ToolStripMenuItem_Top.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_Top.Text = "Orthogonal Top";
      this.ToolStripMenuItem_Top.ToolTipText = "Switches View to Orthographic Top View";
      this.ToolStripMenuItem_Top.Click += new System.EventHandler(this.topToolStripMenuItem_Top_Click);
      // 
      // ToolStripMenuItem_Front
      // 
      this.ToolStripMenuItem_Front.Image = global::Editor.Properties.Resources.view_front;
      this.ToolStripMenuItem_Front.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_Front.Name = "ToolStripMenuItem_Front";
      this.ToolStripMenuItem_Front.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_Front.Text = "Orthogonal Front";
      this.ToolStripMenuItem_Front.ToolTipText = "Switches View to Orthographic Front View";
      this.ToolStripMenuItem_Front.Click += new System.EventHandler(this.frontToolStripMenuItem_Front_Click);
      // 
      // ToolStripMenuItem_Right
      // 
      this.ToolStripMenuItem_Right.Image = global::Editor.Properties.Resources.view_right;
      this.ToolStripMenuItem_Right.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_Right.Name = "ToolStripMenuItem_Right";
      this.ToolStripMenuItem_Right.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_Right.Text = "Orthogonal Right";
      this.ToolStripMenuItem_Right.ToolTipText = "Switches View to Orthographic Right View";
      this.ToolStripMenuItem_Right.Click += new System.EventHandler(this.rightToolStripMenuItem_Right_Click);
      // 
      // toolStripMenuItem1
      // 
      this.toolStripMenuItem1.Name = "toolStripMenuItem1";
      this.toolStripMenuItem1.Size = new System.Drawing.Size(251, 6);
      // 
      // ToolStripMenuItem_View_EditClipRange
      // 
      this.ToolStripMenuItem_View_EditClipRange.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_EditClipRange.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_EditClipRange.Name = "ToolStripMenuItem_View_EditClipRange";
      this.ToolStripMenuItem_View_EditClipRange.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_View_EditClipRange.Text = "Edit Clip Range (Orthogonal View)";
      this.ToolStripMenuItem_View_EditClipRange.ToolTipText = "Edit Orthographic Clip Range";
      this.ToolStripMenuItem_View_EditClipRange.Click += new System.EventHandler(this.toolStripButton_SelectViewBox_Click);
      // 
      // ToolStripMenuItem_View_Size
      // 
      this.ToolStripMenuItem_View_Size.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem_View_SetSize,
            this.toolStripMenuItem12});
      this.ToolStripMenuItem_View_Size.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_Size.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_Size.Name = "ToolStripMenuItem_View_Size";
      this.ToolStripMenuItem_View_Size.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_View_Size.Text = "Engine View Size";
      this.ToolStripMenuItem_View_Size.ToolTipText = "Set the Engine View Size (Only when panel is undocked)";
      // 
      // ToolStripMenuItem_View_SetSize
      // 
      this.ToolStripMenuItem_View_SetSize.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_SetSize.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_SetSize.Name = "ToolStripMenuItem_View_SetSize";
      this.ToolStripMenuItem_View_SetSize.Size = new System.Drawing.Size(186, 22);
      this.ToolStripMenuItem_View_SetSize.Text = "Set Custom View Size";
      this.ToolStripMenuItem_View_SetSize.Click += new System.EventHandler(this.ToolStripMenuItem_View_SetSize_Click);
      // 
      // toolStripMenuItem12
      // 
      this.toolStripMenuItem12.Name = "toolStripMenuItem12";
      this.toolStripMenuItem12.Size = new System.Drawing.Size(183, 6);
      // 
      // ToolStripMenuItem_View_SafeMode
      // 
      this.ToolStripMenuItem_View_SafeMode.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ToolStripMenuItem_View_SetCustomSafeMode,
            this.ToolStripMenuItem_View_DisableSafeMode,
            this.toolStripMenuItem13});
      this.ToolStripMenuItem_View_SafeMode.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_SafeMode.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_SafeMode.Name = "ToolStripMenuItem_View_SafeMode";
      this.ToolStripMenuItem_View_SafeMode.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_View_SafeMode.Text = "Engine View Safe Mode";
      this.ToolStripMenuItem_View_SafeMode.ToolTipText = "Set the Engine View Safe Mode";
      // 
      // ToolStripMenuItem_View_SetCustomSafeMode
      // 
      this.ToolStripMenuItem_View_SetCustomSafeMode.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_SetCustomSafeMode.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_SetCustomSafeMode.Name = "ToolStripMenuItem_View_SetCustomSafeMode";
      this.ToolStripMenuItem_View_SetCustomSafeMode.Size = new System.Drawing.Size(194, 22);
      this.ToolStripMenuItem_View_SetCustomSafeMode.Text = "Set Custom Safe Mode";
      this.ToolStripMenuItem_View_SetCustomSafeMode.Click += new System.EventHandler(this.ToolStripMenuItem_View_SetSafeMode_Click);
      // 
      // ToolStripMenuItem_View_DisableSafeMode
      // 
      this.ToolStripMenuItem_View_DisableSafeMode.Image = global::Editor.Properties.Resources.fit_to_size;
      this.ToolStripMenuItem_View_DisableSafeMode.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_DisableSafeMode.Name = "ToolStripMenuItem_View_DisableSafeMode";
      this.ToolStripMenuItem_View_DisableSafeMode.Size = new System.Drawing.Size(194, 22);
      this.ToolStripMenuItem_View_DisableSafeMode.Text = "Disable";
      this.ToolStripMenuItem_View_DisableSafeMode.Click += new System.EventHandler(this.disableToolStripMenuItem_Click);
      // 
      // toolStripMenuItem13
      // 
      this.toolStripMenuItem13.Name = "toolStripMenuItem13";
      this.toolStripMenuItem13.Size = new System.Drawing.Size(191, 6);
      // 
      // toolStripMenuItem14
      // 
      this.toolStripMenuItem14.Name = "toolStripMenuItem14";
      this.toolStripMenuItem14.Size = new System.Drawing.Size(251, 6);
      // 
      // ToolStripMenuItem_View_Properties
      // 
      this.ToolStripMenuItem_View_Properties.Image = global::Editor.Properties.Resources.camera2;
      this.ToolStripMenuItem_View_Properties.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripMenuItem_View_Properties.Name = "ToolStripMenuItem_View_Properties";
      this.ToolStripMenuItem_View_Properties.Size = new System.Drawing.Size(254, 22);
      this.ToolStripMenuItem_View_Properties.Text = "Viewport Preview Settings";
      this.ToolStripMenuItem_View_Properties.ToolTipText = "Configure Viewport Preview Settings (FOV or Filtering)";
      this.ToolStripMenuItem_View_Properties.Click += new System.EventHandler(this.viewPropertiesToolStripMenuItem_Click);
      // 
      // toolStripSeparator4
      // 
      this.toolStripSeparator4.Name = "toolStripSeparator4";
      this.toolStripSeparator4.Size = new System.Drawing.Size(6, 31);
      // 
      // contextMenuStrip_SelShapes
      // 
      this.contextMenuStrip_SelShapes.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.transformGizmoToolStripMenuItem,
            this.AlignmentToolStripMenuItem,
            this.dropToFloorToolStripMenuItem,
            this.linksToolStripMenuItem,
            this.moveToToolStripMenuItem,
            this.toolStripMenuItem2,
            this.selectInTreeViewToolStripMenuItem,
            this.lockShapesToolStripMenuItem,
            this.toolStripMenuItem3,
            this.cutToolStripMenuItem,
            this.copyToolStripMenuItem,
            this.deleteToolStripMenuItem});
      this.contextMenuStrip_SelShapes.Name = "contextMenuStrip1";
      this.contextMenuStrip_SelShapes.Size = new System.Drawing.Size(173, 236);
      this.contextMenuStrip_SelShapes.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_SelShapes_Opening);
      // 
      // transformGizmoToolStripMenuItem
      // 
      this.transformGizmoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.moveToolStripMenuItem,
            this.rotateToolStripMenuItem,
            this.scaleToolStripMenuItem});
      this.transformGizmoToolStripMenuItem.Image = global::Editor.Properties.Resources.gizmo;
      this.transformGizmoToolStripMenuItem.Name = "transformGizmoToolStripMenuItem";
      this.transformGizmoToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.transformGizmoToolStripMenuItem.Text = "Transform Gizmo";
      // 
      // moveToolStripMenuItem
      // 
      this.moveToolStripMenuItem.Image = global::Editor.Properties.Resources.MoveShape;
      this.moveToolStripMenuItem.Name = "moveToolStripMenuItem";
      this.moveToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
      this.moveToolStripMenuItem.Text = "Move";
      this.moveToolStripMenuItem.Click += new System.EventHandler(this.toolStripButton_Move_Click);
      // 
      // rotateToolStripMenuItem
      // 
      this.rotateToolStripMenuItem.Image = global::Editor.Properties.Resources.RotateShape;
      this.rotateToolStripMenuItem.Name = "rotateToolStripMenuItem";
      this.rotateToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
      this.rotateToolStripMenuItem.Text = "Rotate";
      this.rotateToolStripMenuItem.Click += new System.EventHandler(this.toolStripButton_Rotate_Click);
      // 
      // scaleToolStripMenuItem
      // 
      this.scaleToolStripMenuItem.Image = global::Editor.Properties.Resources.ScaleShape;
      this.scaleToolStripMenuItem.Name = "scaleToolStripMenuItem";
      this.scaleToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
      this.scaleToolStripMenuItem.Text = "Scale";
      // 
      // AlignmentToolStripMenuItem
      // 
      this.AlignmentToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AlignToGridToolStripMenuItem,
            this.AlignToObjectToolStripMenuItem,
            this.AlignToHitPointToolStripMenuItem,
            this.AlignToHitPointNormalToolStripMenuItem});
      this.AlignmentToolStripMenuItem.Image = global::Editor.Properties.Resources.align_16;
      this.AlignmentToolStripMenuItem.Name = "AlignmentToolStripMenuItem";
      this.AlignmentToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.AlignmentToolStripMenuItem.Text = "Alignment";
      // 
      // AlignToGridToolStripMenuItem
      // 
      this.AlignToGridToolStripMenuItem.Image = global::Editor.Properties.Resources.setup_grid;
      this.AlignToGridToolStripMenuItem.Name = "AlignToGridToolStripMenuItem";
      this.AlignToGridToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
      this.AlignToGridToolStripMenuItem.Text = "Align to Grid";
      this.AlignToGridToolStripMenuItem.ToolTipText = "Snaps Selected Shape(s) to the Grid";
      this.AlignToGridToolStripMenuItem.Click += new System.EventHandler(this.AlignToGridToolStripMenuItem_Click);
      // 
      // AlignToObjectToolStripMenuItem
      // 
      this.AlignToObjectToolStripMenuItem.Image = global::Editor.Properties.Resources.align_16;
      this.AlignToObjectToolStripMenuItem.Name = "AlignToObjectToolStripMenuItem";
      this.AlignToObjectToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
      this.AlignToObjectToolStripMenuItem.Text = "Align to Object";
      this.AlignToObjectToolStripMenuItem.ToolTipText = "Aligns Selected Shape(s) to another Shape";
      this.AlignToObjectToolStripMenuItem.Click += new System.EventHandler(this.AlignToObjectToolStripMenuItem_Click);
      // 
      // AlignToHitPointToolStripMenuItem
      // 
      this.AlignToHitPointToolStripMenuItem.Image = global::Editor.Properties.Resources.node;
      this.AlignToHitPointToolStripMenuItem.Name = "AlignToHitPointToolStripMenuItem";
      this.AlignToHitPointToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
      this.AlignToHitPointToolStripMenuItem.Text = "Align to Hit Point";
      this.AlignToHitPointToolStripMenuItem.ToolTipText = "Aligns selected Shape(s) to the Hit Point traced in the Engine View";
      this.AlignToHitPointToolStripMenuItem.Click += new System.EventHandler(this.AlignToHitPointToolStripMenuItem_Click);
      // 
      // AlignToHitPointNormalToolStripMenuItem
      // 
      this.AlignToHitPointNormalToolStripMenuItem.Image = global::Editor.Properties.Resources.align_normal;
      this.AlignToHitPointNormalToolStripMenuItem.Name = "AlignToHitPointNormalToolStripMenuItem";
      this.AlignToHitPointNormalToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
      this.AlignToHitPointNormalToolStripMenuItem.Text = "Align to Hit Point Normal";
      this.AlignToHitPointNormalToolStripMenuItem.ToolTipText = "Aligns selected Shape(s) to the Hit Point traced in the Engine View (Takes Normal" +
    " Vector into account)";
      this.AlignToHitPointNormalToolStripMenuItem.Click += new System.EventHandler(this.AlignToHitPointNormalToolStripMenuItem_Click);
      // 
      // dropToFloorToolStripMenuItem
      // 
      this.dropToFloorToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.pivotToolStripMenuItem,
            this.boundingBoxToolStripMenuItem,
            this.bottomCenterToolStripMenuItem,
            this.toolStripMenuItem8,
            this.directionFloorToolStripMenuItem,
            this.directionCeilingToolStripMenuItem,
            this.directionPosXToolStripMenuItem,
            this.directionNegXToolStripMenuItem,
            this.directionPosYToolStripMenuItem,
            this.directionNegYToolStripMenuItem});
      this.dropToFloorToolStripMenuItem.Image = global::Editor.Properties.Resources.arrow_down_blue;
      this.dropToFloorToolStripMenuItem.Name = "dropToFloorToolStripMenuItem";
      this.dropToFloorToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.dropToFloorToolStripMenuItem.Text = "Drop to Floor";
      this.dropToFloorToolStripMenuItem.ToolTipText = "Drop the shape(s) until they collide with floor geometry";
      this.dropToFloorToolStripMenuItem.DropDownOpening += new System.EventHandler(this.dropToFloorToolStripMenuItem_DropDownOpening);
      // 
      // pivotToolStripMenuItem
      // 
      this.pivotToolStripMenuItem.Name = "pivotToolStripMenuItem";
      this.pivotToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.pivotToolStripMenuItem.Text = "Pivot";
      this.pivotToolStripMenuItem.ToolTipText = "Uses the shape\'s pivot";
      this.pivotToolStripMenuItem.Click += new System.EventHandler(this.pivotToolStripMenuItem_Click);
      // 
      // boundingBoxToolStripMenuItem
      // 
      this.boundingBoxToolStripMenuItem.Name = "boundingBoxToolStripMenuItem";
      this.boundingBoxToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.boundingBoxToolStripMenuItem.Text = "Bounding box";
      this.boundingBoxToolStripMenuItem.ToolTipText = "Uses the full bounding box for collision";
      this.boundingBoxToolStripMenuItem.Click += new System.EventHandler(this.boundingBoxToolStripMenuItem_Click);
      // 
      // bottomCenterToolStripMenuItem
      // 
      this.bottomCenterToolStripMenuItem.Name = "bottomCenterToolStripMenuItem";
      this.bottomCenterToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.bottomCenterToolStripMenuItem.Text = "Bottom center";
      this.bottomCenterToolStripMenuItem.ToolTipText = "Uses the bottom center for collision";
      this.bottomCenterToolStripMenuItem.Click += new System.EventHandler(this.bottomCenterToolStripMenuItem_Click);
      // 
      // toolStripMenuItem8
      // 
      this.toolStripMenuItem8.Name = "toolStripMenuItem8";
      this.toolStripMenuItem8.Size = new System.Drawing.Size(165, 6);
      // 
      // directionFloorToolStripMenuItem
      // 
      this.directionFloorToolStripMenuItem.Name = "directionFloorToolStripMenuItem";
      this.directionFloorToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionFloorToolStripMenuItem.Text = "Direction : Floor";
      this.directionFloorToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // directionCeilingToolStripMenuItem
      // 
      this.directionCeilingToolStripMenuItem.Name = "directionCeilingToolStripMenuItem";
      this.directionCeilingToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionCeilingToolStripMenuItem.Text = "Direction : Ceiling";
      this.directionCeilingToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // directionPosXToolStripMenuItem
      // 
      this.directionPosXToolStripMenuItem.Name = "directionPosXToolStripMenuItem";
      this.directionPosXToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionPosXToolStripMenuItem.Text = "Direction : Pos X";
      this.directionPosXToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // directionNegXToolStripMenuItem
      // 
      this.directionNegXToolStripMenuItem.Name = "directionNegXToolStripMenuItem";
      this.directionNegXToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionNegXToolStripMenuItem.Text = "Direction : Neg X";
      this.directionNegXToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // directionPosYToolStripMenuItem
      // 
      this.directionPosYToolStripMenuItem.Name = "directionPosYToolStripMenuItem";
      this.directionPosYToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionPosYToolStripMenuItem.Text = "Direction : Pos Y";
      this.directionPosYToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // directionNegYToolStripMenuItem
      // 
      this.directionNegYToolStripMenuItem.Name = "directionNegYToolStripMenuItem";
      this.directionNegYToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
      this.directionNegYToolStripMenuItem.Text = "Direction : Neg Y";
      this.directionNegYToolStripMenuItem.Click += new System.EventHandler(this.directionFloorToolStripMenuItem_Click);
      // 
      // linksToolStripMenuItem
      // 
      this.linksToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.unlinkFromSourcesToolStripMenuItem,
            this.unlinkAllTargetsToolStripMenuItem});
      this.linksToolStripMenuItem.Image = global::Editor.Properties.Resources.links;
      this.linksToolStripMenuItem.Name = "linksToolStripMenuItem";
      this.linksToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.linksToolStripMenuItem.Text = "Links";
      // 
      // unlinkFromSourcesToolStripMenuItem
      // 
      this.unlinkFromSourcesToolStripMenuItem.Name = "unlinkFromSourcesToolStripMenuItem";
      this.unlinkFromSourcesToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
      this.unlinkFromSourcesToolStripMenuItem.Text = "Unlink from Sources";
      this.unlinkFromSourcesToolStripMenuItem.ToolTipText = "Remove all link sources";
      this.unlinkFromSourcesToolStripMenuItem.Click += new System.EventHandler(this.unlinkFromSourcesToolStripMenuItem_Click);
      // 
      // unlinkAllTargetsToolStripMenuItem
      // 
      this.unlinkAllTargetsToolStripMenuItem.Name = "unlinkAllTargetsToolStripMenuItem";
      this.unlinkAllTargetsToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
      this.unlinkAllTargetsToolStripMenuItem.Text = "Unlink all Targets";
      this.unlinkAllTargetsToolStripMenuItem.ToolTipText = "Remove all targets";
      this.unlinkAllTargetsToolStripMenuItem.Click += new System.EventHandler(this.unlinkAllTargetsToolStripMenuItem_Click);
      // 
      // moveToToolStripMenuItem
      // 
      this.moveToToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cameraPositionToolStripMenuItem,
            this.shapeOriginToolStripMenuItem});
      this.moveToToolStripMenuItem.Image = global::Editor.Properties.Resources.gizmo;
      this.moveToToolStripMenuItem.Name = "moveToToolStripMenuItem";
      this.moveToToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.moveToToolStripMenuItem.Text = "Move to";
      // 
      // cameraPositionToolStripMenuItem
      // 
      this.cameraPositionToolStripMenuItem.Name = "cameraPositionToolStripMenuItem";
      this.cameraPositionToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
      this.cameraPositionToolStripMenuItem.Text = "Camera Position";
      this.cameraPositionToolStripMenuItem.Click += new System.EventHandler(this.cameraPositionToolStripMenuItem_Click);
      // 
      // shapeOriginToolStripMenuItem
      // 
      this.shapeOriginToolStripMenuItem.Name = "shapeOriginToolStripMenuItem";
      this.shapeOriginToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
      this.shapeOriginToolStripMenuItem.Text = "Shape Origin";
      this.shapeOriginToolStripMenuItem.Click += new System.EventHandler(this.shapeOriginToolStripMenuItem_Click);
      // 
      // toolStripMenuItem2
      // 
      this.toolStripMenuItem2.Name = "toolStripMenuItem2";
      this.toolStripMenuItem2.Size = new System.Drawing.Size(169, 6);
      // 
      // selectInTreeViewToolStripMenuItem
      // 
      this.selectInTreeViewToolStripMenuItem.Image = global::Editor.Properties.Resources.child_nodes_icon;
      this.selectInTreeViewToolStripMenuItem.Name = "selectInTreeViewToolStripMenuItem";
      this.selectInTreeViewToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.selectInTreeViewToolStripMenuItem.Text = "Select in Tree View";
      this.selectInTreeViewToolStripMenuItem.Click += new System.EventHandler(this.selectInTreeViewToolStripMenuItem_Click);
      // 
      // lockShapesToolStripMenuItem
      // 
      this.lockShapesToolStripMenuItem.Image = global::Editor.Properties.Resources._lock;
      this.lockShapesToolStripMenuItem.Name = "lockShapesToolStripMenuItem";
      this.lockShapesToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.lockShapesToolStripMenuItem.Text = "Lock Shapes";
      this.lockShapesToolStripMenuItem.Click += new System.EventHandler(this.lockShapesToolStripMenuItem_Click);
      // 
      // toolStripMenuItem3
      // 
      this.toolStripMenuItem3.Name = "toolStripMenuItem3";
      this.toolStripMenuItem3.Size = new System.Drawing.Size(169, 6);
      // 
      // cutToolStripMenuItem
      // 
      this.cutToolStripMenuItem.Image = global::Editor.Properties.Resources.cut;
      this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
      this.cutToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.cutToolStripMenuItem.Text = "Cut";
      this.cutToolStripMenuItem.ToolTipText = "Cut the selected shape(s)";
      this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
      // 
      // copyToolStripMenuItem
      // 
      this.copyToolStripMenuItem.Image = global::Editor.Properties.Resources.copy;
      this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
      this.copyToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.copyToolStripMenuItem.Text = "Copy";
      this.copyToolStripMenuItem.ToolTipText = "Copy the selected shape(s)";
      this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
      // 
      // deleteToolStripMenuItem
      // 
      this.deleteToolStripMenuItem.Image = global::Editor.Properties.Resources.delete2;
      this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
      this.deleteToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
      this.deleteToolStripMenuItem.Text = "Delete";
      this.deleteToolStripMenuItem.ToolTipText = "Delete the selected shape(s)";
      this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
      // 
      // contextMenuStrip_View
      // 
      this.contextMenuStrip_View.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.pasteAtCursorToolStripMenuItem,
            this.toolStripMenuItem4,
            this.gridToolStripMenuItem,
            this.showGridToolStripMenuItem,
            this.toolStripMenuItem5,
            this.renderingToolStripMenuItem,
            this.shadingToolStripMenuItem,
            this.debugFlagsToolStripMenuItem,
            this.pickToolStripMenuItem,
            this.toolStripMenuItem6,
            this.createToolStripMenuItem,
            this.shapeOriginToolStripMenuItem1,
            this.zonesToolStripMenuItem});
      this.contextMenuStrip_View.Name = "contextMenuStrip_View";
      this.contextMenuStrip_View.Size = new System.Drawing.Size(154, 242);
      this.contextMenuStrip_View.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_View_Opening);
      // 
      // pasteAtCursorToolStripMenuItem
      // 
      this.pasteAtCursorToolStripMenuItem.Image = global::Editor.Properties.Resources.paste;
      this.pasteAtCursorToolStripMenuItem.Name = "pasteAtCursorToolStripMenuItem";
      this.pasteAtCursorToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.pasteAtCursorToolStripMenuItem.Text = "Paste at Cursor";
      this.pasteAtCursorToolStripMenuItem.ToolTipText = "Pastes the current clipboard content to the scene position under the cursor";
      this.pasteAtCursorToolStripMenuItem.Click += new System.EventHandler(this.pasteAtCursorToolStripMenuItem_Click);
      // 
      // toolStripMenuItem4
      // 
      this.toolStripMenuItem4.Name = "toolStripMenuItem4";
      this.toolStripMenuItem4.Size = new System.Drawing.Size(150, 6);
      // 
      // gridToolStripMenuItem
      // 
      this.gridToolStripMenuItem.Image = global::Editor.Properties.Resources.setup_grid;
      this.gridToolStripMenuItem.Name = "gridToolStripMenuItem";
      this.gridToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.gridToolStripMenuItem.Text = "Setup Grid";
      this.gridToolStripMenuItem.ToolTipText = "Setup the Grid Snapping Options for Move and Rotation Grids";
      this.gridToolStripMenuItem.Click += new System.EventHandler(this.setupGridToolStripMenuItem_Click);
      // 
      // showGridToolStripMenuItem
      // 
      this.showGridToolStripMenuItem.Checked = true;
      this.showGridToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
      this.showGridToolStripMenuItem.Name = "showGridToolStripMenuItem";
      this.showGridToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.showGridToolStripMenuItem.Text = "Show Grid";
      this.showGridToolStripMenuItem.Click += new System.EventHandler(this.showGridToolStripMenuItem_Click);
      // 
      // toolStripMenuItem5
      // 
      this.toolStripMenuItem5.Name = "toolStripMenuItem5";
      this.toolStripMenuItem5.Size = new System.Drawing.Size(150, 6);
      // 
      // renderingToolStripMenuItem
      // 
      this.renderingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.solidToolStripMenuItem,
            this.wireframeToolStripMenuItem});
      this.renderingToolStripMenuItem.Image = global::Editor.Properties.Resources.view_default;
      this.renderingToolStripMenuItem.Name = "renderingToolStripMenuItem";
      this.renderingToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.renderingToolStripMenuItem.Text = "Rendering";
      this.renderingToolStripMenuItem.ToolTipText = "Rasterizer options fotr the view";
      // 
      // solidToolStripMenuItem
      // 
      this.solidToolStripMenuItem.Image = global::Editor.Properties.Resources.view_solid;
      this.solidToolStripMenuItem.Name = "solidToolStripMenuItem";
      this.solidToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
      this.solidToolStripMenuItem.Text = "Solid";
      this.solidToolStripMenuItem.Click += new System.EventHandler(this.solidToolStripMenuItem_Click);
      // 
      // wireframeToolStripMenuItem
      // 
      this.wireframeToolStripMenuItem.Image = global::Editor.Properties.Resources.view_wireframe;
      this.wireframeToolStripMenuItem.Name = "wireframeToolStripMenuItem";
      this.wireframeToolStripMenuItem.Size = new System.Drawing.Size(129, 22);
      this.wireframeToolStripMenuItem.Text = "Wireframe";
      this.wireframeToolStripMenuItem.Click += new System.EventHandler(this.wireframeToolStripMenuItem_Click);
      // 
      // shadingToolStripMenuItem
      // 
      this.shadingToolStripMenuItem.Image = global::Editor.Properties.Resources.view_solid;
      this.shadingToolStripMenuItem.Name = "shadingToolStripMenuItem";
      this.shadingToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.shadingToolStripMenuItem.Text = "Shading";
      this.shadingToolStripMenuItem.ToolTipText = "Replaces the rendering with a renderloop that applies shading options to the rend" +
    "ered geometry";
      // 
      // debugFlagsToolStripMenuItem
      // 
      this.debugFlagsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.dummyToolStripMenuItem});
      this.debugFlagsToolStripMenuItem.Image = global::Editor.Properties.Resources.flags;
      this.debugFlagsToolStripMenuItem.Name = "debugFlagsToolStripMenuItem";
      this.debugFlagsToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.debugFlagsToolStripMenuItem.Text = "Debug Flags";
      this.debugFlagsToolStripMenuItem.ToolTipText = "Displays debug information using the engine\'s profiling API";
      // 
      // dummyToolStripMenuItem
      // 
      this.dummyToolStripMenuItem.Name = "dummyToolStripMenuItem";
      this.dummyToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
      this.dummyToolStripMenuItem.Text = "dummy";
      // 
      // pickToolStripMenuItem
      // 
      this.pickToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.Pick_UV0_ToolStripMenuItem,
            this.Pick_UV1_ToolStripMenuItem});
      this.pickToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pickToolStripMenuItem.Image")));
      this.pickToolStripMenuItem.Name = "pickToolStripMenuItem";
      this.pickToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.pickToolStripMenuItem.Text = "Pick";
      // 
      // Pick_UV0_ToolStripMenuItem
      // 
      this.Pick_UV0_ToolStripMenuItem.Name = "Pick_UV0_ToolStripMenuItem";
      this.Pick_UV0_ToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
      this.Pick_UV0_ToolStripMenuItem.Text = "UV0";
      this.Pick_UV0_ToolStripMenuItem.Click += new System.EventHandler(this.Pick_UV0_ToolStripMenuItem_Click);
      // 
      // Pick_UV1_ToolStripMenuItem
      // 
      this.Pick_UV1_ToolStripMenuItem.Name = "Pick_UV1_ToolStripMenuItem";
      this.Pick_UV1_ToolStripMenuItem.Size = new System.Drawing.Size(162, 22);
      this.Pick_UV1_ToolStripMenuItem.Text = "UV1 (Lightmaps)";
      this.Pick_UV1_ToolStripMenuItem.Click += new System.EventHandler(this.Pick_UV1_ToolStripMenuItem_Click);
      // 
      // toolStripMenuItem6
      // 
      this.toolStripMenuItem6.Name = "toolStripMenuItem6";
      this.toolStripMenuItem6.Size = new System.Drawing.Size(150, 6);
      // 
      // createToolStripMenuItem
      // 
      this.createToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.insertHereToolStripMenuItem});
      this.createToolStripMenuItem.Image = global::Editor.Properties.Resources.pawn_new;
      this.createToolStripMenuItem.Name = "createToolStripMenuItem";
      this.createToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.createToolStripMenuItem.Text = "Create";
      this.createToolStripMenuItem.ToolTipText = "All shape creator plugins";
      // 
      // insertHereToolStripMenuItem
      // 
      this.insertHereToolStripMenuItem.Name = "insertHereToolStripMenuItem";
      this.insertHereToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
      this.insertHereToolStripMenuItem.Text = "<insert here>";
      // 
      // shapeOriginToolStripMenuItem1
      // 
      this.shapeOriginToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.sceneOriginToolStripMenuItem,
            this.cameraPositionToolStripMenuItem1,
            this.traceHitToolStripMenuItem});
      this.shapeOriginToolStripMenuItem1.Image = global::Editor.Properties.Resources.node;
      this.shapeOriginToolStripMenuItem1.Name = "shapeOriginToolStripMenuItem1";
      this.shapeOriginToolStripMenuItem1.Size = new System.Drawing.Size(153, 22);
      this.shapeOriginToolStripMenuItem1.Text = "Shape Origin";
      this.shapeOriginToolStripMenuItem1.ToolTipText = "Sets a new shape spawn origin";
      // 
      // sceneOriginToolStripMenuItem
      // 
      this.sceneOriginToolStripMenuItem.Name = "sceneOriginToolStripMenuItem";
      this.sceneOriginToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
      this.sceneOriginToolStripMenuItem.Text = "Scene Origin";
      this.sceneOriginToolStripMenuItem.ToolTipText = "Uses (0,0,0) as a new origin";
      this.sceneOriginToolStripMenuItem.Click += new System.EventHandler(this.sceneOriginToolStripMenuItem_Click);
      // 
      // cameraPositionToolStripMenuItem1
      // 
      this.cameraPositionToolStripMenuItem1.Name = "cameraPositionToolStripMenuItem1";
      this.cameraPositionToolStripMenuItem1.Size = new System.Drawing.Size(161, 22);
      this.cameraPositionToolStripMenuItem1.Text = "Camera Position";
      this.cameraPositionToolStripMenuItem1.ToolTipText = "Uses the current camera position";
      this.cameraPositionToolStripMenuItem1.Click += new System.EventHandler(this.cameraPositionToolStripMenuItem1_Click);
      // 
      // traceHitToolStripMenuItem
      // 
      this.traceHitToolStripMenuItem.Name = "traceHitToolStripMenuItem";
      this.traceHitToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
      this.traceHitToolStripMenuItem.Text = "Trace Hit";
      this.traceHitToolStripMenuItem.ToolTipText = "Uses the traced position under the cursor";
      this.traceHitToolStripMenuItem.Click += new System.EventHandler(this.traceHitToolStripMenuItem_Click);
      // 
      // zonesToolStripMenuItem
      // 
      this.zonesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.selectZoneAtCameraPositionToolStripMenuItem,
            this.loadZoneAtCameraPositionToolStripMenuItem,
            this.loadZonesCloseToCameraToolStripMenuItem});
      this.zonesToolStripMenuItem.Image = global::Editor.Properties.Resources.unload_zone;
      this.zonesToolStripMenuItem.Name = "zonesToolStripMenuItem";
      this.zonesToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
      this.zonesToolStripMenuItem.Text = "Zones";
      // 
      // selectZoneAtCameraPositionToolStripMenuItem
      // 
      this.selectZoneAtCameraPositionToolStripMenuItem.Name = "selectZoneAtCameraPositionToolStripMenuItem";
      this.selectZoneAtCameraPositionToolStripMenuItem.Size = new System.Drawing.Size(269, 22);
      this.selectZoneAtCameraPositionToolStripMenuItem.Text = "Select Zone at Camera position";
      this.selectZoneAtCameraPositionToolStripMenuItem.Click += new System.EventHandler(this.selectZoneAtCameraPositionToolStripMenuItem_Click);
      // 
      // loadZoneAtCameraPositionToolStripMenuItem
      // 
      this.loadZoneAtCameraPositionToolStripMenuItem.Name = "loadZoneAtCameraPositionToolStripMenuItem";
      this.loadZoneAtCameraPositionToolStripMenuItem.Size = new System.Drawing.Size(269, 22);
      this.loadZoneAtCameraPositionToolStripMenuItem.Text = "Load Zone at Camera position";
      this.loadZoneAtCameraPositionToolStripMenuItem.Click += new System.EventHandler(this.loadZoneAtCameraPositionToolStripMenuItem_Click);
      // 
      // loadZonesCloseToCameraToolStripMenuItem
      // 
      this.loadZonesCloseToCameraToolStripMenuItem.Name = "loadZonesCloseToCameraToolStripMenuItem";
      this.loadZonesCloseToCameraToolStripMenuItem.Size = new System.Drawing.Size(269, 22);
      this.loadZonesCloseToCameraToolStripMenuItem.Text = "Load Zones close to Camera position";
      this.loadZonesCloseToCameraToolStripMenuItem.Click += new System.EventHandler(this.loadZonesCloseToCameraToolStripMenuItem_Click);
      // 
      // dummyToolStripMenuItem1
      // 
      this.dummyToolStripMenuItem1.Name = "dummyToolStripMenuItem1";
      this.dummyToolStripMenuItem1.Size = new System.Drawing.Size(32, 19);
      // 
      // UnitScaleImageList
      // 
      this.UnitScaleImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("UnitScaleImageList.ImageStream")));
      this.UnitScaleImageList.TransparentColor = System.Drawing.Color.Transparent;
      this.UnitScaleImageList.Images.SetKeyName(0, "uinit_scale_1.png");
      this.UnitScaleImageList.Images.SetKeyName(1, "uinit_scale_2.png");
      this.UnitScaleImageList.Images.SetKeyName(2, "uinit_scale_3.png");
      this.UnitScaleImageList.Images.SetKeyName(3, "uinit_scale_4.png");
      this.UnitScaleImageList.Images.SetKeyName(4, "uinit_scale_5.png");
      this.UnitScaleImageList.Images.SetKeyName(5, "uinit_scale_6.png");
      this.UnitScaleImageList.Images.SetKeyName(6, "uinit_scale_7.png");
      this.UnitScaleImageList.Images.SetKeyName(7, "uinit_scale_8.png");
      this.UnitScaleImageList.Images.SetKeyName(8, "uinit_scale_9.png");
      this.UnitScaleImageList.Images.SetKeyName(9, "uinit_scale_10.png");
      // 
      // ToolStripButton_Scale
      // 
      this.ToolStripButton_Scale.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripButton_Scale.Image = global::Editor.Properties.Resources.toolbar_scale_uniform;
      this.ToolStripButton_Scale.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_Scale.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripButton_Scale.Name = "ToolStripButton_Scale";
      this.ToolStripButton_Scale.Size = new System.Drawing.Size(28, 28);
      this.ToolStripButton_Scale.Text = "Scale";
      this.ToolStripButton_Scale.ToolTipText = "Scale Selected Shapes";
      this.ToolStripButton_Scale.Click += new System.EventHandler(this.ToolStripButton_Scale_Click_1);
      // 
      // ToolStripSplitButton_Tools
      // 
      this.ToolStripSplitButton_Tools.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
      this.ToolStripSplitButton_Tools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButton_MeasureTool,
            this.ToolStripSplitButton_Tools_Sep1,
            this.ToolStripButton_HighlightSelection,
            this.ToolStripButton_OneClickSelection});
      this.ToolStripSplitButton_Tools.Image = global::Editor.Properties.Resources.toolbar_tool;
      this.ToolStripSplitButton_Tools.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripSplitButton_Tools.ImageTransparentColor = System.Drawing.Color.Magenta;
      this.ToolStripSplitButton_Tools.Name = "ToolStripSplitButton_Tools";
      this.ToolStripSplitButton_Tools.Size = new System.Drawing.Size(37, 28);
      this.ToolStripSplitButton_Tools.Text = "Tools";
      this.ToolStripSplitButton_Tools.DropDownOpening += new System.EventHandler(this.ToolStripSplitButton_Tools_DropDownOpening);
      // 
      // toolStripButton_MeasureTool
      // 
      this.toolStripButton_MeasureTool.Image = global::Editor.Properties.Resources.toolbar_measure;
      this.toolStripButton_MeasureTool.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.toolStripButton_MeasureTool.Name = "toolStripButton_MeasureTool";
      this.toolStripButton_MeasureTool.Size = new System.Drawing.Size(176, 22);
      this.toolStripButton_MeasureTool.Text = "Measure Tool";
      this.toolStripButton_MeasureTool.ToolTipText = "Simple picker tool to measure the distance between two positions";
      this.toolStripButton_MeasureTool.Click += new System.EventHandler(this.toolStripButton_MeasureTool_Click);
      // 
      // ToolStripSplitButton_Tools_Sep1
      // 
      this.ToolStripSplitButton_Tools_Sep1.Name = "ToolStripSplitButton_Tools_Sep1";
      this.ToolStripSplitButton_Tools_Sep1.Size = new System.Drawing.Size(173, 6);
      // 
      // ToolStripButton_HighlightSelection
      // 
      this.ToolStripButton_HighlightSelection.CheckOnClick = true;
      this.ToolStripButton_HighlightSelection.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_HighlightSelection.Name = "ToolStripButton_HighlightSelection";
      this.ToolStripButton_HighlightSelection.Size = new System.Drawing.Size(176, 22);
      this.ToolStripButton_HighlightSelection.Text = "Highlight Selection";
      this.ToolStripButton_HighlightSelection.Click += new System.EventHandler(this.ToolStripSplitButton_HighlightSelection_Click);
      // 
      // ToolStripButton_OneClickSelection
      // 
      this.ToolStripButton_OneClickSelection.CheckOnClick = true;
      this.ToolStripButton_OneClickSelection.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
      this.ToolStripButton_OneClickSelection.Name = "ToolStripButton_OneClickSelection";
      this.ToolStripButton_OneClickSelection.Size = new System.Drawing.Size(176, 22);
      this.ToolStripButton_OneClickSelection.Text = "One Click Selection";
      this.ToolStripButton_OneClickSelection.ToolTipText = "If enabled, one click selection is also possible in the vForge camera modes.";
      this.ToolStripButton_OneClickSelection.Click += new System.EventHandler(this.ToolStripButton_OneClickSelection_Click);
      // 
      // EnginePanel
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
      this.ClientSize = new System.Drawing.Size(769, 444);
      this.CloseButton = false;
      this.Controls.Add(this.panel_VisionView);
      this.Controls.Add(this.transformStrip_EnginePanel);
      this.Controls.Add(this.toolStrip_EnginePanel);
      this.DockableAreas = ((WeifenLuo.WinFormsUI.DockAreas)((WeifenLuo.WinFormsUI.DockAreas.Float | WeifenLuo.WinFormsUI.DockAreas.Document)));
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.Name = "EnginePanel";
      this.ShowHint = WeifenLuo.WinFormsUI.DockState.Document;
      this.TabText = "Engine View";
      this.Text = "Engine View";
      this.Load += new System.EventHandler(this.EnginePanel_Load);
      this.transformStrip_EnginePanel.ResumeLayout(false);
      this.transformStrip_EnginePanel.PerformLayout();
      this.toolStrip_EnginePanel.ResumeLayout(false);
      this.toolStrip_EnginePanel.PerformLayout();
      this.contextMenuStrip_SelShapes.ResumeLayout(false);
      this.contextMenuStrip_View.ResumeLayout(false);
      this.ResumeLayout(false);
      this.PerformLayout();

    }
        protected override void OnRenderSplitButtonBackground(ToolStripItemRenderEventArgs e)
        {
            ToolStripSplitButton item   = e.Item as ToolStripSplitButton;
            Graphics             dc     = e.Graphics;
            bool  rightToLeft           = item.RightToLeft == RightToLeft.Yes;
            Color arrowColor            = item.Enabled ? SystemColors.ControlText : SystemColors.ControlDark;
            VisualStyleElement element  = rightToLeft ? VisualStyleElement.ToolBar.SplitButton.Normal : VisualStyleElement.ToolBar.SplitButtonDropDown.Normal;
            VisualStyleElement element2 = rightToLeft ? VisualStyleElement.ToolBar.DropDownButton.Normal : VisualStyleElement.ToolBar.SplitButton.Normal;
            Rectangle          bounds   = new Rectangle(Point.Empty, item.Size);

            if ((ToolStripManager.VisualStylesEnabled && System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(element)) && System.Windows.Forms.VisualStyles.VisualStyleRenderer.IsElementDefined(element2))
            {
                System.Windows.Forms.VisualStyles.VisualStyleRenderer visualStyleRenderer = VisualStyleRenderer;
                visualStyleRenderer.SetParameters(element2.ClassName, element2.Part, GetSplitButtonItemState(item));
                Rectangle buttonBounds = item.ButtonBounds;
                if (rightToLeft)
                {
                    buttonBounds.Inflate(2, 0);
                }
                visualStyleRenderer.DrawBackground(dc, buttonBounds);
                visualStyleRenderer.SetParameters(element.ClassName, element.Part, GetSplitButtonDropDownItemState(item));
                visualStyleRenderer.DrawBackground(dc, item.DropDownButtonBounds);
                Rectangle contentRectangle = item.ContentRectangle;
                if (item.BackgroundImage != null)
                {
                    ControlPaint.DrawBackgroundImage(dc, item.BackgroundImage, item.BackColor, item.BackgroundImageLayout, contentRectangle, contentRectangle);
                }
                this.RenderSeparatorInternal(dc, item, item.SplitterBounds, true);
                if (rightToLeft || (item.BackgroundImage != null))
                {
                    base.DrawArrow(new ToolStripArrowRenderEventArgs(dc, item, item.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
                }
            }
            else
            {
                Rectangle rectangle4 = item.ButtonBounds;
                if (item.BackgroundImage != null)
                {
                    Rectangle clipRect = item.Selected ? item.ContentRectangle : bounds;
                    if (item.BackgroundImage != null)
                    {
                        ControlPaint.DrawBackgroundImage(dc, item.BackgroundImage, item.BackColor, item.BackgroundImageLayout, bounds, clipRect);
                    }
                }
                else
                {
                    FillBackground(dc, rectangle4, item.BackColor);
                }
                ToolBarState splitButtonToolBarState = GetSplitButtonToolBarState(item, false);
                this.RenderSmall3DBorderInternal(dc, rectangle4, splitButtonToolBarState, rightToLeft);
                Rectangle dropDownButtonBounds = item.DropDownButtonBounds;
                if (item.BackgroundImage == null)
                {
                    FillBackground(dc, dropDownButtonBounds, item.BackColor);
                }
                splitButtonToolBarState = GetSplitButtonToolBarState(item, true);
                switch (splitButtonToolBarState)
                {
                case ToolBarState.Pressed:
                case ToolBarState.Hot:
                    this.RenderSmall3DBorderInternal(dc, dropDownButtonBounds, splitButtonToolBarState, rightToLeft);
                    break;
                }
                base.DrawArrow(new ToolStripArrowRenderEventArgs(dc, item, dropDownButtonBounds, arrowColor, ArrowDirection.Down));
            }
        }
Пример #33
0
 public void LoadUndoManager(ToolStripSplitButton Undo, ToolStripSplitButton Redo)
 {
     UndoManager = new UndoManager(Undo, Redo, this);
 }
 private static int GetSplitButtonDropDownItemState(ToolStripSplitButton item)
 {
     return((int)GetSplitButtonToolBarState(item, true));
 }
Пример #35
0
        private void RenderToolSplitButtonBackground(Graphics g,
                                                     ToolStripSplitButton splitButton,
                                                     ToolStrip toolstrip)
        {
            // We only draw a background if the item is selected or being pressed
            if (splitButton.Selected || splitButton.Pressed)
            {
                if (splitButton.Enabled)
                {
                    if (!splitButton.Pressed && splitButton.ButtonPressed)
                        this.DrawGradientToolSplitItem(g, splitButton,
                                                       _itemToolItemPressedColors,
                                                       _itemToolItemSelectedColors,
                                                       _itemContextItemEnabledColors);
                    else if (splitButton.Pressed && !splitButton.ButtonPressed)
                        this.DrawContextMenuHeader(g, splitButton);
                    else
                        this.DrawGradientToolSplitItem(g, splitButton,
                                                       _itemToolItemSelectedColors,
                                                       _itemToolItemSelectedColors,
                                                       _itemContextItemEnabledColors);
                }
                else
                {
                    // Get the mouse position in tool strip coordinates
                    Point mousePos = toolstrip.PointToClient(Control.MousePosition);

                    // If the mouse is not in the item area, then draw disabled
                    if (!splitButton.Bounds.Contains(mousePos))
                        this.DrawGradientToolItem(g, splitButton, _itemDisabledColors);
                }
            }
        }
 private static int GetSplitButtonItemState(ToolStripSplitButton item)
 {
     return((int)GetSplitButtonToolBarState(item, false));
 }
        protected void DrawSplitButtonSeperatorLine(Graphics g, ToolStripSplitButton item, Rectangle rect)
        {
            //Color Color1 = Color.FromArgb(0, 0, 0, 0);
            //Color Color2 = Color.FromArgb(0, 0, 0);
            //Color Color3 = Color.FromArgb(0, 0, 0, 0);

            if (rect.Width > 0 && rect.Height > 0)
            {

                using (LinearGradientBrush brush = new LinearGradientBrush(
                        rect,
                        _splitButtonSperatorLineColor1,
                        _splitButtonSperatorLineColor3,
                        90))
                {
                    ColorBlend blend = new ColorBlend();

                    Color[] colors = new Color[3]{
                    _splitButtonSperatorLineColor1,_splitButtonSperatorLineColor2,_splitButtonSperatorLineColor3
                    };
                    blend.Colors = colors;
                    blend.Positions = new float[] { 0f, .5f, 1f };
                    brush.InterpolationColors = blend;

                    using (Pen pen = new Pen(brush))
                    {
                        g.DrawLine(pen, rect.X, rect.Y, rect.X, rect.Bottom);

                    }
                    colors[0] = Color.FromArgb(0, 255, 255, 255);
                    colors[1] = Color.FromArgb(255, 255, 255);
                    colors[2] = Color.FromArgb(0, 255, 255, 255);
                    blend.Colors = colors;
                    brush.InterpolationColors = blend;
                    using (Pen pen = new Pen(brush))
                    {
                        g.DrawLine(pen, rect.X + 1, rect.Y, rect.X + 1, rect.Bottom);
                    }
                }
            }
        }
 /// <summary>
 /// Returns an observable sequence wrapping the DefaultItemChanged event on the ToolStripSplitButton instance.
 /// </summary>
 /// <param name="instance">The ToolStripSplitButton instance to observe.</param>
 /// <returns>An observable sequence wrapping the DefaultItemChanged event on the ToolStripSplitButton instance.</returns>
 public static IObservable <EventPattern <EventArgs> > DefaultItemChangedObservable(this ToolStripSplitButton instance)
 {
     return(Observable.FromEventPattern <EventHandler, EventArgs>(
                handler => instance.DefaultItemChanged += handler,
                handler => instance.DefaultItemChanged -= handler));
 }
Пример #39
0
        private void CreateUndoRedoDropDownMenu(ToolStripSplitButton toolStripSplitButton, Stack<APG.CodeHelper.Actions.IAction> sourceItems)
        {
            ToolStripItem tsi;
            toolStripSplitButton.DropDownItems.Clear();

            foreach (APG.CodeHelper.Actions.IAction command in sourceItems)
            {
                tsi = new ToolStripMenuItem();
                tsi.Text = command.ToString();
                toolStripSplitButton.DropDownItems.Add(tsi);
            }
        }
Пример #40
0
        private void AddNavBackForwardItem(ToolStripSplitButton button, ShellItem selectedItem)
        {
            Bitmap image = ShellImageList.GetIcon(selectedItem.ImageIndex, true).ToBitmap();
            ToolStripMenuItem backItem = new ToolStripMenuItem(selectedItem.Text, image);
            backItem.Name = backItem.Text;
            backItem.Tag = selectedItem;
            backItem.ImageScaling = ToolStripItemImageScaling.None;

            if (button.DropDownItems.Count == maxBackForward)
                button.DropDownItems.RemoveAt(maxBackForward - 1);

            button.DropDownItems.Insert(0, backItem);
            button.Enabled = true;
        }
Пример #41
0
        /// <summary>
        /// Gets a color array based on the state of a split-button
        /// </summary>
        /// <param name="Item">The button to check the state of</param>
        /// <returns></returns>
        private Color[] GetButtonBackColor(ToolStripSplitButton Item, ButtonType Type)
        {
            Color[] Return = new Color[2];

            if (
                (!Item.Selected) &&
                (!Item.ButtonPressed && !Item.DropDownButtonPressed)
                )
            {
                Return[0] = Color.Transparent;
                Return[1] = Color.Transparent;
            }
            else if (
                (Item.Selected) &&
                (!Item.ButtonPressed && !Item.DropDownButtonPressed)
                )
            {
                Return[0] = _sBtnManager.HoverBackgroundTop;
                Return[1] = _sBtnManager.HoverBackgroundBottom;
            }
            else
            {
                if (Item.ButtonPressed)
                {
                    Return[0] = _sBtnManager.ClickBackgroundTop;
                    Return[1] = _sBtnManager.ClickBackgroundBottom;
                }
                else if (Item.DropDownButtonPressed)
                {
                    Return[0] = _mnuManager.MenustripButtonBackground;
                    Return[1] = _mnuManager.MenustripButtonBackground;
                }
            }

            return Return;
        }
 /// <summary>
 /// Returns an observable sequence wrapping the ButtonDoubleClick event on the ToolStripSplitButton instance.
 /// </summary>
 /// <param name="instance">The ToolStripSplitButton instance to observe.</param>
 /// <returns>An observable sequence wrapping the ButtonDoubleClick event on the ToolStripSplitButton instance.</returns>
 public static IObservable <EventPattern <EventArgs> > ButtonDoubleClickObservable(this ToolStripSplitButton instance)
 {
     return(Observable.FromEventPattern <EventHandler, EventArgs>(
                handler => instance.ButtonDoubleClick += handler,
                handler => instance.ButtonDoubleClick -= handler));
 }
        //*************************************************************************
        //  Method: AddItems()
        //
        /// <summary>
        /// Adds a set of items to a ToolStripSplitButton, one for each layout
        /// supported by this class.
        /// </summary>
        ///
        /// <param name="toolStripSplitButton">
        /// ToolStripSplitButton to add items to.
        /// </param>
        ///
        /// <remarks>
        /// When the ToolStripSplitButton's selection is changed, the <see
        /// cref="Layout" /> property is changed and the <see
        /// cref="LayoutManager.LayoutChanged" /> event fires.
        /// </remarks>
        //*************************************************************************
        public void AddItems(
            ToolStripSplitButton toolStripSplitButton
            )
        {
            const String MethodName = "AddItems";

            this.ArgumentChecker.CheckArgumentNotNull(
            MethodName, "toolStripSplitButton", toolStripSplitButton);

            AssertValid();

            if (m_oToolStripSplitButton != null)
            {
            this.ArgumentChecker.ThrowArgumentException(MethodName,
                "toolStripSplitButton",
                "This method has already been called.  Don't call it twice."
                );
            }

            m_oToolStripSplitButton = toolStripSplitButton;

            m_oToolStripSplitButton.ButtonClick += new EventHandler(
            this.m_oToolStripSplitButton_ButtonClick);

            ToolStripItemCollection oItems = m_oToolStripSplitButton.DropDownItems;
            Int32 iInsertionIndex = 0;

            foreach ( LayoutInfo oLayoutInfo in AllLayouts.GetAllLayouts() )
            {
            ToolStripItem oToolStripItem;

            if (oLayoutInfo == AllLayouts.LayoutGroupSeparator)
            {
                oToolStripItem = new ToolStripSeparator();
            }
            else
            {
                oToolStripItem = new ToolStripMenuItem( oLayoutInfo.Text, null,
                    new EventHandler(this.OnLayoutMenuItemClick) );

                oToolStripItem.Tag = oLayoutInfo;

                oToolStripItem.ToolTipText =
                    oLayoutInfo.Description.TrimEnd('.');
            }

            // Don't call ToolStripItemCollection.Add(), because the
            // ToolStripSplitButton may already have items added to it by the
            // caller.  The items added here should precede any existing items.

            oItems.Insert(iInsertionIndex, oToolStripItem);
            iInsertionIndex++;
            }
        }
Пример #44
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(Form1));
       this.sep9 = new System.Windows.Forms.ToolBarButton();
       this.mainMenu = new System.Windows.Forms.MenuStrip();
       this.Menu_File = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_New = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_New_Project = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_New_Scene = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Open = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Open_Project = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Open_Scene = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Save = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Save_All = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Save_Scene = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Save_SceneAs = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export_Scene = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export_LayersAsPrefabs = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export_LayersAsPrefabsIntoFolder = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export_Separator = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_File_Export_BatchProject = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Export_BatchDirectory = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_File_ProjectHelpers = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Project_OpenDirectory = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Project_Move = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_SceneHelpers = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_Settings = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_Description = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_UniqueIDs = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_Thumbnail = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_ShapeLinkDebugFile = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Scene_MergeExternalLayers = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
       this.RecentProjects = new System.Windows.Forms.ToolStripMenuItem();
       this.RecentScenes = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_File_CloseProject = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_StartPage = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_File_Exit = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_Undo = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_Redo = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Edit_Cut = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_Copy = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_Paste = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_Delete = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Edit_FindShapes = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Edit_FindDuplicates = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_View = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Create = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Create_NewLayer = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Create_NewZone = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Create_ZoneGrid = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Create_Separator = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Create_Dummy = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_Animate = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_RunInEditor = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_PlayTheGame = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Play_TimeScale = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_TS_100 = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Play_TS_10 = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_TS_25 = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_TS_50 = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_TS_200 = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Play_TS_500 = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_EditSky = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_EditTimeOfDay = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_EditFog = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_EditPostProcessors = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_ProfileSettings = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_ManifestSettings = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Engine_CalculateVisibility = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_UseVisibility = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Engine_ReloadResources = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_ShowResources = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_PurgeResources = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem16 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Engine_SaveScreenshot = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Engine_SaveScreenshotAs = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_StaticLighting = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_StaticLighting_ActiveTool = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_StaticLighting_ActiveTool_Dummy = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_StaticLighting_EditSettings = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_StaticLighting_CalculateLighting = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_StaticLighting_ResetLighting = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Options = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Options_Settings = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Options_Hotkeys = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem17 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Options_ShowPlugins = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem18 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Remote = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_Connect = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_Launch = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_Animate = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_PlayTheGame = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_Stop = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_XBOX360_Seperator = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Remote_PS3_Connect = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_PS3_Animate = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_PS3_PlayTheGame = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_PS3_Stop = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_PS3_Seperator = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Remote_ExportAndRun = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_Restart = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Remote_ReloadResources = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Help = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Help_iHelp = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Help_VisionDoc = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem21 = new System.Windows.Forms.ToolStripSeparator();
       this.Menu_Help_About = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Tests = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Tests_RunTests = new System.Windows.Forms.ToolStripMenuItem();
       this.Menu_Tests_VideoSize = new System.Windows.Forms.ToolStripMenuItem();
       this.mainToolBar = new System.Windows.Forms.ToolStrip();
       this.ToolBar_Preferences = new System.Windows.Forms.ToolStripButton();
       this.ToolBar_Hotkeys = new System.Windows.Forms.ToolStripButton();
       this.ToolBar_Sep1 = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_New = new System.Windows.Forms.ToolStripSplitButton();
       this.ToolBar_NewProject = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_NewScene = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Open = new System.Windows.Forms.ToolStripSplitButton();
       this.ToolBar_OpenProject = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_OpenScene = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_Save = new System.Windows.Forms.ToolStripSplitButton();
       this.ToolBar_SaveScene = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_SaveAll = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_SaveAs = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Export = new System.Windows.Forms.ToolStripSplitButton();
       this.ToolBar_ExportSettings = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_ExportQuick = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Sep2 = new System.Windows.Forms.ToolStripSeparator();
       this.Toolbar_Cut = new System.Windows.Forms.ToolStripButton();
       this.Toolbar_Copy = new System.Windows.Forms.ToolStripButton();
       this.Toolbar_Paste = new System.Windows.Forms.ToolStripButton();
       this.Toolbar_Delete = new System.Windows.Forms.ToolStripButton();
       this.ToolBar_Sep3 = new System.Windows.Forms.ToolStripSeparator();
       this.Toolbar_Undo = new System.Windows.Forms.ToolStripButton();
       this.Toolbar_Redo = new System.Windows.Forms.ToolStripButton();
       this.ToolBar_Sep4 = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_Panels = new System.Windows.Forms.ToolStripDropDownButton();
       this.ToolBar_OpenAssetBrowser = new System.Windows.Forms.ToolStripButton();
       this.ToolBar_Tools = new System.Windows.Forms.ToolStripDropDownButton();
       this.ToolBar_SkyEditor = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_TimeOfDayEditor = new System.Windows.Forms.ToolStripMenuItem();
       this.editFogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_PostProcessor = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_FindShapes = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_FindDuplicates = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_SaveScreenshot = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_SaveScreenshotAs = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Tools_LastSeparator = new System.Windows.Forms.ToolStripSeparator();
       this.ToolBar_Resources = new System.Windows.Forms.ToolStripDropDownButton();
       this.ToolBar_Resources_Reload = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Resources_Show = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Resources_Purge = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Relight = new System.Windows.Forms.ToolStripDropDownButton();
       this.ToolBar_LightSettings = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_LightCalc = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_LightReset = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Visibility = new System.Windows.Forms.ToolStripDropDownButton();
       this.ToolBar_CalcVisibility = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_UseVisibility = new System.Windows.Forms.ToolStripMenuItem();
       this.ToolBar_Sep5 = new System.Windows.Forms.ToolStripSeparator();
       this.statusBar = new System.Windows.Forms.StatusStrip();
       this.statusPanel_Main = new System.Windows.Forms.ToolStripStatusLabel();
       this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
       this.statusPanel_TransformProgress = new CSharpFramework.Controls.TransformStatusToolStripItem();
       this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
       this.statusPanel_Layout = new System.Windows.Forms.ToolStripStatusLabel();
       this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
       this.statusPanel_PlayMode = new System.Windows.Forms.ToolStripStatusLabel();
       this.dockContainer = new CSharpFramework.Docking.DockingContainer();
       this.mainMenu.SuspendLayout();
       this.mainToolBar.SuspendLayout();
       this.statusBar.SuspendLayout();
       this.SuspendLayout();
       //
       // sep9
       //
       this.sep9.Name = "sep9";
       //
       // mainMenu
       //
       this.mainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File,
     this.Menu_Edit,
     this.Menu_View,
     this.Menu_Create,
     this.Menu_Play,
     this.Menu_Engine,
     this.Menu_StaticLighting,
     this.Menu_Options,
     this.Menu_Remote,
     this.Menu_Help,
     this.Menu_Tests});
       this.mainMenu.Location = new System.Drawing.Point(0, 0);
       this.mainMenu.Name = "mainMenu";
       this.mainMenu.Size = new System.Drawing.Size(1028, 24);
       this.mainMenu.TabIndex = 0;
       //
       // Menu_File
       //
       this.Menu_File.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_New,
     this.Menu_File_Open,
     this.Menu_File_Save,
     this.Menu_File_Export,
     this.toolStripMenuItem1,
     this.Menu_File_ProjectHelpers,
     this.Menu_File_SceneHelpers,
     this.toolStripMenuItem2,
     this.RecentProjects,
     this.RecentScenes,
     this.toolStripMenuItem3,
     this.Menu_File_CloseProject,
     this.Menu_File_StartPage,
     this.Menu_File_Exit});
       this.Menu_File.Name = "Menu_File";
       this.Menu_File.Size = new System.Drawing.Size(37, 20);
       this.Menu_File.Text = "&File";
       this.Menu_File.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_File.DropDownOpening += new System.EventHandler(this.Menu_File_Popup);
       //
       // Menu_File_New
       //
       this.Menu_File_New.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_New_Project,
     this.Menu_File_New_Scene});
       this.Menu_File_New.Image = global::Editor.Properties.Resources.toolbar_new_project;
       this.Menu_File_New.Name = "Menu_File_New";
       this.Menu_File_New.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_New.Text = "New";
       //
       // Menu_File_New_Project
       //
       this.Menu_File_New_Project.Image = global::Editor.Properties.Resources.toolbar_new_project;
       this.Menu_File_New_Project.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_New_Project.Name = "Menu_File_New_Project";
       this.Menu_File_New_Project.Size = new System.Drawing.Size(111, 22);
       this.Menu_File_New_Project.Text = "Project";
       this.Menu_File_New_Project.Click += new System.EventHandler(this.Menu_File_New_Project_Click);
       //
       // Menu_File_New_Scene
       //
       this.Menu_File_New_Scene.Image = global::Editor.Properties.Resources.toolbar_new_scene;
       this.Menu_File_New_Scene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_New_Scene.Name = "Menu_File_New_Scene";
       this.Menu_File_New_Scene.Size = new System.Drawing.Size(111, 22);
       this.Menu_File_New_Scene.Text = "Scene";
       this.Menu_File_New_Scene.Click += new System.EventHandler(this.Menu_File_New_Scene_Click);
       //
       // Menu_File_Open
       //
       this.Menu_File_Open.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_Open_Project,
     this.Menu_File_Open_Scene});
       this.Menu_File_Open.Image = global::Editor.Properties.Resources.toolbar_open_project;
       this.Menu_File_Open.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Open.Name = "Menu_File_Open";
       this.Menu_File_Open.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_Open.Text = "Open";
       //
       // Menu_File_Open_Project
       //
       this.Menu_File_Open_Project.Image = global::Editor.Properties.Resources.toolbar_open_project;
       this.Menu_File_Open_Project.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Open_Project.Name = "Menu_File_Open_Project";
       this.Menu_File_Open_Project.Size = new System.Drawing.Size(143, 22);
       this.Menu_File_Open_Project.Text = "Open Project";
       this.Menu_File_Open_Project.Click += new System.EventHandler(this.Menu_File_OpenProject_Click);
       //
       // Menu_File_Open_Scene
       //
       this.Menu_File_Open_Scene.Image = global::Editor.Properties.Resources.toolbar_open_scene;
       this.Menu_File_Open_Scene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Open_Scene.Name = "Menu_File_Open_Scene";
       this.Menu_File_Open_Scene.Size = new System.Drawing.Size(143, 22);
       this.Menu_File_Open_Scene.Text = "Open Scene";
       this.Menu_File_Open_Scene.Click += new System.EventHandler(this.Menu_File_OpenScene_Click);
       //
       // Menu_File_Save
       //
       this.Menu_File_Save.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_Save_All,
     this.Menu_File_Save_Scene,
     this.Menu_File_Save_SceneAs});
       this.Menu_File_Save.Image = global::Editor.Properties.Resources.toolbar_save_scene;
       this.Menu_File_Save.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Save.Name = "Menu_File_Save";
       this.Menu_File_Save.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_Save.Text = "Save";
       //
       // Menu_File_Save_All
       //
       this.Menu_File_Save_All.Image = global::Editor.Properties.Resources.toolbar_save_all;
       this.Menu_File_Save_All.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Save_All.Name = "Menu_File_Save_All";
       this.Menu_File_Save_All.Size = new System.Drawing.Size(148, 22);
       this.Menu_File_Save_All.Text = "Save A&ll";
       this.Menu_File_Save_All.Click += new System.EventHandler(this.Menu_File_SaveAll_Click);
       //
       // Menu_File_Save_Scene
       //
       this.Menu_File_Save_Scene.Image = global::Editor.Properties.Resources.toolbar_save_scene;
       this.Menu_File_Save_Scene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Save_Scene.Name = "Menu_File_Save_Scene";
       this.Menu_File_Save_Scene.Size = new System.Drawing.Size(148, 22);
       this.Menu_File_Save_Scene.Text = "&Save Scene";
       this.Menu_File_Save_Scene.Click += new System.EventHandler(this.Menu_File_SaveScene_Click);
       //
       // Menu_File_Save_SceneAs
       //
       this.Menu_File_Save_SceneAs.Image = global::Editor.Properties.Resources.toolbar_save_as;
       this.Menu_File_Save_SceneAs.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Save_SceneAs.Name = "Menu_File_Save_SceneAs";
       this.Menu_File_Save_SceneAs.Size = new System.Drawing.Size(148, 22);
       this.Menu_File_Save_SceneAs.Text = "Save Scene &As";
       this.Menu_File_Save_SceneAs.Click += new System.EventHandler(this.Menu_File_SaveSceneAs_Click);
       //
       // Menu_File_Export
       //
       this.Menu_File_Export.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_Export_Scene,
     this.Menu_File_Export_LayersAsPrefabs,
     this.Menu_File_Export_LayersAsPrefabsIntoFolder,
     this.Menu_File_Export_Separator,
     this.Menu_File_Export_BatchProject,
     this.Menu_File_Export_BatchDirectory});
       this.Menu_File_Export.Image = global::Editor.Properties.Resources.toolbar_export_quick;
       this.Menu_File_Export.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Export.Name = "Menu_File_Export";
       this.Menu_File_Export.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_Export.Text = "Export";
       this.Menu_File_Export.Click += new System.EventHandler(this.Menu_File_Export_Click);
       //
       // Menu_File_Export_Scene
       //
       this.Menu_File_Export_Scene.Image = global::Editor.Properties.Resources.toolbar_export_quick;
       this.Menu_File_Export_Scene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Export_Scene.Name = "Menu_File_Export_Scene";
       this.Menu_File_Export_Scene.Size = new System.Drawing.Size(259, 22);
       this.Menu_File_Export_Scene.Text = "Export Scene";
       this.Menu_File_Export_Scene.Click += new System.EventHandler(this.Menu_File_ExportScene_Click);
       //
       // Menu_File_Export_LayersAsPrefabs
       //
       this.Menu_File_Export_LayersAsPrefabs.Image = global::Editor.Properties.Resources.toolbar_export_quick;
       this.Menu_File_Export_LayersAsPrefabs.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Export_LayersAsPrefabs.Name = "Menu_File_Export_LayersAsPrefabs";
       this.Menu_File_Export_LayersAsPrefabs.Size = new System.Drawing.Size(259, 22);
       this.Menu_File_Export_LayersAsPrefabs.Text = "Export Layers as Prefabs";
       this.Menu_File_Export_LayersAsPrefabs.Click += new System.EventHandler(this.Menu_File_ExportLayersAsPrefabs_Click);
       //
       // Menu_File_Export_LayersAsPrefabsIntoFolder
       //
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.Image = global::Editor.Properties.Resources.toolbar_export_quick;
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.Name = "Menu_File_Export_LayersAsPrefabsIntoFolder";
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.Size = new System.Drawing.Size(259, 22);
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.Text = "Export Layers as Prefabs into Folder";
       this.Menu_File_Export_LayersAsPrefabsIntoFolder.Click += new System.EventHandler(this.Menu_File_ExportLayersAsPrefabsIntoFolder_Click);
       //
       // Menu_File_Export_Separator
       //
       this.Menu_File_Export_Separator.Name = "Menu_File_Export_Separator";
       this.Menu_File_Export_Separator.Size = new System.Drawing.Size(256, 6);
       //
       // Menu_File_Export_BatchProject
       //
       this.Menu_File_Export_BatchProject.Image = global::Editor.Properties.Resources.toolbar_folder;
       this.Menu_File_Export_BatchProject.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_File_Export_BatchProject.Name = "Menu_File_Export_BatchProject";
       this.Menu_File_Export_BatchProject.Size = new System.Drawing.Size(259, 22);
       this.Menu_File_Export_BatchProject.Text = "Batch Export Project";
       this.Menu_File_Export_BatchProject.Click += new System.EventHandler(this.Menu_File_ExportBatchProject_Click);
       //
       // Menu_File_Export_BatchDirectory
       //
       this.Menu_File_Export_BatchDirectory.Image = global::Editor.Properties.Resources.toolbar_folder;
       this.Menu_File_Export_BatchDirectory.Name = "Menu_File_Export_BatchDirectory";
       this.Menu_File_Export_BatchDirectory.Size = new System.Drawing.Size(259, 22);
       this.Menu_File_Export_BatchDirectory.Text = "Batch Export Directory";
       this.Menu_File_Export_BatchDirectory.Click += new System.EventHandler(this.Menu_File_ExportBatchDirectory_Click);
       //
       // toolStripMenuItem1
       //
       this.toolStripMenuItem1.Name = "toolStripMenuItem1";
       this.toolStripMenuItem1.Size = new System.Drawing.Size(152, 6);
       //
       // Menu_File_ProjectHelpers
       //
       this.Menu_File_ProjectHelpers.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_Project_OpenDirectory,
     this.Menu_File_Project_Move});
       this.Menu_File_ProjectHelpers.Image = global::Editor.Properties.Resources.toolbar_folder;
       this.Menu_File_ProjectHelpers.Name = "Menu_File_ProjectHelpers";
       this.Menu_File_ProjectHelpers.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_ProjectHelpers.Text = "Project Helpers";
       //
       // Menu_File_Project_OpenDirectory
       //
       this.Menu_File_Project_OpenDirectory.Image = global::Editor.Properties.Resources.toolbar_folder;
       this.Menu_File_Project_OpenDirectory.Name = "Menu_File_Project_OpenDirectory";
       this.Menu_File_Project_OpenDirectory.Size = new System.Drawing.Size(252, 22);
       this.Menu_File_Project_OpenDirectory.Text = "Open Project &Directory in Explorer";
       this.Menu_File_Project_OpenDirectory.Click += new System.EventHandler(this.menuItemOpenProjectDirectory_Click);
       //
       // Menu_File_Project_Move
       //
       this.Menu_File_Project_Move.Image = global::Editor.Properties.Resources.toolbar_folder_in;
       this.Menu_File_Project_Move.Name = "Menu_File_Project_Move";
       this.Menu_File_Project_Move.Size = new System.Drawing.Size(252, 22);
       this.Menu_File_Project_Move.Text = "Move Project";
       this.Menu_File_Project_Move.Click += new System.EventHandler(this.menuItem_MoveSceneProject_Click);
       //
       // Menu_File_SceneHelpers
       //
       this.Menu_File_SceneHelpers.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_File_Scene_Settings,
     this.Menu_File_Scene_Description,
     this.Menu_File_Scene_UniqueIDs,
     this.Menu_File_Scene_Thumbnail,
     this.Menu_File_Scene_ShapeLinkDebugFile,
     this.Menu_File_Scene_MergeExternalLayers});
       this.Menu_File_SceneHelpers.Image = global::Editor.Properties.Resources.toolbar_document;
       this.Menu_File_SceneHelpers.Name = "Menu_File_SceneHelpers";
       this.Menu_File_SceneHelpers.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_SceneHelpers.Text = "Scene Helpers";
       //
       // Menu_File_Scene_Settings
       //
       this.Menu_File_Scene_Settings.Image = global::Editor.Properties.Resources.toolbar_document_settings;
       this.Menu_File_Scene_Settings.Name = "Menu_File_Scene_Settings";
       this.Menu_File_Scene_Settings.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_Settings.Text = "Scene Settings";
       this.Menu_File_Scene_Settings.Click += new System.EventHandler(this.Menu_File_SceneSettings_Click);
       //
       // Menu_File_Scene_Description
       //
       this.Menu_File_Scene_Description.Image = global::Editor.Properties.Resources.toolbar_list;
       this.Menu_File_Scene_Description.Name = "Menu_File_Scene_Description";
       this.Menu_File_Scene_Description.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_Description.Text = "Scene Description";
       this.Menu_File_Scene_Description.Click += new System.EventHandler(this.Menu_File_Scene_Description_Click);
       //
       // Menu_File_Scene_UniqueIDs
       //
       this.Menu_File_Scene_UniqueIDs.Image = global::Editor.Properties.Resources.toolbar_duplicates;
       this.Menu_File_Scene_UniqueIDs.Name = "Menu_File_Scene_UniqueIDs";
       this.Menu_File_Scene_UniqueIDs.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_UniqueIDs.Text = "Validate Unique IDs";
       this.Menu_File_Scene_UniqueIDs.Click += new System.EventHandler(this.menuItem_ValidateUniqueIDs_Click);
       //
       // Menu_File_Scene_Thumbnail
       //
       this.Menu_File_Scene_Thumbnail.Image = global::Editor.Properties.Resources.toolbar_sky;
       this.Menu_File_Scene_Thumbnail.Name = "Menu_File_Scene_Thumbnail";
       this.Menu_File_Scene_Thumbnail.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_Thumbnail.Text = "Save Scene Thumbnail";
       this.Menu_File_Scene_Thumbnail.Click += new System.EventHandler(this.Menu_File_SaveThumbnail_Click);
       //
       // Menu_File_Scene_ShapeLinkDebugFile
       //
       this.Menu_File_Scene_ShapeLinkDebugFile.Image = global::Editor.Properties.Resources.toolbar_document_links;
       this.Menu_File_Scene_ShapeLinkDebugFile.Name = "Menu_File_Scene_ShapeLinkDebugFile";
       this.Menu_File_Scene_ShapeLinkDebugFile.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_ShapeLinkDebugFile.Text = "Save Shape Link Debug File";
       this.Menu_File_Scene_ShapeLinkDebugFile.Click += new System.EventHandler(this.menuItem_SaveShapeLinkFile_Click);
       //
       // Menu_File_Scene_MergeExternalLayers
       //
       this.Menu_File_Scene_MergeExternalLayers.Image = global::Editor.Properties.Resources.toolbar_layer_zones;
       this.Menu_File_Scene_MergeExternalLayers.Name = "Menu_File_Scene_MergeExternalLayers";
       this.Menu_File_Scene_MergeExternalLayers.Size = new System.Drawing.Size(247, 22);
       this.Menu_File_Scene_MergeExternalLayers.Text = "Merge External Layers into Zones";
       this.Menu_File_Scene_MergeExternalLayers.Click += new System.EventHandler(this.menuItem_MergeLayersIntoZones_Click);
       //
       // toolStripMenuItem2
       //
       this.toolStripMenuItem2.Name = "toolStripMenuItem2";
       this.toolStripMenuItem2.Size = new System.Drawing.Size(152, 6);
       //
       // RecentProjects
       //
       this.RecentProjects.Image = global::Editor.Properties.Resources.toolbar_recentproject;
       this.RecentProjects.Name = "RecentProjects";
       this.RecentProjects.Size = new System.Drawing.Size(155, 22);
       this.RecentProjects.Text = "Recent Projects";
       //
       // RecentScenes
       //
       this.RecentScenes.Image = global::Editor.Properties.Resources.toolbar_recentscenes;
       this.RecentScenes.Name = "RecentScenes";
       this.RecentScenes.Size = new System.Drawing.Size(155, 22);
       this.RecentScenes.Text = "Recent Scenes";
       //
       // toolStripMenuItem3
       //
       this.toolStripMenuItem3.Name = "toolStripMenuItem3";
       this.toolStripMenuItem3.Size = new System.Drawing.Size(152, 6);
       //
       // Menu_File_CloseProject
       //
       this.Menu_File_CloseProject.Image = global::Editor.Properties.Resources.toolbar_close;
       this.Menu_File_CloseProject.Name = "Menu_File_CloseProject";
       this.Menu_File_CloseProject.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_CloseProject.Text = "&Close Project";
       this.Menu_File_CloseProject.Click += new System.EventHandler(this.Menu_File_CloseProject_Click);
       //
       // Menu_File_StartPage
       //
       this.Menu_File_StartPage.Image = global::Editor.Properties.Resources.toolbar_start;
       this.Menu_File_StartPage.Name = "Menu_File_StartPage";
       this.Menu_File_StartPage.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_StartPage.Text = "Start &Page";
       this.Menu_File_StartPage.Click += new System.EventHandler(this.Menu_File_Start_Click);
       //
       // Menu_File_Exit
       //
       this.Menu_File_Exit.Image = global::Editor.Properties.Resources.toolbar_exit;
       this.Menu_File_Exit.Name = "Menu_File_Exit";
       this.Menu_File_Exit.Size = new System.Drawing.Size(155, 22);
       this.Menu_File_Exit.Text = "E&xit";
       this.Menu_File_Exit.Click += new System.EventHandler(this.Menu_File_Exit_Click);
       //
       // Menu_Edit
       //
       this.Menu_Edit.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Edit_Undo,
     this.Menu_Edit_Redo,
     this.toolStripMenuItem4,
     this.Menu_Edit_Cut,
     this.Menu_Edit_Copy,
     this.Menu_Edit_Paste,
     this.Menu_Edit_Delete,
     this.toolStripMenuItem5,
     this.Menu_Edit_FindShapes,
     this.Menu_Edit_FindDuplicates});
       this.Menu_Edit.Name = "Menu_Edit";
       this.Menu_Edit.Size = new System.Drawing.Size(39, 20);
       this.Menu_Edit.Text = "&Edit";
       this.Menu_Edit.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Edit.DropDownOpening += new System.EventHandler(this.Menu_Edit_DropDownOpening);
       //
       // Menu_Edit_Undo
       //
       this.Menu_Edit_Undo.Image = global::Editor.Properties.Resources.toolbar_undo;
       this.Menu_Edit_Undo.Name = "Menu_Edit_Undo";
       this.Menu_Edit_Undo.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Undo.Text = "&Undo";
       this.Menu_Edit_Undo.Click += new System.EventHandler(this.Menu_Edit_Undo_Click);
       //
       // Menu_Edit_Redo
       //
       this.Menu_Edit_Redo.Image = global::Editor.Properties.Resources.toolbar_redo;
       this.Menu_Edit_Redo.Name = "Menu_Edit_Redo";
       this.Menu_Edit_Redo.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Redo.Text = "&Redo";
       this.Menu_Edit_Redo.Click += new System.EventHandler(this.Menu_Edit_Redo_Click);
       //
       // toolStripMenuItem4
       //
       this.toolStripMenuItem4.Name = "toolStripMenuItem4";
       this.toolStripMenuItem4.Size = new System.Drawing.Size(152, 6);
       //
       // Menu_Edit_Cut
       //
       this.Menu_Edit_Cut.Image = global::Editor.Properties.Resources.toolbar_cut;
       this.Menu_Edit_Cut.Name = "Menu_Edit_Cut";
       this.Menu_Edit_Cut.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Cut.Text = "Cu&t";
       this.Menu_Edit_Cut.Click += new System.EventHandler(this.Menu_Edit_Cut_Click);
       //
       // Menu_Edit_Copy
       //
       this.Menu_Edit_Copy.Image = global::Editor.Properties.Resources.toolbar_copy;
       this.Menu_Edit_Copy.Name = "Menu_Edit_Copy";
       this.Menu_Edit_Copy.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Copy.Text = "&Copy";
       this.Menu_Edit_Copy.Click += new System.EventHandler(this.Menu_Edit_Copy_Click);
       //
       // Menu_Edit_Paste
       //
       this.Menu_Edit_Paste.Image = global::Editor.Properties.Resources.toolbar_paste;
       this.Menu_Edit_Paste.Name = "Menu_Edit_Paste";
       this.Menu_Edit_Paste.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Paste.Text = "&Paste";
       this.Menu_Edit_Paste.Click += new System.EventHandler(this.Menu_Edit_Paste_Click);
       //
       // Menu_Edit_Delete
       //
       this.Menu_Edit_Delete.Image = global::Editor.Properties.Resources.toolbar_delete;
       this.Menu_Edit_Delete.Name = "Menu_Edit_Delete";
       this.Menu_Edit_Delete.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_Delete.Text = "&Delete";
       this.Menu_Edit_Delete.Click += new System.EventHandler(this.Menu_Edit_Delete_Click);
       //
       // toolStripMenuItem5
       //
       this.toolStripMenuItem5.Name = "toolStripMenuItem5";
       this.toolStripMenuItem5.Size = new System.Drawing.Size(152, 6);
       //
       // Menu_Edit_FindShapes
       //
       this.Menu_Edit_FindShapes.Image = global::Editor.Properties.Resources.toolbar_search;
       this.Menu_Edit_FindShapes.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Edit_FindShapes.Name = "Menu_Edit_FindShapes";
       this.Menu_Edit_FindShapes.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_FindShapes.Text = "Find Shapes";
       this.Menu_Edit_FindShapes.Click += new System.EventHandler(this.Menu_Edit_FindShapes_Click);
       //
       // Menu_Edit_FindDuplicates
       //
       this.Menu_Edit_FindDuplicates.Image = global::Editor.Properties.Resources.toolbar_duplicates;
       this.Menu_Edit_FindDuplicates.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Edit_FindDuplicates.Name = "Menu_Edit_FindDuplicates";
       this.Menu_Edit_FindDuplicates.Size = new System.Drawing.Size(155, 22);
       this.Menu_Edit_FindDuplicates.Text = "Find Duplicates";
       this.Menu_Edit_FindDuplicates.Click += new System.EventHandler(this.Menu_Edit_FindDuplicates_Click);
       //
       // Menu_View
       //
       this.Menu_View.Name = "Menu_View";
       this.Menu_View.Size = new System.Drawing.Size(44, 20);
       this.Menu_View.Text = "&View";
       //
       // Menu_Create
       //
       this.Menu_Create.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Create_NewLayer,
     this.Menu_Create_NewZone,
     this.Menu_Create_ZoneGrid,
     this.Menu_Create_Separator,
     this.Menu_Create_Dummy});
       this.Menu_Create.Name = "Menu_Create";
       this.Menu_Create.Size = new System.Drawing.Size(53, 20);
       this.Menu_Create.Text = "&Create";
       this.Menu_Create.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Create.DropDownOpening += new System.EventHandler(this.Menu_Create_Popup);
       //
       // Menu_Create_NewLayer
       //
       this.Menu_Create_NewLayer.Name = "Menu_Create_NewLayer";
       this.Menu_Create_NewLayer.Size = new System.Drawing.Size(166, 22);
       this.Menu_Create_NewLayer.Text = "Create New Layer";
       this.Menu_Create_NewLayer.Click += new System.EventHandler(this.menu_CreateNewLayer_Click);
       //
       // Menu_Create_NewZone
       //
       this.Menu_Create_NewZone.Name = "Menu_Create_NewZone";
       this.Menu_Create_NewZone.Size = new System.Drawing.Size(166, 22);
       this.Menu_Create_NewZone.Text = "Create New Zone";
       this.Menu_Create_NewZone.Click += new System.EventHandler(this.menu_CreateNewZone_Click);
       //
       // Menu_Create_ZoneGrid
       //
       this.Menu_Create_ZoneGrid.Name = "Menu_Create_ZoneGrid";
       this.Menu_Create_ZoneGrid.Size = new System.Drawing.Size(166, 22);
       this.Menu_Create_ZoneGrid.Text = "Create Zone Grid";
       this.Menu_Create_ZoneGrid.Click += new System.EventHandler(this.menu_CreateZoneGrid_Click);
       //
       // Menu_Create_Separator
       //
       this.Menu_Create_Separator.Name = "Menu_Create_Separator";
       this.Menu_Create_Separator.Size = new System.Drawing.Size(163, 6);
       //
       // Menu_Create_Dummy
       //
       this.Menu_Create_Dummy.Name = "Menu_Create_Dummy";
       this.Menu_Create_Dummy.Size = new System.Drawing.Size(166, 22);
       this.Menu_Create_Dummy.Text = "Dummy";
       //
       // Menu_Play
       //
       this.Menu_Play.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Play_Animate,
     this.Menu_Play_RunInEditor,
     this.Menu_Play_PlayTheGame,
     this.toolStripMenuItem7,
     this.Menu_Play_TimeScale});
       this.Menu_Play.Name = "Menu_Play";
       this.Menu_Play.Size = new System.Drawing.Size(41, 20);
       this.Menu_Play.Text = "&Play";
       this.Menu_Play.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Play.DropDownOpening += new System.EventHandler(this.Menu_Play_Popup);
       //
       // Menu_Play_Animate
       //
       this.Menu_Play_Animate.Image = global::Editor.Properties.Resources.toolbar_timeofday;
       this.Menu_Play_Animate.Name = "Menu_Play_Animate";
       this.Menu_Play_Animate.Size = new System.Drawing.Size(150, 22);
       this.Menu_Play_Animate.Text = "&Animate";
       this.Menu_Play_Animate.Click += new System.EventHandler(this.Menu_Play_Animate_Click);
       //
       // Menu_Play_RunInEditor
       //
       this.Menu_Play_RunInEditor.Image = global::Editor.Properties.Resources.toolbar_editor;
       this.Menu_Play_RunInEditor.Name = "Menu_Play_RunInEditor";
       this.Menu_Play_RunInEditor.Size = new System.Drawing.Size(150, 22);
       this.Menu_Play_RunInEditor.Text = "&Run in Editor";
       this.Menu_Play_RunInEditor.Click += new System.EventHandler(this.Menu_Play_RunInEditor_Click);
       //
       // Menu_Play_PlayTheGame
       //
       this.Menu_Play_PlayTheGame.Image = global::Editor.Properties.Resources.toolbar_gamepad;
       this.Menu_Play_PlayTheGame.Name = "Menu_Play_PlayTheGame";
       this.Menu_Play_PlayTheGame.Size = new System.Drawing.Size(150, 22);
       this.Menu_Play_PlayTheGame.Text = "&Play the Game";
       this.Menu_Play_PlayTheGame.Click += new System.EventHandler(this.Menu_Play_PlayTheGame_Click);
       //
       // toolStripMenuItem7
       //
       this.toolStripMenuItem7.Name = "toolStripMenuItem7";
       this.toolStripMenuItem7.Size = new System.Drawing.Size(147, 6);
       //
       // Menu_Play_TimeScale
       //
       this.Menu_Play_TimeScale.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Play_TS_100,
     this.toolStripMenuItem8,
     this.Menu_Play_TS_10,
     this.Menu_Play_TS_25,
     this.Menu_Play_TS_50,
     this.Menu_Play_TS_200,
     this.Menu_Play_TS_500});
       this.Menu_Play_TimeScale.Name = "Menu_Play_TimeScale";
       this.Menu_Play_TimeScale.Size = new System.Drawing.Size(150, 22);
       this.Menu_Play_TimeScale.Text = "Time Scale";
       this.Menu_Play_TimeScale.DropDownOpening += new System.EventHandler(this.Menu_Play_TimeScale_Popup);
       //
       // Menu_Play_TS_100
       //
       this.Menu_Play_TS_100.Name = "Menu_Play_TS_100";
       this.Menu_Play_TS_100.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_100.Text = "Real Time (100%)";
       this.Menu_Play_TS_100.Click += new System.EventHandler(this.Menu_Play_TS_100_Click);
       //
       // toolStripMenuItem8
       //
       this.toolStripMenuItem8.Name = "toolStripMenuItem8";
       this.toolStripMenuItem8.Size = new System.Drawing.Size(162, 6);
       //
       // Menu_Play_TS_10
       //
       this.Menu_Play_TS_10.Name = "Menu_Play_TS_10";
       this.Menu_Play_TS_10.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_10.Text = "10%";
       this.Menu_Play_TS_10.Click += new System.EventHandler(this.Menu_Play_TS_10_Click);
       //
       // Menu_Play_TS_25
       //
       this.Menu_Play_TS_25.Name = "Menu_Play_TS_25";
       this.Menu_Play_TS_25.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_25.Text = "25%";
       this.Menu_Play_TS_25.Click += new System.EventHandler(this.Menu_Play_TS_25_Click);
       //
       // Menu_Play_TS_50
       //
       this.Menu_Play_TS_50.Name = "Menu_Play_TS_50";
       this.Menu_Play_TS_50.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_50.Text = "50%";
       this.Menu_Play_TS_50.Click += new System.EventHandler(this.Menu_Play_TS_50_Click);
       //
       // Menu_Play_TS_200
       //
       this.Menu_Play_TS_200.Name = "Menu_Play_TS_200";
       this.Menu_Play_TS_200.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_200.Text = "200%";
       this.Menu_Play_TS_200.Click += new System.EventHandler(this.Menu_Play_TS_200_Click);
       //
       // Menu_Play_TS_500
       //
       this.Menu_Play_TS_500.Name = "Menu_Play_TS_500";
       this.Menu_Play_TS_500.Size = new System.Drawing.Size(165, 22);
       this.Menu_Play_TS_500.Text = "500%";
       this.Menu_Play_TS_500.Click += new System.EventHandler(this.Menu_Play_TS_500_Click);
       //
       // Menu_Engine
       //
       this.Menu_Engine.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Engine_EditSky,
     this.Menu_Engine_EditTimeOfDay,
     this.Menu_Engine_EditFog,
     this.Menu_Engine_EditPostProcessors,
     this.Menu_Engine_ProfileSettings,
     this.Menu_Engine_ManifestSettings,
     this.toolStripMenuItem9,
     this.Menu_Engine_CalculateVisibility,
     this.Menu_Engine_UseVisibility,
     this.toolStripMenuItem15,
     this.Menu_Engine_ReloadResources,
     this.Menu_Engine_ShowResources,
     this.Menu_Engine_PurgeResources,
     this.toolStripMenuItem16,
     this.Menu_Engine_SaveScreenshot,
     this.Menu_Engine_SaveScreenshotAs});
       this.Menu_Engine.Name = "Menu_Engine";
       this.Menu_Engine.Size = new System.Drawing.Size(55, 20);
       this.Menu_Engine.Text = "E&ngine";
       this.Menu_Engine.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Engine.DropDownOpening += new System.EventHandler(this.Menu_Engine_Popup);
       //
       // Menu_Engine_EditSky
       //
       this.Menu_Engine_EditSky.Image = global::Editor.Properties.Resources.toolbar_sky;
       this.Menu_Engine_EditSky.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_EditSky.Name = "Menu_Engine_EditSky";
       this.Menu_Engine_EditSky.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_EditSky.Text = "Edit Sky";
       this.Menu_Engine_EditSky.Click += new System.EventHandler(this.Menu_Engine_EditSky_Click);
       //
       // Menu_Engine_EditTimeOfDay
       //
       this.Menu_Engine_EditTimeOfDay.Image = global::Editor.Properties.Resources.toolbar_tod;
       this.Menu_Engine_EditTimeOfDay.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_EditTimeOfDay.Name = "Menu_Engine_EditTimeOfDay";
       this.Menu_Engine_EditTimeOfDay.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_EditTimeOfDay.Text = "Edit Time of Day";
       this.Menu_Engine_EditTimeOfDay.Click += new System.EventHandler(this.Menu_Engine_EditTimeOfDay_Click);
       //
       // Menu_Engine_EditFog
       //
       this.Menu_Engine_EditFog.Image = global::Editor.Properties.Resources.toolbar_fog;
       this.Menu_Engine_EditFog.Name = "Menu_Engine_EditFog";
       this.Menu_Engine_EditFog.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_EditFog.Text = "Edit Fog";
       this.Menu_Engine_EditFog.Click += new System.EventHandler(this.Menu_Engine_EditFog_Click);
       //
       // Menu_Engine_EditPostProcessors
       //
       this.Menu_Engine_EditPostProcessors.Image = global::Editor.Properties.Resources.toolbar_post;
       this.Menu_Engine_EditPostProcessors.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_EditPostProcessors.Name = "Menu_Engine_EditPostProcessors";
       this.Menu_Engine_EditPostProcessors.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_EditPostProcessors.Text = "Post Processors";
       this.Menu_Engine_EditPostProcessors.Click += new System.EventHandler(this.Menu_Engine_EditPostProcessors_Click);
       //
       // Menu_Engine_ProfileSettings
       //
       this.Menu_Engine_ProfileSettings.Image = global::Editor.Properties.Resources.asset_profile_manager_16x16;
       this.Menu_Engine_ProfileSettings.Name = "Menu_Engine_ProfileSettings";
       this.Menu_Engine_ProfileSettings.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_ProfileSettings.Text = "Asset Profile Manager";
       this.Menu_Engine_ProfileSettings.Click += new System.EventHandler(this.Menu_Engine_ProfileSettings_Click);
       //
       // Menu_Engine_ManifestSettings
       //
       this.Menu_Engine_ManifestSettings.Image = global::Editor.Properties.Resources.manifest_settings_16x16;
       this.Menu_Engine_ManifestSettings.Name = "Menu_Engine_ManifestSettings";
       this.Menu_Engine_ManifestSettings.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_ManifestSettings.Text = "Manifest Settings";
       this.Menu_Engine_ManifestSettings.Click += new System.EventHandler(this.Menu_Engine_ManifestSettings_Click);
       //
       // toolStripMenuItem9
       //
       this.toolStripMenuItem9.Name = "toolStripMenuItem9";
       this.toolStripMenuItem9.Size = new System.Drawing.Size(189, 6);
       //
       // Menu_Engine_CalculateVisibility
       //
       this.Menu_Engine_CalculateVisibility.Image = global::Editor.Properties.Resources.toolbar_add;
       this.Menu_Engine_CalculateVisibility.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_CalculateVisibility.Name = "Menu_Engine_CalculateVisibility";
       this.Menu_Engine_CalculateVisibility.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_CalculateVisibility.Text = "Calculate Visibility";
       this.Menu_Engine_CalculateVisibility.Click += new System.EventHandler(this.menu_CalculateVisibility_Click);
       //
       // Menu_Engine_UseVisibility
       //
       this.Menu_Engine_UseVisibility.Image = global::Editor.Properties.Resources.toolbar_check;
       this.Menu_Engine_UseVisibility.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_UseVisibility.Name = "Menu_Engine_UseVisibility";
       this.Menu_Engine_UseVisibility.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_UseVisibility.Text = "Use Visibility in Engine";
       this.Menu_Engine_UseVisibility.Click += new System.EventHandler(this.menu_UseVisibility_Click);
       //
       // toolStripMenuItem15
       //
       this.toolStripMenuItem15.Name = "toolStripMenuItem15";
       this.toolStripMenuItem15.Size = new System.Drawing.Size(189, 6);
       //
       // Menu_Engine_ReloadResources
       //
       this.Menu_Engine_ReloadResources.Image = global::Editor.Properties.Resources.toolbar_refresh;
       this.Menu_Engine_ReloadResources.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_ReloadResources.Name = "Menu_Engine_ReloadResources";
       this.Menu_Engine_ReloadResources.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_ReloadResources.Text = "Reload Resources";
       this.Menu_Engine_ReloadResources.Click += new System.EventHandler(this.Menu_Engine_ReloadResources_Click);
       //
       // Menu_Engine_ShowResources
       //
       this.Menu_Engine_ShowResources.Image = global::Editor.Properties.Resources.toolbar_resources_small;
       this.Menu_Engine_ShowResources.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_ShowResources.Name = "Menu_Engine_ShowResources";
       this.Menu_Engine_ShowResources.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_ShowResources.Text = "Show Resources";
       this.Menu_Engine_ShowResources.Click += new System.EventHandler(this.Menu_Engine_ShowResources_Click);
       //
       // Menu_Engine_PurgeResources
       //
       this.Menu_Engine_PurgeResources.Image = global::Editor.Properties.Resources.toolbar_remove;
       this.Menu_Engine_PurgeResources.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_PurgeResources.Name = "Menu_Engine_PurgeResources";
       this.Menu_Engine_PurgeResources.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_PurgeResources.Text = "Purge All Resources";
       this.Menu_Engine_PurgeResources.Click += new System.EventHandler(this.Menu_Engine_PurgeResources_Click);
       //
       // toolStripMenuItem16
       //
       this.toolStripMenuItem16.Name = "toolStripMenuItem16";
       this.toolStripMenuItem16.Size = new System.Drawing.Size(189, 6);
       //
       // Menu_Engine_SaveScreenshot
       //
       this.Menu_Engine_SaveScreenshot.Image = global::Editor.Properties.Resources.toolbar_screenshot;
       this.Menu_Engine_SaveScreenshot.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_SaveScreenshot.Name = "Menu_Engine_SaveScreenshot";
       this.Menu_Engine_SaveScreenshot.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_SaveScreenshot.Text = "Save Screenshot";
       this.Menu_Engine_SaveScreenshot.Click += new System.EventHandler(this.Menu_Engine_Screenshot_Click);
       //
       // Menu_Engine_SaveScreenshotAs
       //
       this.Menu_Engine_SaveScreenshotAs.Image = global::Editor.Properties.Resources.toolbar_screenshot;
       this.Menu_Engine_SaveScreenshotAs.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Engine_SaveScreenshotAs.Name = "Menu_Engine_SaveScreenshotAs";
       this.Menu_Engine_SaveScreenshotAs.Size = new System.Drawing.Size(192, 22);
       this.Menu_Engine_SaveScreenshotAs.Text = "Save Screenshot As";
       this.Menu_Engine_SaveScreenshotAs.Click += new System.EventHandler(this.Menu_Engine_ScreenshotAs_Click);
       //
       // Menu_StaticLighting
       //
       this.Menu_StaticLighting.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_StaticLighting_ActiveTool,
     this.Menu_StaticLighting_EditSettings,
     this.toolStripMenuItem10,
     this.Menu_StaticLighting_CalculateLighting,
     this.Menu_StaticLighting_ResetLighting});
       this.Menu_StaticLighting.Name = "Menu_StaticLighting";
       this.Menu_StaticLighting.Size = new System.Drawing.Size(63, 20);
       this.Menu_StaticLighting.Text = "&Lighting";
       this.Menu_StaticLighting.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_StaticLighting.DropDownOpening += new System.EventHandler(this.Menu_Tools_Popup);
       //
       // Menu_StaticLighting_ActiveTool
       //
       this.Menu_StaticLighting_ActiveTool.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_StaticLighting_ActiveTool_Dummy});
       this.Menu_StaticLighting_ActiveTool.Image = global::Editor.Properties.Resources.toolbar_light_calc;
       this.Menu_StaticLighting_ActiveTool.Name = "Menu_StaticLighting_ActiveTool";
       this.Menu_StaticLighting_ActiveTool.Size = new System.Drawing.Size(181, 22);
       this.Menu_StaticLighting_ActiveTool.Text = "Active Lighting Tool";
       this.Menu_StaticLighting_ActiveTool.DropDownOpening += new System.EventHandler(this.Menu_Lighting_ActiveTool_Popup);
       //
       // Menu_StaticLighting_ActiveTool_Dummy
       //
       this.Menu_StaticLighting_ActiveTool_Dummy.Name = "Menu_StaticLighting_ActiveTool_Dummy";
       this.Menu_StaticLighting_ActiveTool_Dummy.Size = new System.Drawing.Size(117, 22);
       this.Menu_StaticLighting_ActiveTool_Dummy.Text = "Dummy";
       //
       // Menu_StaticLighting_EditSettings
       //
       this.Menu_StaticLighting_EditSettings.Image = global::Editor.Properties.Resources.toolbar_export_settings;
       this.Menu_StaticLighting_EditSettings.Name = "Menu_StaticLighting_EditSettings";
       this.Menu_StaticLighting_EditSettings.Size = new System.Drawing.Size(181, 22);
       this.Menu_StaticLighting_EditSettings.Text = "Edit Settings";
       this.Menu_StaticLighting_EditSettings.Click += new System.EventHandler(this.Menu_Engine_UpdateLighting_Click);
       //
       // toolStripMenuItem10
       //
       this.toolStripMenuItem10.Name = "toolStripMenuItem10";
       this.toolStripMenuItem10.Size = new System.Drawing.Size(178, 6);
       //
       // Menu_StaticLighting_CalculateLighting
       //
       this.Menu_StaticLighting_CalculateLighting.Image = global::Editor.Properties.Resources.toolbar_light_calc;
       this.Menu_StaticLighting_CalculateLighting.Name = "Menu_StaticLighting_CalculateLighting";
       this.Menu_StaticLighting_CalculateLighting.Size = new System.Drawing.Size(181, 22);
       this.Menu_StaticLighting_CalculateLighting.Text = "Calculate Lighting";
       this.Menu_StaticLighting_CalculateLighting.Click += new System.EventHandler(this.Menu_Tools_CalculateLighting_Click);
       //
       // Menu_StaticLighting_ResetLighting
       //
       this.Menu_StaticLighting_ResetLighting.Image = global::Editor.Properties.Resources.toolbar_light_reset;
       this.Menu_StaticLighting_ResetLighting.Name = "Menu_StaticLighting_ResetLighting";
       this.Menu_StaticLighting_ResetLighting.Size = new System.Drawing.Size(181, 22);
       this.Menu_StaticLighting_ResetLighting.Text = "Reset Lighting";
       this.Menu_StaticLighting_ResetLighting.Click += new System.EventHandler(this.Menu_Tools_ResetLighting_Click);
       //
       // Menu_Options
       //
       this.Menu_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Options_Settings,
     this.Menu_Options_Hotkeys,
     this.toolStripMenuItem17,
     this.Menu_Options_ShowPlugins,
     this.toolStripMenuItem18});
       this.Menu_Options.Name = "Menu_Options";
       this.Menu_Options.Size = new System.Drawing.Size(49, 20);
       this.Menu_Options.Text = "E&xtras";
       this.Menu_Options.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Options.DropDownOpening += new System.EventHandler(this.menu_Extras_Popup);
       //
       // Menu_Options_Settings
       //
       this.Menu_Options_Settings.Image = global::Editor.Properties.Resources.toolbar_settings;
       this.Menu_Options_Settings.Name = "Menu_Options_Settings";
       this.Menu_Options_Settings.Size = new System.Drawing.Size(145, 22);
       this.Menu_Options_Settings.Text = "Settings";
       this.Menu_Options_Settings.Click += new System.EventHandler(this.menu_Extras_Settings_Click);
       //
       // Menu_Options_Hotkeys
       //
       this.Menu_Options_Hotkeys.Image = global::Editor.Properties.Resources.toolbar_hotkeys;
       this.Menu_Options_Hotkeys.Name = "Menu_Options_Hotkeys";
       this.Menu_Options_Hotkeys.Size = new System.Drawing.Size(145, 22);
       this.Menu_Options_Hotkeys.Text = "Hotkeys";
       this.Menu_Options_Hotkeys.Click += new System.EventHandler(this.menu_Extras_Hotkeys_Click);
       //
       // toolStripMenuItem17
       //
       this.toolStripMenuItem17.Name = "toolStripMenuItem17";
       this.toolStripMenuItem17.Size = new System.Drawing.Size(142, 6);
       //
       // Menu_Options_ShowPlugins
       //
       this.Menu_Options_ShowPlugins.Image = global::Editor.Properties.Resources.toolbar_plugins;
       this.Menu_Options_ShowPlugins.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.Menu_Options_ShowPlugins.Name = "Menu_Options_ShowPlugins";
       this.Menu_Options_ShowPlugins.Size = new System.Drawing.Size(145, 22);
       this.Menu_Options_ShowPlugins.Text = "Show Plugins";
       this.Menu_Options_ShowPlugins.Click += new System.EventHandler(this.Menu_Engine_ShowPlugins_Click);
       //
       // toolStripMenuItem18
       //
       this.toolStripMenuItem18.Name = "toolStripMenuItem18";
       this.toolStripMenuItem18.Size = new System.Drawing.Size(142, 6);
       //
       // Menu_Remote
       //
       this.Menu_Remote.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Remote_XBOX360_Connect,
     this.Menu_Remote_XBOX360_Launch,
     this.Menu_Remote_XBOX360_Animate,
     this.Menu_Remote_XBOX360_PlayTheGame,
     this.Menu_Remote_XBOX360_Stop,
     this.Menu_Remote_XBOX360_Seperator,
     this.Menu_Remote_PS3_Connect,
     this.Menu_Remote_PS3_Animate,
     this.Menu_Remote_PS3_PlayTheGame,
     this.Menu_Remote_PS3_Stop,
     this.Menu_Remote_PS3_Seperator,
     this.Menu_Remote_ExportAndRun,
     this.Menu_Remote_Restart,
     this.Menu_Remote_ReloadResources});
       this.Menu_Remote.Name = "Menu_Remote";
       this.Menu_Remote.Size = new System.Drawing.Size(60, 20);
       this.Menu_Remote.Text = "&Remote";
       this.Menu_Remote.DropDownClosed += new System.EventHandler(this.Menu_DropDownClosed);
       this.Menu_Remote.DropDownOpening += new System.EventHandler(this.menu_Remote_Popup);
       //
       // Menu_Remote_XBOX360_Connect
       //
       this.Menu_Remote_XBOX360_Connect.Name = "Menu_Remote_XBOX360_Connect";
       this.Menu_Remote_XBOX360_Connect.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_XBOX360_Connect.Text = "Connect XBOX 360";
       this.Menu_Remote_XBOX360_Connect.Click += new System.EventHandler(this.Menu_Remote_Xbox360_Click);
       //
       // Menu_Remote_XBOX360_Launch
       //
       this.Menu_Remote_XBOX360_Launch.Enabled = false;
       this.Menu_Remote_XBOX360_Launch.Name = "Menu_Remote_XBOX360_Launch";
       this.Menu_Remote_XBOX360_Launch.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_XBOX360_Launch.Text = "Launch XBOX 360 Client";
       this.Menu_Remote_XBOX360_Launch.Click += new System.EventHandler(this.Menu_Remote_Xbox360_Launch_Click);
       //
       // Menu_Remote_XBOX360_Animate
       //
       this.Menu_Remote_XBOX360_Animate.Name = "Menu_Remote_XBOX360_Animate";
       this.Menu_Remote_XBOX360_Animate.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_XBOX360_Animate.Text = "Animate";
       this.Menu_Remote_XBOX360_Animate.Click += new System.EventHandler(this.Menu_Remote_Xbox360_Animate_Click);
       //
       // Menu_Remote_XBOX360_PlayTheGame
       //
       this.Menu_Remote_XBOX360_PlayTheGame.Name = "Menu_Remote_XBOX360_PlayTheGame";
       this.Menu_Remote_XBOX360_PlayTheGame.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_XBOX360_PlayTheGame.Text = "Play The Game";
       this.Menu_Remote_XBOX360_PlayTheGame.Click += new System.EventHandler(this.Menu_Remote_Xbox360_PlayTheGame_Click);
       //
       // Menu_Remote_XBOX360_Stop
       //
       this.Menu_Remote_XBOX360_Stop.Name = "Menu_Remote_XBOX360_Stop";
       this.Menu_Remote_XBOX360_Stop.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_XBOX360_Stop.Text = "Stop Playing";
       this.Menu_Remote_XBOX360_Stop.Click += new System.EventHandler(this.Menu_Remote_Xbox360_StopPlaying_Click);
       //
       // Menu_Remote_XBOX360_Seperator
       //
       this.Menu_Remote_XBOX360_Seperator.Name = "Menu_Remote_XBOX360_Seperator";
       this.Menu_Remote_XBOX360_Seperator.Size = new System.Drawing.Size(214, 6);
       //
       // Menu_Remote_PS3_Connect
       //
       this.Menu_Remote_PS3_Connect.Name = "Menu_Remote_PS3_Connect";
       this.Menu_Remote_PS3_Connect.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_PS3_Connect.Text = "Connect PS3";
       this.Menu_Remote_PS3_Connect.Click += new System.EventHandler(this.Menu_Remote_PS3_Click);
       //
       // Menu_Remote_PS3_Animate
       //
       this.Menu_Remote_PS3_Animate.Name = "Menu_Remote_PS3_Animate";
       this.Menu_Remote_PS3_Animate.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_PS3_Animate.Text = "Animate";
       this.Menu_Remote_PS3_Animate.Click += new System.EventHandler(this.Menu_Remote_PS3_Animate_Click);
       //
       // Menu_Remote_PS3_PlayTheGame
       //
       this.Menu_Remote_PS3_PlayTheGame.Name = "Menu_Remote_PS3_PlayTheGame";
       this.Menu_Remote_PS3_PlayTheGame.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_PS3_PlayTheGame.Text = "Play The Game";
       this.Menu_Remote_PS3_PlayTheGame.Click += new System.EventHandler(this.Menu_Remote_PS3_PlayTheGame_Click);
       //
       // Menu_Remote_PS3_Stop
       //
       this.Menu_Remote_PS3_Stop.Name = "Menu_Remote_PS3_Stop";
       this.Menu_Remote_PS3_Stop.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_PS3_Stop.Text = "Stop Playing";
       this.Menu_Remote_PS3_Stop.Click += new System.EventHandler(this.Menu_Remote_PS3_StopPlaying_Click);
       //
       // Menu_Remote_PS3_Seperator
       //
       this.Menu_Remote_PS3_Seperator.Name = "Menu_Remote_PS3_Seperator";
       this.Menu_Remote_PS3_Seperator.Size = new System.Drawing.Size(214, 6);
       //
       // Menu_Remote_ExportAndRun
       //
       this.Menu_Remote_ExportAndRun.Enabled = false;
       this.Menu_Remote_ExportAndRun.Name = "Menu_Remote_ExportAndRun";
       this.Menu_Remote_ExportAndRun.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_ExportAndRun.Text = "Export and Run Scene";
       this.Menu_Remote_ExportAndRun.Click += new System.EventHandler(this.Menu_Remote_ExportRun_Click);
       //
       // Menu_Remote_Restart
       //
       this.Menu_Remote_Restart.Enabled = false;
       this.Menu_Remote_Restart.Name = "Menu_Remote_Restart";
       this.Menu_Remote_Restart.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_Restart.Text = "Restart Exported Scene";
       this.Menu_Remote_Restart.Click += new System.EventHandler(this.Menu_Remote_Restart_Click);
       //
       // Menu_Remote_ReloadResources
       //
       this.Menu_Remote_ReloadResources.Enabled = false;
       this.Menu_Remote_ReloadResources.Name = "Menu_Remote_ReloadResources";
       this.Menu_Remote_ReloadResources.Size = new System.Drawing.Size(217, 22);
       this.Menu_Remote_ReloadResources.Text = "Reload Modified Resources";
       this.Menu_Remote_ReloadResources.Click += new System.EventHandler(this.Menu_Remote_ReloadResources_Click);
       //
       // Menu_Help
       //
       this.Menu_Help.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Help_iHelp,
     this.Menu_Help_VisionDoc,
     this.toolStripMenuItem21,
     this.Menu_Help_About});
       this.Menu_Help.Name = "Menu_Help";
       this.Menu_Help.Size = new System.Drawing.Size(44, 20);
       this.Menu_Help.Text = "&Help";
       //
       // Menu_Help_iHelp
       //
       this.Menu_Help_iHelp.Enabled = false;
       this.Menu_Help_iHelp.Name = "Menu_Help_iHelp";
       this.Menu_Help_iHelp.Size = new System.Drawing.Size(192, 22);
       this.Menu_Help_iHelp.Text = "iHelp ";
       this.Menu_Help_iHelp.Click += new System.EventHandler(this.Menu_Help_iHelp_Click);
       //
       // Menu_Help_VisionDoc
       //
       this.Menu_Help_VisionDoc.Enabled = false;
       this.Menu_Help_VisionDoc.Name = "Menu_Help_VisionDoc";
       this.Menu_Help_VisionDoc.Size = new System.Drawing.Size(192, 22);
       this.Menu_Help_VisionDoc.Text = "Vision Documentation";
       this.Menu_Help_VisionDoc.Visible = false;
       //
       // toolStripMenuItem21
       //
       this.toolStripMenuItem21.Name = "toolStripMenuItem21";
       this.toolStripMenuItem21.Size = new System.Drawing.Size(189, 6);
       //
       // Menu_Help_About
       //
       this.Menu_Help_About.Name = "Menu_Help_About";
       this.Menu_Help_About.Size = new System.Drawing.Size(192, 22);
       this.Menu_Help_About.Text = "About";
       this.Menu_Help_About.Click += new System.EventHandler(this.Menu_Help_About_Click);
       //
       // Menu_Tests
       //
       this.Menu_Tests.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Menu_Tests_RunTests,
     this.Menu_Tests_VideoSize});
       this.Menu_Tests.Name = "Menu_Tests";
       this.Menu_Tests.Size = new System.Drawing.Size(46, 20);
       this.Menu_Tests.Text = "&Tests";
       //
       // Menu_Tests_RunTests
       //
       this.Menu_Tests_RunTests.Name = "Menu_Tests_RunTests";
       this.Menu_Tests_RunTests.Size = new System.Drawing.Size(146, 22);
       this.Menu_Tests_RunTests.Text = "Run Tests";
       this.Menu_Tests_RunTests.Click += new System.EventHandler(this.menu_Tests_RunTests_Click);
       //
       // Menu_Tests_VideoSize
       //
       this.Menu_Tests_VideoSize.Name = "Menu_Tests_VideoSize";
       this.Menu_Tests_VideoSize.Size = new System.Drawing.Size(146, 22);
       this.Menu_Tests_VideoSize.Text = "Set Video Size";
       this.Menu_Tests_VideoSize.Click += new System.EventHandler(this.menu_Tests_VideoSize_Click);
       //
       // mainToolBar
       //
       this.mainToolBar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
       this.mainToolBar.ImageScalingSize = new System.Drawing.Size(24, 24);
       this.mainToolBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_Preferences,
     this.ToolBar_Hotkeys,
     this.ToolBar_Sep1,
     this.ToolBar_New,
     this.ToolBar_Open,
     this.ToolBar_Save,
     this.ToolBar_Export,
     this.ToolBar_Sep2,
     this.Toolbar_Cut,
     this.Toolbar_Copy,
     this.Toolbar_Paste,
     this.Toolbar_Delete,
     this.ToolBar_Sep3,
     this.Toolbar_Undo,
     this.Toolbar_Redo,
     this.ToolBar_Sep4,
     this.ToolBar_Panels,
     this.ToolBar_OpenAssetBrowser,
     this.ToolBar_Tools,
     this.ToolBar_Resources,
     this.ToolBar_Relight,
     this.ToolBar_Visibility,
     this.ToolBar_Sep5});
       this.mainToolBar.Location = new System.Drawing.Point(0, 24);
       this.mainToolBar.Name = "mainToolBar";
       this.mainToolBar.Size = new System.Drawing.Size(1028, 31);
       this.mainToolBar.TabIndex = 1;
       //
       // ToolBar_Preferences
       //
       this.ToolBar_Preferences.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Preferences.Image = global::Editor.Properties.Resources.toolbar_settings;
       this.ToolBar_Preferences.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Preferences.Name = "ToolBar_Preferences";
       this.ToolBar_Preferences.Size = new System.Drawing.Size(28, 28);
       this.ToolBar_Preferences.Text = "Settings";
       this.ToolBar_Preferences.Click += new System.EventHandler(this.menu_Extras_Settings_Click);
       //
       // ToolBar_Hotkeys
       //
       this.ToolBar_Hotkeys.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Hotkeys.Image = global::Editor.Properties.Resources.toolbar_hotkeys;
       this.ToolBar_Hotkeys.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Hotkeys.Name = "ToolBar_Hotkeys";
       this.ToolBar_Hotkeys.Size = new System.Drawing.Size(28, 28);
       this.ToolBar_Hotkeys.Text = "Hotkeys";
       this.ToolBar_Hotkeys.Click += new System.EventHandler(this.menu_Extras_Hotkeys_Click);
       //
       // ToolBar_Sep1
       //
       this.ToolBar_Sep1.Name = "ToolBar_Sep1";
       this.ToolBar_Sep1.Size = new System.Drawing.Size(6, 31);
       //
       // ToolBar_New
       //
       this.ToolBar_New.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_New.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_NewProject,
     this.ToolBar_NewScene});
       this.ToolBar_New.Image = global::Editor.Properties.Resources.toolbar_new;
       this.ToolBar_New.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_New.Name = "ToolBar_New";
       this.ToolBar_New.Size = new System.Drawing.Size(40, 28);
       this.ToolBar_New.Text = "New";
       this.ToolBar_New.ToolTipText = "Create New Project or New Scene";
       this.ToolBar_New.ButtonClick += new System.EventHandler(this.ToolBar_New_ButtonClick);
       //
       // ToolBar_NewProject
       //
       this.ToolBar_NewProject.Image = global::Editor.Properties.Resources.toolbar_new_project;
       this.ToolBar_NewProject.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_NewProject.Name = "ToolBar_NewProject";
       this.ToolBar_NewProject.Size = new System.Drawing.Size(138, 22);
       this.ToolBar_NewProject.Text = "New Project";
       this.ToolBar_NewProject.Click += new System.EventHandler(this.Menu_File_New_Project_Click);
       //
       // ToolBar_NewScene
       //
       this.ToolBar_NewScene.Image = global::Editor.Properties.Resources.toolbar_new_scene;
       this.ToolBar_NewScene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_NewScene.Name = "ToolBar_NewScene";
       this.ToolBar_NewScene.Size = new System.Drawing.Size(138, 22);
       this.ToolBar_NewScene.Text = "New Scene";
       this.ToolBar_NewScene.Click += new System.EventHandler(this.Menu_File_New_Scene_Click);
       //
       // ToolBar_Open
       //
       this.ToolBar_Open.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Open.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_OpenProject,
     this.ToolBar_OpenScene,
     this.toolStripMenuItem6});
       this.ToolBar_Open.Image = global::Editor.Properties.Resources.toolbar_open;
       this.ToolBar_Open.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Open.Name = "ToolBar_Open";
       this.ToolBar_Open.Size = new System.Drawing.Size(40, 28);
       this.ToolBar_Open.Text = "Open";
       this.ToolBar_Open.ToolTipText = "Open Project or Scene";
       this.ToolBar_Open.ButtonClick += new System.EventHandler(this.ToolBar_Open_ButtonClick);
       this.ToolBar_Open.DropDownOpening += new System.EventHandler(this.ToolBar_Open_DropDownOpening);
       //
       // ToolBar_OpenProject
       //
       this.ToolBar_OpenProject.Image = global::Editor.Properties.Resources.toolbar_open_project;
       this.ToolBar_OpenProject.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_OpenProject.Name = "ToolBar_OpenProject";
       this.ToolBar_OpenProject.Size = new System.Drawing.Size(143, 22);
       this.ToolBar_OpenProject.Text = "Open Project";
       this.ToolBar_OpenProject.Click += new System.EventHandler(this.Menu_File_OpenProject_Click);
       //
       // ToolBar_OpenScene
       //
       this.ToolBar_OpenScene.Image = global::Editor.Properties.Resources.toolbar_open_scene;
       this.ToolBar_OpenScene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_OpenScene.Name = "ToolBar_OpenScene";
       this.ToolBar_OpenScene.Size = new System.Drawing.Size(143, 22);
       this.ToolBar_OpenScene.Text = "Open Scene";
       this.ToolBar_OpenScene.Click += new System.EventHandler(this.Menu_File_OpenScene_Click);
       //
       // toolStripMenuItem6
       //
       this.toolStripMenuItem6.Name = "toolStripMenuItem6";
       this.toolStripMenuItem6.Size = new System.Drawing.Size(140, 6);
       //
       // ToolBar_Save
       //
       this.ToolBar_Save.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Save.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_SaveScene,
     this.ToolBar_SaveAll,
     this.ToolBar_SaveAs});
       this.ToolBar_Save.Image = global::Editor.Properties.Resources.toolbar_save;
       this.ToolBar_Save.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Save.Name = "ToolBar_Save";
       this.ToolBar_Save.Size = new System.Drawing.Size(40, 28);
       this.ToolBar_Save.Text = "Save";
       this.ToolBar_Save.ButtonClick += new System.EventHandler(this.ToolBar_Save_ButtonClick);
       //
       // ToolBar_SaveScene
       //
       this.ToolBar_SaveScene.Image = global::Editor.Properties.Resources.toolbar_save_scene;
       this.ToolBar_SaveScene.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SaveScene.Name = "ToolBar_SaveScene";
       this.ToolBar_SaveScene.Size = new System.Drawing.Size(148, 22);
       this.ToolBar_SaveScene.Text = "Save Scene";
       this.ToolBar_SaveScene.Click += new System.EventHandler(this.Menu_File_SaveScene_Click);
       //
       // ToolBar_SaveAll
       //
       this.ToolBar_SaveAll.Image = global::Editor.Properties.Resources.toolbar_save_all;
       this.ToolBar_SaveAll.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SaveAll.Name = "ToolBar_SaveAll";
       this.ToolBar_SaveAll.Size = new System.Drawing.Size(148, 22);
       this.ToolBar_SaveAll.Text = "Save All";
       this.ToolBar_SaveAll.Click += new System.EventHandler(this.Menu_File_SaveAll_Click);
       //
       // ToolBar_SaveAs
       //
       this.ToolBar_SaveAs.Image = global::Editor.Properties.Resources.toolbar_save_as;
       this.ToolBar_SaveAs.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SaveAs.Name = "ToolBar_SaveAs";
       this.ToolBar_SaveAs.Size = new System.Drawing.Size(148, 22);
       this.ToolBar_SaveAs.Text = "Save Scene As";
       this.ToolBar_SaveAs.Click += new System.EventHandler(this.Menu_File_SaveSceneAs_Click);
       //
       // ToolBar_Export
       //
       this.ToolBar_Export.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Export.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_ExportSettings,
     this.ToolBar_ExportQuick});
       this.ToolBar_Export.Image = global::Editor.Properties.Resources.toolbar_export;
       this.ToolBar_Export.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Export.Name = "ToolBar_Export";
       this.ToolBar_Export.Size = new System.Drawing.Size(40, 28);
       this.ToolBar_Export.Text = "Export";
       this.ToolBar_Export.ButtonClick += new System.EventHandler(this.Menu_File_ExportScene_Click);
       //
       // ToolBar_ExportSettings
       //
       this.ToolBar_ExportSettings.Image = global::Editor.Properties.Resources.toolbar_export_settings;
       this.ToolBar_ExportSettings.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_ExportSettings.Name = "ToolBar_ExportSettings";
       this.ToolBar_ExportSettings.Size = new System.Drawing.Size(188, 22);
       this.ToolBar_ExportSettings.Text = "Export Settings";
       this.ToolBar_ExportSettings.Click += new System.EventHandler(this.Menu_File_ExportScene_Click);
       //
       // ToolBar_ExportQuick
       //
       this.ToolBar_ExportQuick.Image = global::Editor.Properties.Resources.toolbar_export_quick;
       this.ToolBar_ExportQuick.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_ExportQuick.Name = "ToolBar_ExportQuick";
       this.ToolBar_ExportQuick.Size = new System.Drawing.Size(188, 22);
       this.ToolBar_ExportQuick.Text = "Quick Export and Run";
       this.ToolBar_ExportQuick.Click += new System.EventHandler(this.ToolBar_ExportQuick_Click);
       //
       // ToolBar_Sep2
       //
       this.ToolBar_Sep2.Name = "ToolBar_Sep2";
       this.ToolBar_Sep2.Size = new System.Drawing.Size(6, 31);
       //
       // Toolbar_Cut
       //
       this.Toolbar_Cut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Cut.Image = global::Editor.Properties.Resources.toolbar_cut;
       this.Toolbar_Cut.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Cut.Name = "Toolbar_Cut";
       this.Toolbar_Cut.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Cut.Text = "Cut";
       this.Toolbar_Cut.Click += new System.EventHandler(this.Menu_Edit_Cut_Click);
       //
       // Toolbar_Copy
       //
       this.Toolbar_Copy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Copy.Image = global::Editor.Properties.Resources.toolbar_copy;
       this.Toolbar_Copy.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Copy.Name = "Toolbar_Copy";
       this.Toolbar_Copy.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Copy.Text = "Copy";
       this.Toolbar_Copy.Click += new System.EventHandler(this.Menu_Edit_Copy_Click);
       //
       // Toolbar_Paste
       //
       this.Toolbar_Paste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Paste.Image = global::Editor.Properties.Resources.toolbar_paste;
       this.Toolbar_Paste.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Paste.Name = "Toolbar_Paste";
       this.Toolbar_Paste.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Paste.Text = "Paste";
       this.Toolbar_Paste.Click += new System.EventHandler(this.Menu_Edit_Paste_Click);
       //
       // Toolbar_Delete
       //
       this.Toolbar_Delete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Delete.Image = global::Editor.Properties.Resources.toolbar_delete;
       this.Toolbar_Delete.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Delete.Name = "Toolbar_Delete";
       this.Toolbar_Delete.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Delete.Text = "Delete";
       this.Toolbar_Delete.Click += new System.EventHandler(this.Menu_Edit_Delete_Click);
       //
       // ToolBar_Sep3
       //
       this.ToolBar_Sep3.Name = "ToolBar_Sep3";
       this.ToolBar_Sep3.Size = new System.Drawing.Size(6, 31);
       //
       // Toolbar_Undo
       //
       this.Toolbar_Undo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Undo.Image = global::Editor.Properties.Resources.toolbar_undo;
       this.Toolbar_Undo.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Undo.Name = "Toolbar_Undo";
       this.Toolbar_Undo.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Undo.Text = "Undo";
       this.Toolbar_Undo.Click += new System.EventHandler(this.Menu_Edit_Undo_Click);
       //
       // Toolbar_Redo
       //
       this.Toolbar_Redo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.Toolbar_Redo.Image = global::Editor.Properties.Resources.toolbar_redo;
       this.Toolbar_Redo.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.Toolbar_Redo.Name = "Toolbar_Redo";
       this.Toolbar_Redo.Size = new System.Drawing.Size(28, 28);
       this.Toolbar_Redo.Text = "Redo";
       this.Toolbar_Redo.Click += new System.EventHandler(this.Menu_Edit_Redo_Click);
       //
       // ToolBar_Sep4
       //
       this.ToolBar_Sep4.Name = "ToolBar_Sep4";
       this.ToolBar_Sep4.Size = new System.Drawing.Size(6, 31);
       //
       // ToolBar_Panels
       //
       this.ToolBar_Panels.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Panels.Image = global::Editor.Properties.Resources.toolbar_panels;
       this.ToolBar_Panels.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Panels.Name = "ToolBar_Panels";
       this.ToolBar_Panels.Size = new System.Drawing.Size(37, 28);
       this.ToolBar_Panels.Text = "Panels";
       //
       // ToolBar_OpenAssetBrowser
       //
       this.ToolBar_OpenAssetBrowser.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_OpenAssetBrowser.Image = global::Editor.Properties.Resources.asset_24x24;
       this.ToolBar_OpenAssetBrowser.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_OpenAssetBrowser.Name = "ToolBar_OpenAssetBrowser";
       this.ToolBar_OpenAssetBrowser.Size = new System.Drawing.Size(28, 28);
       this.ToolBar_OpenAssetBrowser.Text = "Open Asset Browser";
       this.ToolBar_OpenAssetBrowser.ToolTipText = "Shows the Asset Browser, if it is not visible already.";
       this.ToolBar_OpenAssetBrowser.Click += new System.EventHandler(this.OpenAssetBrowser_Click);
       //
       // ToolBar_Tools
       //
       this.ToolBar_Tools.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Tools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_SkyEditor,
     this.ToolBar_TimeOfDayEditor,
     this.editFogToolStripMenuItem,
     this.ToolBar_PostProcessor,
     this.toolStripMenuItem11,
     this.ToolBar_FindShapes,
     this.ToolBar_FindDuplicates,
     this.toolStripMenuItem12,
     this.ToolBar_SaveScreenshot,
     this.ToolBar_SaveScreenshotAs,
     this.ToolBar_Tools_LastSeparator});
       this.ToolBar_Tools.Image = global::Editor.Properties.Resources.toolbar_tool;
       this.ToolBar_Tools.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Tools.Name = "ToolBar_Tools";
       this.ToolBar_Tools.Size = new System.Drawing.Size(37, 28);
       this.ToolBar_Tools.Text = "Tools";
       this.ToolBar_Tools.DropDownOpening += new System.EventHandler(this.ToolBar_Tools_DropDownOpening);
       //
       // ToolBar_SkyEditor
       //
       this.ToolBar_SkyEditor.Image = global::Editor.Properties.Resources.toolbar_sky;
       this.ToolBar_SkyEditor.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SkyEditor.Name = "ToolBar_SkyEditor";
       this.ToolBar_SkyEditor.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_SkyEditor.Text = "Edit Sky";
       this.ToolBar_SkyEditor.Click += new System.EventHandler(this.Menu_Engine_EditSky_Click);
       //
       // ToolBar_TimeOfDayEditor
       //
       this.ToolBar_TimeOfDayEditor.Image = global::Editor.Properties.Resources.toolbar_tod;
       this.ToolBar_TimeOfDayEditor.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_TimeOfDayEditor.Name = "ToolBar_TimeOfDayEditor";
       this.ToolBar_TimeOfDayEditor.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_TimeOfDayEditor.Text = "Edit Time of Day";
       this.ToolBar_TimeOfDayEditor.Click += new System.EventHandler(this.Menu_Engine_EditTimeOfDay_Click);
       //
       // editFogToolStripMenuItem
       //
       this.editFogToolStripMenuItem.Image = global::Editor.Properties.Resources.toolbar_fog;
       this.editFogToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.editFogToolStripMenuItem.Name = "editFogToolStripMenuItem";
       this.editFogToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
       this.editFogToolStripMenuItem.Text = "Edit Fog";
       this.editFogToolStripMenuItem.Click += new System.EventHandler(this.Menu_Engine_EditFog_Click);
       //
       // ToolBar_PostProcessor
       //
       this.ToolBar_PostProcessor.Image = global::Editor.Properties.Resources.toolbar_post;
       this.ToolBar_PostProcessor.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_PostProcessor.Name = "ToolBar_PostProcessor";
       this.ToolBar_PostProcessor.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_PostProcessor.Text = "Post Processors";
       this.ToolBar_PostProcessor.Click += new System.EventHandler(this.Menu_Engine_EditPostProcessors_Click);
       //
       // toolStripMenuItem11
       //
       this.toolStripMenuItem11.Name = "toolStripMenuItem11";
       this.toolStripMenuItem11.Size = new System.Drawing.Size(172, 6);
       //
       // ToolBar_FindShapes
       //
       this.ToolBar_FindShapes.Image = global::Editor.Properties.Resources.toolbar_search;
       this.ToolBar_FindShapes.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_FindShapes.Name = "ToolBar_FindShapes";
       this.ToolBar_FindShapes.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_FindShapes.Text = "Find Shapes";
       this.ToolBar_FindShapes.Click += new System.EventHandler(this.Menu_Edit_FindShapes_Click);
       //
       // ToolBar_FindDuplicates
       //
       this.ToolBar_FindDuplicates.Image = global::Editor.Properties.Resources.toolbar_duplicates;
       this.ToolBar_FindDuplicates.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_FindDuplicates.Name = "ToolBar_FindDuplicates";
       this.ToolBar_FindDuplicates.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_FindDuplicates.Text = "FindDuplicates";
       this.ToolBar_FindDuplicates.Click += new System.EventHandler(this.Menu_Edit_FindDuplicates_Click);
       //
       // toolStripMenuItem12
       //
       this.toolStripMenuItem12.Name = "toolStripMenuItem12";
       this.toolStripMenuItem12.Size = new System.Drawing.Size(172, 6);
       //
       // ToolBar_SaveScreenshot
       //
       this.ToolBar_SaveScreenshot.Image = global::Editor.Properties.Resources.toolbar_screenshot;
       this.ToolBar_SaveScreenshot.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SaveScreenshot.Name = "ToolBar_SaveScreenshot";
       this.ToolBar_SaveScreenshot.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_SaveScreenshot.Text = "Save Screenshot";
       this.ToolBar_SaveScreenshot.Click += new System.EventHandler(this.Menu_Engine_Screenshot_Click);
       //
       // ToolBar_SaveScreenshotAs
       //
       this.ToolBar_SaveScreenshotAs.Image = global::Editor.Properties.Resources.toolbar_screenshot;
       this.ToolBar_SaveScreenshotAs.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_SaveScreenshotAs.Name = "ToolBar_SaveScreenshotAs";
       this.ToolBar_SaveScreenshotAs.Size = new System.Drawing.Size(175, 22);
       this.ToolBar_SaveScreenshotAs.Text = "Save Screenshot As";
       this.ToolBar_SaveScreenshotAs.Click += new System.EventHandler(this.Menu_Engine_ScreenshotAs_Click);
       //
       // ToolBar_Tools_LastSeparator
       //
       this.ToolBar_Tools_LastSeparator.Name = "ToolBar_Tools_LastSeparator";
       this.ToolBar_Tools_LastSeparator.Size = new System.Drawing.Size(172, 6);
       this.ToolBar_Tools_LastSeparator.Visible = false;
       //
       // ToolBar_Resources
       //
       this.ToolBar_Resources.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Resources.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_Resources_Reload,
     this.ToolBar_Resources_Show,
     this.ToolBar_Resources_Purge});
       this.ToolBar_Resources.Image = global::Editor.Properties.Resources.toolbar_resources;
       this.ToolBar_Resources.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Resources.Name = "ToolBar_Resources";
       this.ToolBar_Resources.Size = new System.Drawing.Size(37, 28);
       //
       // ToolBar_Resources_Reload
       //
       this.ToolBar_Resources_Reload.Image = global::Editor.Properties.Resources.toolbar_refresh;
       this.ToolBar_Resources_Reload.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_Resources_Reload.Name = "ToolBar_Resources_Reload";
       this.ToolBar_Resources_Reload.Size = new System.Drawing.Size(178, 22);
       this.ToolBar_Resources_Reload.Text = "Reload Resources";
       this.ToolBar_Resources_Reload.Click += new System.EventHandler(this.Menu_Engine_ReloadResources_Click);
       //
       // ToolBar_Resources_Show
       //
       this.ToolBar_Resources_Show.Image = global::Editor.Properties.Resources.toolbar_resources_small;
       this.ToolBar_Resources_Show.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_Resources_Show.Name = "ToolBar_Resources_Show";
       this.ToolBar_Resources_Show.Size = new System.Drawing.Size(178, 22);
       this.ToolBar_Resources_Show.Text = "Show Resources";
       this.ToolBar_Resources_Show.Click += new System.EventHandler(this.Menu_Engine_ShowResources_Click);
       //
       // ToolBar_Resources_Purge
       //
       this.ToolBar_Resources_Purge.Image = global::Editor.Properties.Resources.toolbar_remove;
       this.ToolBar_Resources_Purge.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_Resources_Purge.Name = "ToolBar_Resources_Purge";
       this.ToolBar_Resources_Purge.Size = new System.Drawing.Size(178, 22);
       this.ToolBar_Resources_Purge.Text = "Purge All Reosurces";
       this.ToolBar_Resources_Purge.Click += new System.EventHandler(this.Menu_Engine_PurgeResources_Click);
       //
       // ToolBar_Relight
       //
       this.ToolBar_Relight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Relight.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_LightSettings,
     this.ToolBar_LightCalc,
     this.ToolBar_LightReset});
       this.ToolBar_Relight.Image = global::Editor.Properties.Resources.toolbar_light;
       this.ToolBar_Relight.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Relight.Name = "ToolBar_Relight";
       this.ToolBar_Relight.Size = new System.Drawing.Size(37, 28);
       this.ToolBar_Relight.Text = "Static Lighting";
       //
       // ToolBar_LightSettings
       //
       this.ToolBar_LightSettings.Image = global::Editor.Properties.Resources.toolbar_export_settings;
       this.ToolBar_LightSettings.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_LightSettings.Name = "ToolBar_LightSettings";
       this.ToolBar_LightSettings.Size = new System.Drawing.Size(170, 22);
       this.ToolBar_LightSettings.Text = "Lighting Settings";
       this.ToolBar_LightSettings.Click += new System.EventHandler(this.Menu_Engine_UpdateLighting_Click);
       //
       // ToolBar_LightCalc
       //
       this.ToolBar_LightCalc.Image = global::Editor.Properties.Resources.toolbar_light_calc;
       this.ToolBar_LightCalc.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_LightCalc.Name = "ToolBar_LightCalc";
       this.ToolBar_LightCalc.Size = new System.Drawing.Size(170, 22);
       this.ToolBar_LightCalc.Text = "Calculate Lighting";
       this.ToolBar_LightCalc.Click += new System.EventHandler(this.Menu_Tools_CalculateLighting_Click);
       //
       // ToolBar_LightReset
       //
       this.ToolBar_LightReset.Image = global::Editor.Properties.Resources.toolbar_light_reset;
       this.ToolBar_LightReset.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_LightReset.Name = "ToolBar_LightReset";
       this.ToolBar_LightReset.Size = new System.Drawing.Size(170, 22);
       this.ToolBar_LightReset.Text = "Reset Lighting";
       this.ToolBar_LightReset.Click += new System.EventHandler(this.Menu_Tools_ResetLighting_Click);
       //
       // ToolBar_Visibility
       //
       this.ToolBar_Visibility.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
       this.ToolBar_Visibility.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolBar_CalcVisibility,
     this.ToolBar_UseVisibility});
       this.ToolBar_Visibility.Image = global::Editor.Properties.Resources.toolbar_visibility;
       this.ToolBar_Visibility.ImageTransparentColor = System.Drawing.Color.Magenta;
       this.ToolBar_Visibility.Name = "ToolBar_Visibility";
       this.ToolBar_Visibility.Size = new System.Drawing.Size(37, 28);
       this.ToolBar_Visibility.Text = "Visibility";
       //
       // ToolBar_CalcVisibility
       //
       this.ToolBar_CalcVisibility.Image = global::Editor.Properties.Resources.toolbar_add;
       this.ToolBar_CalcVisibility.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_CalcVisibility.Name = "ToolBar_CalcVisibility";
       this.ToolBar_CalcVisibility.Size = new System.Drawing.Size(170, 22);
       this.ToolBar_CalcVisibility.Text = "Calculate Visibility";
       this.ToolBar_CalcVisibility.Click += new System.EventHandler(this.menu_CalculateVisibility_Click);
       //
       // ToolBar_UseVisibility
       //
       this.ToolBar_UseVisibility.Image = global::Editor.Properties.Resources.toolbar_check;
       this.ToolBar_UseVisibility.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
       this.ToolBar_UseVisibility.Name = "ToolBar_UseVisibility";
       this.ToolBar_UseVisibility.Size = new System.Drawing.Size(170, 22);
       this.ToolBar_UseVisibility.Text = "Use Visibility";
       this.ToolBar_UseVisibility.Click += new System.EventHandler(this.menu_UseVisibility_Click);
       //
       // ToolBar_Sep5
       //
       this.ToolBar_Sep5.Name = "ToolBar_Sep5";
       this.ToolBar_Sep5.Size = new System.Drawing.Size(6, 31);
       //
       // statusBar
       //
       this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.statusPanel_Main,
     this.toolStripSeparator1,
     this.statusPanel_TransformProgress,
     this.toolStripSeparator3,
     this.statusPanel_Layout,
     this.toolStripSeparator2,
     this.statusPanel_PlayMode});
       this.statusBar.Location = new System.Drawing.Point(0, 549);
       this.statusBar.Name = "statusBar";
       this.statusBar.Size = new System.Drawing.Size(1028, 23);
       this.statusBar.TabIndex = 3;
       this.statusBar.Text = "statusBar";
       //
       // statusPanel_Main
       //
       this.statusPanel_Main.Name = "statusPanel_Main";
       this.statusPanel_Main.Size = new System.Drawing.Size(474, 18);
       this.statusPanel_Main.Spring = true;
       this.statusPanel_Main.Text = "statusPanel_Main";
       //
       // toolStripSeparator1
       //
       this.toolStripSeparator1.Name = "toolStripSeparator1";
       this.toolStripSeparator1.Size = new System.Drawing.Size(6, 23);
       //
       // statusPanel_TransformProgress
       //
       this.statusPanel_TransformProgress.AutoSize = false;
       this.statusPanel_TransformProgress.Name = "statusPanel_TransformProgress";
       this.statusPanel_TransformProgress.Size = new System.Drawing.Size(220, 21);
       //
       // toolStripSeparator3
       //
       this.toolStripSeparator3.Name = "toolStripSeparator3";
       this.toolStripSeparator3.Size = new System.Drawing.Size(6, 23);
       //
       // statusPanel_Layout
       //
       this.statusPanel_Layout.AutoSize = false;
       this.statusPanel_Layout.Name = "statusPanel_Layout";
       this.statusPanel_Layout.Size = new System.Drawing.Size(150, 18);
       this.statusPanel_Layout.Text = "statusPanel_Layout";
       //
       // toolStripSeparator2
       //
       this.toolStripSeparator2.Name = "toolStripSeparator2";
       this.toolStripSeparator2.Size = new System.Drawing.Size(6, 23);
       //
       // statusPanel_PlayMode
       //
       this.statusPanel_PlayMode.AutoSize = false;
       this.statusPanel_PlayMode.Name = "statusPanel_PlayMode";
       this.statusPanel_PlayMode.Size = new System.Drawing.Size(120, 18);
       this.statusPanel_PlayMode.Text = "statusPanel_PlayMode";
       //
       // dockContainer
       //
       this.dockContainer.ActiveAutoHideContent = null;
       this.dockContainer.Dock = System.Windows.Forms.DockStyle.Fill;
       this.dockContainer.DocumentStyle = WeifenLuo.WinFormsUI.DocumentStyles.DockingWindow;
       this.dockContainer.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
       this.dockContainer.Location = new System.Drawing.Point(0, 55);
       this.dockContainer.Margin = new System.Windows.Forms.Padding(0);
       this.dockContainer.Name = "dockContainer";
       this.dockContainer.Size = new System.Drawing.Size(1028, 517);
       this.dockContainer.TabIndex = 13;
       //
       // Form1
       //
       this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
       this.ClientSize = new System.Drawing.Size(1028, 572);
       this.Controls.Add(this.statusBar);
       this.Controls.Add(this.dockContainer);
       this.Controls.Add(this.mainToolBar);
       this.Controls.Add(this.mainMenu);
       this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
       this.MainMenuStrip = this.mainMenu;
       this.Name = "Form1";
       this.Text = "vForge";
       this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
       this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
       this.mainMenu.ResumeLayout(false);
       this.mainMenu.PerformLayout();
       this.mainToolBar.ResumeLayout(false);
       this.mainToolBar.PerformLayout();
       this.statusBar.ResumeLayout(false);
       this.statusBar.PerformLayout();
       this.ResumeLayout(false);
       this.PerformLayout();
 }
Пример #45
0
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(BaseReportForm));
     this.m_CommandBar = new System.Windows.Forms.ToolStrip();
     this.m_ExecuteReport = new System.Windows.Forms.ToolStripSplitButton();
     this.m_PrintAfterExecute = new System.Windows.Forms.ToolStripMenuItem();
     this.m_SaveToFile = new System.Windows.Forms.ToolStripMenuItem();
     this.m_Orientation = new System.Windows.Forms.ToolStripMenuItem();
     this.m_OrientationAuto = new System.Windows.Forms.ToolStripMenuItem();
     this.m_OrientationPortrait = new System.Windows.Forms.ToolStripMenuItem();
     this.m_OrientationLandscape = new System.Windows.Forms.ToolStripMenuItem();
     this.m_RollingImage = new System.Windows.Forms.ToolStripLabel();
     this.m_StatusLabel = new System.Windows.Forms.ToolStripLabel();
     this.m_WorkerThread = new BackgroundWorker();
     this.m_Period = new DatePeriod();
     this.m_CommandBar.SuspendLayout();
     base.SuspendLayout();
     this.m_CommandBar.set_Dock(System.Windows.Forms.DockStyle.Bottom);
     this.m_CommandBar.set_GripStyle(System.Windows.Forms.ToolStripGripStyle.Hidden);
     this.m_CommandBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_ExecuteReport, this.m_Orientation, this.m_RollingImage, this.m_StatusLabel });
     this.m_CommandBar.set_Location(new System.Drawing.Point(0, 0x31));
     this.m_CommandBar.set_Name("m_CommandBar");
     this.m_CommandBar.set_Size(new System.Drawing.Size(0x158, 0x19));
     this.m_CommandBar.set_TabIndex(0x12);
     this.m_CommandBar.set_Text("toolStrip1");
     this.m_ExecuteReport.set_Alignment(System.Windows.Forms.ToolStripItemAlignment.Right);
     this.m_ExecuteReport.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Text);
     this.m_ExecuteReport.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_PrintAfterExecute, this.m_SaveToFile });
     this.m_ExecuteReport.set_Image((System.Drawing.Image) manager.GetObject("m_ExecuteReport.Image"));
     this.m_ExecuteReport.set_ImageTransparentColor(System.Drawing.Color.Magenta);
     this.m_ExecuteReport.set_Name("m_ExecuteReport");
     this.m_ExecuteReport.set_Size(new System.Drawing.Size(0x62, 0x16));
     this.m_ExecuteReport.set_Tag("Сформировать");
     this.m_ExecuteReport.set_Text("Сформировать");
     this.m_ExecuteReport.add_ButtonClick(new System.EventHandler(this.m_ExecuteReport_ButtonClick));
     this.m_PrintAfterExecute.set_CheckOnClick(true);
     this.m_PrintAfterExecute.set_Name("m_PrintAfterExecute");
     this.m_PrintAfterExecute.set_Size(new System.Drawing.Size(190, 0x16));
     this.m_PrintAfterExecute.set_Text("Сразу напечатать");
     this.m_SaveToFile.set_Enabled(false);
     this.m_SaveToFile.set_Name("m_SaveToFile");
     this.m_SaveToFile.set_Size(new System.Drawing.Size(190, 0x16));
     this.m_SaveToFile.set_Text("Сохранить в файл...");
     this.m_Orientation.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.m_OrientationAuto, this.m_OrientationPortrait, this.m_OrientationLandscape });
     this.m_Orientation.set_Name("m_Orientation");
     this.m_Orientation.set_Size(new System.Drawing.Size(0x77, 0x19));
     this.m_Orientation.set_Tag("Ориентация бумаги: ");
     this.m_Orientation.set_Text("Ориентация бумаги");
     this.m_OrientationAuto.set_Checked(true);
     this.m_OrientationAuto.set_CheckState(System.Windows.Forms.CheckState.Checked);
     this.m_OrientationAuto.set_Name("m_OrientationAuto");
     this.m_OrientationAuto.set_Size(new System.Drawing.Size(0x98, 0x16));
     this.m_OrientationAuto.set_Text("Авто");
     this.m_OrientationAuto.add_Click(new System.EventHandler(this.m_Orientation_Click));
     this.m_OrientationPortrait.set_Name("m_OrientationPortrait");
     this.m_OrientationPortrait.set_Size(new System.Drawing.Size(0x98, 0x16));
     this.m_OrientationPortrait.set_Text("Книжная");
     this.m_OrientationPortrait.add_Click(new System.EventHandler(this.m_Orientation_Click));
     this.m_OrientationLandscape.set_Name("m_OrientationLandscape");
     this.m_OrientationLandscape.set_Size(new System.Drawing.Size(0x98, 0x16));
     this.m_OrientationLandscape.set_Text("Альбомная");
     this.m_OrientationLandscape.add_Click(new System.EventHandler(this.m_Orientation_Click));
     this.m_RollingImage.set_AutoSize(false);
     this.m_RollingImage.set_DisplayStyle(System.Windows.Forms.ToolStripItemDisplayStyle.Image);
     this.m_RollingImage.set_Image(Resources.LOADING);
     this.m_RollingImage.set_ImageScaling(System.Windows.Forms.ToolStripItemImageScaling.None);
     this.m_RollingImage.set_ImageTransparentColor(System.Drawing.Color.White);
     this.m_RollingImage.set_Name("m_RollingImage");
     this.m_RollingImage.set_Size(new System.Drawing.Size(0x16, 0x16));
     this.m_RollingImage.set_Visible(false);
     this.m_StatusLabel.set_BackColor(System.Drawing.SystemColors.Control);
     this.m_StatusLabel.set_ForeColor(System.Drawing.SystemColors.ControlDark);
     this.m_StatusLabel.set_Name("m_StatusLabel");
     this.m_StatusLabel.set_Size(new System.Drawing.Size(10, 0x16));
     this.m_StatusLabel.set_Text(" ");
     this.m_WorkerThread.set_WorkerReportsProgress(true);
     this.m_WorkerThread.set_WorkerSupportsCancellation(true);
     this.m_WorkerThread.add_DoWork(new DoWorkEventHandler(this.m_WorkerThread_DoWork));
     this.m_WorkerThread.add_RunWorkerCompleted(new RunWorkerCompletedEventHandler(this.m_WorkerThread_RunWorkerCompleted));
     this.m_WorkerThread.add_ProgressChanged(new ProgressChangedEventHandler(this.m_WorkerThread_ProgressChanged));
     this.m_Period.AttachToPeriod = false;
     this.m_Period.DateBeginReadonly = false;
     this.m_Period.DateEndReadonly = false;
     this.m_Period.set_Location(new System.Drawing.Point(13, 13));
     this.m_Period.set_Margin(new System.Windows.Forms.Padding(4));
     this.m_Period.set_Name("m_Period");
     this.m_Period.set_Size(new System.Drawing.Size(0xea, 0x17));
     this.m_Period.set_TabIndex(0);
     base.set_AutoScaleDimensions(new System.Drawing.SizeF(6f, 13f));
     base.set_AutoScaleMode(System.Windows.Forms.AutoScaleMode.Font);
     base.set_ClientSize(new System.Drawing.Size(0x158, 0x4a));
     base.Controls.Add(this.m_Period);
     base.Controls.Add(this.m_CommandBar);
     base.set_FormBorderStyle(System.Windows.Forms.FormBorderStyle.FixedSingle);
     base.set_MaximizeBox(false);
     base.set_MinimizeBox(false);
     this.set_MinimumSize(new System.Drawing.Size(350, 0x5e));
     base.set_Name("BaseReportForm");
     base.set_StartPosition(System.Windows.Forms.FormStartPosition.CenterParent);
     this.set_Text("Отчет");
     this.m_CommandBar.ResumeLayout(false);
     this.m_CommandBar.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Пример #46
0
        void AddDestinationButton(IDestination toolstripDestination)
        {
            if (toolstripDestination.isDynamic) {
                ToolStripSplitButton destinationButton = new ToolStripSplitButton();
                //ToolStripDropDownButton destinationButton = new ToolStripDropDownButton();
                destinationButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
                destinationButton.Size = new Size(23, 22);
                destinationButton.Text = toolstripDestination.Description;
                destinationButton.Image = toolstripDestination.DisplayIcon;

                ToolStripMenuItem defaultItem = new ToolStripMenuItem(toolstripDestination.Description);
                defaultItem.Tag = toolstripDestination;
                defaultItem.Image = toolstripDestination.DisplayIcon;
                defaultItem.Click += delegate {
                    toolstripDestination.ExportCapture(true, surface, surface.CaptureDetails);
                };

                // The ButtonClick, this is for the icon, gets the current default item
                destinationButton.ButtonClick += delegate(object sender, EventArgs e) {
                    toolstripDestination.ExportCapture(true, surface, surface.CaptureDetails);
                };

                // Generate the entries for the drop down
                destinationButton.DropDownOpening += delegate(object sender, EventArgs e) {
                    ClearItems(destinationButton.DropDownItems);
                    destinationButton.DropDownItems.Add(defaultItem);

                    List<IDestination> subDestinations = new List<IDestination>();
                    subDestinations.AddRange(toolstripDestination.DynamicDestinations());
                    if (subDestinations.Count > 0) {
                        subDestinations.Sort();
                        foreach(IDestination subDestination in subDestinations) {
                            IDestination closureFixedDestination = subDestination;
                            ToolStripMenuItem destinationMenuItem = new ToolStripMenuItem(closureFixedDestination.Description);
                            destinationMenuItem.Tag = closureFixedDestination;
                            destinationMenuItem.Image = closureFixedDestination.DisplayIcon;
                            destinationMenuItem.Click += delegate {
                                closureFixedDestination.ExportCapture(true, surface, surface.CaptureDetails);
                            };
                            destinationButton.DropDownItems.Add(destinationMenuItem);
                        }
                    }
                };

                destinationsToolStrip.Items.Insert(destinationsToolStrip.Items.IndexOf(toolStripSeparator16), destinationButton);

            } else {
                ToolStripButton destinationButton = new ToolStripButton();
                destinationsToolStrip.Items.Insert(destinationsToolStrip.Items.IndexOf(toolStripSeparator16), destinationButton);
                destinationButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
                destinationButton.Size = new Size(23, 22);
                destinationButton.Text = toolstripDestination.Description;
                destinationButton.Image = toolstripDestination.DisplayIcon;
                destinationButton.Click += delegate(object sender, EventArgs e) {
                    toolstripDestination.ExportCapture(true, surface, surface.CaptureDetails);
                };
            }
        }
Пример #47
0
        private void InitializeComponent()
        {
            this.brushSeparator = new ToolStripSeparator();
            this.brushStyleLabel = new ToolStripLabel();
            this.brushStyleComboBox = new ToolStripComboBox();

            this.shapeSeparator = new ToolStripSeparator();
            this.shapeButton = new ToolStripSplitButton();

            this.gradientSeparator1 = new ToolStripSeparator();
            this.gradientLinearClampedButton = new ToolStripButton();
            this.gradientLinearReflectedButton = new ToolStripButton();
            this.gradientLinearDiamondButton = new ToolStripButton();
            this.gradientRadialButton = new ToolStripButton();
            this.gradientConicalButton = new ToolStripButton();
            this.gradientSeparator2 = new ToolStripSeparator();
            this.gradientChannelsSplitButton = new ToolStripSplitButton();

            this.penSeparator = new ToolStripSeparator();
            this.penSizeLabel = new ToolStripLabel();
            this.penSizeDecButton = new ToolStripButton();
            this.penSizeComboBox = new ToolStripComboBox();
            this.penSizeIncButton = new ToolStripButton();

            this.blendingSeparator = new ToolStripSeparator();
            this.antiAliasingSplitButton = new ToolStripSplitButton();
            this.alphaBlendingSplitButton = new ToolStripSplitButton();

            this.toleranceSeparator = new ToolStripSeparator();
            this.toleranceLabel = new ToolStripLabel();
            this.toleranceSlider = new ToleranceSliderControl();
            this.toleranceSliderStrip = new ToolStripControlHost(this.toleranceSlider);

            this.fontSeparator = new ToolStripSeparator();
            this.fontLabel = new ToolStripLabel();
            this.fontFamilyComboBox = new ToolStripComboBox();
            this.fontSizeComboBox = new ToolStripComboBox();
            this.fontSmoothingComboBox = new ToolStripComboBox();
            this.fontStyleSeparator = new ToolStripSeparator();
            this.fontBoldButton = new ToolStripButton();
            this.fontItalicsButton = new ToolStripButton();
            this.fontUnderlineButton = new ToolStripButton();
            this.fontAlignSeparator = new ToolStripSeparator();
            this.fontAlignLeftButton = new ToolStripButton();
            this.fontAlignCenterButton = new ToolStripButton();
            this.fontAlignRightButton = new ToolStripButton();

            this.resamplingSeparator = new ToolStripSeparator();
            this.resamplingLabel = new ToolStripLabel();
            this.resamplingComboBox = new ToolStripComboBox();

            this.colorPickerSeparator = new ToolStripSeparator();
            this.colorPickerLabel = new ToolStripLabel();
            this.colorPickerComboBox = new ToolStripComboBox();

            this.SuspendLayout();
            //
            // brushStyleLabel
            //
            this.brushStyleLabel.Name = "fillStyleLabel";
            //
            // brushStyleComboBox
            //
            this.brushStyleComboBox.Name = "styleComboBox";
            this.brushStyleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.brushStyleComboBox.DropDownWidth = 234;
            this.brushStyleComboBox.AutoSize = true;
            //
            // brushStyleComboBox.ComboBox
            //
            this.brushStyleComboBox.ComboBox.DrawMode = DrawMode.OwnerDrawVariable;
            this.brushStyleComboBox.ComboBox.MeasureItem += ComboBoxStyle_MeasureItem;
            this.brushStyleComboBox.ComboBox.SelectedValueChanged += ComboBoxStyle_SelectedValueChanged;
            this.brushStyleComboBox.ComboBox.DrawItem += ComboBoxStyle_DrawItem;
            //
            // shapeButton
            //
            this.shapeButton.Name = "shapeButton";
            this.shapeButton.DropDownOpening += new EventHandler(ShapeButton_DropDownOpening);
            this.shapeButton.DropDownClosed +=
                delegate(object sender, EventArgs e)
                {
                    this.shapeButton.DropDownItems.Clear();
                };
            this.shapeButton.ButtonClick +=
                delegate(object sender, EventArgs e)
                {
                    switch (ShapeDrawType)
                    {
                        case ShapeDrawType.Outline:
                            ShapeDrawType = ShapeDrawType.Interior;
                            break;

                        case ShapeDrawType.Interior:
                            ShapeDrawType = ShapeDrawType.Both;
                            break;

                        case ShapeDrawType.Both:
                            ShapeDrawType = ShapeDrawType.Outline;
                            break;

                        default:
                            throw new InvalidEnumArgumentException();
                    }
                };
            //
            // gradientSeparator
            //
            this.gradientSeparator1.Name = "gradientSeparator";
            //
            // gradientLinearClampedButton
            //
            this.gradientLinearClampedButton.Name = "gradientLinearClampedButton";
            this.gradientLinearClampedButton.Click += GradientTypeButtonClicked;
            this.gradientLinearClampedButton.Tag = GradientType.LinearClamped;
            //
            // gradientLinearReflectedButton
            //
            this.gradientLinearReflectedButton.Name = "gradientLinearReflectedButton";
            this.gradientLinearReflectedButton.Click += GradientTypeButtonClicked;
            this.gradientLinearReflectedButton.Tag = GradientType.LinearReflected;
            //
            // gradientLinearDiamondButton
            //
            this.gradientLinearDiamondButton.Name = "gradientLinearDiamondButton";
            this.gradientLinearDiamondButton.Click += GradientTypeButtonClicked;
            this.gradientLinearDiamondButton.Tag = GradientType.LinearDiamond;
            //
            // gradientRadialButton
            //
            this.gradientRadialButton.Name = "gradientRadialButton";
            this.gradientRadialButton.Click += GradientTypeButtonClicked;
            this.gradientRadialButton.Tag = GradientType.Radial;
            //
            // gradientConicalButton
            //
            this.gradientConicalButton.Name = "gradientConicalButton";
            this.gradientConicalButton.Click += GradientTypeButtonClicked;
            this.gradientConicalButton.Tag = GradientType.Conical;
            //
            // gradientSeparator2
            //
            this.gradientSeparator2.Name = "gradientSeparator2";
            //
            // gradientChannelsSplitButton
            //
            this.gradientChannelsSplitButton.Name = "gradientChannelsSplitButton";
            this.gradientChannelsSplitButton.DropDownOpening += new EventHandler(GradientChannelsSplitButton_DropDownOpening);
            this.gradientChannelsSplitButton.DropDownClosed +=
                delegate(object sender, EventArgs e)
                {
                    this.gradientChannelsSplitButton.DropDownItems.Clear();
                };
            this.gradientChannelsSplitButton.ButtonClick +=
                delegate(object sender, EventArgs e)
                {
                    GradientInfo = new GradientInfo(GradientInfo.GradientType, !GradientInfo.AlphaOnly);
                };
            //
            // penSeparator
            //
            this.penSeparator.Name = "penSeparator";
            //
            // penSizeLabel
            //
            this.penSizeLabel.Name = "brushSizeLabel";
            //
            // penSizeDecButton
            //
            this.penSizeDecButton.Name = "penSizeDecButton";
            this.penSizeDecButton.Click +=
                delegate(object sender, EventArgs e)
                {
                    AddToPenSize(-1.0f);
                };
            //
            // penSizeComboBox
            //
            this.penSizeComboBox.Name = "penSizeComboBox";
            this.penSizeComboBox.Validating += new CancelEventHandler(this.BrushSizeComboBox_Validating);
            this.penSizeComboBox.TextChanged += new EventHandler(this.SizeComboBox_TextChanged);
            this.penSizeComboBox.AutoSize = false;
            this.penSizeComboBox.Width = 44;
            //
            // penSizeIncButton
            //
            this.penSizeIncButton.Name = "penSizeIncButton";
            this.penSizeIncButton.Click +=
                delegate(object sender, EventArgs e)
                {
                    AddToPenSize(1.0f);
                };
            //
            // antiAliasingSplitButton
            //
            this.antiAliasingSplitButton.Name = "antiAliasingSplitButton";
            this.antiAliasingSplitButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.antiAliasingSplitButton.DropDownOpening += new EventHandler(AntiAliasingSplitButton_DropDownOpening);
            this.antiAliasingSplitButton.DropDownClosed +=
                delegate(object sender, EventArgs e)
                {
                    this.antiAliasingSplitButton.DropDownItems.Clear();
                };
            this.antiAliasingSplitButton.ButtonClick +=
                delegate(object sender, EventArgs e)
                {
                    AntiAliasing = !AntiAliasing;
                };
            //
            // alphaBlendingSplitButton
            //
            this.alphaBlendingSplitButton.Name = "alphaBlendingSplitButton";
            this.alphaBlendingSplitButton.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.alphaBlendingSplitButton.DropDownOpening += new EventHandler(AlphaBlendingSplitButton_DropDownOpening);
            this.alphaBlendingSplitButton.DropDownClosed +=
                delegate(object sender, EventArgs e)
                {
                    this.alphaBlendingSplitButton.DropDownItems.Clear();
                };
            this.alphaBlendingSplitButton.ButtonClick +=
                delegate(object sender, EventArgs e)
                {
                    AlphaBlending = !AlphaBlending;
                };
            //
            // toleranceLabel
            //
            this.toleranceLabel.Name = "toleranceLabel";
            //
            // toleranceSlider
            //
            this.toleranceSlider.Name = "toleranceSlider";
            this.toleranceSlider.ToleranceChanged += new EventHandler(ToleranceSlider_ToleranceChanged);
            this.toleranceSlider.Size = new Size(120, 16);
            //
            // toleranceSliderStrip
            //
            this.toleranceSliderStrip.Name = "toleranceSliderStrip";
            this.toleranceSliderStrip.AutoSize = false;
            //
            // fontLabel
            //
            this.fontLabel.Name = "fontLabel";
            //
            // fontFamilyComboBox
            //
            this.fontFamilyComboBox.Name = "fontComboBox";
            this.fontFamilyComboBox.AllowDrop = true;
            this.fontFamilyComboBox.DropDownWidth = 240;
            this.fontFamilyComboBox.MaxDropDownItems = 12;
            this.fontFamilyComboBox.Sorted = true;
            this.fontFamilyComboBox.GotFocus += new EventHandler(FontFamilyComboBox_GotFocus);
            this.fontFamilyComboBox.Items.Add(arialName);
            this.fontFamilyComboBox.SelectedItem = arialName;
            this.fontFamilyComboBox.SelectedIndexChanged += FontFamilyComboBox_SelectedIndexChanged;
            this.fontFamilyComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
            //
            // fontFamilyComboBox.ComboBox
            //
            this.fontFamilyComboBox.ComboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.fontFamilyComboBox.ComboBox.MeasureItem += new System.Windows.Forms.MeasureItemEventHandler(this.FontFamilyComboBox_MeasureItem);
            this.fontFamilyComboBox.ComboBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.FontFamilyComboBox_DrawItem);
            //
            // fontSizeComboBox
            //
            this.fontSizeComboBox.Name = "fontSizeComboBox";
            this.fontSizeComboBox.AutoSize = false;
            this.fontSizeComboBox.TextChanged += new EventHandler(FontSizeComboBox_TextChanged);
            this.fontSizeComboBox.Validating += new CancelEventHandler(FontSizeComboBox_Validating);
            this.fontSizeComboBox.Text = initialFontSize.ToString();
            this.fontSizeComboBox.Width = 44;
            //
            // fontSmoothingComboBox
            //
            this.fontSmoothingComboBox.Name = "smoothingComboBOx";
            this.fontSmoothingComboBox.AutoSize = false;
            this.fontSmoothingComboBox.Sorted = false;
            this.fontSmoothingComboBox.Width = 70;
            this.fontSmoothingComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
            this.fontSmoothingComboBox.SelectedIndexChanged += new EventHandler(SmoothingComboBox_SelectedIndexChanged);
            //
            // fontBoldButton
            //
            this.fontBoldButton.Name = "boldButton";
            //
            // fontItalicsButton
            //
            this.fontItalicsButton.Name = "italicsButton";
            //
            // fontUnderlineButton
            //
            this.fontUnderlineButton.Name = "underlineButton";
            //
            // fontAlignLeftButton
            //
            this.fontAlignLeftButton.Name = "alignLeftButton";
            //
            // fontAlignCenterButton
            //
            this.fontAlignCenterButton.Name = "alignCenterButton";
            //
            // fontAlignRightButton
            //
            this.fontAlignRightButton.Name = "alignRightButton";
            //
            // resamplingSeparator
            //
            this.resamplingSeparator.Name = "resamplingSeparator";
            //
            // resamplingLabel
            //
            this.resamplingLabel.Name = "resamplingLabel";
            //
            // resamplingComboBox
            //
            this.resamplingComboBox.Name = "resamplingComboBox";
            this.resamplingComboBox.AutoSize = true;
            this.resamplingComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
            this.resamplingComboBox.Sorted = false;
            this.resamplingComboBox.Width = 100;
            this.resamplingComboBox.DropDownWidth = 100;
            this.resamplingComboBox.SelectedIndexChanged += new EventHandler(ResamplingComboBox_SelectedIndexChanged);
            //
            // colorPickerSeparator
            //
            this.colorPickerSeparator.Name = "colorPickerSeparator";
            //
            // colorPickerLabel
            //
            this.colorPickerLabel.Name = "colorPickerLabel";
            //
            // colorPickerComboBox
            //
            this.colorPickerComboBox.Name = "colorPickerComboBox";
            this.colorPickerComboBox.AutoSize = true;
            this.colorPickerComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
            this.colorPickerComboBox.Width = 200;
            this.colorPickerComboBox.DropDownWidth = 200;
            this.colorPickerComboBox.Sorted = false;
            this.colorPickerComboBox.SelectedIndexChanged += new EventHandler(ColorPickerComboBox_SelectedIndexChanged);
            //
            // DrawConfigStrip
            //
            this.AutoSize = true;

            this.Items.Add(this.resamplingSeparator);
            this.Items.Add(this.resamplingLabel);
            this.Items.Add(this.resamplingComboBox);

            this.Items.Add(this.colorPickerSeparator);
            this.Items.Add(this.colorPickerLabel);
            this.Items.Add(this.colorPickerComboBox);

            this.Items.Add(this.fontSeparator);
            this.Items.Add(this.fontLabel);
            this.Items.Add(this.fontFamilyComboBox);
            this.Items.Add(this.fontSizeComboBox);
            this.Items.Add(this.fontSmoothingComboBox);
            this.Items.Add(this.fontStyleSeparator);
            this.Items.Add(this.fontBoldButton);
            this.Items.Add(this.fontItalicsButton);
            this.Items.Add(this.fontUnderlineButton);
            this.Items.Add(this.fontAlignSeparator);
            this.Items.Add(this.fontAlignLeftButton);
            this.Items.Add(this.fontAlignCenterButton);
            this.Items.Add(this.fontAlignRightButton);

            this.Items.Add(this.shapeSeparator);
            this.Items.Add(this.shapeButton);

            this.Items.Add(this.gradientSeparator1);
            this.Items.Add(this.gradientLinearClampedButton);
            this.Items.Add(this.gradientLinearReflectedButton);
            this.Items.Add(this.gradientLinearDiamondButton);
            this.Items.Add(this.gradientRadialButton);
            this.Items.Add(this.gradientConicalButton);
            this.Items.Add(this.gradientSeparator2);
            this.Items.Add(this.gradientChannelsSplitButton);

            this.Items.Add(this.penSeparator);
            this.Items.Add(this.penSizeLabel);
            this.Items.Add(this.penSizeDecButton);
            this.Items.Add(this.penSizeComboBox);
            this.Items.Add(this.penSizeIncButton);

            this.Items.Add(this.brushSeparator);
            this.Items.Add(this.brushStyleLabel);
            this.Items.Add(this.brushStyleComboBox);

            this.Items.Add(this.toleranceSeparator);
            this.Items.Add(this.toleranceLabel);
            this.Items.Add(this.toleranceSliderStrip);

            this.Items.Add(this.blendingSeparator);
            this.Items.Add(this.antiAliasingSplitButton);
            this.Items.Add(this.alphaBlendingSplitButton);

            this.ResumeLayout(false);
        }
Пример #48
0
 public ToolStripSplitButtonButton(ToolStripSplitButton owner)
 {
     this.owner = owner;
 }