Exemplo n.º 1
0
 public void AddRecentFileItem(string filePath, ToolStripMenuItemBase m_FileMenuItem)
 {
     int num = m_FileMenuItem.DropDownItems.IndexOfKey("HistorySeparator");
     if (num == -1)
     {
         ToolStripSeparator separator = new ToolStripSeparator();
         separator.Name = "HistorySeparator";
         m_FileMenuItem.DropDownItems.Insert(m_FileMenuItem.DropDownItems.Count - 2, separator);
         num = m_FileMenuItem.DropDownItems.Count - 3;
     }
     if (m_FileMenuItem.DropDownItems.ContainsKey(filePath.Trim().ToLower()))
     {
         m_FileMenuItem.DropDownItems.RemoveByKey(filePath.Trim().ToLower());
     }
     else if ((m_FileMenuItem.DropDownItems.Count - num) == 8)
     {
         m_FileMenuItem.DropDownItems.RemoveAt(m_FileMenuItem.DropDownItems.Count - 3);
     }
     ToolStripMenuItemBase base2 = new ToolStripMenuItemBase();
     base2.Text = RecentFileUtil.FormatFileName(filePath.Trim());
     base2.Tag = filePath.Trim();
     base2.Name = filePath.Trim().ToLower();
     base2.Click += new EventHandler(this.OpenRecentProject);
     m_FileMenuItem.DropDownItems.Insert(num + 1, base2);
 }
Exemplo n.º 2
0
 private void InitContextMenuStrip()
 {
     this.m_TsProperties = new ToolStripMenuItemBase(GISCtrlGResourceEx.GIS_PROPERTIES);
     this.m_TsProperties.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.m_TsProperties.Click += new EventHandler(this.ProcessGeometryProperties);
     this.m_ContextMenuStrip = new ContextMenuStrip();
     this.m_ContextMenuStrip.Items.Add(this.m_TsProperties);
 }
Exemplo n.º 3
0
 public PointAnalysisToolButton(PointAnalysisToolFrm p_PointAnalysisToolForm, IApplicationContext appContext)
 {
     InitializeComponent();
     m_AppContext = appContext;
     m_Operator = new PointAnalyseOperator(m_AppContext);
     m_PointAnalysisToolFrm = p_PointAnalysisToolForm;
     m_PointAnalysisMenuItem = new ToolStripMenuItemBase();
     m_PointAnalysisMenuItem.Name = "Point Analysis";
     m_PointAnalysisMenuItem.Text = "Point Analysis";
     m_PointAnalysisMenuItem.Click += new EventHandler(PointAnalyseMenuItem_Click);
 }
Exemplo n.º 4
0
 public SimulationMenuItemOperation(IApplicationContext appContext)
 {
     this.m_AppContext = appContext;
     this.m_CurveFrm = new SimulationCurveFrm();
     this.m_CurveFrm.DockPanel = ServiceHelper.Lookup<IMainFormService>(this.m_AppContext).GetPointAnalysisDockPanel();
     this.m_CurveFrm.DockState = DockState.DockBottom;
     DockContentHandler dockHandler = this.m_CurveFrm.DockHandler;
     dockHandler.NotifyWindowStateChanged = (NotifyWindowStateChangeDelegate)Delegate.Combine(dockHandler.NotifyWindowStateChanged, new NotifyWindowStateChangeDelegate(this.OnCurveFromClosed));
     this.m_ToolMenuItem = new ToolStripMenuItemBase();
     this.m_ToolMenuItem.Name = "m_SimulationCurveMenuItem";
     this.m_ToolMenuItem.Text = SimulationResource.SIMULATION_CURVE_WINDOW;
     this.m_ToolMenuItem.Click += new EventHandler(this.m_ToolMenuItem_Click);
 }
Exemplo n.º 5
0
 private void BindMenuStripPanel(GeneralProjectEntity project)
 {
     foreach (IMenuItemOperation operation in project.MenuItems)
     {
         ToolStripMenuItemBase topMenuItem = this.m_MainFormUIManager.MainForm.GetTopMenuItem(operation.MenuItemType);
         if (MenuItemType.File == operation.MenuItemType)
         {
             topMenuItem.DropDownItems.Insert(topMenuItem.DropDownItems.IndexOf(this.m_MainFormUIManager.MainForm.PropertyMenuItem), operation.ToolMenuItem);
         }
         else
         {
             topMenuItem.DropDownItems.Add(operation.ToolMenuItem);
         }
     }
 }
 private void InitializeComponent()
 {
     this.components = new Container();
     this.m_AntennaGroupCMS = new ContextMenuStrip(this.components);
     this.addGroupTSMI = new ToolStripMenuItemBase();
     this.m_AntennaGroupChildCMS = new ContextMenuStrip(this.components);
     this.PropertiesTSMI = new ToolStripMenuItemBase();
     this.renameTSMI = new ToolStripMenuItemBase();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.deleteTSMI = new ToolStripMenuItemBase();
     this.m_AntennaGroupCMS.SuspendLayout();
     this.m_AntennaGroupChildCMS.SuspendLayout();
     base.SuspendLayout();
     this.m_AntennaGroupCMS.Items.AddRange(new ToolStripItem[] { this.addGroupTSMI });
     this.m_AntennaGroupCMS.Name = "AntennaGroupCMS";
     this.m_AntennaGroupCMS.Size = new Size(0x83, 0x1a);
     this.addGroupTSMI.Font = new Font("Arial", 9f);
     this.addGroupTSMI.Name = "addGroupTSMI";
     this.addGroupTSMI.Size = new Size(130, 0x16);
     this.addGroupTSMI.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_ADD_ANTENNA_GROUP;
     this.addGroupTSMI.Click += new EventHandler(this.addGroupTSMI_Click);
     this.m_AntennaGroupChildCMS.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.m_AntennaGroupChildCMS.Items.AddRange(new ToolStripItem[] { this.PropertiesTSMI, this.renameTSMI, this.toolStripSeparator1, this.deleteTSMI });
     this.m_AntennaGroupChildCMS.Name = "m_AntennaGroupChildCMS";
     this.m_AntennaGroupChildCMS.Size = new Size(0x99, 0x62);
     this.m_AntennaGroupChildCMS.Opening += new CancelEventHandler(this.m_AntennaGroupChildCMS_Opening);
     this.PropertiesTSMI.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.PropertiesTSMI.Name = "PropertiesTSMI";
     this.PropertiesTSMI.Size = new Size(0x98, 0x16);
     this.PropertiesTSMI.Text = GeneralResource.MENU_ITEM_PROPERTIES;
     this.PropertiesTSMI.Click += new EventHandler(this.PropertiesTSMI_Click);
     this.renameTSMI.Name = "renameTSMI";
     this.renameTSMI.Size = new Size(0x98, 0x16);
     this.renameTSMI.Text = GeneralResource.MENU_ITEM_RENAME;
     this.renameTSMI.Click += new EventHandler(this.renameTSMI_Click);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(0x95, 6);
     this.deleteTSMI.Name = "deleteTSMI";
     this.deleteTSMI.Size = new Size(0x98, 0x16);
     this.deleteTSMI.Text = GeneralResource.MENU_ITEM_DELETE;
     this.deleteTSMI.Click += new EventHandler(this.deleteTSMI_Click);
     base.Name = "AntennaGroupContextMenuManager";
     this.m_AntennaGroupCMS.ResumeLayout(false);
     this.m_AntennaGroupChildCMS.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 7
0
 public SiteListNode(CollectionsModel model)
 {
     this.InitializeComponent();
     this.m_Editor = new SiteListNodeEditor(model);
     this.m_ISiteNodeModel = this.m_Editor.GetModel();
     this.m_CurrentGroupByItem = this.noneToolStripMenuItem;
     this.InitSiteTreeNode();
     this.InitTreeNodeManage();
     this.InitIcon();
     this.m_ISiteNodeModel.AddSiteEvent += new EventHandler<NESiteEventArgs>(this.SiteList_SiteAddEvent);
     this.m_ISiteNodeModel.DelSiteEvent += new EventHandler<NESiteEventArgs>(this.SiteList_SiteDeleteEvent);
     this.m_ISiteNodeModel.ModifySiteEvent += new EventHandler<NESiteEventArgs>(this.SiteList_SiteModifyEvent);
     this.m_ISiteNodeModel.ViewEntityEvent += new ViewEntityEventHandle(this.GisINetEntity_ViewEntityEvent);
     this.m_ISiteNodeModel.ShowNEPropertyEvent += new ShowNetEntityPropertyFormEventHandle(this.GisINetEntity_ShowNetEntityPropertyFormEvent);
     this.m_ISiteNodeModel.SiteExtAddEvent += new EventHandler<EventArgs>(this.AddUserDefMenuItem);
     this.m_ISiteNodeModel.SiteExtDelEvent += new EventHandler<EventArgs>(this.DelUserDefMenuItem);
     this.m_ISiteNodeModel.GrouByEvent += new EventHandler<GroupByEventArgs>(this.GroupbyEvent);
     this.m_ISiteNodeModel.ENodeBModifyEvent += new EventHandler<NESiteEventArgs>(this.ENodeBModifyEvent);
 }
Exemplo n.º 8
0
 public void LoadRecentFile(ToolStripMenuItemBase m_FileMenuItem)
 {
     try
     {
         XmlDocument document = new XmlDocument();
         document.Load(FrameConst.OPEN_FILE_HISTORY_FILENAME);
         string xpath = "/Recnet_Files/Project_Files/FilePath";
         XmlNodeList list = document.SelectNodes(xpath);
         for (int i = list.Count - 1; i >= 0; i--)
         {
             XmlNode node = list[i];
             this.AddRecentFileItem(node.InnerText, m_FileMenuItem);
         }
     }
     catch (Exception exception)
     {
         WriteLog.Logger.Error(exception.Message + exception.StackTrace);
     }
 }
Exemplo n.º 9
0
 public void SetRecentlyPrjEnable(bool enable, ToolStripMenuItemBase fileMenuItem)
 {
     ToolStripItem[] array = new ToolStripItem[fileMenuItem.DropDownItems.Count];
     fileMenuItem.DropDownItems.CopyTo(array, 0);
     fileMenuItem.DropDownItems.Clear();
     foreach (ToolStripItem item in array)
     {
         if ((item.Tag != null) && Path.IsPathRooted(item.Tag.ToString()))
         {
             item.Enabled = enable;
             if (File.Exists(item.Tag.ToString()))
             {
                 fileMenuItem.DropDownItems.Add(item);
             }
         }
         else
         {
             fileMenuItem.DropDownItems.Add(item);
         }
     }
 }
Exemplo n.º 10
0
 private void AddUserDefMenuItem(object sender, EventArgs e)
 {
     ExtDefItem item = (ExtDefItem) sender;
     ToolStripMenuItemBase base2 = new ToolStripMenuItemBase();
     base2.Name = item.Name;
     base2.Text = item.Legend;
     this.groupByMenuItem.DropDownItems.Add(base2);
     base2.Click += new EventHandler(this.GroupBy_Click);
 }
Exemplo n.º 11
0
 private void SetSelectedGroupByItem(object sender)
 {
     this.m_CurrentGroupByItem.Checked = false;
     this.m_CurrentGroupByItem = (ToolStripMenuItemBase) sender;
     this.m_CurrentGroupByItem.Checked = true;
 }
Exemplo n.º 12
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.ctxMenuSiteList = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tsItemNewSite = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.tsItemSiteTable = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
            this.groupByMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.noneToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.polygonToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator19 = new System.Windows.Forms.ToolStripSeparator();
            this.nameToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.altitudeToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.commentsToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.eNodeBEquipmentToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.orderToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.importToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.exportToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.ctxMenuSite = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.tsItemSiteProperty = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.tsItemCenterSite = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.tsItemSiteRename = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.tsItemDeleteSite = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.ilIcon = new System.Windows.Forms.ImageList(this.components);
            this.ctxtMenuGroupBy = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.openTableToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.renameToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.setDisplayToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.hhToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.ctxMenuSiteList.SuspendLayout();
            this.ctxMenuSite.SuspendLayout();
            this.ctxtMenuGroupBy.SuspendLayout();
            this.SuspendLayout();
            // 
            // ctxMenuSiteList
            // 
            this.ctxMenuSiteList.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ctxMenuSiteList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsItemNewSite,
            this.toolStripSeparator1,
            this.tsItemSiteTable,
            this.toolStripSeparator7,
            this.groupByMenuItem,
            this.orderToolStripMenuItem,
            this.toolStripSeparator4,
            this.importToolStripMenuItem,
            this.exportToolStripMenuItem,
            this.hhToolStripMenuItem});
            this.ctxMenuSiteList.Name = "ctxMenuSiteList";
            this.ctxMenuSiteList.Size = new System.Drawing.Size(153, 198);
            // 
            // tsItemNewSite
            // 
            this.tsItemNewSite.Name = "tsItemNewSite";
            this.tsItemNewSite.Size = new System.Drawing.Size(152, 22);
            this.tsItemNewSite.Text = "New...";
            this.tsItemNewSite.Click += new System.EventHandler(this.NewSite_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
            // 
            // tsItemSiteTable
            // 
            this.tsItemSiteTable.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tsItemSiteTable.Name = "tsItemSiteTable";
            this.tsItemSiteTable.Size = new System.Drawing.Size(152, 22);
            this.tsItemSiteTable.Text = "Open Table";
            this.tsItemSiteTable.Click += new System.EventHandler(this.SiteTable_Click);
            // 
            // toolStripSeparator7
            // 
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(149, 6);
            // 
            // groupByMenuItem
            // 
            this.groupByMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.noneToolStripMenuItem,
            this.toolStripSeparator5,
            this.polygonToolStripMenuItem,
            this.toolStripSeparator19,
            this.nameToolStripMenuItem,
            this.altitudeToolStripMenuItem,
            this.commentsToolStripMenuItem,
            this.eNodeBEquipmentToolStripMenuItem});
            this.groupByMenuItem.Name = "groupByMenuItem";
            this.groupByMenuItem.Size = new System.Drawing.Size(152, 22);
            this.groupByMenuItem.Text = "Group By";
            // 
            // noneToolStripMenuItem
            // 
            this.noneToolStripMenuItem.Checked = true;
            this.noneToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
            this.noneToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.noneToolStripMenuItem.Text = "None";
            this.noneToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(155, 6);
            // 
            // polygonToolStripMenuItem
            // 
            this.polygonToolStripMenuItem.Name = "polygonToolStripMenuItem";
            this.polygonToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.polygonToolStripMenuItem.Text = "Polygon";
            this.polygonToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // toolStripSeparator19
            // 
            this.toolStripSeparator19.Name = "toolStripSeparator19";
            this.toolStripSeparator19.Size = new System.Drawing.Size(155, 6);
            // 
            // nameToolStripMenuItem
            // 
            this.nameToolStripMenuItem.Enabled = false;
            this.nameToolStripMenuItem.Name = "nameToolStripMenuItem";
            this.nameToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.nameToolStripMenuItem.Text = "Name";
            this.nameToolStripMenuItem.Visible = false;
            this.nameToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // altitudeToolStripMenuItem
            // 
            this.altitudeToolStripMenuItem.Name = "altitudeToolStripMenuItem";
            this.altitudeToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.altitudeToolStripMenuItem.Text = "Altitude";
            this.altitudeToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // commentsToolStripMenuItem
            // 
            this.commentsToolStripMenuItem.Name = "commentsToolStripMenuItem";
            this.commentsToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.commentsToolStripMenuItem.Text = "Comment";
            this.commentsToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // eNodeBEquipmentToolStripMenuItem
            // 
            this.eNodeBEquipmentToolStripMenuItem.Name = "eNodeBEquipmentToolStripMenuItem";
            this.eNodeBEquipmentToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
            this.eNodeBEquipmentToolStripMenuItem.Text = "Site Equipment";
            this.eNodeBEquipmentToolStripMenuItem.Click += new System.EventHandler(this.GroupBy_Click);
            // 
            // orderToolStripMenuItem
            // 
            this.orderToolStripMenuItem.Name = "orderToolStripMenuItem";
            this.orderToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.orderToolStripMenuItem.Text = "Order";
            this.orderToolStripMenuItem.Click += new System.EventHandler(this.order_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(149, 6);
            // 
            // importToolStripMenuItem
            // 
            this.importToolStripMenuItem.Name = "importToolStripMenuItem";
            this.importToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.importToolStripMenuItem.Text = "Import...";
            this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
            // 
            // exportToolStripMenuItem
            // 
            this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
            this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.exportToolStripMenuItem.Text = "Export...";
            this.exportToolStripMenuItem.Click += new System.EventHandler(this.export_Click);
            // 
            // ctxMenuSite
            // 
            this.ctxMenuSite.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ctxMenuSite.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsItemSiteProperty,
            this.toolStripSeparator3,
            this.tsItemCenterSite,
            this.toolStripSeparator2,
            this.tsItemSiteRename,
            this.tsItemDeleteSite});
            this.ctxMenuSite.Name = "ctxMenuSite";
            this.ctxMenuSite.Size = new System.Drawing.Size(175, 104);
            // 
            // tsItemSiteProperty
            // 
            this.tsItemSiteProperty.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tsItemSiteProperty.Name = "tsItemSiteProperty";
            this.tsItemSiteProperty.Size = new System.Drawing.Size(174, 22);
            this.tsItemSiteProperty.Text = "Properties";
            this.tsItemSiteProperty.Click += new System.EventHandler(this.tsItemSiteProperty_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(171, 6);
            // 
            // tsItemCenterSite
            // 
            this.tsItemCenterSite.Name = "tsItemCenterSite";
            this.tsItemCenterSite.Size = new System.Drawing.Size(174, 22);
            this.tsItemCenterSite.Text = "Center in The Map";
            this.tsItemCenterSite.Click += new System.EventHandler(this.tsItemCenterSite_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(171, 6);
            // 
            // tsItemSiteRename
            // 
            this.tsItemSiteRename.Name = "tsItemSiteRename";
            this.tsItemSiteRename.Size = new System.Drawing.Size(174, 22);
            this.tsItemSiteRename.Text = "&Rename";
            this.tsItemSiteRename.Click += new System.EventHandler(this.tsItemSiteRename_Click);
            // 
            // tsItemDeleteSite
            // 
            this.tsItemDeleteSite.Name = "tsItemDeleteSite";
            this.tsItemDeleteSite.Size = new System.Drawing.Size(174, 22);
            this.tsItemDeleteSite.Text = "Delete";
            this.tsItemDeleteSite.Click += new System.EventHandler(this.tsItemDeleteSite_Click);
            // 
            // ilIcon
            // 
            this.ilIcon.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.ilIcon.ImageSize = new System.Drawing.Size(16, 16);
            this.ilIcon.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // ctxtMenuGroupBy
            // 
            this.ctxtMenuGroupBy.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.toolStripSeparator6,
            this.openTableToolStripMenuItem,
            this.renameToolStripMenuItem,
            this.setDisplayToolStripMenuItem});
            this.ctxtMenuGroupBy.Name = "ctxtMenuGroupBy";
            this.ctxtMenuGroupBy.Size = new System.Drawing.Size(137, 98);
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.newToolStripMenuItem.Text = "New...";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.NewSite_Click);
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(133, 6);
            // 
            // openTableToolStripMenuItem
            // 
            this.openTableToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.openTableToolStripMenuItem.Name = "openTableToolStripMenuItem";
            this.openTableToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.openTableToolStripMenuItem.Text = "Open Table";
            this.openTableToolStripMenuItem.Click += new System.EventHandler(this.SiteTable_Click);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.renameToolStripMenuItem.Text = "&Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.tsItemSiteRename_Click);
            // 
            // setDisplayToolStripMenuItem
            // 
            this.setDisplayToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.setDisplayToolStripMenuItem.Name = "setDisplayToolStripMenuItem";
            this.setDisplayToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
            this.setDisplayToolStripMenuItem.Text = "Set Display";
            this.setDisplayToolStripMenuItem.Click += new System.EventHandler(this.setDisplayToolStripMenuItem_Click);
            // 
            // hhToolStripMenuItem
            // 
            this.hhToolStripMenuItem.Name = "hhToolStripMenuItem";
            this.hhToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.hhToolStripMenuItem.Text = "hh";
            // 
            // SiteListNode
            // 
            this.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.Name = "SiteListNode";
            this.Size = new System.Drawing.Size(175, 188);
            this.ctxMenuSiteList.ResumeLayout(false);
            this.ctxMenuSite.ResumeLayout(false);
            this.ctxtMenuGroupBy.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 13
0
 public MenuItemOperation(ToolStripMenuItemBase menuItem, Huawei.UNet.Frame.Interface.MenuItemType type)
 {
     this.m_MenuItem = menuItem;
     this.m_MenuItemType = type;
 }
Exemplo n.º 14
0
 private void InitializeComponent()
 {
     this.components = new Container();
     DataGridViewCellStyle style = new DataGridViewCellStyle();
     DataGridViewCellStyle style2 = new DataGridViewCellStyle();
     DataGridViewCellStyle style3 = new DataGridViewCellStyle();
     this.dgvExpoertData = new DataGridViewBase(false, null, true, new EventHandler(this.tsmItemExport_Click), false, null, true);
     base.Controls.Add(this.dgvExpoertData);
     ComponentResourceManager manager = new ComponentResourceManager(typeof(PredictionReportForm));
     this.GroupNameOrLegend = new DataGridViewTextBoxColumn();
     this.CoverArea = new DataGridViewTextBoxColumn();
     this.Percentage = new DataGridViewTextBoxColumn();
     this.Cumulate_Per = new DataGridViewTextBoxColumn();
     this.cmsContexMenu = new ContextMenuStrip(this.components);
     this.tsmItemExport = new ToolStripMenuItemBase();
     this.tsmItemImport = new ToolStripMenuItemBase();
     this.tableFieldsToolStripMenuItem = new ToolStripMenuItemBase();
     ((ISupportInitialize) this.dgvExpoertData).BeginInit();
     this.cmsContexMenu.SuspendLayout();
     base.SuspendLayout();
     this.dgvExpoertData.AfterDeleteHanlder = null;
     this.dgvExpoertData.AllowUserToOrderColumns = true;
     style.BackColor = Color.White;
     this.dgvExpoertData.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.dgvExpoertData.BeforeDeleteHanlder = null;
     this.dgvExpoertData.ClearHandle = null;
     style2.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style2.BackColor = SystemColors.Control;
     style2.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     style2.ForeColor = SystemColors.WindowText;
     style2.SelectionBackColor = SystemColors.Highlight;
     style2.SelectionForeColor = SystemColors.HighlightText;
     style2.WrapMode = DataGridViewTriState.True;
     this.dgvExpoertData.ColumnHeadersDefaultCellStyle = style2;
     this.dgvExpoertData.ColumnHeadersHeight = 0x26;
     this.dgvExpoertData.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dgvExpoertData.Columns.AddRange(new DataGridViewColumn[] { this.GroupNameOrLegend, this.CoverArea, this.Percentage, this.Cumulate_Per });
     this.dgvExpoertData.CtrlDHanlder = null;
     style3.Alignment = DataGridViewContentAlignment.MiddleLeft;
     style3.BackColor = SystemColors.Window;
     style3.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     style3.ForeColor = Color.Black;
     style3.SelectionBackColor = SystemColors.Highlight;
     style3.SelectionForeColor = SystemColors.HighlightText;
     style3.WrapMode = DataGridViewTriState.False;
     this.dgvExpoertData.DefaultCellStyle = style3;
     this.dgvExpoertData.DeleteHanlder = null;
     this.dgvExpoertData.EnableCtrlA = true;
     this.dgvExpoertData.EnableCtrlD = false;
     this.dgvExpoertData.EnableDeleteRow = false;
     this.dgvExpoertData.EnableRowAndColSelect = true;
     this.dgvExpoertData.EnableSort = false;
     this.dgvExpoertData.Location = new System.Drawing.Point(12, 13);
     this.dgvExpoertData.Margin = new Padding(3, 4, 3, 4);
     this.dgvExpoertData.Name = "dgvExpoertData";
     this.dgvExpoertData.RowTemplate.Height = 0x17;
     this.dgvExpoertData.Size = new Size(0x243, 0x196);
     this.dgvExpoertData.TabIndex = 0;
     this.GroupNameOrLegend.HeaderText = LTEPredictionResource.PREDICTION_NAME_COLUMN;
     this.GroupNameOrLegend.Name = "GroupNameOrLegend";
     this.GroupNameOrLegend.ReadOnly = true;
     this.GroupNameOrLegend.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.GroupNameOrLegend.Width = 150;
     this.CoverArea.HeaderText = LTEPredictionResource.PREDICTION__AREAKM2;
     this.CoverArea.Name = "CoverArea";
     this.CoverArea.ReadOnly = true;
     this.CoverArea.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.CoverArea.Width = 150;
     this.Percentage.HeaderText = LTEPredictionResource.PREDICTION__PERCENTAGE;
     this.Percentage.Name = "Percentage";
     this.Percentage.ReadOnly = true;
     this.Percentage.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.Percentage.Width = 150;
     this.Cumulate_Per.HeaderText = LTEPredictionResource.PREDICTION__CUMULATE_PER;
     this.Cumulate_Per.Name = "Cumulate_Per";
     this.Cumulate_Per.ReadOnly = true;
     this.Cumulate_Per.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.Cumulate_Per.Width = 150;
     this.cmsContexMenu.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cmsContexMenu.Items.AddRange(new ToolStripItem[] { this.tsmItemExport, this.tsmItemImport, this.tableFieldsToolStripMenuItem });
     this.cmsContexMenu.Name = "cmsContexMenu";
     this.cmsContexMenu.Size = new Size(0x8f, 70);
     this.tsmItemExport.Name = "tsmItemExport";
     this.tsmItemExport.Size = new Size(0x8e, 0x16);
     this.tsmItemExport.Text = NEResource.NE_EXPORT;
     this.tsmItemExport.Click += new EventHandler(this.tsmItemExport_Click);
     this.tsmItemImport.Name = "tsmItemImport";
     this.tsmItemImport.Size = new Size(0x98, 0x16);
     this.tsmItemImport.Text = NEResource.NE_IMPORT;
     this.tableFieldsToolStripMenuItem.Name = "tableFieldsToolStripMenuItem";
     this.tableFieldsToolStripMenuItem.Size = new Size(0x8e, 0x16);
     this.tableFieldsToolStripMenuItem.Text = NEResource.NE_TABLE_FIELDS;
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.AutoSizeMode = AutoSizeMode.GrowAndShrink;
     base.ClientSize = new Size(0x25b, 0x1b0);
     this.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     base.Margin = new Padding(3, 4, 3, 4);
     base.MinimizeBox = false;
     this.MinimumSize = new Size(0x263, 0x1cb);
     base.Name = "PredictionExportDataForm";
     base.ShowIcon = false;
     base.ShowInTaskbar = false;
     base.SizeGripStyle = SizeGripStyle.Show;
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = LTEPredictionResource.PREDICTION__PREDICTION_EXPORT_DATA;
     base.Load += new EventHandler(this.PredictionExportDataForm_Load);
     ((ISupportInitialize) this.dgvExpoertData).EndInit();
     this.cmsContexMenu.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 15
0
        private void InitializeComponent()
        {
            this.components = new Container();
            DataGridViewCellStyle style = new DataGridViewCellStyle();
            this.lblDisplayType = new Label();
            this.cmbxDisplayType = new ComboBox();
            this.cmbxFiled = new ComboBox();
            this.lblField = new Label();
            this.dgvLegend = new CommonDataGridView();
            this.ColorType = new DataGridViewButtonColumn();
            this.Value = new DataGridViewTextBoxColumn();
            this.MinValue = new DataGridViewTextBoxColumn();
            this.MaxValue = new DataGridViewTextBoxColumn();
            this.Legend = new DataGridViewTextBoxColumn();
            this.panelDgv = new Panel();
            this.lblActions = new Label();
            this.contextMenuStrip1 = new ContextMenuStrip(this.components);
            this.insertBeforeToolStripMenuItem = new ToolStripMenuItemBase();
            this.insertAfterToolStripMenuItem = new ToolStripMenuItemBase();
            this.deleteToolStripMenuItem = new ToolStripMenuItemBase();
            this.exportLegendToolStripMenuItem = new ToolStripMenuItemBase();
            this.importLegendToolStripMenuItem = new ToolStripMenuItemBase();
            this.toolStripSeparator15 = new ToolStripSeparator();
            this.shadingToolStripMenuItem1 = new ToolStripMenuItemBase();
            this.button_actions = new Button();
            ((ISupportInitialize) this.dgvLegend).BeginInit();
            this.panelDgv.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            base.SuspendLayout();
            this.lblDisplayType.AutoSize = true;
            this.lblDisplayType.Location = new System.Drawing.Point(3, 9);
            this.lblDisplayType.Name = "lblDisplayType";
            this.lblDisplayType.Size = new Size(0x53, 12);
            this.lblDisplayType.TabIndex = 2;
            this.lblDisplayType.Text = NEResource.NE_LABEL_DISPLAY_TYPE;
            this.cmbxDisplayType.DropDownStyle = ComboBoxStyle.DropDownList;
            this.cmbxDisplayType.FormattingEnabled = true;
            this.cmbxDisplayType.Location = new System.Drawing.Point(3, 0x1a);
            this.cmbxDisplayType.Name = "cmbxDisplayType";
            this.cmbxDisplayType.Size = new Size(0xc6, 20);
            this.cmbxDisplayType.TabIndex = 3;
            this.cmbxDisplayType.SelectedIndexChanged += new EventHandler(this.cmbDisplayType_SelectedIndexChanged);
            this.cmbxFiled.DropDownStyle = ComboBoxStyle.DropDownList;
            this.cmbxFiled.FormattingEnabled = true;
            this.cmbxFiled.Location = new System.Drawing.Point(0xd3, 0x1a);
            this.cmbxFiled.Name = "cmbxFiled";
            this.cmbxFiled.Size = new Size(0x11b, 20);
            this.cmbxFiled.TabIndex = 4;
            this.cmbxFiled.SelectedIndexChanged += new EventHandler(this.cmbField_SelectedIndexChanged);
            this.lblField.AutoSize = true;
            this.lblField.Location = new System.Drawing.Point(0xd1, 9);
            this.lblField.Name = "lblField";
            this.lblField.Size = new Size(0x29, 12);
            this.lblField.TabIndex = 5;
            this.lblField.Text = CommonResource.LABEL_FIELD;
            this.dgvLegend.AllowUserToAddRows = false;
            this.dgvLegend.AllowUserToDeleteRows = false;
            this.dgvLegend.BackgroundColor = SystemColors.ButtonFace;
            this.dgvLegend.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvLegend.Columns.AddRange(new DataGridViewColumn[] { this.ColorType, this.Value, this.MinValue, this.MaxValue, this.Legend });
            this.dgvLegend.Location = new System.Drawing.Point(0, 0);
            this.dgvLegend.Name = "dgvLegend";
            this.dgvLegend.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
            style.BackColor = Color.White;
            this.dgvLegend.RowsDefaultCellStyle = style;
            this.dgvLegend.RowTemplate.Height = 0x17;
            this.dgvLegend.Size = new Size(0x1eb, 0x9f);
            this.dgvLegend.TabIndex = 6;
            this.dgvLegend.CellMouseClick += new DataGridViewCellMouseEventHandler(this.dgvLegend_CellMouseClick);
            this.dgvLegend.CellValidated += new DataGridViewCellEventHandler(this.dgvLegend_CellValidated);
            this.dgvLegend.RowValidated += new DataGridViewCellEventHandler(this.dgvLegend_RowValidated);
            this.dgvLegend.CellPainting += new DataGridViewCellPaintingEventHandler(this.dgvLegend_CellPainting);
            this.ColorType.HeaderText = "";
            this.ColorType.Name = "ColorType";
            this.ColorType.Width = 70;
            this.Value.HeaderText = GISCtrlGResourceEx.GIS_VALUE;
            this.Value.Name = "Value";
            this.MinValue.HeaderText = CommonResource.MIN_VALUE;
            this.MinValue.Name = "MinValue";
            this.MinValue.SortMode = DataGridViewColumnSortMode.NotSortable;
            this.MinValue.Width = 70;
            this.MaxValue.HeaderText = CommonResource.MAX_VALUE;
            this.MaxValue.Name = "MaxValue";
            this.MaxValue.SortMode = DataGridViewColumnSortMode.NotSortable;
            this.MaxValue.Width = 70;
            this.Legend.HeaderText = GISCtrlGResourceEx.GIS_LEGEND;
            this.Legend.Name = "Legend";
            this.Legend.SortMode = DataGridViewColumnSortMode.NotSortable;
            this.Legend.Width = 0x7d;
            this.panelDgv.Controls.Add(this.dgvLegend);
            this.panelDgv.Location = new System.Drawing.Point(3, 0x34);
            this.panelDgv.Name = "panelDgv";
            this.panelDgv.Size = new Size(0x1eb, 0x9f);
            this.panelDgv.TabIndex = 15;
            this.lblActions.AutoSize = true;
            this.lblActions.Location = new System.Drawing.Point(9, 0xde);
            this.lblActions.Name = "lblActions";
            this.lblActions.Size = new Size(0x2f, 12);
            this.lblActions.TabIndex = 0x11;
            this.lblActions.Text = GISCtrlGResourceEx.GIS_ACTIONS;
            this.lblActions.MouseUp += new MouseEventHandler(this.ButtonActionsMouseUp);
            this.contextMenuStrip1.AllowMerge = false;
            this.contextMenuStrip1.Font = new Font("Arial", 9f);
            this.contextMenuStrip1.Items.AddRange(new ToolStripItem[] { this.insertBeforeToolStripMenuItem, this.insertAfterToolStripMenuItem, this.deleteToolStripMenuItem, this.exportLegendToolStripMenuItem, this.importLegendToolStripMenuItem, this.toolStripSeparator15, this.shadingToolStripMenuItem1 });
            this.contextMenuStrip1.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.ShowImageMargin = false;
            this.contextMenuStrip1.ShowItemToolTips = false;
            this.contextMenuStrip1.Size = new Size(130, 0x8e);
            this.contextMenuStrip1.Opening += new CancelEventHandler(this.contextMenuStrip1_Opening);
            this.insertBeforeToolStripMenuItem.Name = "insertBeforeToolStripMenuItem";
            this.insertBeforeToolStripMenuItem.Size = new Size(0x81, 0x16);
            this.insertBeforeToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_COLORBASE_INSERT_BEFORE;
            this.insertBeforeToolStripMenuItem.Visible = false;
            this.insertAfterToolStripMenuItem.Name = "insertAfterToolStripMenuItem";
            this.insertAfterToolStripMenuItem.Size = new Size(0x81, 0x16);
            this.insertAfterToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_COLORBASE_INSERT_AFTER;
            this.insertAfterToolStripMenuItem.Visible = false;
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new Size(0x81, 0x16);
            this.deleteToolStripMenuItem.Text = GeneralResource.MENU_ITEM_DELETE;
            this.deleteToolStripMenuItem.Visible = false;
            this.exportLegendToolStripMenuItem.Name = "exportLegendToolStripMenuItem";
            this.exportLegendToolStripMenuItem.Size = new Size(0x81, 0x16);
            this.exportLegendToolStripMenuItem.Text = CommonResource.EXPORT_LEGEND;
            this.exportLegendToolStripMenuItem.Click += new EventHandler(this.ExportLegendAsXML);
            this.importLegendToolStripMenuItem.Name = "importLegendToolStripMenuItem";
            this.importLegendToolStripMenuItem.Size = new Size(0x81, 0x16);
            this.importLegendToolStripMenuItem.Text = CommonResource.IMPORT_LEGEND;
            this.importLegendToolStripMenuItem.Click += new EventHandler(this.ImportLegend);
            this.toolStripSeparator15.Name = "toolStripSeparator15";
            this.toolStripSeparator15.Size = new Size(0x7e, 6);
            this.shadingToolStripMenuItem1.Name = "shadingToolStripMenuItem1";
            this.shadingToolStripMenuItem1.Size = new Size(0x81, 0x16);
            this.shadingToolStripMenuItem1.Text = GISCtrlGResourceEx.GIS_SHADING;
            this.shadingToolStripMenuItem1.Click += new EventHandler(this.shadingToolStripMenuItem1_Click);
            this.button_actions.AllowDrop = true;
            this.button_actions.BackColor = Color.Transparent;
            this.button_actions.BackgroundImageLayout = ImageLayout.None;
            this.button_actions.FlatStyle = FlatStyle.System;
            this.button_actions.Font = new Font("Marlett", 15.75f);
            this.button_actions.Location = new System.Drawing.Point(4, 0xd9);
            this.button_actions.Name = "button_actions";
            this.button_actions.Size = new Size(0x4b, 0x17);
            this.button_actions.TabIndex = 0x10;
            this.button_actions.Text = "u";
            this.button_actions.TextAlign = ContentAlignment.MiddleRight;
            this.button_actions.UseVisualStyleBackColor = false;
            this.button_actions.MouseUp += new MouseEventHandler(this.ButtonActionsMouseUp);
            base.AutoScaleDimensions = new SizeF(6f, 12f);
//            base.AutoScaleMode = AutoScaleMode.Font;
            base.Controls.Add(this.lblActions);
            base.Controls.Add(this.button_actions);
            base.Controls.Add(this.panelDgv);
            base.Controls.Add(this.lblField);
            base.Controls.Add(this.cmbxDisplayType);
            base.Controls.Add(this.cmbxFiled);
            base.Controls.Add(this.lblDisplayType);
            base.Name = "DisplayControl";
            base.Size = new Size(500, 0x109);
            base.Load += new EventHandler(this.DisplayControl_Load);
            ((ISupportInitialize) this.dgvLegend).EndInit();
            this.panelDgv.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            base.ResumeLayout(false);
            base.PerformLayout();
        }
Exemplo n.º 16
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(GeoTree));
     this.imageList = new ImageList(this.components);
     this.cmsMapNode = new ContextMenuStrip(this.components);
     this.tsmMapProperies = new ToolStripMenuItemBase();
     this.tsmImportMultiLayers = new ToolStripMenuItemBase();
     this.tsmQuickImport = new ToolStripMenuItemBase();
     this.tsmImportTabFiles = new ToolStripMenuItemBase();
     this.tsmCoordinate = new ToolStripMenuItemBase();
     this.tsmAdjustMap = new ToolStripMenuItemBase();
     this.tsmMapSetting = new ToolStripMenuItemBase();
     this.tsmCalculationSetting = new ToolStripMenuItemBase();
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem = new ToolStripMenuItemBase();
     this.useHighestResolutionMapToolStripMenuItem = new ToolStripMenuItemBase();
     this.tsmSaveAs = new ToolStripMenuItemBase();
     this.cmsMapLevel2 = new ContextMenuStrip(this.components);
     this.tsmOneMapProperties = new ToolStripMenuItemBase();
     this.tsmDeleteOneMap = new ToolStripMenuItemBase();
     this.tsmCenterOneMap = new ToolStripMenuItemBase();
     this.cmsMapLevel3 = new ContextMenuStrip(this.components);
     this.tsmOneFileProperties = new ToolStripMenuItemBase();
     this.tsmOneFileDelete = new ToolStripMenuItemBase();
     this.cmsMapShapeLevel1 = new ContextMenuStrip(this.components);
     this.tsmPolygonOperator = new ToolStripMenuItemBase();
     this.tmsAddElement = new ToolStripMenuItemBase();
     this.tsmImport = new ToolStripMenuItemBase();
     this.tsmExport = new ToolStripMenuItemBase();
     this.cmsMapShapeLevel2 = new ContextMenuStrip(this.components);
     this.tsmProperties = new ToolStripMenuItemBase();
     this.tsmPolygonStatistic = new ToolStripMenuItemBase();
     this.tsmRename = new ToolStripMenuItemBase();
     this.tsmExportOneMapShape = new ToolStripMenuItemBase();
     this.tsmCenterInTheMap = new ToolStripMenuItemBase();
     this.tsmPrintPolygon = new ToolStripMenuItemBase();
     this.tsmCreateStripPolygon = new ToolStripMenuItemBase();
     this.tsmDeleteOneMapShape = new ToolStripMenuItemBase();
     this.cmsMapLevel1 = new ContextMenuStrip(this.components);
     this.tsmLayersProperties = new ToolStripMenuItemBase();
     this.tsmParameterManagement = new ToolStripMenuItemBase();
     this.tsmImportOneLayer = new ToolStripMenuItemBase();
     this.tsmRelievoStyle = new ToolStripMenuItemBase();
     this.tsmDelete = new ToolStripMenuItemBase();
     this.tsmSaveAsTemp = new ToolStripMenuItemBase();
     this.tsmClutterStatistics = new ToolStripMenuItemBase();
     this.tsmDeleteAllLayers = new ToolStripMenuItemBase();
     this.cmsMapNode.SuspendLayout();
     this.cmsMapLevel2.SuspendLayout();
     this.cmsMapLevel3.SuspendLayout();
     this.cmsMapShapeLevel1.SuspendLayout();
     this.cmsMapShapeLevel2.SuspendLayout();
     this.cmsMapLevel1.SuspendLayout();
     base.SuspendLayout();
     this.imageList.ImageStream = (System.Windows.Forms.ImageListStreamer)manager.GetObject("imageList.ImageStream");
     this.imageList.TransparentColor = Color.Transparent;
     this.imageList.Images.SetKeyName(0, "folder.ico");
     this.imageList.Images.SetKeyName(1, "SECRECL.ICO");
     this.imageList.Images.SetKeyName(2, "graph.ico");
     this.imageList.Images.SetKeyName(3, "MSN.ICO");
     this.imageList.Images.SetKeyName(4, "OOFL.ICO");
     this.imageList.Images.SetKeyName(5, "POSTITL.ICO");
     this.imageList.Images.SetKeyName(6, "root.ico");
     this.imageList.Images.SetKeyName(7, "clutter.ico");
     this.imageList.Images.SetKeyName(8, "building.ico");
     this.imageList.Images.SetKeyName(9, "height2.ico");
     this.imageList.Images.SetKeyName(10, "vector.ICO");
     this.imageList.Images.SetKeyName(11, "region.ico");
     this.imageList.Images.SetKeyName(12, "line.ICO");
     this.imageList.Images.SetKeyName(13, "point.ICO");
     this.imageList.Images.SetKeyName(14, "Folder.bmp");
     this.imageList.Images.SetKeyName(15, "line_1.gif");
     this.imageList.Images.SetKeyName(0x10, "point_1.gif");
     this.imageList.Images.SetKeyName(0x11, "traffic.gif");
     this.imageList.Images.SetKeyName(0x12, "satelliticIcon.bmp");
     this.imageList.Images.SetKeyName(0x13, "Text.bmp");
     this.cmsMapNode.Font = new Font("Arial", 9f, FontStyle.Bold);
     this.cmsMapNode.Items.AddRange(new ToolStripItem[] { this.tsmMapProperies, this.tsmImportMultiLayers, this.tsmQuickImport, this.tsmImportTabFiles, this.tsmCoordinate, this.tsmAdjustMap, this.tsmMapSetting, this.tsmCalculationSetting, this.tsmDeleteAllLayers, this.tsmSaveAs });
     this.cmsMapNode.Name = "contextMenuStripPlaNet";
     this.cmsMapNode.Size = new Size(0xb2, 0xf6);
     this.cmsMapNode.Opening += new CancelEventHandler(this.cmsMapNode_Opening);
     this.tsmMapProperies.Font = new Font("Arial", 9f, FontStyle.Bold);
     this.tsmMapProperies.Name = "tsmMapProperies";
     this.tsmMapProperies.Size = new Size(0xb1, 0x16);
     this.tsmMapProperies.Text = FrameworkResource.PROJECT_PROPERTIES;
     this.tsmMapProperies.Click += new EventHandler(this.tsmMapProperies_Click);
     this.tsmImportMultiLayers.Font = new Font("Arial", 9f);
     this.tsmImportMultiLayers.Name = "tsmImportMultiLayers";
     this.tsmImportMultiLayers.Size = new Size(0xb1, 0x16);
     this.tsmImportMultiLayers.Text = CommonResource.CONTROLS_IMPORT;
     this.tsmImportMultiLayers.Click += new EventHandler(this.tsmImportMultiLayers_Click);
     this.tsmQuickImport.Font = new Font("Arial", 9f);
     this.tsmQuickImport.Name = "tsmQuickImport";
     this.tsmQuickImport.Size = new Size(0xb1, 0x16);
     this.tsmQuickImport.Text = GISCtrlGResourceEx.GIS_QUICK_IMPORT;
     this.tsmQuickImport.Click += new EventHandler(this.tsmQuickImport_Click);
     this.tsmImportTabFiles.Font = new Font("Arial", 9f);
     this.tsmImportTabFiles.Name = "tsmImportTabFiles";
     this.tsmImportTabFiles.Size = new Size(0xb1, 0x16);
     this.tsmImportTabFiles.Text = GISCtrlGResourceEx.GIS_IMPORT_FILES;
     this.tsmImportTabFiles.Click += new EventHandler(this.tsmImportTabFiles_Click);
     this.tsmCoordinate.Font = new Font("Arial", 9f);
     this.tsmCoordinate.Name = "tsmCoordinate";
     this.tsmCoordinate.Size = new Size(0xb1, 0x16);
     this.tsmCoordinate.Text = GISCtrlGResourceEx.GIS_COORDINATE;
     this.tsmCoordinate.Click += new EventHandler(this.tsmCoordinate_Click);
     this.tsmAdjustMap.Font = new Font("Arial", 9f);
     this.tsmAdjustMap.Name = "tsmAdjustMap";
     this.tsmAdjustMap.Size = new Size(0xb1, 0x16);
     this.tsmAdjustMap.Text = GISCtrlGResourceEx.GIS_MAP_ADJUST;
     this.tsmAdjustMap.Click += new EventHandler(this.tsmAdjustMap_Click);
     this.tsmMapSetting.Enabled = false;
     this.tsmMapSetting.Font = new Font("Arial", 9f);
     this.tsmMapSetting.Name = "tsmMapSetting";
     this.tsmMapSetting.Size = new Size(0xb1, 0x16);
     this.tsmMapSetting.Text = GISCtrlGResourceEx.GIS_MAP_SETTING;
     this.tsmMapSetting.Click += new EventHandler(this.tsmMapSetting_Click);
     this.tsmCalculationSetting.DropDownItems.AddRange(new ToolStripItem[] { this.useMapWithClosestToCalculateResolutionToolStripMenuItem, this.useHighestResolutionMapToolStripMenuItem });
     this.tsmCalculationSetting.Enabled = false;
     this.tsmCalculationSetting.Font = new Font("Arial", 9f);
     this.tsmCalculationSetting.Name = "tsmCalculationSetting";
     this.tsmCalculationSetting.Size = new Size(0xb1, 0x16);
     this.tsmCalculationSetting.Text = GISCtrlGResourceEx.GIS_CALCULATE_SETTING;
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.Checked = true;
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.CheckState = CheckState.Checked;
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.Name = "useMapWithClosestToCalculateResolutionToolStripMenuItem";
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.Size = new Size(180, 0x16);
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_CLOSEST_RESOLUTION;
     this.useMapWithClosestToCalculateResolutionToolStripMenuItem.Click += new EventHandler(this.ClosestResolution_Click);
     this.useHighestResolutionMapToolStripMenuItem.Name = "useHighestResolutionMapToolStripMenuItem";
     this.useHighestResolutionMapToolStripMenuItem.Size = new Size(180, 0x16);
     this.useHighestResolutionMapToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_HIGHEST_RESOLUTION;
     this.useHighestResolutionMapToolStripMenuItem.Click += new EventHandler(this.HighestResolution_Click);
     this.tsmSaveAs.Font = new Font("Arial", 9f);
     this.tsmSaveAs.Name = "tsmSaveAs";
     this.tsmSaveAs.Size = new Size(0xb1, 0x16);
     this.tsmSaveAs.Text = FrameworkResource.PROJECT_SAVE_AS;
     this.tsmSaveAs.Click += new EventHandler(this.tsmSaveAs_Click);
     this.cmsMapLevel2.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cmsMapLevel2.Items.AddRange(new ToolStripItem[] { this.tsmOneMapProperties, this.tsmDeleteOneMap, this.tsmCenterOneMap });
     this.cmsMapLevel2.Name = "CMSTypeMapDelete";
     this.cmsMapLevel2.Size = new Size(0xaf, 70);
     this.cmsMapLevel2.Opening += new CancelEventHandler(this.cmsMapLevel2_Opening);
     this.tsmOneMapProperties.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.tsmOneMapProperties.Name = "tsmOneMapProperties";
     this.tsmOneMapProperties.Size = new Size(0xae, 0x16);
     this.tsmOneMapProperties.Text = FrameworkResource.PROJECT_PROPERTIES;
     this.tsmOneMapProperties.Click += new EventHandler(this.tsmOneMapProperties_Click);
     this.tsmDeleteOneMap.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmDeleteOneMap.Name = "tsmDeleteOneMap";
     this.tsmDeleteOneMap.Size = new Size(0xae, 0x16);
     this.tsmDeleteOneMap.Text = GeneralResource.BUTTON_DELETE;
     this.tsmDeleteOneMap.Click += new EventHandler(this.tsmDeleteOneMap_Click);
     this.tsmCenterOneMap.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmCenterOneMap.Name = "tsmCenterOneMap";
     this.tsmCenterOneMap.Size = new Size(0xae, 0x16);
     this.tsmCenterOneMap.Text = NEResource.NE_CENTER_IN_THE_MAP_WINDOW;
     this.tsmCenterOneMap.Click += new EventHandler(this.tsmCenterOneMap_Click);
     this.cmsMapLevel3.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cmsMapLevel3.Items.AddRange(new ToolStripItem[] { this.tsmOneFileProperties, this.tsmOneFileDelete });
     this.cmsMapLevel3.Name = "CMSMapNodeProperties";
     this.cmsMapLevel3.Size = new Size(0x87, 0x30);
     this.tsmOneFileProperties.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.tsmOneFileProperties.Name = "tsmOneFileProperties";
     this.tsmOneFileProperties.Size = new Size(0x86, 0x16);
     this.tsmOneFileProperties.Text = FrameworkResource.PROJECT_PROPERTIES;
     this.tsmOneFileProperties.Click += new EventHandler(this.tsmOneFileProperties_Click);
     this.tsmOneFileDelete.Name = "tsmOneFileDelete";
     this.tsmOneFileDelete.Size = new Size(0x86, 0x16);
     this.tsmOneFileDelete.Text = GeneralResource.BUTTON_DELETE;
     this.tsmOneFileDelete.Click += new EventHandler(this.tsmOneFileDelete_Click);
     this.cmsMapShapeLevel1.Items.AddRange(new ToolStripItem[] { this.tsmPolygonOperator, this.tmsAddElement, this.tsmImport, this.tsmExport });
     this.cmsMapShapeLevel1.Name = "cmsMapShapeLevel1";
     this.cmsMapShapeLevel1.Size = new Size(0xa8, 0x5c);
     this.cmsMapShapeLevel1.Opened += new EventHandler(this.cmsMapShapeLevel1_Opened);
     this.cmsMapShapeLevel1.Opening += new CancelEventHandler(this.cmsMapShapeLevel1_Opening);
     this.tsmPolygonOperator.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmPolygonOperator.Name = "tsmPolygonOperator";
     this.tsmPolygonOperator.Size = new Size(0xa7, 0x16);
     this.tsmPolygonOperator.Text = GISCtrlGResourceEx.GIS_POLYGONOPERATOR;
     this.tsmPolygonOperator.Click += new EventHandler(this.tsmPolygonOperator_Click);
     this.tmsAddElement.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tmsAddElement.Name = "tmsAddElement";
     this.tmsAddElement.Size = new Size(0xa7, 0x16);
     this.tmsAddElement.Text = "0";
     this.tmsAddElement.Click += new EventHandler(this.tmsAddElement_Click);
     this.tsmImport.Font = new Font("Arial", 9f);
     this.tsmImport.Name = "tsmImport";
     this.tsmImport.Size = new Size(0xa7, 0x16);
     this.tsmImport.Text = CommonResource.CONTROLS_IMPORT;
     this.tsmImport.Click += new EventHandler(this.tsmImport_Click);
     this.tsmExport.Font = new Font("Arial", 9f);
     this.tsmExport.Name = "tsmExport";
     this.tsmExport.Size = new Size(0xa7, 0x16);
     this.tsmExport.Text = CommonResource.CONTROLS_EXPORT;
     this.tsmExport.Click += new EventHandler(this.tsmExport_Click);
     this.cmsMapShapeLevel2.Items.AddRange(new ToolStripItem[] { this.tsmProperties, this.tsmPolygonStatistic, this.tsmRename, this.tsmExportOneMapShape, this.tsmCenterInTheMap, this.tsmPrintPolygon, this.tsmCreateStripPolygon, this.tsmDeleteOneMapShape });
     this.cmsMapShapeLevel2.Name = "cmsMapShapeLevel2";
     this.cmsMapShapeLevel2.Size = new Size(0xb9, 180);
     this.cmsMapShapeLevel2.Opened += new EventHandler(this.cmsMapShapeLevel2_Opened);
     this.cmsMapShapeLevel2.Opening += new CancelEventHandler(this.cmsMapShapeLevel2_Opening);
     this.tsmProperties.Font = new Font("Arial", 9f, FontStyle.Bold);
     this.tsmProperties.Name = "tsmProperties";
     this.tsmProperties.Size = new Size(0xb8, 0x16);
     this.tsmProperties.Text = FrameworkResource.PROJECT_PROPERTIES;
     this.tsmProperties.Click += new EventHandler(this.tsmProperties_Click);
     this.tsmPolygonStatistic.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmPolygonStatistic.Name = "tsmPolygonStatistic";
     this.tsmPolygonStatistic.Size = new Size(0xb8, 0x16);
     this.tsmPolygonStatistic.Text = GISCtrlGResourceEx.GIS_STATISTIC;
     this.tsmPolygonStatistic.Click += new EventHandler(this.tsmPolygonStatistic_Click);
     this.tsmRename.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmRename.Name = "tsmRename";
     this.tsmRename.Size = new Size(0xb8, 0x16);
     this.tsmRename.Text = GeneralResource.MENU_ITEM_RENAME;
     this.tsmRename.Click += new EventHandler(this.tsmRename_Click);
     this.tsmExportOneMapShape.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmExportOneMapShape.Name = "tsmExportOneMapShape";
     this.tsmExportOneMapShape.Size = new Size(0xb8, 0x16);
     this.tsmExportOneMapShape.Text = CommonResource.CONTROLS_EXPORT;
     this.tsmExportOneMapShape.Click += new EventHandler(this.tsmExportOneMapShape_Click);
     this.tsmCenterInTheMap.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmCenterInTheMap.Name = "tsmCenterInTheMap";
     this.tsmCenterInTheMap.Size = new Size(0xb8, 0x16);
     this.tsmCenterInTheMap.Text = NEResource.NE_CENTER_IN_THE_MAP_WINDOW;
     this.tsmCenterInTheMap.Click += new EventHandler(this.tsmCenterInTheMap_Click);
     this.tsmPrintPolygon.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmPrintPolygon.Name = "tsmPrintPolygon";
     this.tsmPrintPolygon.Size = new Size(0xb8, 0x16);
     this.tsmPrintPolygon.Text = GISCtrlGResourceEx.GIS_PRINT_POLYGON;
     this.tsmPrintPolygon.Click += new EventHandler(this.tsmPrintPolygon_Click);
     this.tsmCreateStripPolygon.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmCreateStripPolygon.Name = "tsmCreateStripPolygon";
     this.tsmCreateStripPolygon.Size = new Size(0xb8, 0x16);
     this.tsmCreateStripPolygon.Text = GISCtrlGResourceEx.GIS_CREATE_STRIP_POLYGON;
     this.tsmCreateStripPolygon.Click += new EventHandler(this.tsmCreateStripPolygon_Click);
     this.tsmDeleteOneMapShape.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmDeleteOneMapShape.Name = "tsmDeleteOneMapShape";
     this.tsmDeleteOneMapShape.Size = new Size(0xb8, 0x16);
     this.tsmDeleteOneMapShape.Text = GeneralResource.BUTTON_DELETE;
     this.tsmDeleteOneMapShape.Click += new EventHandler(this.tsmDeleteOneMapShape_Click);
     this.cmsMapLevel1.Items.AddRange(new ToolStripItem[] { this.tsmLayersProperties, this.tsmParameterManagement, this.tsmImportOneLayer, this.tsmRelievoStyle, this.tsmDelete, this.tsmSaveAsTemp, this.tsmClutterStatistics });
     this.cmsMapLevel1.Name = "cmsMapLevel1";
     this.cmsMapLevel1.Size = new Size(0xce, 0x9e);
     this.cmsMapLevel1.Opened += new EventHandler(this.cmsMapLevel1_Opened);
     this.cmsMapLevel1.Opening += new CancelEventHandler(this.cmsMapLevel1_Opening);
     this.tsmLayersProperties.Enabled = false;
     this.tsmLayersProperties.Font = new Font("Arial", 9f, FontStyle.Bold);
     this.tsmLayersProperties.Name = "tsmLayersProperties";
     this.tsmLayersProperties.Size = new Size(0xcd, 0x16);
     this.tsmLayersProperties.Text = FrameworkResource.PROJECT_PROPERTIES;
     this.tsmParameterManagement.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmParameterManagement.Name = "tsmParameterManagement";
     this.tsmParameterManagement.Size = new Size(0xcd, 0x16);
     this.tsmParameterManagement.Text = GISCtrlGResourceEx.GIS_PARAMETER_MANAGE;
     this.tsmParameterManagement.Click += new EventHandler(this.tsmParameterManagement_Click);
     this.tsmImportOneLayer.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmImportOneLayer.Name = "tsmImportOneLayer";
     this.tsmImportOneLayer.Size = new Size(0xcd, 0x16);
     this.tsmImportOneLayer.Text = CommonResource.CONTROLS_IMPORT;
     this.tsmImportOneLayer.Click += new EventHandler(this.tsmImportOneLayer_Click);
     this.tsmRelievoStyle.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmRelievoStyle.Name = "tsmRelievoStyle";
     this.tsmRelievoStyle.Size = new Size(0xcd, 0x16);
     this.tsmRelievoStyle.Text = GISCtrlGResourceEx.GIS_RELIEVO_EFFECT;
     this.tsmRelievoStyle.Visible = false;
     this.tsmRelievoStyle.CheckedChanged += new EventHandler(this.tsmRelievoStyle_CheckedChanged);
     this.tsmRelievoStyle.Click += new EventHandler(this.tsmRelievoStyle_Click);
     this.tsmDelete.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmDelete.Name = "tsmDelete";
     this.tsmDelete.Size = new Size(0xcd, 0x16);
     this.tsmDelete.Text = GeneralResource.BUTTON_DELETE;
     this.tsmDelete.Click += new EventHandler(this.tsmDelete_Click);
     this.tsmSaveAsTemp.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmSaveAsTemp.Name = "tsmSaveAsTemp";
     this.tsmSaveAsTemp.Size = new Size(0xcd, 0x16);
     this.tsmSaveAsTemp.Text = FrameworkResource.PROJECT_SAVE_AS;
     this.tsmSaveAsTemp.Click += new EventHandler(this.tsmSaveAsTemp_Click);
     this.tsmClutterStatistics.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tsmClutterStatistics.Name = "tsmClutterStatistics";
     this.tsmClutterStatistics.Size = new Size(0xcd, 0x16);
     this.tsmClutterStatistics.Text = GISCtrlGResourceEx.GIS_STATISTICS;
     this.tsmClutterStatistics.Click += new EventHandler(this.tsmClutterStatistics_Click);
     this.tsmDeleteAllLayers.Font = new Font("Arial", 9f);
     this.tsmDeleteAllLayers.Name = "tsmDeleteAllLayers";
     this.tsmDeleteAllLayers.Size = new Size(0xb1, 0x16);
     this.tsmDeleteAllLayers.Text = GeneralResource.BUTTON_DELETE;
     this.tsmDeleteAllLayers.Click += new EventHandler(this.tsmDeleteAllLayers_Click);
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     base.Name = "GeoTree";
     base.Size = new Size(0x9f, 0x158);
     this.cmsMapNode.ResumeLayout(false);
     this.cmsMapLevel2.ResumeLayout(false);
     this.cmsMapLevel3.ResumeLayout(false);
     this.cmsMapShapeLevel1.ResumeLayout(false);
     this.cmsMapShapeLevel2.ResumeLayout(false);
     this.cmsMapLevel1.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 17
0
 private void InitializeComponent()
 {
     this.components = new Container();
     this.cmsSimulations = new ContextMenuStrip(this.components);
     this.NewEvent = new ToolStripMenuItemBase();
     this.CaculateSimulationEvent = new ToolStripMenuItemBase();
     this.propertiesToolStripMenuItem = new ToolStripMenuItemBase();
     this.exportReslutToolStripMenuItem = new ToolStripMenuItemBase();
     this.CalculateGroupEvent = new ToolStripMenuItemBase();
     this.DeleteGroupEvent = new ToolStripMenuItemBase();
     this.RenameGroupEvent = new ToolStripMenuItemBase();
     this.ResultGroupEvent = new ToolStripMenuItemBase();
     this.exportCDFToolStripMenuItem = new ToolStripMenuItemBase();
     this.cmsSnapshot = new ContextMenuStrip(this.components);
     this.OpenTableSnapshotEvent = new ToolStripMenuItemBase();
     this.PropertiesSnapshotEvent = new ToolStripMenuItemBase();
     this.DeleteSnapshotEvent = new ToolStripMenuItemBase();
     this.CentreSnapshotEvent = new ToolStripMenuItemBase();
     this.CalculateGroupAfter = new ToolStripMenuItemBase();
     this.toolStripMenuItem_propertiesBeforCalc = new ToolStripMenuItemBase();
     this.toolStripMenuItem_propertiesOfStop = new ToolStripMenuItemBase();
     this.toolStripMenuItem_propertiesAfterCalc = new ToolStripMenuItemBase();
     this.toolStripMenuItem_delete = new ToolStripMenuItemBase();
     this.toolStripMenuItem_rename = new ToolStripMenuItemBase();
     this.toolStripMenuItem_stop = new ToolStripMenuItemBase();
     this.contextMenuStrip_beforCalc = new ContextMenuStrip(this.components);
     this.uToolStripMenuItem = new ToolStripMenuItemBase();
     this.exportResultToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.contextMenuStrip_afterCalc = new ContextMenuStrip(this.components);
     this.toolStripMenuItem_averageResult = new ToolStripMenuItemBase();
     this.toolStripMenuItem_graphicsResult = new ToolStripMenuItemBase();
     this.duplicateToolStripMenuItem = new ToolStripMenuItemBase();
     this.exportResultToolStripMenuItem = new ToolStripMenuItemBase();
     this.contextMenuStrip_Stop = new ContextMenuStrip(this.components);
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.cmsSimulations.SuspendLayout();
     this.cmsSnapshot.SuspendLayout();
     this.contextMenuStrip_beforCalc.SuspendLayout();
     this.contextMenuStrip_afterCalc.SuspendLayout();
     this.contextMenuStrip_Stop.SuspendLayout();
     base.SuspendLayout();
     this.cmsSimulations.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cmsSimulations.Items.AddRange(new ToolStripItem[] { this.NewEvent, this.toolStripSeparator2, this.CaculateSimulationEvent, this.propertiesToolStripMenuItem, this.toolStripSeparator1, this.exportReslutToolStripMenuItem });
     this.cmsSimulations.Name = "cmsSimulations";
     this.cmsSimulations.Size = new Size(0x99, 0x7e);
     this.NewEvent.Name = "NewEvent";
     this.NewEvent.Size = new Size(0x98, 0x16);
     this.NewEvent.Text = GeneralResource.MENU_ITEM_NEW;
     this.NewEvent.Click += new EventHandler(this.NewEvent_Click);
     this.CaculateSimulationEvent.Name = "CaculateSimulationEvent";
     this.CaculateSimulationEvent.Size = new Size(0x98, 0x16);
     this.CaculateSimulationEvent.Text = SimulationResource.SIMULATION_CALCULATE;
     this.CaculateSimulationEvent.Visible = false;
     this.CaculateSimulationEvent.Click += new EventHandler(this.CaculateSimulationEvent_Click);
     this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
     this.propertiesToolStripMenuItem.Size = new Size(0x98, 0x16);
     this.propertiesToolStripMenuItem.Text = SimulationResource.SIMULATION_PROPERTIES_2;
     this.propertiesToolStripMenuItem.Click += new EventHandler(this.propertiesToolStripMenuItem_Click);
     this.exportReslutToolStripMenuItem.Name = "exportReslutToolStripMenuItem";
     this.exportReslutToolStripMenuItem.Size = new Size(0x98, 0x16);
     this.exportReslutToolStripMenuItem.Text = SimulationResource.SIMULATION_EXPORT_RESULT;
     this.exportReslutToolStripMenuItem.Click += new EventHandler(this.exportReslutToolStripMenuItem_Click);
     this.CalculateGroupEvent.Name = "CalculateGroupEvent";
     this.CalculateGroupEvent.Size = new Size(0xa3, 0x16);
     this.CalculateGroupEvent.Text = SimulationResource.SIMULATION_CALCULATE;
     this.CalculateGroupEvent.Click += new EventHandler(this.CalculateGroupEvent_Click);
     this.DeleteGroupEvent.Name = "DeleteGroupEvent";
     this.DeleteGroupEvent.Size = new Size(0xa3, 0x16);
     this.DeleteGroupEvent.Text = GeneralResource.BUTTON_DELETE;
     this.DeleteGroupEvent.Click += new EventHandler(this.DeleteGroupEvent_Click);
     this.RenameGroupEvent.Name = "RenameGroupEvent";
     this.RenameGroupEvent.Size = new Size(0xa3, 0x16);
     this.RenameGroupEvent.Text = GeneralResource.MENU_ITEM_RENAME;
     this.RenameGroupEvent.Click += new EventHandler(this.RenameGroupEvent_Click);
     this.ResultGroupEvent.Enabled = false;
     this.ResultGroupEvent.Name = "ResultGroupEvent";
     this.ResultGroupEvent.Size = new Size(0xa3, 0x16);
     this.ResultGroupEvent.Text = SimulationResource.SIMULATION_AVG_RESULT;
     this.ResultGroupEvent.Click += new EventHandler(this.ResultGroupEvent_Click);
     this.exportCDFToolStripMenuItem.Enabled = false;
     this.exportCDFToolStripMenuItem.Name = "exportCDFToolStripMenuItem";
     this.exportCDFToolStripMenuItem.Size = new Size(0xa3, 0x16);
     this.exportCDFToolStripMenuItem.Text = SimulationResource.SIMULATION_GRAPHICS_RESULT;
     this.exportCDFToolStripMenuItem.Click += new EventHandler(this.GraphicsResultEvent_Click);
     this.cmsSnapshot.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cmsSnapshot.Items.AddRange(new ToolStripItem[] { this.OpenTableSnapshotEvent, this.PropertiesSnapshotEvent, this.DeleteSnapshotEvent, this.CentreSnapshotEvent });
     this.cmsSnapshot.Name = "cmsSnapshot";
     this.cmsSnapshot.Size = new Size(0xda, 0x5c);
     this.OpenTableSnapshotEvent.Name = "OpenTableSnapshotEvent";
     this.OpenTableSnapshotEvent.Size = new Size(0xd9, 0x16);
     this.OpenTableSnapshotEvent.Text = SimulationResource.SIMULATION_OPEN_TABLE;
     this.OpenTableSnapshotEvent.Click += new EventHandler(this.OpenTableSnapshotEvent_Click);
     this.PropertiesSnapshotEvent.Name = "PropertiesSnapshotEvent";
     this.PropertiesSnapshotEvent.Size = new Size(0xd9, 0x16);
     this.PropertiesSnapshotEvent.Text = SimulationResource.SIMULATION_PROPERTIES_2;
     this.PropertiesSnapshotEvent.Click += new EventHandler(this.PropertiesSnapshotEvent_Click);
     this.DeleteSnapshotEvent.Enabled = false;
     this.DeleteSnapshotEvent.Name = "DeleteSnapshotEvent";
     this.DeleteSnapshotEvent.Size = new Size(0xd9, 0x16);
     this.DeleteSnapshotEvent.Text = GeneralResource.BUTTON_DELETE;
     this.DeleteSnapshotEvent.Click += new EventHandler(this.DeleteSnapshotEvent_Click);
     this.CentreSnapshotEvent.Enabled = false;
     this.CentreSnapshotEvent.Name = "CentreSnapshotEvent";
     this.CentreSnapshotEvent.Size = new Size(0xd9, 0x16);
     this.CentreSnapshotEvent.Text = SimulationResource.SIMULATION_CENTRE_IN_MAP_WINDOW;
     this.CentreSnapshotEvent.Click += new EventHandler(this.CentreSnapshotEvent_Click);
     this.CalculateGroupAfter.Name = "CalculateGroupAfter";
     this.CalculateGroupAfter.Size = new Size(0xa3, 0x16);
     this.CalculateGroupAfter.Text = SimulationResource.SIMULATION_CALCULATE;
     this.CalculateGroupAfter.Click += new EventHandler(this.CalculateGroupAfter_Click);
     this.toolStripMenuItem_propertiesBeforCalc.Name = "toolStripMenuItem_propertiesBeforCalc";
     this.toolStripMenuItem_propertiesBeforCalc.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_propertiesBeforCalc.Text = SimulationResource.SIMULATION_PROPERTIES_2;
     this.toolStripMenuItem_propertiesBeforCalc.Click += new EventHandler(this.Property_Click);
     this.toolStripMenuItem_propertiesOfStop.Enabled = false;
     this.toolStripMenuItem_propertiesOfStop.Name = "toolStripMenuItem_propertiesOfStop";
     this.toolStripMenuItem_propertiesOfStop.Size = new Size(0x83, 0x16);
     this.toolStripMenuItem_propertiesOfStop.Text = SimulationResource.SIMULATION_PROPERTIES_2;
     this.toolStripMenuItem_propertiesOfStop.Click += new EventHandler(this.toolStripMenuItem6_Click);
     this.toolStripMenuItem_propertiesAfterCalc.Name = "toolStripMenuItem_propertiesAfterCalc";
     this.toolStripMenuItem_propertiesAfterCalc.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_propertiesAfterCalc.Text = SimulationResource.SIMULATION_PROPERTIES_2;
     this.toolStripMenuItem_propertiesAfterCalc.Click += new EventHandler(this.toolStripMenuItem6_Click);
     this.toolStripMenuItem_delete.Name = "toolStripMenuItem_delete";
     this.toolStripMenuItem_delete.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_delete.Text = GeneralResource.BUTTON_DELETE;
     this.toolStripMenuItem_delete.Click += new EventHandler(this.toolStripMenuItem2_Click);
     this.toolStripMenuItem_rename.Name = "toolStripMenuItem_rename";
     this.toolStripMenuItem_rename.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_rename.Text = GeneralResource.MENU_ITEM_RENAME;
     this.toolStripMenuItem_rename.Click += new EventHandler(this.toolStripMenuItem3_Click);
     this.toolStripMenuItem_stop.Name = "toolStripMenuItem_stop";
     this.toolStripMenuItem_stop.Size = new Size(0x83, 0x16);
     this.toolStripMenuItem_stop.Text = SimulationResource.SIMULATION_STOP;
     this.toolStripMenuItem_stop.Click += new EventHandler(this.StopCalculateGroupEvent_click);
     this.contextMenuStrip_beforCalc.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.contextMenuStrip_beforCalc.Items.AddRange(new ToolStripItem[] { this.CalculateGroupEvent, this.toolStripMenuItem_propertiesBeforCalc, this.DeleteGroupEvent, this.RenameGroupEvent, this.ResultGroupEvent, this.exportCDFToolStripMenuItem, this.uToolStripMenuItem, this.exportResultToolStripMenuItem1 });
     this.contextMenuStrip_beforCalc.Name = "cmsGroup";
     this.contextMenuStrip_beforCalc.Size = new Size(0xa4, 180);
     this.uToolStripMenuItem.Name = "uToolStripMenuItem";
     this.uToolStripMenuItem.Size = new Size(0xa3, 0x16);
     this.uToolStripMenuItem.Text = GeneralResource.GENERAL_DUPLICATE;
     this.uToolStripMenuItem.Click += new EventHandler(this.uToolStripMenuItem_Click);
     this.exportResultToolStripMenuItem1.Enabled = false;
     this.exportResultToolStripMenuItem1.Name = "exportResultToolStripMenuItem1";
     this.exportResultToolStripMenuItem1.Size = new Size(0xa3, 0x16);
     this.exportResultToolStripMenuItem1.Text = SimulationResource.SIMULATION_EXPORT_RESULT;
     this.contextMenuStrip_afterCalc.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.contextMenuStrip_afterCalc.Items.AddRange(new ToolStripItem[] { this.CalculateGroupAfter, this.toolStripMenuItem_propertiesAfterCalc, this.toolStripMenuItem_delete, this.toolStripMenuItem_rename, this.toolStripMenuItem_averageResult, this.toolStripMenuItem_graphicsResult, this.duplicateToolStripMenuItem, this.exportResultToolStripMenuItem });
     this.contextMenuStrip_afterCalc.Name = "cmsGroup";
     this.contextMenuStrip_afterCalc.Size = new Size(0xa4, 180);
     this.toolStripMenuItem_averageResult.Name = "toolStripMenuItem_averageResult";
     this.toolStripMenuItem_averageResult.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_averageResult.Text = SimulationResource.SIMULATION_AVG_RESULT;
     this.toolStripMenuItem_averageResult.Click += new EventHandler(this.toolStripMenuItem4_Click);
     this.toolStripMenuItem_graphicsResult.Name = "toolStripMenuItem_graphicsResult";
     this.toolStripMenuItem_graphicsResult.Size = new Size(0xa3, 0x16);
     this.toolStripMenuItem_graphicsResult.Text = SimulationResource.SIMULATION_GRAPHICS_RESULT;
     this.toolStripMenuItem_graphicsResult.Click += new EventHandler(this.GraphicsResultEvent_Click);
     this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem";
     this.duplicateToolStripMenuItem.Size = new Size(0xa3, 0x16);
     this.duplicateToolStripMenuItem.Text = GeneralResource.GENERAL_DUPLICATE;
     this.duplicateToolStripMenuItem.Click += new EventHandler(this.duplicateToolStripMenuItem_Click);
     this.exportResultToolStripMenuItem.Name = "exportResultToolStripMenuItem";
     this.exportResultToolStripMenuItem.Size = new Size(0xa3, 0x16);
     this.exportResultToolStripMenuItem.Text = SimulationResource.SIMULATION_EXPORT_RESULT;
     this.exportResultToolStripMenuItem.Click += new EventHandler(this.exportResultToolStripMenuItem_Click);
     this.contextMenuStrip_Stop.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.contextMenuStrip_Stop.Items.AddRange(new ToolStripItem[] { this.toolStripMenuItem_stop, this.toolStripMenuItem_propertiesOfStop });
     this.contextMenuStrip_Stop.Name = "cmsGroup";
     this.contextMenuStrip_Stop.Size = new Size(0x84, 0x30);
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(0x90, 6);
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(0x95, 6);
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Name = "SimulationContextMenuView";
     this.cmsSimulations.ResumeLayout(false);
     this.cmsSnapshot.ResumeLayout(false);
     this.contextMenuStrip_beforCalc.ResumeLayout(false);
     this.contextMenuStrip_afterCalc.ResumeLayout(false);
     this.contextMenuStrip_Stop.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 18
0
 private void InitializeComponent()
 {
     this.components = new Container();
     this.contextMenuStrip_Parent = new ContextMenuStrip(this.components);
     this.ToolStripMenuItem_CreateNew = new ToolStripMenuItemBase();
     this.ToolStripMenuItem_Separator = new ToolStripSeparator();
     this.ToolStripMenuItem_OpenTable = new ToolStripMenuItemBase();
     this.toolStripSeparator1 = new ToolStripSeparator();
     this.ToolStripMenuItem_ImportItem = new ToolStripMenuItemBase();
     this.toolStripMenuItemExport = new ToolStripMenuItemBase();
     this.ToolStripMenuItem_ParentExport = new ToolStripMenuItemBase();
     this.tXTToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.mSIToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.toolStripSeparator3 = new ToolStripSeparator();
     this.orderToolStripMenuItem = new ToolStripMenuItemBase();
     this.contextMenuStrip_Child = new ContextMenuStrip(this.components);
     this.ToolStripMenuItem_properties = new ToolStripMenuItemBase();
     this.ToolStripMenuItem_rename = new ToolStripMenuItemBase();
     this.toolStripSeparator_child = new ToolStripSeparator();
     this.ToolStripMenuItem_delete = new ToolStripMenuItemBase();
     this.ToolStripMenuItem_duplicate = new ToolStripMenuItemBase();
     this.toolStripSeparator2 = new ToolStripSeparator();
     this.ToolStripMenuItem_export = new ToolStripMenuItemBase();
     this.SaveDialogBox = new SaveFileDialog();
     this.contextMenuStrip_Parent.SuspendLayout();
     this.contextMenuStrip_Child.SuspendLayout();
     base.SuspendLayout();
     this.contextMenuStrip_Parent.Font = new Font("Arial", 9f);
     this.contextMenuStrip_Parent.Items.AddRange(new ToolStripItem[] { this.ToolStripMenuItem_CreateNew, this.ToolStripMenuItem_OpenTable, this.ToolStripMenuItem_Separator, this.orderToolStripMenuItem, this.toolStripSeparator1, this.ToolStripMenuItem_ImportItem, this.toolStripMenuItemExport });
     this.contextMenuStrip_Parent.Name = "contextMenuStrip_ParentNode";
     this.contextMenuStrip_Parent.Size = new Size(0x99, 0x9a);
     this.contextMenuStrip_Parent.ItemClicked += new ToolStripItemClickedEventHandler(this.contextMenuStrip_Parent_ItemClicked);
     this.ToolStripMenuItem_CreateNew.Name = "ToolStripMenuItem_CreateNew";
     this.ToolStripMenuItem_CreateNew.Size = new Size(0x98, 0x16);
     this.ToolStripMenuItem_CreateNew.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_NEW;
     this.ToolStripMenuItem_Separator.Name = "ToolStripMenuItem_Separator";
     this.ToolStripMenuItem_Separator.Size = new Size(0x95, 6);
     this.ToolStripMenuItem_OpenTable.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.ToolStripMenuItem_OpenTable.Name = "ToolStripMenuItem_OpenTable";
     this.ToolStripMenuItem_OpenTable.Size = new Size(0x98, 0x16);
     this.ToolStripMenuItem_OpenTable.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_OPEN_TABLE;
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new Size(0x95, 6);
     this.ToolStripMenuItem_ImportItem.Name = "ToolStripMenuItem_ImportItem";
     this.ToolStripMenuItem_ImportItem.Size = new Size(0x98, 0x16);
     this.ToolStripMenuItem_ImportItem.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_IMPORT;
     this.toolStripMenuItemExport.DropDownItems.AddRange(new ToolStripItem[] { this.ToolStripMenuItem_ParentExport, this.tXTToolStripMenuItem1, this.mSIToolStripMenuItem1 });
     this.toolStripMenuItemExport.Name = "toolStripMenuItemExport";
     this.toolStripMenuItemExport.Size = new Size(0x98, 0x16);
     this.toolStripMenuItemExport.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_EXPORT_AS;
     this.ToolStripMenuItem_ParentExport.Name = "ToolStripMenuItem_ParentExport";
     this.ToolStripMenuItem_ParentExport.Size = new Size(0x88, 0x16);
     this.ToolStripMenuItem_ParentExport.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_IANTES;
     this.ToolStripMenuItem_ParentExport.Click += new EventHandler(this.ToolStripMenuItem_ParentExport_Click);
     this.tXTToolStripMenuItem1.Name = "tXTToolStripMenuItem1";
     this.tXTToolStripMenuItem1.Size = new Size(0x88, 0x16);
     this.tXTToolStripMenuItem1.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_TXT;
     this.tXTToolStripMenuItem1.Click += new EventHandler(this.tXTToolStripMenuItem1_Click);
     this.mSIToolStripMenuItem1.Name = "mSIToolStripMenuItem1";
     this.mSIToolStripMenuItem1.Size = new Size(0x88, 0x16);
     this.mSIToolStripMenuItem1.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_MSI;
     this.mSIToolStripMenuItem1.Click += new EventHandler(this.mSIToolStripMenuItem1_Click);
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new Size(0x95, 6);
     this.orderToolStripMenuItem.Name = "orderToolStripMenuItem";
     this.orderToolStripMenuItem.Size = new Size(0x98, 0x16);
     this.orderToolStripMenuItem.Text = NEResource.NE_ORDER;
     this.orderToolStripMenuItem.Click += new EventHandler(this.orderToolStripMenuItem_Click);
     this.contextMenuStrip_Child.Font = new Font("Arial", 9f);
     this.contextMenuStrip_Child.Items.AddRange(new ToolStripItem[] { this.ToolStripMenuItem_properties, this.ToolStripMenuItem_rename, this.toolStripSeparator_child, this.ToolStripMenuItem_delete, this.ToolStripMenuItem_duplicate, this.toolStripSeparator2, this.ToolStripMenuItem_export });
     this.contextMenuStrip_Child.Name = "contextMenuStrip_Child";
     this.contextMenuStrip_Child.RenderMode = ToolStripRenderMode.Professional;
     this.contextMenuStrip_Child.Size = new Size(0x87, 0x7e);
     this.contextMenuStrip_Child.ItemClicked += new ToolStripItemClickedEventHandler(this.contextMenuStrip_Child_ItemClicked);
     this.ToolStripMenuItem_properties.Font = new Font("Arial", 9f, FontStyle.Bold);
     this.ToolStripMenuItem_properties.Name = "ToolStripMenuItem_properties";
     this.ToolStripMenuItem_properties.Size = new Size(0x86, 0x16);
     this.ToolStripMenuItem_properties.Text = GeneralResource.MENU_ITEM_PROPERTIES;
     this.ToolStripMenuItem_rename.Name = "ToolStripMenuItem_rename";
     this.ToolStripMenuItem_rename.Size = new Size(0x86, 0x16);
     this.ToolStripMenuItem_rename.Text = GeneralResource.MENU_ITEM_RENAME;
     this.toolStripSeparator_child.Name = "toolStripSeparator_child";
     this.toolStripSeparator_child.Size = new Size(0x83, 6);
     this.ToolStripMenuItem_delete.Name = "ToolStripMenuItem_delete";
     this.ToolStripMenuItem_delete.Size = new Size(0x86, 0x16);
     this.ToolStripMenuItem_delete.Text = GeneralResource.BUTTON_DELETE;
     this.ToolStripMenuItem_duplicate.Name = "ToolStripMenuItem_duplicate";
     this.ToolStripMenuItem_duplicate.Size = new Size(0x86, 0x16);
     this.ToolStripMenuItem_duplicate.Text = GeneralResource.GENERAL_DUPLICATE;
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new Size(0x83, 6);
     this.ToolStripMenuItem_export.Name = "ToolStripMenuItem_export";
     this.ToolStripMenuItem_export.Size = new Size(0x86, 0x16);
     this.ToolStripMenuItem_export.Text = Huawei.UNet.Common.GlobalResource.AntennaResource.ANTENNA_EXPORT;
     base.Name = "AntennaConextMenuManager";
     base.Size = new Size(0x75, 0x58);
     this.contextMenuStrip_Parent.ResumeLayout(false);
     this.contextMenuStrip_Child.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 19
0
 private void InitializeComponent()
 {
     this.components = new Container();
     this.contextMenuParent = new ContextMenuStrip(this.components);
     this.newMapToolStripMenuItem = new ToolStripMenuItemBase();
     this.propertyToolStripMenuItem = new ToolStripMenuItemBase();
     this.renameToolStripMenuItem = new ToolStripMenuItemBase();
     this.contextMenuChild = new ContextMenuStrip(this.components);
     this.propertyToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.renameToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.deleteToolStripMenuItem = new ToolStripMenuItemBase();
     this.configColorToolStripMenuItem = new ToolStripMenuItemBase();
     this.contextMenuStrip1 = new ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new ToolStripMenuItemBase();
     this.toolStripMenuItem2 = new ToolStripMenuItemBase();
     this.toolStripMenuItem3 = new ToolStripMenuItemBase();
     this.contextMenuParent.SuspendLayout();
     this.contextMenuChild.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     base.SuspendLayout();
     this.contextMenuParent.Items.AddRange(new ToolStripItem[] { this.newMapToolStripMenuItem, this.propertyToolStripMenuItem, this.renameToolStripMenuItem });
     this.contextMenuParent.Name = "contextMenuParent";
     this.contextMenuParent.Size = new Size(0x7c, 70);
     this.newMapToolStripMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.newMapToolStripMenuItem.Name = "newMapToolStripMenuItem";
     this.newMapToolStripMenuItem.Size = new Size(0x7b, 0x16);
     this.newMapToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_NEW_MAP;
     this.newMapToolStripMenuItem.Click += new EventHandler(this.newMapToolStripMenuItem_Click);
     this.propertyToolStripMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.propertyToolStripMenuItem.Name = "propertyToolStripMenuItem";
     this.propertyToolStripMenuItem.Size = new Size(0x7b, 0x16);
     this.propertyToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_PROPERTY;
     this.propertyToolStripMenuItem.Click += new EventHandler(this.propertyToolStripMenuItem_Click);
     this.renameToolStripMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
     this.renameToolStripMenuItem.Size = new Size(0x7b, 0x16);
     this.renameToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_RENAME;
     this.renameToolStripMenuItem.Visible = false;
     this.renameToolStripMenuItem.Click += new EventHandler(this.renameToolStripMenuItem_Click);
     this.contextMenuChild.Items.AddRange(new ToolStripItem[] { this.propertyToolStripMenuItem1, this.renameToolStripMenuItem1, this.deleteToolStripMenuItem, this.configColorToolStripMenuItem });
     this.contextMenuChild.Name = "contextMenuChild";
     this.contextMenuChild.Size = new Size(0x99, 0x72);
     this.propertyToolStripMenuItem1.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.propertyToolStripMenuItem1.Name = "propertyToolStripMenuItem1";
     this.propertyToolStripMenuItem1.Size = new Size(0x98, 0x16);
     this.propertyToolStripMenuItem1.Text = TrafficMapResource.TRAFFICMAP_PROPERTY;
     this.propertyToolStripMenuItem1.Click += new EventHandler(this.propertyToolStripMenuItem1_Click);
     this.renameToolStripMenuItem1.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.renameToolStripMenuItem1.Name = "renameToolStripMenuItem1";
     this.renameToolStripMenuItem1.Size = new Size(0x98, 0x16);
     this.renameToolStripMenuItem1.Text = TrafficMapResource.TRAFFICMAP_RENAME;
     this.renameToolStripMenuItem1.Click += new EventHandler(this.renameToolStripMenuItem1_Click);
     this.deleteToolStripMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new Size(0x98, 0x16);
     this.deleteToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_DELETE;
     this.deleteToolStripMenuItem.Click += new EventHandler(this.deleteToolStripMenuItem_Click);
     this.configColorToolStripMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.configColorToolStripMenuItem.Name = "configColorToolStripMenuItem";
     this.configColorToolStripMenuItem.Size = new Size(0x98, 0x16);
     this.configColorToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_CONFIG_COLOR;
     this.configColorToolStripMenuItem.Click += new EventHandler(this.configColorToolStripMenuItem_Click);
     this.contextMenuStrip1.Items.AddRange(new ToolStripItem[] { this.toolStripMenuItem1, this.toolStripMenuItem2, this.toolStripMenuItem3 });
     this.contextMenuStrip1.Name = "contextMenuChild";
     this.contextMenuStrip1.Size = new Size(130, 70);
     this.toolStripMenuItem1.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new Size(0x81, 0x16);
     this.toolStripMenuItem1.Text = TrafficMapResource.TRAFFICMAP_PROPERTIES;
     this.toolStripMenuItem1.Click += new EventHandler(this.toolStripMenuItem1_Click);
     this.toolStripMenuItem2.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new Size(0x81, 0x16);
     this.toolStripMenuItem2.Text = TrafficMapResource.TRAFFICMAP_RENAME;
     this.toolStripMenuItem2.Click += new EventHandler(this.toolStripMenuItem2_Click);
     this.toolStripMenuItem3.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new Size(0x81, 0x16);
     this.toolStripMenuItem3.Text = TrafficMapResource.TRAFFICMAP_DELETE;
     this.toolStripMenuItem3.Click += new EventHandler(this.toolStripMenuItem3_Click);
     base.AutoScaleDimensions = new SizeF(6f, 12f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Name = "TrafficMapView";
     this.contextMenuParent.ResumeLayout(false);
     this.contextMenuChild.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 20
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.contextMenuSite = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.lockPositionToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.activeCellsToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deactiveCellsToolStripMenuItem1 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.viewSiteToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.viewCellsToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.carrierPropertyToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.centerInTheMapToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.DeleteToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.contextMenuAnt = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.CellpropertiesToolStripMenuItem1 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.activeToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deactiveCellsToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deleteToolStripMenuItem1 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.contextMenuRepeater = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.propertiesToolStripMenuItem1 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deleteRepeaterToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.contextMenuRelayNode = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.propertiesRelayNodePropertiesToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deleteRelayNodeToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.contextMenuSite.SuspendLayout();
            this.contextMenuAnt.SuspendLayout();
            this.contextMenuRepeater.SuspendLayout();
            this.contextMenuRelayNode.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuSite
            // 
            this.contextMenuSite.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.contextMenuSite.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.lockPositionToolStripMenuItem,
            this.toolStripSeparator1,
            this.activeCellsToolStripMenuItem,
            this.deactiveCellsToolStripMenuItem1,
            this.toolStripSeparator2,
            this.viewSiteToolStripMenuItem,
            this.viewCellsToolStripMenuItem,
            this.carrierPropertyToolStripMenuItem,
            this.toolStripSeparator3,
            this.centerInTheMapToolStripMenuItem,
            this.DeleteToolStripMenuItem});
            this.contextMenuSite.Name = "GeoOperationContextMenuStrip";
            this.contextMenuSite.Size = new System.Drawing.Size(199, 198);
            // 
            // lockPositionToolStripMenuItem
            // 
            this.lockPositionToolStripMenuItem.Checked = true;
            this.lockPositionToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.lockPositionToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.lockPositionToolStripMenuItem.Name = "lockPositionToolStripMenuItem";
            this.lockPositionToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.lockPositionToolStripMenuItem.Text = "Lock Position";
            this.lockPositionToolStripMenuItem.Click += new System.EventHandler(this.lockPositionToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(195, 6);
            // 
            // activeCellsToolStripMenuItem
            // 
            this.activeCellsToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.activeCellsToolStripMenuItem.Name = "activeCellsToolStripMenuItem";
            this.activeCellsToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.activeCellsToolStripMenuItem.Text = "Active Transceivers";
            this.activeCellsToolStripMenuItem.Click += new System.EventHandler(this.activeCellsToolStripMenuItem_Click);
            // 
            // deactiveCellsToolStripMenuItem1
            // 
            this.deactiveCellsToolStripMenuItem1.Font = new System.Drawing.Font("Arial", 9F);
            this.deactiveCellsToolStripMenuItem1.Name = "deactiveCellsToolStripMenuItem1";
            this.deactiveCellsToolStripMenuItem1.Size = new System.Drawing.Size(198, 22);
            this.deactiveCellsToolStripMenuItem1.Text = "Deactive Transceivers";
            this.deactiveCellsToolStripMenuItem1.Click += new System.EventHandler(this.deactiveCellsToolStripMenuItem1_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(195, 6);
            // 
            // viewSiteToolStripMenuItem
            // 
            this.viewSiteToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.viewSiteToolStripMenuItem.Name = "viewSiteToolStripMenuItem";
            this.viewSiteToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.viewSiteToolStripMenuItem.Text = "Site Properties";
            this.viewSiteToolStripMenuItem.Click += new System.EventHandler(this.viewSiteToolStripMenuItem_Click);
            // 
            // viewCellsToolStripMenuItem
            // 
            this.viewCellsToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.viewCellsToolStripMenuItem.Name = "viewCellsToolStripMenuItem";
            this.viewCellsToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.viewCellsToolStripMenuItem.Text = "Transceiver Properties";
            this.viewCellsToolStripMenuItem.Click += new System.EventHandler(this.viewCellsToolStripMenuItem_Click);
            // 
            // carrierPropertyToolStripMenuItem
            // 
            this.carrierPropertyToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.carrierPropertyToolStripMenuItem.Name = "carrierPropertyToolStripMenuItem";
            this.carrierPropertyToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.carrierPropertyToolStripMenuItem.Text = "Cell Properties";
            this.carrierPropertyToolStripMenuItem.Click += new System.EventHandler(this.carrierPropertyToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(195, 6);
            // 
            // centerInTheMapToolStripMenuItem
            // 
            this.centerInTheMapToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.centerInTheMapToolStripMenuItem.Name = "centerInTheMapToolStripMenuItem";
            this.centerInTheMapToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.centerInTheMapToolStripMenuItem.Text = "Center in The Map";
            this.centerInTheMapToolStripMenuItem.Click += new System.EventHandler(this.centerInTheMapToolStripMenuItem_Click);
            // 
            // DeleteToolStripMenuItem
            // 
            this.DeleteToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.DeleteToolStripMenuItem.Name = "DeleteToolStripMenuItem";
            this.DeleteToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
            this.DeleteToolStripMenuItem.Text = "Delete";
            this.DeleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteToolStripMenuItem_Click);
            // 
            // contextMenuAnt
            // 
            this.contextMenuAnt.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.contextMenuAnt.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.CellpropertiesToolStripMenuItem1,
            this.activeToolStripMenuItem,
            this.deactiveCellsToolStripMenuItem,
            this.deleteToolStripMenuItem1});
            this.contextMenuAnt.Name = "contextMenuAnt";
            this.contextMenuAnt.Size = new System.Drawing.Size(196, 92);
            // 
            // CellpropertiesToolStripMenuItem1
            // 
            this.CellpropertiesToolStripMenuItem1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.CellpropertiesToolStripMenuItem1.Name = "CellpropertiesToolStripMenuItem1";
            this.CellpropertiesToolStripMenuItem1.Size = new System.Drawing.Size(195, 22);
            this.CellpropertiesToolStripMenuItem1.Text = "&Properties";
            this.CellpropertiesToolStripMenuItem1.Click += new System.EventHandler(this.CellpropertiesToolStripMenuItem1_Click);
            // 
            // activeToolStripMenuItem
            // 
            this.activeToolStripMenuItem.Name = "activeToolStripMenuItem";
            this.activeToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
            this.activeToolStripMenuItem.Text = "Active Transceivers";
            this.activeToolStripMenuItem.Click += new System.EventHandler(this.activeToolStripMenuItem_Click);
            // 
            // deactiveCellsToolStripMenuItem
            // 
            this.deactiveCellsToolStripMenuItem.Name = "deactiveCellsToolStripMenuItem";
            this.deactiveCellsToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
            this.deactiveCellsToolStripMenuItem.Text = "Deactive Transceivers";
            this.deactiveCellsToolStripMenuItem.Click += new System.EventHandler(this.deactiveCellsToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem1
            // 
            this.deleteToolStripMenuItem1.Name = "deleteToolStripMenuItem1";
            this.deleteToolStripMenuItem1.Size = new System.Drawing.Size(195, 22);
            this.deleteToolStripMenuItem1.Text = "Delete";
            this.deleteToolStripMenuItem1.Click += new System.EventHandler(this.deleteToolStripMenuItem1_Click);
            // 
            // contextMenuRepeater
            // 
            this.contextMenuRepeater.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.contextMenuRepeater.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.propertiesToolStripMenuItem1,
            this.deleteRepeaterToolStripMenuItem});
            this.contextMenuRepeater.Name = "contextMenuRepeater";
            this.contextMenuRepeater.Size = new System.Drawing.Size(165, 48);
            // 
            // propertiesToolStripMenuItem1
            // 
            this.propertiesToolStripMenuItem1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.propertiesToolStripMenuItem1.Name = "propertiesToolStripMenuItem1";
            this.propertiesToolStripMenuItem1.Size = new System.Drawing.Size(164, 22);
            this.propertiesToolStripMenuItem1.Text = "&Properties";
            this.propertiesToolStripMenuItem1.Click += new System.EventHandler(this.propertiesToolStripMenuItem1_Click);
            // 
            // deleteRepeaterToolStripMenuItem
            // 
            this.deleteRepeaterToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F);
            this.deleteRepeaterToolStripMenuItem.Name = "deleteRepeaterToolStripMenuItem";
            this.deleteRepeaterToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.deleteRepeaterToolStripMenuItem.Text = "Delete Repeater";
            this.deleteRepeaterToolStripMenuItem.Click += new System.EventHandler(this.deleteRepeaterToolStripMenuItem_Click);
            // 
            // contextMenuRelayNode
            // 
            this.contextMenuRelayNode.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.contextMenuRelayNode.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.propertiesRelayNodePropertiesToolStripMenuItem,
            this.deleteRelayNodeToolStripMenuItem});
            this.contextMenuRelayNode.Name = "contextMenuAnt";
            this.contextMenuRelayNode.Size = new System.Drawing.Size(153, 70);
            // 
            // propertiesRelayNodePropertiesToolStripMenuItem
            // 
            this.propertiesRelayNodePropertiesToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
            this.propertiesRelayNodePropertiesToolStripMenuItem.Name = "propertiesRelayNodePropertiesToolStripMenuItem";
            this.propertiesRelayNodePropertiesToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.propertiesRelayNodePropertiesToolStripMenuItem.Text = "&Properties";
            this.propertiesRelayNodePropertiesToolStripMenuItem.Click += new System.EventHandler(this.relayNodePropertiesToolStripMenuItem_Click);
            // 
            // deleteRelayNodeToolStripMenuItem
            // 
            this.deleteRelayNodeToolStripMenuItem.Name = "deleteRelayNodeToolStripMenuItem";
            this.deleteRelayNodeToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.deleteRelayNodeToolStripMenuItem.Text = "Delete";
            this.deleteRelayNodeToolStripMenuItem.Click += new System.EventHandler(this.deleteRelayNodeToolStripMenuItem_Click);
            // 
            // NetEntityMenuStrips
            // 
            this.AllowDrop = true;
            this.Name = "NetEntityMenuStrips";
            this.Size = new System.Drawing.Size(225, 177);
            this.contextMenuSite.ResumeLayout(false);
            this.contextMenuAnt.ResumeLayout(false);
            this.contextMenuRepeater.ResumeLayout(false);
            this.contextMenuRelayNode.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 21
0
        private void InitializeComponent()
        {
            this.m_GeoToolBar = new FloatingToolStrip();
            this.GisTs = new FloatingToolStrip();
            this.NetWorkToolBarTs = new FloatingToolStrip();
            this.EditToolBarBarTs = new FloatingToolStrip();
            this.m_UndoBtn = new ToolStripButton();
            this.m_RedoBtn = new ToolStripButton();
            this.m_SelectAreaBtn = new ToolStripButton();
            this.m_CenterMap = new ToolStripButton();
            this.m_RefreshBtn = new ToolStripButton();
            this.m_SelectionBtn = new ToolStripButton();
            this.m_MoveBtn = new ToolStripButton();
            this.m_ScaleComboBox = new ToolStripComboBox();
            this.toolStripSeparator2 = new ToolStripSeparator();
            this.m_ZoomBtn = new ToolStripButton();
            this.m_DefineBtn = new ToolStripButton();
            this.toolStripSeparator3 = new ToolStripSeparator();
            this.m_DistanceBtn = new ToolStripButton();
            this.m_AddSiteBtn = new ToolStripButton();
            this.m_AddRepeaterBtn = new ToolStripButton();
            //Added by wj 20110223
            this.m_AddRelayBtn = new ToolStripButton();

            this.m_AutoDistributeSite = new ToolStripButton();
            this.toolStripSeparator1 = new ToolStripSeparator();
            this.m_NewPolygonBtn = new ToolStripButton();
            this.m_NewLineBtn = new ToolStripButton();
            this.m_NewPointBtn = new ToolStripButton();
            this.toolStripButton8 = new ToolStripSeparator();
            this.m_UnionBtn = new ToolStripButton();
            this.m_ViewGE = new ToolStripButton();
            this.menuStrip1 = new MenuStrip();
            this.toolsToolStripMenuItem = new ToolStripMenuItemBase();
            this.m_SelectAreaMenuItem = new ToolStripMenuItemBase();
            this.m_SelectMenuItem = new ToolStripMenuItemBase();
            this.m_MoveMapMenuItem = new ToolStripMenuItemBase();
            this.m_ZoomMenuItem = new ToolStripMenuItemBase();
            this.m_DistanceMenuItem = new ToolStripMenuItemBase();
            this.m_ShowGridLineMenuItem = new ToolStripMenuItemBase();
            this.m_SetAdjustDistanceMenuItem = new ToolStripMenuItemBase();
            this.m_GeoToolBar.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            base.SuspendLayout();
            this.GisTs.Tag = "MapToolBar";
            this.GisTs.Items.AddRange(new ToolStripItem[] { 
                this.m_SelectAreaBtn, this.m_CenterMap, this.m_RefreshBtn, this.m_SelectionBtn, this.m_MoveBtn, this.m_ScaleComboBox, this.toolStripSeparator2, this.m_ZoomBtn, this.m_DefineBtn, this.toolStripSeparator3, this.m_DistanceBtn, this.toolStripSeparator1, this.m_NewPolygonBtn, this.m_NewLineBtn, this.m_NewPointBtn, this.toolStripButton8, 
                this.m_UnionBtn, this.m_ViewGE
             });
            this.NetWorkToolBarTs.Tag = "NetWorkToolBar";
            this.NetWorkToolBarTs.Items.AddRange(new ToolStripItem[] { this.m_AutoDistributeSite, this.m_AddSiteBtn, this.m_AddRepeaterBtn ,this.m_AddRelayBtn});
            this.EditToolBarBarTs.Tag = "EditToolBar";
            this.m_UndoBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_UndoBtn.Enabled = false;
            this.m_UndoBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._46;
            this.m_UndoBtn.ImageScaling = ToolStripItemImageScaling.None;
            this.m_UndoBtn.ImageTransparentColor = Color.Magenta;
            this.m_UndoBtn.Name = "m_UndoBtn";
            this.m_UndoBtn.Size = new Size(0x17, 0x16);
            this.m_UndoBtn.Text = GISCtrlGResourceEx.GIS_UNDO;
            this.m_UndoBtn.Click += new EventHandler(this.UndoBtn_Click);
            this.m_RedoBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_RedoBtn.Enabled = false;
            this.m_RedoBtn.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_RedoBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._47;
            this.m_RedoBtn.ImageScaling = ToolStripItemImageScaling.None;
            this.m_RedoBtn.ImageTransparentColor = Color.Magenta;
            this.m_RedoBtn.Name = "m_RedoBtn";
            this.m_RedoBtn.Size = new Size(0x17, 0x16);
            this.m_RedoBtn.Text = GISCtrlGResourceEx.GIS_REDO;
            this.m_RedoBtn.Click += new EventHandler(this.RedoBtn_Click);
            this.m_SelectAreaBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_SelectAreaBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._7;
            this.m_SelectAreaBtn.ImageTransparentColor = Color.Magenta;
            this.m_SelectAreaBtn.Name = "m_SelectAreaBtn";
            this.m_SelectAreaBtn.Size = new Size(0x17, 0x16);
            this.m_SelectAreaBtn.Tag = "CaptureImage";
            this.m_SelectAreaBtn.Text = GISCtrlGResourceEx.GIS_SELECT_AN_AREA;
            this.m_SelectAreaBtn.CheckedChanged += new EventHandler(this.SelectAreaBtn_CheckedChanged);
            this.m_SelectAreaBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_SelectAreaBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_SelectAreaBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_CenterMap.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_CenterMap.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._48;
            this.m_CenterMap.ImageTransparentColor = Color.Magenta;
            this.m_CenterMap.Name = "m_CenterMap";
            this.m_CenterMap.Size = new Size(0x17, 0x16);
            this.m_CenterMap.Text = GISCtrlGResourceEx.GIS_CENTRE_IN_THE_MAP_WINDOW;
            this.m_CenterMap.Click += new EventHandler(this.CenterMap_Click);
            this.m_RefreshBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_RefreshBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._8;
            this.m_RefreshBtn.ImageTransparentColor = Color.Magenta;
            this.m_RefreshBtn.Name = "m_RefreshBtn";
            this.m_RefreshBtn.Size = new Size(0x17, 0x16);
            this.m_RefreshBtn.Text = GISCtrlGResourceEx.GIS_REFRESH;
            this.m_RefreshBtn.Click += new EventHandler(this.RefreshBtn_Click);
            this.m_SelectionBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_SelectionBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._9;
            this.m_SelectionBtn.ImageTransparentColor = Color.Magenta;
            this.m_SelectionBtn.Name = "m_SelectionBtn";
            this.m_SelectionBtn.Size = new Size(0x17, 0x16);
            this.m_SelectionBtn.Tag = "RectangleSelection";
            this.m_SelectionBtn.Text = GISCtrlGResourceEx.GIS_SELECTION;
            this.m_SelectionBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_SelectionBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_SelectionBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_MoveBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_MoveBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._10;
            this.m_MoveBtn.ImageTransparentColor = Color.Magenta;
            this.m_MoveBtn.Name = "m_MoveBtn";
            this.m_MoveBtn.Size = new Size(0x17, 0x16);
            this.m_MoveBtn.Tag = "MoveMap";
            this.m_MoveBtn.Text = GISCtrlGResourceEx.GIS_MOVE_MAP;
            this.m_MoveBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_MoveBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_MoveBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_ScaleComboBox.AutoSize = false;
            this.m_ScaleComboBox.Name = "m_ScaleComboBox";
            this.m_ScaleComboBox.Size = new Size(0x79, 0x15);
            this.m_ScaleComboBox.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_ScaleComboBox.KeyDown += new KeyEventHandler(this.ScaleComboBox_KeyDown);
            this.m_ScaleComboBox.SelectedIndexChanged += new EventHandler(this.ScaleComboBox_SelectedIndexChanged);
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new Size(6, 0x19);
            this.m_ZoomBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_ZoomBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._12;
            this.m_ZoomBtn.ImageTransparentColor = Color.Magenta;
            this.m_ZoomBtn.Name = "m_ZoomBtn";
            this.m_ZoomBtn.Size = new Size(0x17, 0x16);
            this.m_ZoomBtn.Tag = "Zoom";
            this.m_ZoomBtn.Text = GISCtrlGResourceEx.GIS_ZOOM_IN_OR_ZOOM_OUT_WITH_CENTERING_CTRL_Q;
            this.m_ZoomBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_ZoomBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_ZoomBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_DefineBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_DefineBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._13;
            this.m_DefineBtn.ImageTransparentColor = Color.Magenta;
            this.m_DefineBtn.Name = "m_DefineBtn";
            this.m_DefineBtn.Size = new Size(0x17, 0x16);
            this.m_DefineBtn.Tag = "ZoomInRegion";
            this.m_DefineBtn.Text = GISCtrlGResourceEx.GIS_DEFINE_A_ZOOM_AREA_CTRL_W;
            this.m_DefineBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_DefineBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_DefineBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new Size(6, 0x19);
            this.m_DistanceBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_DistanceBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._15;
            this.m_DistanceBtn.ImageTransparentColor = Color.Magenta;
            this.m_DistanceBtn.Name = "m_DistanceBtn";
            this.m_DistanceBtn.Size = new Size(0x17, 0x16);
            this.m_DistanceBtn.Tag = "MeasureDistance";
            this.m_DistanceBtn.Text = GISCtrlGResourceEx.GIS_DISTANCE_MEASUREMENT;
            this.m_DistanceBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_DistanceBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_DistanceBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_AddSiteBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_AddSiteBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._18;
            this.m_AddSiteBtn.ImageTransparentColor = Color.Magenta;
            this.m_AddSiteBtn.Name = "m_AddSiteBtn";
            this.m_AddSiteBtn.Size = new Size(0x17, 0x16);
            this.m_AddSiteBtn.Tag = "AddSite";
            this.m_AddSiteBtn.Text = GISCtrlGResourceEx.GIS_NEW_TRANSMITTER_OR_STATION;
            this.m_AddSiteBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_AddSiteBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_AddSiteBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_AddRepeaterBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_AddRepeaterBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._20;
            this.m_AddRepeaterBtn.ImageTransparentColor = Color.Magenta;
            this.m_AddRepeaterBtn.Name = "m_AddRepeaterBtn";
            this.m_AddRepeaterBtn.Size = new Size(0x17, 0x16);
            this.m_AddRepeaterBtn.Tag = "AddRepeater";
            this.m_AddRepeaterBtn.Text = GISCtrlGResourceEx.GIS_ADD_REPEATER;
            this.m_AddRepeaterBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_AddRepeaterBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_AddRepeaterBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);

            //Added by wj 20110223
            this.m_AddRelayBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_AddRelayBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._25;
            this.m_AddRelayBtn.ImageTransparentColor = Color.Magenta;
            this.m_AddRelayBtn.Name = "m_AddRelayBtn";
            this.m_AddRelayBtn.Size = new Size(0x17, 0x16);
            this.m_AddRelayBtn.Tag = "AddRelay";
            this.m_AddRelayBtn.Text = GISCtrlGResourceEx.GIS_ADD_RELAY;
            this.m_AddRelayBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_AddRelayBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_AddRelayBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);

            this.m_AutoDistributeSite.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_AutoDistributeSite.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._19;
            this.m_AutoDistributeSite.ImageTransparentColor = Color.Magenta;
            this.m_AutoDistributeSite.Name = "m_AutoDistributeSite";
            this.m_AutoDistributeSite.Size = new Size(0x17, 0x16);
            this.m_AutoDistributeSite.Tag = "AutoSite";
            this.m_AutoDistributeSite.Text = GISCtrlGResourceEx.GIS_AUTO_DISTRIBUTE_SITE;
            this.m_AutoDistributeSite.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_AutoDistributeSite.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_AutoDistributeSite.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new Size(6, 0x19);
            this.m_NewPolygonBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_NewPolygonBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._35;
            this.m_NewPolygonBtn.ImageTransparentColor = Color.Magenta;
            this.m_NewPolygonBtn.Name = "m_NewPolygonBtn";
            this.m_NewPolygonBtn.Size = new Size(0x17, 0x16);
            this.m_NewPolygonBtn.Tag = "AddGeoPolygon";
            this.m_NewPolygonBtn.Text = GISCtrlGResourceEx.GIS_NEW_POLYGON;
            this.m_NewPolygonBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_NewPolygonBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_NewPolygonBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_NewLineBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_NewLineBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._36;
            this.m_NewLineBtn.ImageTransparentColor = Color.Magenta;
            this.m_NewLineBtn.Name = "m_NewLineBtn";
            this.m_NewLineBtn.Size = new Size(0x17, 0x16);
            this.m_NewLineBtn.Tag = "AddGeoLine";
            this.m_NewLineBtn.Text = GISCtrlGResourceEx.GIS_NEW_LINE;
            this.m_NewLineBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_NewLineBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_NewLineBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.m_NewPointBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_NewPointBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._37;
            this.m_NewPointBtn.ImageTransparentColor = Color.Magenta;
            this.m_NewPointBtn.Name = "m_NewPointBtn";
            this.m_NewPointBtn.Size = new Size(0x17, 0x16);
            this.m_NewPointBtn.Tag = "AddGeoPoint";
            this.m_NewPointBtn.Text = GISCtrlGResourceEx.GIS_NEW_POINT;
            this.m_NewPointBtn.MouseHover += new EventHandler(this.ShowToolBarTipText);
            this.m_NewPointBtn.Click += new EventHandler(this.OperatorBtn_Click);
            this.m_NewPointBtn.CheckedChanged += new EventHandler(this.OperatorBtn_CheckedChanged);
            this.toolStripButton8.Name = "toolStripButton8";
            this.toolStripButton8.Size = new Size(6, 0x19);
            this.m_UnionBtn.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_UnionBtn.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._38;
            this.m_UnionBtn.ImageTransparentColor = Color.Magenta;
            this.m_UnionBtn.Name = "m_UnionBtn";
            this.m_UnionBtn.Size = new Size(0x17, 0x16);
            this.m_UnionBtn.ToolTipText = GISCtrlGResourceEx.GIS_OPERATOR;
            this.m_UnionBtn.Click += new EventHandler(this.UnionBtn_Click);
            this.m_ViewGE.DisplayStyle = ToolStripItemDisplayStyle.Image;
            this.m_ViewGE.Image = Huawei.UNet.Common.GlobalResource.GlobalResource.earth;
            this.m_ViewGE.ImageTransparentColor = Color.White;
            this.m_ViewGE.Name = "m_ViewGE";
            this.m_ViewGE.Size = new Size(0x17, 0x16);
            this.m_ViewGE.Text = GISCtrlGResourceEx.GIS_SWITCH_TO_EARTH_VIEW;
            this.m_ViewGE.Click += new EventHandler(this.ViewGE_Click);
            this.menuStrip1.Items.AddRange(new ToolStripItem[] { this.toolsToolStripMenuItem });
            this.menuStrip1.Location = new System.Drawing.Point(0, 0x19);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new Size(0x27c, 0x18);
            this.menuStrip1.TabIndex = 2;
            this.menuStrip1.Text = "";
            this.toolsToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { this.m_SelectAreaMenuItem, this.m_SelectMenuItem, this.m_MoveMapMenuItem, this.m_ZoomMenuItem, this.m_DistanceMenuItem, this.m_ShowGridLineMenuItem, this.m_SetAdjustDistanceMenuItem });
            this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
            this.toolsToolStripMenuItem.Size = new Size(0x2c, 20);
            this.toolsToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_TOOLS;
            this.m_SelectAreaMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_SelectAreaMenuItem.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._7;
            this.m_SelectAreaMenuItem.Name = "m_SelectAreaMenuItem";
            this.m_SelectAreaMenuItem.Size = new Size(0xaf, 0x16);
            this.m_SelectAreaMenuItem.Tag = "GrabPicture";
            this.m_SelectAreaMenuItem.Text = GISCtrlGResourceEx.GIS_SELECT_AN_AREA;
            this.m_SelectAreaMenuItem.Click += new EventHandler(this.Operate_Selected);
            this.m_SelectMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_SelectMenuItem.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._9;
            this.m_SelectMenuItem.Name = "m_SelectMenuItem";
            this.m_SelectMenuItem.Size = new Size(0xaf, 0x16);
            this.m_SelectMenuItem.Tag = "Selection";
            this.m_SelectMenuItem.Text = GISCtrlGResourceEx.GIS_SELECTION;
            this.m_SelectMenuItem.Click += new EventHandler(this.SelectionBtn_Click);
            this.m_MoveMapMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_MoveMapMenuItem.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._10;
            this.m_MoveMapMenuItem.Name = "m_MoveMapMenuItem";
            this.m_MoveMapMenuItem.Size = new Size(0xaf, 0x16);
            this.m_MoveMapMenuItem.Tag = "Move";
            this.m_MoveMapMenuItem.Text = GISCtrlGResourceEx.GIS_MOVE_MAP;
            this.m_MoveMapMenuItem.Click += new EventHandler(this.MoveBtn_Click);
            this.m_ZoomMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_ZoomMenuItem.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._12;
            this.m_ZoomMenuItem.Name = "m_ZoomMenuItem";
            this.m_ZoomMenuItem.Size = new Size(0xaf, 0x16);
            this.m_ZoomMenuItem.Tag = "Zoom";
            this.m_ZoomMenuItem.Text = GISCtrlGResourceEx.GIS_ZOOM;
            this.m_ZoomMenuItem.Click += new EventHandler(this.ZoomBtn_Click);
            this.m_DistanceMenuItem.Font = new Font("Arial", 9f);
            this.m_DistanceMenuItem.Image = Huawei.UNet.Common.GlobalResource.GlobalResource._15;
            this.m_DistanceMenuItem.Name = "m_DistanceMenuItem";
            this.m_DistanceMenuItem.Size = new Size(0xaf, 0x16);
            this.m_DistanceMenuItem.Tag = "DistanceOfTwoPoints";
            this.m_DistanceMenuItem.Text = GISCtrlGResourceEx.GIS_DISTANCE_MEASURE;
            this.m_DistanceMenuItem.Click += new EventHandler(this.DistanceBtn_Click);
            this.m_SetAdjustDistanceMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_SetAdjustDistanceMenuItem.Name = "m_SetAdjustDistanceMenuItem";
            this.m_SetAdjustDistanceMenuItem.Size = new Size(0xaf, 0x16);
            this.m_SetAdjustDistanceMenuItem.Text = GISCtrlGResourceEx.GIS_SET_ADJUST_STEP;
            this.m_SetAdjustDistanceMenuItem.Click += new EventHandler(this.AdjustDistance_Click);
            this.m_ShowGridLineMenuItem.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.m_ShowGridLineMenuItem.Name = "m_ShowGridLineMenuItem";
            this.m_ShowGridLineMenuItem.Size = new Size(0xaf, 0x16);
            this.m_ShowGridLineMenuItem.Text = GISCtrlGResourceEx.GIS_SHOW_GRID_LINE;
            this.m_ShowGridLineMenuItem.Checked = true;
            this.m_ShowGridLineMenuItem.Click += new EventHandler(this.ShowGridLine_Click);
            base.AutoScaleDimensions = new SizeF(6f, 12f);
            base.AutoScaleMode = AutoScaleMode.Font;
            base.Controls.Add(this.menuStrip1);
            base.Controls.Add(this.m_GeoToolBar);
            base.Name = "GeoToolBarUC";
            base.Size = new Size(0x27c, 0x2d);
            this.m_GeoToolBar.ResumeLayout(false);
            this.m_GeoToolBar.PerformLayout();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            base.ResumeLayout(false);
            base.PerformLayout();
        }
Exemplo n.º 22
0
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.childcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.propertyToolStripMenuItem1 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.renameToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.deleteToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.lteParentcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.openTableToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.propertyToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.mCSToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.pUSCHMCSToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.mIMOToolStripMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.g3ParentcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newG3ToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.openTableG3ToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.propertyG3ToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.hSDPABearerToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.hSUPABearerToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.R99BearerToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.gsmParentcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newGsmToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.openTableGsmToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.propertyGsmToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.unionParentcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newUnionToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.propertyUnionToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.TDParentcontextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newTDToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.openTableTDToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripMenuItemBase3 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.TDhSDPABearerToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.TDHSUPABearerToolMenuItem = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.toolStripMenuItemBase6 = new Huawei.UNet.Controls.UIBase.ToolStripMenuItemBase(this.components);
            this.childcontextMenu.SuspendLayout();
            this.lteParentcontextMenu.SuspendLayout();
            this.g3ParentcontextMenu.SuspendLayout();
            this.gsmParentcontextMenu.SuspendLayout();
            this.unionParentcontextMenu.SuspendLayout();
            this.TDParentcontextMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // childcontextMenu
            // 
            this.childcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.propertyToolStripMenuItem1,
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem});
            this.childcontextMenu.Name = "childcontextMenu";
            this.childcontextMenu.Size = new System.Drawing.Size(136, 70);
            // 
            // propertyToolStripMenuItem1
            // 
            this.propertyToolStripMenuItem1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.propertyToolStripMenuItem1.Name = "propertyToolStripMenuItem1";
            this.propertyToolStripMenuItem1.Size = new System.Drawing.Size(135, 22);
            this.propertyToolStripMenuItem1.Text = "&Properties";
            this.propertyToolStripMenuItem1.Click += new System.EventHandler(this.PropertyChildEvent);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
            this.renameToolStripMenuItem.Text = "&Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.RenameChildEvent);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
            this.deleteToolStripMenuItem.Text = "Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteChildEvent);
            // 
            // lteParentcontextMenu
            // 
            this.lteParentcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openTableToolStripMenuItem,
            this.propertyToolStripMenuItem,
            this.mCSToolStripMenuItem,
            this.pUSCHMCSToolStripMenuItem,
            this.mIMOToolStripMenuItem});
            this.lteParentcontextMenu.Name = "parentcontextMenu";
            this.lteParentcontextMenu.Size = new System.Drawing.Size(148, 136);
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.newToolStripMenuItem.Text = "New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.NewParentEvent);
            // 
            // openTableToolStripMenuItem
            // 
            this.openTableToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.openTableToolStripMenuItem.Name = "openTableToolStripMenuItem";
            this.openTableToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.openTableToolStripMenuItem.Text = "Open Table";
            this.openTableToolStripMenuItem.Click += new System.EventHandler(this.OpenTableParentEvent);
            // 
            // propertyToolStripMenuItem
            // 
            this.propertyToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.propertyToolStripMenuItem.Name = "propertyToolStripMenuItem";
            this.propertyToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.propertyToolStripMenuItem.Text = "&Properties";
            this.propertyToolStripMenuItem.Visible = false;
            // 
            // mCSToolStripMenuItem
            // 
            this.mCSToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mCSToolStripMenuItem.Name = "mCSToolStripMenuItem";
            this.mCSToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.mCSToolStripMenuItem.Text = "PUSCH MCS";
            this.mCSToolStripMenuItem.Click += new System.EventHandler(this.MCSParentEvent);
            // 
            // pUSCHMCSToolStripMenuItem
            // 
            this.pUSCHMCSToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.pUSCHMCSToolStripMenuItem.Name = "pUSCHMCSToolStripMenuItem";
            this.pUSCHMCSToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.pUSCHMCSToolStripMenuItem.Text = "PDSCH MCS";
            this.pUSCHMCSToolStripMenuItem.Click += new System.EventHandler(this.pDSCHMCSToolStripMenuItem_Click);
            // 
            // mIMOToolStripMenuItem
            // 
            this.mIMOToolStripMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mIMOToolStripMenuItem.Name = "mIMOToolStripMenuItem";
            this.mIMOToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
            this.mIMOToolStripMenuItem.Text = "MIMO";
            this.mIMOToolStripMenuItem.Click += new System.EventHandler(this.mIMOToolStripMenuItem_Click);
            // 
            // g3ParentcontextMenu
            // 
            this.g3ParentcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newG3ToolMenuItem,
            this.openTableG3ToolMenuItem,
            this.propertyG3ToolMenuItem,
            this.hSDPABearerToolMenuItem,
            this.hSUPABearerToolMenuItem,
            this.R99BearerToolMenuItem});
            this.g3ParentcontextMenu.Name = "parentcontextMenu";
            this.g3ParentcontextMenu.Size = new System.Drawing.Size(157, 136);
            // 
            // newG3ToolMenuItem
            // 
            this.newG3ToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newG3ToolMenuItem.Name = "newG3ToolMenuItem";
            this.newG3ToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.newG3ToolMenuItem.Text = "New";
            this.newG3ToolMenuItem.Click += new System.EventHandler(this.newG3ToolMenuItem_Click);
            // 
            // openTableG3ToolMenuItem
            // 
            this.openTableG3ToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.openTableG3ToolMenuItem.Name = "openTableG3ToolMenuItem";
            this.openTableG3ToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.openTableG3ToolMenuItem.Text = "Open Table";
            this.openTableG3ToolMenuItem.Click += new System.EventHandler(this.openTableG3ToolMenuItem_Click);
            // 
            // propertyG3ToolMenuItem
            // 
            this.propertyG3ToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.propertyG3ToolMenuItem.Name = "propertyG3ToolMenuItem";
            this.propertyG3ToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.propertyG3ToolMenuItem.Text = "&Properties";
            this.propertyG3ToolMenuItem.Visible = false;
            // 
            // hSDPABearerToolMenuItem
            // 
            this.hSDPABearerToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.hSDPABearerToolMenuItem.Name = "hSDPABearerToolMenuItem";
            this.hSDPABearerToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.hSDPABearerToolMenuItem.Text = "HSDPA Bearer";
            this.hSDPABearerToolMenuItem.Click += new System.EventHandler(this.hSDPABearerToolMenuItem_Click);
            // 
            // hSUPABearerToolMenuItem
            // 
            this.hSUPABearerToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.hSUPABearerToolMenuItem.Name = "hSUPABearerToolMenuItem";
            this.hSUPABearerToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.hSUPABearerToolMenuItem.Text = "HSUPA Bearer";
            this.hSUPABearerToolMenuItem.Click += new System.EventHandler(this.hSUPABearerToolMenuItem_Click);
            // 
            // R99BearerToolMenuItem
            // 
            this.R99BearerToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.R99BearerToolMenuItem.Name = "R99BearerToolMenuItem";
            this.R99BearerToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.R99BearerToolMenuItem.Text = "R99 Bearer";
            this.R99BearerToolMenuItem.Click += new System.EventHandler(this.R99BearerToolMenuItem_Click);
            // 
            // gsmParentcontextMenu
            // 
            this.gsmParentcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newGsmToolMenuItem,
            this.openTableGsmToolMenuItem,
            this.propertyGsmToolMenuItem});
            this.gsmParentcontextMenu.Name = "parentcontextMenu";
            this.gsmParentcontextMenu.Size = new System.Drawing.Size(140, 70);
            // 
            // newGsmToolMenuItem
            // 
            this.newGsmToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newGsmToolMenuItem.Name = "newGsmToolMenuItem";
            this.newGsmToolMenuItem.Size = new System.Drawing.Size(139, 22);
            this.newGsmToolMenuItem.Text = "New";
            this.newGsmToolMenuItem.Click += new System.EventHandler(this.newGsmToolMenuItem_Click);
            // 
            // openTableGsmToolMenuItem
            // 
            this.openTableGsmToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.openTableGsmToolMenuItem.Name = "openTableGsmToolMenuItem";
            this.openTableGsmToolMenuItem.Size = new System.Drawing.Size(139, 22);
            this.openTableGsmToolMenuItem.Text = "Open Table";
            this.openTableGsmToolMenuItem.Click += new System.EventHandler(this.openTableGsmToolMenuItem_Click);
            // 
            // propertyGsmToolMenuItem
            // 
            this.propertyGsmToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.propertyGsmToolMenuItem.Name = "propertyGsmToolMenuItem";
            this.propertyGsmToolMenuItem.Size = new System.Drawing.Size(139, 22);
            this.propertyGsmToolMenuItem.Text = "&Properties";
            this.propertyGsmToolMenuItem.Visible = false;
            // 
            // unionParentcontextMenu
            // 
            this.unionParentcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newUnionToolMenuItem,
            this.propertyUnionToolMenuItem});
            this.unionParentcontextMenu.Name = "parentcontextMenu";
            this.unionParentcontextMenu.Size = new System.Drawing.Size(133, 48);
            // 
            // newUnionToolMenuItem
            // 
            this.newUnionToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newUnionToolMenuItem.Name = "newUnionToolMenuItem";
            this.newUnionToolMenuItem.Size = new System.Drawing.Size(132, 22);
            this.newUnionToolMenuItem.Text = "New";
            this.newUnionToolMenuItem.Click += new System.EventHandler(this.newUnionToolMenuItem_Click);
            // 
            // propertyUnionToolMenuItem
            // 
            this.propertyUnionToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.propertyUnionToolMenuItem.Name = "propertyUnionToolMenuItem";
            this.propertyUnionToolMenuItem.Size = new System.Drawing.Size(132, 22);
            this.propertyUnionToolMenuItem.Text = "&Properties";
            this.propertyUnionToolMenuItem.Visible = false;
            // 
            // TDParentcontextMenu
            // 
            this.TDParentcontextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newTDToolMenuItem,
            this.openTableTDToolMenuItem,
            this.toolStripMenuItemBase3,
            this.TDhSDPABearerToolMenuItem,
            this.TDHSUPABearerToolMenuItem,
            this.toolStripMenuItemBase6});
            this.TDParentcontextMenu.Name = "parentcontextMenu";
            this.TDParentcontextMenu.Size = new System.Drawing.Size(157, 158);
            // 
            // newTDToolMenuItem
            // 
            this.newTDToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.newTDToolMenuItem.Name = "newTDToolMenuItem";
            this.newTDToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.newTDToolMenuItem.Text = "New";
            this.newTDToolMenuItem.Click += new System.EventHandler(this.newTDToolMenuItem_Click);
            // 
            // openTableTDToolMenuItem
            // 
            this.openTableTDToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.openTableTDToolMenuItem.Name = "openTableTDToolMenuItem";
            this.openTableTDToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.openTableTDToolMenuItem.Text = "Open Table";
            this.openTableTDToolMenuItem.Click += new System.EventHandler(this.openTableTDToolMenuItem_Click);
            // 
            // toolStripMenuItemBase3
            // 
            this.toolStripMenuItemBase3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripMenuItemBase3.Name = "toolStripMenuItemBase3";
            this.toolStripMenuItemBase3.Size = new System.Drawing.Size(156, 22);
            this.toolStripMenuItemBase3.Text = "&Properties";
            this.toolStripMenuItemBase3.Visible = false;
            // 
            // TDhSDPABearerToolMenuItem
            // 
            this.TDhSDPABearerToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TDhSDPABearerToolMenuItem.Name = "TDhSDPABearerToolMenuItem";
            this.TDhSDPABearerToolMenuItem.Size = new System.Drawing.Size(156, 22);
            this.TDhSDPABearerToolMenuItem.Text = "HSDPA Bearer";
            this.TDhSDPABearerToolMenuItem.Click += new System.EventHandler(this.TDhSDPABearerToolMenuItem_Click);
            // 
            // TDHSUPABearerToolMenuItem
            // 
            //this.toolStripMenuItemBase5.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            //this.toolStripMenuItemBase5.Name = "toolStripMenuItemBase5";
            //this.toolStripMenuItemBase5.Size = new System.Drawing.Size(156, 22);
            //this.toolStripMenuItemBase5.Text = "HSUPA Bearer";
            this.TDHSUPABearerToolMenuItem.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.TDHSUPABearerToolMenuItem.Name = "TDHSUPABearerToolMenuItem";
            this.TDHSUPABearerToolMenuItem.Size = new System.Drawing.Size(153, 22);
            this.TDHSUPABearerToolMenuItem.Text = "HSUPA Bearer";
            this.TDHSUPABearerToolMenuItem.Click += new System.EventHandler(this.TDHSUPABearerToolMenuItem_Click);
            // 
            // toolStripMenuItemBase6
            // 
            this.toolStripMenuItemBase6.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.toolStripMenuItemBase6.Name = "toolStripMenuItemBase6";
            this.toolStripMenuItemBase6.Size = new System.Drawing.Size(156, 22);
            this.toolStripMenuItemBase6.Text = "R4 Bearer";
            // 
            // ServiceView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Name = "ServiceView";
            this.childcontextMenu.ResumeLayout(false);
            this.lteParentcontextMenu.ResumeLayout(false);
            this.g3ParentcontextMenu.ResumeLayout(false);
            this.gsmParentcontextMenu.ResumeLayout(false);
            this.unionParentcontextMenu.ResumeLayout(false);
            this.TDParentcontextMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 23
0
 private void InitializeComponent()
 {
     this.components = new Container();
     DataGridViewCellStyle style = new DataGridViewCellStyle();
     this.tcGroupProperties = new TabControl();
     this.tPageGeneral = new TabPage();
     this.lblHandoverAreaGate = new Label();
     this.txtName = new TextBox();
     this.lblName = new Label();
     this.tPageCondition = new TabPage();
     this.label1 = new Label();
     this.ntxtStMaxSensitivity = new NumericTextBox();
     this.ntxtStRxSensitivity = new NumericTextBox();
     this.lblSmallorEqual = new Label();
     this.textBox1 = new TextBox();
     this.tPageDisplay = new TabPage();
     this.panelDgvLegend = new Panel();
     this.CheckAll = new CheckBox();
     this.panel1 = new Panel();
     this.groupBox1 = new GroupBox();
     this.chbLegend = new CheckBox();
     this.chbInformation = new CheckBox();
     this.label_actions = new Label();
     this.tPerMark = new Label();
     this.tbarTransparence = new TrackBar();
     this.lbTransparence = new Label();
     this.lbTransparenceName = new Label();
     this.button_actions = new Button();
     this.dgvLegend = new CommonDataGridView();
     this.ColorType = new DataGridViewButtonColumn();
     this.Value = new DataGridViewTextBoxColumn();
     this.MinValue = new DataGridViewTextBoxColumn();
     this.MaxValue = new DataGridViewTextBoxColumn();
     this.Legend = new DataGridViewTextBoxColumn();
     this.CheckLegend = new DataGridViewCheckBoxColumn();
     this.contextMenuStrip1 = new ContextMenuStrip(this.components);
     this.insertBeforeToolStripMenuItem = new ToolStripMenuItemBase();
     this.insertAfterToolStripMenuItem = new ToolStripMenuItemBase();
     this.deleteToolStripMenuItem = new ToolStripMenuItemBase();
     this.exportLegendToolStripMenuItem = new ToolStripMenuItemBase();
     this.importLegendToolStripMenuItem = new ToolStripMenuItemBase();
     this.shadingToolStripMenuItem1 = new ToolStripMenuItemBase();
     this.btnApply = new Button();
     this.btnCancel = new Button();
     this.btnConfirm = new Button();
     this.shadingToolStripMenuItem = new ToolStripMenuItemBase();
     this.contextMenuStrip2 = new ContextMenuStrip(this.components);
     this.toolStripMenuItem4 = new ToolStripMenuItemBase();
     this.toolStripMenuItem5 = new ToolStripMenuItemBase();
     this.tcGroupProperties.SuspendLayout();
     this.tPageGeneral.SuspendLayout();
     this.tPageCondition.SuspendLayout();
     this.tPageDisplay.SuspendLayout();
     this.panelDgvLegend.SuspendLayout();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tbarTransparence.BeginInit();
     ((ISupportInitialize) this.dgvLegend).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     base.SuspendLayout();
     this.tcGroupProperties.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.tcGroupProperties.Controls.Add(this.tPageGeneral);
     this.tcGroupProperties.Controls.Add(this.tPageCondition);
     this.tcGroupProperties.Controls.Add(this.tPageDisplay);
     this.tcGroupProperties.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.tcGroupProperties.Location = new System.Drawing.Point(12, 13);
     this.tcGroupProperties.Margin = new Padding(3, 4, 3, 4);
     this.tcGroupProperties.Name = "tcGroupProperties";
     this.tcGroupProperties.SelectedIndex = 0;
     this.tcGroupProperties.Size = new Size(0x224, 0x158);
     this.tcGroupProperties.TabIndex = 1;
     this.tPageGeneral.Controls.Add(this.lblHandoverAreaGate);
     this.tPageGeneral.Controls.Add(this.txtName);
     this.tPageGeneral.Controls.Add(this.lblName);
     this.tPageGeneral.Location = new System.Drawing.Point(4, 0x18);
     this.tPageGeneral.Margin = new Padding(3, 4, 3, 4);
     this.tPageGeneral.Name = "tPageGeneral";
     this.tPageGeneral.Padding = new Padding(3, 4, 3, 4);
     this.tPageGeneral.Size = new Size(540, 0x13c);
     this.tPageGeneral.TabIndex = 0;
     this.tPageGeneral.Text = GeneralResource.GENERAL_GENERAL;
     this.tPageGeneral.UseVisualStyleBackColor = true;
     this.lblHandoverAreaGate.Location = new System.Drawing.Point(0, 0);
     this.lblHandoverAreaGate.Name = "lblHandoverAreaGate";
     this.lblHandoverAreaGate.Size = new Size(100, 0x17);
     this.lblHandoverAreaGate.TabIndex = 5;
     this.txtName.Location = new System.Drawing.Point(0x95, 0x11);
     this.txtName.Margin = new Padding(3, 4, 3, 4);
     this.txtName.Name = "txtName";
     this.txtName.Size = new Size(0xa8, 0x15);
     this.txtName.TabIndex = 1;
     this.txtName.TextAlign = HorizontalAlignment.Right;
     this.lblName.AutoSize = true;
     this.lblName.Location = new System.Drawing.Point(6, 0x17);
     this.lblName.Name = "lblName";
     this.lblName.Size = new Size(0x2c, 15);
     this.lblName.TabIndex = 0;
     this.lblName.Text = NEResource.NE_NAMED;
     this.tPageCondition.Controls.Add(this.label1);
     this.tPageCondition.Controls.Add(this.ntxtStMaxSensitivity);
     this.tPageCondition.Controls.Add(this.ntxtStRxSensitivity);
     this.tPageCondition.Controls.Add(this.lblSmallorEqual);
     this.tPageCondition.Controls.Add(this.textBox1);
     this.tPageCondition.Location = new System.Drawing.Point(4, 0x18);
     this.tPageCondition.Margin = new Padding(3, 4, 3, 4);
     this.tPageCondition.Name = "tPageCondition";
     this.tPageCondition.Padding = new Padding(3, 4, 3, 4);
     this.tPageCondition.Size = new Size(540, 0x13c);
     this.tPageCondition.TabIndex = 1;
     this.tPageCondition.Text = PredictionResource.PREDICTION__CONDITION;
     this.tPageCondition.UseVisualStyleBackColor = true;
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(0x105, 0x16);
     this.label1.Name = "label1";
     this.label1.Size = new Size(0x15, 15);
     this.label1.TabIndex = 8;
     this.label1.Text = "<=";
     this.ntxtStMaxSensitivity.AutoSize = true;
     this.ntxtStMaxSensitivity.BackColor = SystemColors.ButtonHighlight;
     this.ntxtStMaxSensitivity.BorderStyle = BorderStyle.Fixed3D;
     this.ntxtStMaxSensitivity.CharExtensition = "";
     this.ntxtStMaxSensitivity.Enabled = false;
     this.ntxtStMaxSensitivity.FloatPlaces = 2;
     this.ntxtStMaxSensitivity.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     int[] bits = new int[4];
     bits[0] = 1;
     this.ntxtStMaxSensitivity.Increment = new decimal(bits);
     this.ntxtStMaxSensitivity.Location = new System.Drawing.Point(0x11d, 0x13);
     this.ntxtStMaxSensitivity.Margin = new Padding(3, 4, 3, 0);
     bits = new int[4];
     bits[0] = 0x8000;
     this.ntxtStMaxSensitivity.Maximum = new decimal(bits);
     bits = new int[4];
     bits[0] = 0x8000;
     bits[3] = -2147483648;
     this.ntxtStMaxSensitivity.Minimum = new decimal(bits);
     this.ntxtStMaxSensitivity.Name = "ntxtStMaxSensitivity";
     this.ntxtStMaxSensitivity.ReadOnly = false;
     this.ntxtStMaxSensitivity.Size = new Size(0x60, 0x17);
     this.ntxtStMaxSensitivity.TabIndex = 7;
     bits = new int[4];
     this.ntxtStMaxSensitivity.Value = new decimal(bits);
     this.ntxtStRxSensitivity.AutoSize = true;
     this.ntxtStRxSensitivity.BackColor = SystemColors.ButtonHighlight;
     this.ntxtStRxSensitivity.BorderStyle = BorderStyle.Fixed3D;
     this.ntxtStRxSensitivity.CharExtensition = "";
     this.ntxtStRxSensitivity.Enabled = false;
     this.ntxtStRxSensitivity.FloatPlaces = 2;
     this.ntxtStRxSensitivity.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     bits = new int[4];
     bits[0] = 1;
     this.ntxtStRxSensitivity.Increment = new decimal(bits);
     this.ntxtStRxSensitivity.Location = new System.Drawing.Point(13, 0x13);
     this.ntxtStRxSensitivity.Margin = new Padding(3, 4, 3, 0);
     bits = new int[4];
     bits[0] = 0x8000;
     this.ntxtStRxSensitivity.Maximum = new decimal(bits);
     bits = new int[4];
     bits[0] = 0x8000;
     bits[3] = -2147483648;
     this.ntxtStRxSensitivity.Minimum = new decimal(bits);
     this.ntxtStRxSensitivity.Name = "ntxtStRxSensitivity";
     this.ntxtStRxSensitivity.ReadOnly = false;
     this.ntxtStRxSensitivity.Size = new Size(0x65, 0x17);
     this.ntxtStRxSensitivity.TabIndex = 6;
     bits = new int[4];
     this.ntxtStRxSensitivity.Value = new decimal(bits);
     this.lblSmallorEqual.AutoSize = true;
     this.lblSmallorEqual.Location = new System.Drawing.Point(0x70, 0x16);
     this.lblSmallorEqual.Name = "lblSmallorEqual";
     this.lblSmallorEqual.Size = new Size(0x15, 15);
     this.lblSmallorEqual.TabIndex = 3;
     this.lblSmallorEqual.Text = "<=";
     this.textBox1.Enabled = false;
     this.textBox1.Location = new System.Drawing.Point(0x88, 0x13);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new Size(0x7d, 0x15);
     this.textBox1.TabIndex = 1;
     this.textBox1.Text = PredictionResource.PREDICTION___SIGNAL_LEVELDBM;
     this.tPageDisplay.Controls.Add(this.panelDgvLegend);
     this.tPageDisplay.Location = new System.Drawing.Point(4, 0x18);
     this.tPageDisplay.Margin = new Padding(3, 4, 3, 4);
     this.tPageDisplay.Name = "tPageDisplay";
     this.tPageDisplay.Padding = new Padding(3, 4, 3, 4);
     this.tPageDisplay.Size = new Size(540, 0x13c);
     this.tPageDisplay.TabIndex = 2;
     this.tPageDisplay.Text = NEResource.NE_DISPLAY;
     this.tPageDisplay.UseVisualStyleBackColor = true;
     this.panelDgvLegend.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.panelDgvLegend.BackColor = Color.Transparent;
     this.panelDgvLegend.BorderStyle = BorderStyle.Fixed3D;
     this.panelDgvLegend.Controls.Add(this.CheckAll);
     this.panelDgvLegend.Controls.Add(this.panel1);
     this.panelDgvLegend.Controls.Add(this.dgvLegend);
     this.panelDgvLegend.Location = new System.Drawing.Point(6, 7);
     this.panelDgvLegend.MinimumSize = new Size(0x18b, 0x101);
     this.panelDgvLegend.Name = "panelDgvLegend";
     this.panelDgvLegend.Size = new Size(0x213, 0x12e);
     this.panelDgvLegend.TabIndex = 7;
     this.CheckAll.AutoSize = true;
     this.CheckAll.Location = new System.Drawing.Point(9, 3);
     this.CheckAll.Name = "CheckAll";
     this.CheckAll.Size = new Size(15, 14);
     this.CheckAll.TabIndex = 11;
     this.CheckAll.UseVisualStyleBackColor = true;
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.label_actions);
     this.panel1.Controls.Add(this.tPerMark);
     this.panel1.Controls.Add(this.tbarTransparence);
     this.panel1.Controls.Add(this.lbTransparence);
     this.panel1.Controls.Add(this.lbTransparenceName);
     this.panel1.Controls.Add(this.button_actions);
     this.panel1.Location = new System.Drawing.Point(9, 0xc3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new Size(0x201, 100);
     this.panel1.TabIndex = 11;
     this.groupBox1.Controls.Add(this.chbLegend);
     this.groupBox1.Controls.Add(this.chbInformation);
     this.groupBox1.Location = new System.Drawing.Point(0x123, 5);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new Size(0x7f, 0x51);
     this.groupBox1.TabIndex = 13;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = GISCtrlGResourceEx.GIS_LEGEND;
     this.chbLegend.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.chbLegend.AutoSize = true;
     this.chbLegend.Checked = true;
     this.chbLegend.CheckState = CheckState.Checked;
     this.chbLegend.Location = new System.Drawing.Point(0x10, 0x1a);
     this.chbLegend.MinimumSize = new Size(0x65, 0x13);
     this.chbLegend.Name = "chbLegend";
     this.chbLegend.Size = new Size(0x65, 0x13);
     this.chbLegend.TabIndex = 1;
     this.chbLegend.Text = PredictionResource.PREDICTION__ADD_TO_LEGEND;
     this.chbLegend.UseVisualStyleBackColor = true;
     this.chbInformation.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.chbInformation.AutoSize = true;
     this.chbInformation.Location = new System.Drawing.Point(0x10, 0x30);
     this.chbInformation.Name = "chbInformation";
     this.chbInformation.Size = new Size(0x67, 0x13);
     this.chbInformation.TabIndex = 11;
     this.chbInformation.Text = PredictionResource.PREDICTION_SHOW_STATISTIC;
     this.chbInformation.UseVisualStyleBackColor = true;
     this.label_actions.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.label_actions.AutoSize = true;
     this.label_actions.BackColor = Color.Transparent;
     this.label_actions.Font = new Font("Arial", 9f);
     this.label_actions.Location = new System.Drawing.Point(14, 11);
     this.label_actions.MinimumSize = new Size(0x2f, 15);
     this.label_actions.Name = "label_actions";
     this.label_actions.Size = new Size(0x2f, 15);
     this.label_actions.TabIndex = 9;
     this.label_actions.Text = GISCtrlGResourceEx.GIS_ACTIONS;
     this.label_actions.MouseUp += new MouseEventHandler(this.ButtonActionsMouseUp);
     this.tPerMark.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.tPerMark.AutoSize = true;
     this.tPerMark.Location = new System.Drawing.Point(0x92, 0x39);
     this.tPerMark.MinimumSize = new Size(0x12, 15);
     this.tPerMark.Name = "tPerMark";
     this.tPerMark.Size = new Size(0x12, 15);
     this.tPerMark.TabIndex = 10;
     this.tPerMark.Text = "%";
     this.tbarTransparence.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.tbarTransparence.BackColor = SystemColors.ControlLight;
     this.tbarTransparence.Location = new System.Drawing.Point(2, 0x36);
     this.tbarTransparence.Maximum = 100;
     this.tbarTransparence.MinimumSize = new Size(0x68, 0x2d);
     this.tbarTransparence.Name = "tbarTransparence";
     this.tbarTransparence.Size = new Size(0x68, 0x2a);
     this.tbarTransparence.TabIndex = 2;
     this.tbarTransparence.TickFrequency = 20;
     this.tbarTransparence.Scroll += new EventHandler(this.TbarTransparenceScroll);
     this.lbTransparence.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.lbTransparence.BorderStyle = BorderStyle.Fixed3D;
     this.lbTransparence.Location = new System.Drawing.Point(0x70, 0x36);
     this.lbTransparence.MinimumSize = new Size(0x1f, 0x11);
     this.lbTransparence.Name = "lbTransparence";
     this.lbTransparence.Size = new Size(0x1f, 0x16);
     this.lbTransparence.TabIndex = 4;
     this.lbTransparenceName.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.lbTransparenceName.AutoSize = true;
     this.lbTransparenceName.Location = new System.Drawing.Point(9, 0x24);
     this.lbTransparenceName.MinimumSize = new Size(0x54, 15);
     this.lbTransparenceName.Name = "lbTransparenceName";
     this.lbTransparenceName.Size = new Size(0x54, 15);
     this.lbTransparenceName.TabIndex = 3;
     this.lbTransparenceName.Text = GISCtrlGResourceEx.GIS_TRANSPARENT;
     this.button_actions.AllowDrop = true;
     this.button_actions.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.button_actions.BackColor = Color.Transparent;
     this.button_actions.BackgroundImageLayout = ImageLayout.None;
     this.button_actions.FlatStyle = FlatStyle.System;
     this.button_actions.Font = new Font("Marlett", 16f);
     this.button_actions.Location = new System.Drawing.Point(9, 6);
     this.button_actions.MinimumSize = new Size(0x4d, 0x18);
     this.button_actions.Name = "button_actions";
     this.button_actions.Size = new Size(0x4d, 0x1d);
     this.button_actions.TabIndex = 8;
     this.button_actions.Text = "u";
     this.button_actions.TextAlign = ContentAlignment.MiddleRight;
     this.button_actions.UseVisualStyleBackColor = false;
     this.button_actions.MouseUp += new MouseEventHandler(this.ButtonActionsMouseUp);
     this.dgvLegend.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.dgvLegend.BackgroundColor = SystemColors.ButtonFace;
     this.dgvLegend.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvLegend.Columns.AddRange(new DataGridViewColumn[] { this.ColorType, this.Value, this.MinValue, this.MaxValue, this.Legend, this.CheckLegend });
     this.dgvLegend.Location = new System.Drawing.Point(0, -1);
     this.dgvLegend.Name = "dgvLegend";
     this.dgvLegend.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
     style.BackColor = Color.White;
     this.dgvLegend.RowsDefaultCellStyle = style;
     this.dgvLegend.RowTemplate.Height = 0x17;
     this.dgvLegend.Size = new Size(0x20c, 190);
     this.dgvLegend.TabIndex = 0;
     this.dgvLegend.CellMouseClick += new DataGridViewCellMouseEventHandler(this.dgvLegend_CellMouseClick);
     this.dgvLegend.CellValidated += new DataGridViewCellEventHandler(this.dgvLegend_CellValidated);
     this.dgvLegend.RowValidated += new DataGridViewCellEventHandler(this.dgvLegend_RowValidated);
     this.dgvLegend.CellPainting += new DataGridViewCellPaintingEventHandler(this.DgvLegendCellPainting);
     this.dgvLegend.CellClick += new DataGridViewCellEventHandler(this.dgvLegend_CellClick);
     this.ColorType.HeaderText = "";
     this.ColorType.Name = "ColorType";
     this.ColorType.Width = 70;
     this.Value.HeaderText = PredictionResource.PREDICTION_VALUE;
     this.Value.Name = "Value";
     this.Value.ReadOnly = true;
     this.Value.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.MinValue.HeaderText = PredictionResource.PREDICTION__MINVALUE;
     this.MinValue.Name = "MinValue";
     this.MinValue.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.MinValue.Width = 70;
     this.MaxValue.HeaderText = PredictionResource.PREDICTION__MAXVALUE;
     this.MaxValue.Name = "MaxValue";
     this.MaxValue.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.MaxValue.Width = 70;
     this.Legend.HeaderText = GISCtrlGResourceEx.GIS_LEGEND;
     this.Legend.Name = "Legend";
     this.Legend.ReadOnly = true;
     this.Legend.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.Legend.Width = 0x7d;
     this.CheckLegend.HeaderText = "";
     this.CheckLegend.Name = "CheckLegend";
     this.CheckLegend.Width = 50;
     this.contextMenuStrip1.AllowMerge = false;
     this.contextMenuStrip1.Font = new Font("Arial", 9f);
     this.contextMenuStrip1.Items.AddRange(new ToolStripItem[] { this.insertBeforeToolStripMenuItem, this.insertAfterToolStripMenuItem, this.deleteToolStripMenuItem, this.exportLegendToolStripMenuItem, this.importLegendToolStripMenuItem, this.shadingToolStripMenuItem1 });
     this.contextMenuStrip1.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.ShowImageMargin = false;
     this.contextMenuStrip1.ShowItemToolTips = false;
     this.contextMenuStrip1.Size = new Size(130, 0x88);
     this.contextMenuStrip1.Opened += new EventHandler(this.contextMenuStrip1_Opened);
     this.insertBeforeToolStripMenuItem.Name = "insertBeforeToolStripMenuItem";
     this.insertBeforeToolStripMenuItem.Size = new Size(0x81, 0x16);
     this.insertBeforeToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_COLORBASE_INSERT_BEFORE;
     this.insertBeforeToolStripMenuItem.Click += new EventHandler(this.insertBeforeToolStripMenuItem_Click);
     this.insertAfterToolStripMenuItem.Name = "insertAfterToolStripMenuItem";
     this.insertAfterToolStripMenuItem.Size = new Size(0x81, 0x16);
     this.insertAfterToolStripMenuItem.Text = GISCtrlGResourceEx.GIS_COLORBASE_INSERT_AFTER;
     this.insertAfterToolStripMenuItem.Click += new EventHandler(this.insertAfterToolStripMenuItem_Click);
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new Size(0x81, 0x16);
     this.deleteToolStripMenuItem.Text = GeneralResource.MENU_ITEM_DELETE;
     this.deleteToolStripMenuItem.Click += new EventHandler(this.deleteToolStripMenuItem_Click);
     this.exportLegendToolStripMenuItem.Name = "exportLegendToolStripMenuItem";
     this.exportLegendToolStripMenuItem.Size = new Size(0x81, 0x16);
     this.exportLegendToolStripMenuItem.Text = PredictionResource.PREDICTION__EXPORT___LEGEND;
     this.exportLegendToolStripMenuItem.Click += new EventHandler(this.ExportLegendAsXML);
     this.importLegendToolStripMenuItem.Name = "importLegendToolStripMenuItem";
     this.importLegendToolStripMenuItem.Size = new Size(0x81, 0x16);
     this.importLegendToolStripMenuItem.Text = PredictionResource.PREDICTION__IMPORT___LEGEND;
     this.importLegendToolStripMenuItem.Click += new EventHandler(this.ImportLegend);
     this.shadingToolStripMenuItem1.Name = "shadingToolStripMenuItem1";
     this.shadingToolStripMenuItem1.Size = new Size(0x81, 0x16);
     this.shadingToolStripMenuItem1.Text = GISCtrlGResourceEx.GIS_SHADING;
     this.shadingToolStripMenuItem1.Click += new EventHandler(this.shadingToolStripMenuItem1_Click);
     this.btnApply.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnApply.Location = new System.Drawing.Point(0x1e5, 0x16d);
     this.btnApply.Margin = new Padding(3, 4, 3, 4);
     this.btnApply.Name = "btnApply";
     this.btnApply.Size = new Size(0x4b, 0x17);
     this.btnApply.TabIndex = 6;
     this.btnApply.Text = GeneralResource.BUTTON_APPLY;
     this.btnApply.UseVisualStyleBackColor = true;
     this.btnApply.Click += new EventHandler(this.btnApply_Click);
     this.btnCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnCancel.Location = new System.Drawing.Point(0x194, 0x16d);
     this.btnCancel.Margin = new Padding(3, 4, 3, 4);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new Size(0x4b, 0x17);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = GeneralResource.BUTTON_CANCEL;
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new EventHandler(this.btnCancel_Click);
     this.btnConfirm.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnConfirm.Location = new System.Drawing.Point(0x143, 0x16d);
     this.btnConfirm.Margin = new Padding(3, 4, 3, 4);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new Size(0x4b, 0x17);
     this.btnConfirm.TabIndex = 4;
     this.btnConfirm.Text = GeneralResource.BUTTON_OK;
     this.btnConfirm.UseVisualStyleBackColor = true;
     this.btnConfirm.Click += new EventHandler(this.btnConfirm_Click);
     this.shadingToolStripMenuItem.Name = "shadingToolStripMenuItem";
     this.shadingToolStripMenuItem.Size = new Size(0x7f, 0x16);
     this.shadingToolStripMenuItem.Text = PredictionResource.PREDICTION__SHADING;
     this.contextMenuStrip2.AllowMerge = false;
     this.contextMenuStrip2.Font = new Font("Arial", 9f);
     this.contextMenuStrip2.Items.AddRange(new ToolStripItem[] { this.toolStripMenuItem4, this.toolStripMenuItem5 });
     this.contextMenuStrip2.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.ShowImageMargin = false;
     this.contextMenuStrip2.ShowItemToolTips = false;
     this.contextMenuStrip2.Size = new Size(130, 0x30);
     this.contextMenuStrip2.Opened += new EventHandler(this.contextMenuStrip2_Opened);
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new Size(0x81, 0x16);
     this.toolStripMenuItem4.Text = PredictionResource.PREDICTION__EXPORT___LEGEND;
     this.toolStripMenuItem4.Click += new EventHandler(this.ExportLegendAsXML);
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new Size(0x81, 0x16);
     this.toolStripMenuItem5.Text = PredictionResource.PREDICTION__IMPORT___LEGEND;
     this.toolStripMenuItem5.Click += new EventHandler(this.ImportLegend);
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x23e, 410);
     base.Controls.Add(this.btnConfirm);
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.btnApply);
     base.Controls.Add(this.tcGroupProperties);
     this.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     base.FormBorderStyle = FormBorderStyle.FixedSingle;
     base.HelpButton = true;
     base.KeyPreview = true;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     this.MinimumSize = new Size(580, 0x1b3);
     base.Name = "StudyPropertiesForm";
     base.ShowIcon = false;
     base.ShowInTaskbar = false;
     base.StartPosition = FormStartPosition.CenterParent;
     this.Text = PredictionResource.PREDICTION__STUDY_PROPERTIES;
     base.HelpButtonClicked += new CancelEventHandler(this.EventHelpButtonClicked);
     base.KeyDown += new KeyEventHandler(this.StudyPropertiesForm_KeyDown);
     this.tcGroupProperties.ResumeLayout(false);
     this.tPageGeneral.ResumeLayout(false);
     this.tPageGeneral.PerformLayout();
     this.tPageCondition.ResumeLayout(false);
     this.tPageCondition.PerformLayout();
     this.tPageDisplay.ResumeLayout(false);
     this.panelDgvLegend.ResumeLayout(false);
     this.panelDgvLegend.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tbarTransparence.EndInit();
     ((ISupportInitialize) this.dgvLegend).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 24
0
 private void InitializeComponent()
 {
     this.components = new Container();
     DataGridViewCellStyle style = new DataGridViewCellStyle();
     DataGridViewCellStyle style2 = new DataGridViewCellStyle();
     DataGridViewCellStyle style3 = new DataGridViewCellStyle();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(CellMapPropertiesFrm));
     DataGridViewCellStyle style4 = new DataGridViewCellStyle();
     DataGridViewCellStyle style5 = new DataGridViewCellStyle();
     DataGridViewCellStyle style6 = new DataGridViewCellStyle();
     DataGridViewCellStyle style7 = new DataGridViewCellStyle();
     DataGridViewCellStyle style8 = new DataGridViewCellStyle();
     DataGridViewCellStyle style9 = new DataGridViewCellStyle();
     DataGridViewCellStyle style10 = new DataGridViewCellStyle();
     DataGridViewCellStyle style11 = new DataGridViewCellStyle();
     DataGridViewCellStyle style12 = new DataGridViewCellStyle();
     DataGridViewCellStyle style13 = new DataGridViewCellStyle();
     DataGridViewCellStyle style14 = new DataGridViewCellStyle();
     DataGridViewCellStyle style15 = new DataGridViewCellStyle();
     this.txtBoxMapName = new TextBox();
     this.groupBox1 = new GroupBox();
     this.btnApply = new Button();
     this.btnCancel = new Button();
     this.btnOk = new Button();
     this.tabCellTrafficMap = new TabControl();
     this.tabGeneral = new TabPage();
     this.groupBox3 = new GroupBox();
     this.m_TxtBoxMapName = new TextBox();
     this.tabCell = new TabPage();
     this.m_GridCellService = new DataGridViewBase();
     this.cellCol = new DataGridViewTextBoxColumn();
     this.cmBoxSelectGroup = new ComboBox();
     this.lblCellTabComment1 = new Label();
     this.lblCellTabComment2 = new Label();
     this.tabTraffic = new TabPage();
     this.groupBox2 = new GroupBox();
     this.gridMobility = new CommonDataGridView();
     this.MobilityCol = new DataGridViewTextBoxColumn();
     this.MobilityPercentCol = new DataGridViewTextBoxColumn();
     this.gridTerminal = new CommonDataGridView();
     this.TerminalCol = new DataGridViewTextBoxColumn();
     this.TerminalPercentCol = new DataGridViewTextBoxColumn();
     this.gridClutter = new CommonDataGridView();
     this.ClutterIdCol = new DataGridViewTextBoxColumn();
     this.ClutterClassCol = new DataGridViewTextBoxColumn();
     this.WeightCol = new DataGridViewTextBoxColumn();
     this.IndoorCol = new DataGridViewTextBoxColumn();
     this.lblClutter = new Label();
     this.lblMobilities = new Label();
     this.lblTerminals = new Label();
     this.m_CellContextMenuStrip = new ContextMenuStrip(this.components);
     this.m_ExportToolStripMenuItem = new ToolStripMenuItemBase();
     this.m_ImportToolStripMenuItem = new ToolStripMenuItemBase();
     this.groupBox1.SuspendLayout();
     this.tabCellTrafficMap.SuspendLayout();
     this.tabGeneral.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabCell.SuspendLayout();
     ((ISupportInitialize) this.m_GridCellService).BeginInit();
     this.tabTraffic.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((ISupportInitialize) this.gridMobility).BeginInit();
     ((ISupportInitialize) this.gridTerminal).BeginInit();
     ((ISupportInitialize) this.gridClutter).BeginInit();
     this.m_CellContextMenuStrip.SuspendLayout();
     base.SuspendLayout();
     this.txtBoxMapName.Location = new System.Drawing.Point(6, 0x16);
     this.txtBoxMapName.Margin = new Padding(3, 4, 3, 4);
     this.txtBoxMapName.Name = "txtBoxMapName";
     this.txtBoxMapName.Size = new Size(0x1a1, 0x15);
     this.txtBoxMapName.TabIndex = 0;
     this.groupBox1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.groupBox1.Controls.Add(this.txtBoxMapName);
     this.groupBox1.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.groupBox1.Location = new System.Drawing.Point(11, 13);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new Padding(3, 4, 3, 4);
     this.groupBox1.Size = new Size(0x215, 0);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = TrafficMapResource.TRAFFICMAP_CELL_TRAFFIC_MAP_NAME;
     this.btnApply.Enabled = false;
     this.btnApply.Location = new System.Drawing.Point(0x1f0, 0x194);
     this.btnApply.Name = "btnApply";
     this.btnApply.Size = new Size(0x4b, 0x17);
     this.btnApply.TabIndex = 2;
     this.btnApply.Text = GeneralResource.BUTTON_APPLY;
     this.btnApply.UseVisualStyleBackColor = true;
     this.btnApply.Click += new EventHandler(this.btnApply_Click);
     this.btnCancel.Location = new System.Drawing.Point(0x19f, 0x194);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new Size(0x4b, 0x17);
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = GeneralResource.BUTTON_CANCEL;
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new EventHandler(this.btnCancel_Click);
     this.btnOk.Location = new System.Drawing.Point(0x14e, 0x194);
     this.btnOk.Name = "btnOk";
     this.btnOk.Size = new Size(0x4b, 0x17);
     this.btnOk.TabIndex = 4;
     this.btnOk.Text = GeneralResource.BUTTON_OK;
     this.btnOk.UseVisualStyleBackColor = true;
     this.btnOk.Click += new EventHandler(this.btnOk_Click);
     this.tabCellTrafficMap.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.tabCellTrafficMap.Controls.Add(this.tabGeneral);
     this.tabCellTrafficMap.Controls.Add(this.tabCell);
     this.tabCellTrafficMap.Controls.Add(this.tabTraffic);
     this.tabCellTrafficMap.Location = new System.Drawing.Point(12, 12);
     this.tabCellTrafficMap.Name = "tabCellTrafficMap";
     this.tabCellTrafficMap.SelectedIndex = 0;
     this.tabCellTrafficMap.Size = new Size(0x233, 0x181);
     this.tabCellTrafficMap.TabIndex = 5;
     this.tabGeneral.Controls.Add(this.groupBox3);
     this.tabGeneral.Controls.Add(this.groupBox1);
     this.tabGeneral.Location = new System.Drawing.Point(4, 0x18);
     this.tabGeneral.Name = "tabGeneral";
     this.tabGeneral.Padding = new Padding(3);
     this.tabGeneral.Size = new Size(0x22b, 0x165);
     this.tabGeneral.TabIndex = 0;
     this.tabGeneral.Text = TrafficMapResource.TRAFFICMAP_GENERAL;
     this.tabGeneral.UseVisualStyleBackColor = true;
     this.groupBox3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.groupBox3.Controls.Add(this.m_TxtBoxMapName);
     this.groupBox3.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.groupBox3.Location = new System.Drawing.Point(11, 13);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Padding = new Padding(3, 4, 3, 4);
     this.groupBox3.Size = new Size(0x1fd, 0x33);
     this.groupBox3.TabIndex = 1;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = TrafficMapResource.TRAFFICMAP_CELL_COVERAGE_TRAFFIC_MAP_NAME;
     this.m_TxtBoxMapName.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.m_TxtBoxMapName.Location = new System.Drawing.Point(0x12, 0x15);
     this.m_TxtBoxMapName.Name = "m_TxtBoxMapName";
     this.m_TxtBoxMapName.Size = new Size(0x1b2, 0x15);
     this.m_TxtBoxMapName.TabIndex = 0;
     this.m_TxtBoxMapName.TextChanged += new EventHandler(this.m_TxtBoxMapName_TextChanged);
     this.tabCell.Controls.Add(this.m_GridCellService);
     this.tabCell.Controls.Add(this.cmBoxSelectGroup);
     this.tabCell.Controls.Add(this.lblCellTabComment1);
     this.tabCell.Controls.Add(this.lblCellTabComment2);
     this.tabCell.Location = new System.Drawing.Point(4, 0x18);
     this.tabCell.Name = "tabCell";
     this.tabCell.Padding = new Padding(3);
     this.tabCell.Size = new Size(0x23c, 0x16b);
     this.tabCell.TabIndex = 1;
     this.tabCell.Text = TrafficMapResource.TRAFFICMAP_CELL;
     this.tabCell.UseVisualStyleBackColor = true;
     this.m_GridCellService.AfterDeleteHanlder = null;
     this.m_GridCellService.AllowUserToDeleteRows = false;
     this.m_GridCellService.AllowUserToOrderColumns = true;
     this.m_GridCellService.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.m_GridCellService.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
     this.m_GridCellService.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.AllCells;
     this.m_GridCellService.BackgroundColor = SystemColors.Window;
     this.m_GridCellService.BeforeDeleteHanlder = null;
     this.m_GridCellService.ClearHandle = null;
     style2.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style2.BackColor = SystemColors.Control;
     style2.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     style2.ForeColor = SystemColors.WindowText;
     style2.SelectionBackColor = SystemColors.Highlight;
     style2.SelectionForeColor = SystemColors.HighlightText;
     style2.WrapMode = DataGridViewTriState.True;
     this.m_GridCellService.ColumnHeadersDefaultCellStyle = style2;
     this.m_GridCellService.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.m_GridCellService.Columns.AddRange(new DataGridViewColumn[] { this.cellCol });
     this.m_GridCellService.CtrlDHanlder = null;
     style3.Alignment = DataGridViewContentAlignment.MiddleRight;
     style3.BackColor = SystemColors.Window;
     style3.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     style3.ForeColor = SystemColors.ControlText;
     style3.SelectionBackColor = SystemColors.Highlight;
     style3.SelectionForeColor = SystemColors.HighlightText;
     style3.WrapMode = DataGridViewTriState.False;
     this.m_GridCellService.DefaultCellStyle = style3;
     this.m_GridCellService.DeleteHanlder = null;
     this.m_GridCellService.EnableCtrlA = true;
     this.m_GridCellService.EnableCtrlD = false;
     this.m_GridCellService.Enabled = false;
     this.m_GridCellService.EnableDeleteRow = false;
     this.m_GridCellService.EnableRowAndColSelect = true;
     this.m_GridCellService.EnableSort = false;
     this.m_GridCellService.Location = new System.Drawing.Point(6, 0x4e);
     this.m_GridCellService.Name = "m_GridCellService";
     this.m_GridCellService.RowTemplate.Height = 0x17;
     this.m_GridCellService.Size = new Size(560, 0x117);
     this.m_GridCellService.TabIndex = 5;
     this.m_GridCellService.UncheckedColHeaderText = (List<string>) manager.GetObject("m_GridCellService.UncheckedColHeaderText");
     this.m_GridCellService.CtrlDPress += new Ctrl_D_EventHanlder(this.GridCellService_KeyDown_Ctrl_D);
     this.m_GridCellService.CellEndEdit += new DataGridViewCellEventHandler(this.m_GridCellService_CellEndEdit);
     this.m_GridCellService.KeyDown += new KeyEventHandler(this.m_GridCellService_KeyDown);
     this.cellCol.AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;
     style4.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style4.BackColor = SystemColors.Control;
     style4.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     style4.SelectionBackColor = SystemColors.Control;
     style4.SelectionForeColor = Color.Black;
     this.cellCol.DefaultCellStyle = style4;
     this.cellCol.HeaderText = TrafficMapResource.TRAFFICMAP_TX_ID;
     this.cellCol.Name = "cellCol";
     this.cellCol.ReadOnly = true;
     this.cellCol.Resizable = DataGridViewTriState.True;
     this.cellCol.SortMode = DataGridViewColumnSortMode.NotSortable;
     this.cellCol.Width = 0x2e;
     this.cmBoxSelectGroup.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmBoxSelectGroup.FormattingEnabled = true;
     this.cmBoxSelectGroup.Location = new System.Drawing.Point(6, 0x19);
     this.cmBoxSelectGroup.Name = "cmBoxSelectGroup";
     this.cmBoxSelectGroup.Size = new Size(0xbd, 0x17);
     this.cmBoxSelectGroup.TabIndex = 4;
     this.cmBoxSelectGroup.SelectedIndexChanged += new EventHandler(this.cmBoxSelectGroup_SelectedIndexChanged);
     this.lblCellTabComment1.AutoSize = true;
     this.lblCellTabComment1.Location = new System.Drawing.Point(6, 7);
     this.lblCellTabComment1.Name = "lblCellTabComment1";
     this.lblCellTabComment1.Size = new Size(0x88, 15);
     this.lblCellTabComment1.TabIndex = 3;
     this.lblCellTabComment1.Text = TrafficMapResource.TRAFFICMAP_SELECT_PREDICTION_GROUP;
     this.lblCellTabComment2.AutoSize = true;
     this.lblCellTabComment2.Location = new System.Drawing.Point(6, 60);
     this.lblCellTabComment2.Name = "lblCellTabComment2";
     this.lblCellTabComment2.Size = new Size(0xc3, 15);
     this.lblCellTabComment2.TabIndex = 2;
     this.lblCellTabComment2.Text = TrafficMapResource.TRAFFICMAP_SET_USERS_PER_SERVICE_ON_EACH_CELL;
     this.tabTraffic.Controls.Add(this.groupBox2);
     this.tabTraffic.Location = new System.Drawing.Point(4, 0x18);
     this.tabTraffic.Name = "tabTraffic";
     this.tabTraffic.Padding = new Padding(3);
     this.tabTraffic.Size = new Size(0x23c, 0x16b);
     this.tabTraffic.TabIndex = 2;
     this.tabTraffic.Text = TrafficMapResource.TRAFFICMAP_TRAFFIC;
     this.tabTraffic.UseVisualStyleBackColor = true;
     this.groupBox2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.groupBox2.Controls.Add(this.gridMobility);
     this.groupBox2.Controls.Add(this.gridTerminal);
     this.groupBox2.Controls.Add(this.gridClutter);
     this.groupBox2.Controls.Add(this.lblClutter);
     this.groupBox2.Controls.Add(this.lblMobilities);
     this.groupBox2.Controls.Add(this.lblTerminals);
     this.groupBox2.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.groupBox2.Location = new System.Drawing.Point(6, 7);
     this.groupBox2.Margin = new Padding(3, 4, 3, 4);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new Padding(3, 4, 3, 4);
     this.groupBox2.Size = new Size(560, 0x15d);
     this.groupBox2.TabIndex = 3;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = TrafficMapResource.TRAFFICMAP_DISTRIBUTION;
     this.gridMobility.AllowUserToAddRows = false;
     this.gridMobility.AllowUserToDeleteRows = false;
     this.gridMobility.AllowUserToOrderColumns = true;
     this.gridMobility.AllowUserToResizeRows = false;
     this.gridMobility.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
     this.gridMobility.BackgroundColor = SystemColors.Window;
     style5.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style5.BackColor = SystemColors.Info;
     style5.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     style5.ForeColor = Color.Black;
     style5.SelectionBackColor = SystemColors.Highlight;
     style5.SelectionForeColor = SystemColors.HighlightText;
     style5.WrapMode = DataGridViewTriState.True;
     this.gridMobility.ColumnHeadersDefaultCellStyle = style5;
     this.gridMobility.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridMobility.Columns.AddRange(new DataGridViewColumn[] { this.MobilityCol, this.MobilityPercentCol });
     this.gridMobility.Location = new System.Drawing.Point(0x121, 0x29);
     this.gridMobility.Name = "gridMobility";
     this.gridMobility.Columns[0].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridMobility.Columns[1].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridMobility.RowHeadersVisible = false;
     this.gridMobility.RowTemplate.Height = 0x17;
     this.gridMobility.Size = new Size(0x102, 0x72);
     this.gridMobility.TabIndex = 7;
     this.gridMobility.CellEndEdit += new DataGridViewCellEventHandler(this.gridMobility_CellEndEdit);
     style6.Alignment = DataGridViewContentAlignment.MiddleRight;
     style6.BackColor = SystemColors.Control;
     style6.SelectionBackColor = SystemColors.Control;
     style6.SelectionForeColor = SystemColors.ControlText;
     this.MobilityCol.DefaultCellStyle = style6;
     this.MobilityCol.FillWeight = 149.2386f;
     this.MobilityCol.HeaderText = TrafficMapResource.TRAFFICMAP_MOBILITY;
     this.MobilityCol.Name = "MobilityCol";
     this.MobilityCol.ReadOnly = true;
     style7.Alignment = DataGridViewContentAlignment.MiddleRight;
     style7.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.MobilityPercentCol.DefaultCellStyle = style7;
     this.MobilityPercentCol.FillWeight = 50.76142f;
     this.MobilityPercentCol.HeaderText = "%";
     this.MobilityPercentCol.Name = "MobilityPercentCol";
     this.gridTerminal.AllowUserToAddRows = false;
     this.gridTerminal.AllowUserToDeleteRows = false;
     this.gridTerminal.AllowUserToOrderColumns = true;
     this.gridTerminal.AllowUserToResizeRows = false;
     this.gridTerminal.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
     this.gridTerminal.BackgroundColor = SystemColors.Window;
     style8.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style8.BackColor = SystemColors.Info;
     style8.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     style8.ForeColor = Color.Black;
     style8.SelectionBackColor = SystemColors.Highlight;
     style8.SelectionForeColor = SystemColors.HighlightText;
     style8.WrapMode = DataGridViewTriState.True;
     this.gridTerminal.ColumnHeadersDefaultCellStyle = style8;
     this.gridTerminal.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridTerminal.Columns.AddRange(new DataGridViewColumn[] { this.TerminalCol, this.TerminalPercentCol });
     this.gridTerminal.Location = new System.Drawing.Point(13, 0x29);
     this.gridTerminal.Name = "gridTerminal";
     this.gridTerminal.RowHeadersVisible = false;
     this.gridTerminal.Columns[0].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridTerminal.Columns[1].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridTerminal.RowTemplate.Height = 0x17;
     this.gridTerminal.Size = new Size(0x102, 0x72);
     this.gridTerminal.TabIndex = 6;
     this.gridTerminal.CellEndEdit += new DataGridViewCellEventHandler(this.gridTerminal_CellEndEdit);
     style9.Alignment = DataGridViewContentAlignment.MiddleRight;
     style9.BackColor = SystemColors.Control;
     style9.SelectionBackColor = SystemColors.Control;
     style9.SelectionForeColor = SystemColors.ControlText;
     this.TerminalCol.DefaultCellStyle = style9;
     this.TerminalCol.FillWeight = 149.2386f;
     this.TerminalCol.HeaderText = TrafficMapResource.TRAFFICMAP_TERMINAL;
     this.TerminalCol.Name = "TerminalCol";
     this.TerminalCol.ReadOnly = true;
     style10.Alignment = DataGridViewContentAlignment.MiddleRight;
     style10.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.TerminalPercentCol.DefaultCellStyle = style10;
     this.TerminalPercentCol.FillWeight = 50.76142f;
     this.TerminalPercentCol.HeaderText = "%";
     this.TerminalPercentCol.Name = "TerminalPercentCol";
     this.gridClutter.AllowUserToAddRows = false;
     this.gridClutter.AllowUserToDeleteRows = false;
     this.gridClutter.AllowUserToOrderColumns = true;
     this.gridClutter.AllowUserToResizeRows = false;
     this.gridClutter.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
     this.gridClutter.BackgroundColor = SystemColors.Window;
     style11.Alignment = DataGridViewContentAlignment.MiddleCenter;
     style11.BackColor = SystemColors.Info;
     style11.Font = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     style11.ForeColor = Color.Black;
     style11.SelectionBackColor = SystemColors.Highlight;
     style11.SelectionForeColor = SystemColors.HighlightText;
     style11.WrapMode = DataGridViewTriState.True;
     this.gridClutter.ColumnHeadersDefaultCellStyle = style11;
     this.gridClutter.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridClutter.Columns.AddRange(new DataGridViewColumn[] { this.ClutterIdCol, this.ClutterClassCol, this.WeightCol, this.IndoorCol });
     this.gridClutter.Location = new System.Drawing.Point(13, 0xb5);
     this.gridClutter.Margin = new Padding(3, 4, 3, 4);
     this.gridClutter.Name = "gridClutter";
     this.gridClutter.Columns[0].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridClutter.Columns[1].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridClutter.Columns[2].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridClutter.Columns[3].SortMode = DataGridViewColumnSortMode.NotSortable;
     this.gridClutter.RowHeadersVisible = false;
     this.gridClutter.RowTemplate.Height = 0x17;
     this.gridClutter.Size = new Size(0x216, 160);
     this.gridClutter.TabIndex = 5;
     this.gridClutter.CellEndEdit += new DataGridViewCellEventHandler(this.gridClutter_CellEndEdit);
     style12.Alignment = DataGridViewContentAlignment.MiddleRight;
     style12.BackColor = SystemColors.Control;
     style12.SelectionBackColor = SystemColors.Control;
     style12.SelectionForeColor = SystemColors.ControlText;
     this.ClutterIdCol.DefaultCellStyle = style12;
     this.ClutterIdCol.HeaderText = TrafficMapResource.TRAFFICMAP_ID;
     this.ClutterIdCol.Name = "ClutterIdCol";
     this.ClutterIdCol.ReadOnly = true;
     style13.Alignment = DataGridViewContentAlignment.MiddleRight;
     style13.BackColor = SystemColors.Control;
     style13.SelectionBackColor = SystemColors.Control;
     style13.SelectionForeColor = SystemColors.ControlText;
     this.ClutterClassCol.DefaultCellStyle = style13;
     this.ClutterClassCol.FillWeight = 174f;
     this.ClutterClassCol.HeaderText = TrafficMapResource.TRAFFICMAP_CLUTTER_CLASS;
     this.ClutterClassCol.Name = "ClutterClassCol";
     this.ClutterClassCol.ReadOnly = true;
     style14.Alignment = DataGridViewContentAlignment.MiddleRight;
     style14.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.WeightCol.DefaultCellStyle = style14;
     this.WeightCol.FillWeight = 80f;
     this.WeightCol.HeaderText = TrafficMapResource.TRAFFICMAP_WEIGHT;
     this.WeightCol.Name = "WeightCol";
     style15.Alignment = DataGridViewContentAlignment.MiddleRight;
     style15.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.IndoorCol.DefaultCellStyle = style15;
     this.IndoorCol.FillWeight = 80f;
     this.IndoorCol.HeaderText = TrafficMapResource.TRAFFICMAP_PERINDOOR;
     this.IndoorCol.Name = "IndoorCol";
     this.lblClutter.AutoSize = true;
     this.lblClutter.Location = new System.Drawing.Point(10, 0xa2);
     this.lblClutter.Name = "lblClutter";
     this.lblClutter.Size = new Size(0x35, 15);
     this.lblClutter.TabIndex = 4;
     this.lblClutter.Text = TrafficMapResource.TRAFFICMAP_CLUTTERS;
     this.lblMobilities.AutoSize = true;
     this.lblMobilities.Location = new System.Drawing.Point(0x11e, 0x17);
     this.lblMobilities.Name = "lblMobilities";
     this.lblMobilities.Size = new Size(0x3e, 15);
     this.lblMobilities.TabIndex = 1;
     this.lblMobilities.Text = TrafficMapResource.TRAFFICMAP_MOBILITIES;
     this.lblTerminals.AutoSize = true;
     this.lblTerminals.Location = new System.Drawing.Point(10, 0x17);
     this.lblTerminals.Name = "lblTerminals";
     this.lblTerminals.Size = new Size(0x42, 15);
     this.lblTerminals.TabIndex = 0;
     this.lblTerminals.Text = TrafficMapResource.TRAFFICMAP_TERMINALS;
     this.m_CellContextMenuStrip.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.m_CellContextMenuStrip.Items.AddRange(new ToolStripItem[] { this.m_ExportToolStripMenuItem, this.m_ImportToolStripMenuItem });
     this.m_CellContextMenuStrip.Name = "m_CellContextMenuStrip";
     this.m_CellContextMenuStrip.Size = new Size(110, 0x30);
     this.m_ExportToolStripMenuItem.Name = "m_ExportToolStripMenuItem";
     this.m_ExportToolStripMenuItem.Size = new Size(0x6d, 0x16);
     this.m_ExportToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_EXPORT;
     this.m_ExportToolStripMenuItem.Click += new EventHandler(this.m_ExportToolStripMenuItem_Click);
     this.m_ImportToolStripMenuItem.Name = "m_ImportToolStripMenuItem";
     this.m_ImportToolStripMenuItem.Size = new Size(0x6d, 0x16);
     this.m_ImportToolStripMenuItem.Text = TrafficMapResource.TRAFFICMAP_IMPORT;
     this.m_ImportToolStripMenuItem.Click += new EventHandler(this.m_ImportToolStripMenuItem_Click);
     base.AutoScaleDimensions = new SizeF(7f, 15f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x24b, 0x1b7);
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.btnApply);
     base.Controls.Add(this.tabCellTrafficMap);
     base.Controls.Add(this.btnOk);
     this.Font = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     base.Margin = new Padding(3, 4, 3, 4);
     base.Name = "CellMapPropertiesFrm";
     base.ShowIcon = false;
     base.ShowInTaskbar = false;
     base.MinimizeBox = false;
     base.MaximizeBox = false;
     base.FormBorderStyle = FormBorderStyle.FixedDialog;
     base.StartPosition = FormStartPosition.CenterScreen;
     base.KeyPreview = true;
     base.HelpButton = true;
     base.KeyDown += new KeyEventHandler(this.CellMapFrm_KeyDown);
     base.HelpButtonClicked += new CancelEventHandler(this.CellMapFrm_HelpButtonClicked);
     this.Text = TrafficMapResource.TRAFFICMAP_CELLTRAFFICMAPPROPERTIESFRM;
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabCellTrafficMap.ResumeLayout(false);
     this.tabGeneral.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.tabCell.ResumeLayout(false);
     this.tabCell.PerformLayout();
     ((ISupportInitialize) this.m_GridCellService).EndInit();
     this.tabTraffic.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((ISupportInitialize) this.gridMobility).EndInit();
     ((ISupportInitialize) this.gridTerminal).EndInit();
     ((ISupportInitialize) this.gridClutter).EndInit();
     this.m_CellContextMenuStrip.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 25
0
 private void InitMenuItems()
 {
     ToolStripMenuItemBase menuItem = new ToolStripMenuItemBase();
     menuItem.Name = "m_FindMenuItem";
     menuItem.Text = NEResource.NE_TOOLMENUITEM_FIND;
     menuItem.Click += new EventHandler(this.m_FindMenuItem_Click);
     this.AddEvent();
     this.m_FindMenuItem = new MenuItemOperation(menuItem, MenuItemType.Edit);
 }