Пример #1
1
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KmlTreeView));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "ge");
            this.imageList1.Images.SetKeyName(1, "kml");
            this.imageList1.Images.SetKeyName(2, "flag");
            this.imageList1.Images.SetKeyName(3, "overlay");
            this.imageList1.Images.SetKeyName(4, "photo");
            this.imageList1.Images.SetKeyName(5, "tour");
            this.imageList1.Images.SetKeyName(6, "folderClosed");
            this.imageList1.Images.SetKeyName(7, "folderOpen");
            this.imageList1.Images.SetKeyName(8, "linkFolderClosed");
            this.imageList1.Images.SetKeyName(9, "linkFolderOpen");
            this.imageList1.Images.SetKeyName(10, "linkFolderClosed_0");
            this.imageList1.Images.SetKeyName(11, "linkFolderClosed_1");
            this.imageList1.Images.SetKeyName(12, "linkFolderClosed_2");
            this.imageList1.Images.SetKeyName(13, "linkFolderClosedDisconected");
            // 
            // KmlTreeView
            // 
            this.ImageKey = "ge";
            this.ImageList = this.imageList1;
            this.SelectedImageIndex = 0;
            this.ResumeLayout(false);

        }
Пример #2
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EFDevGrid));
     this.imageListGridPageBar = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // imageListGridPageBar
     //
     this.imageListGridPageBar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListGridPageBar.ImageStream")));
     this.imageListGridPageBar.TransparentColor = System.Drawing.Color.Transparent;
     this.imageListGridPageBar.Images.SetKeyName(0, "first.ico");
     this.imageListGridPageBar.Images.SetKeyName(1, "pre.png");
     this.imageListGridPageBar.Images.SetKeyName(2, "next.png");
     this.imageListGridPageBar.Images.SetKeyName(3, "last.ico");
     this.imageListGridPageBar.Images.SetKeyName(4, "Filter.png");
     this.imageListGridPageBar.Images.SetKeyName(5, "branch_element.png");
     this.imageListGridPageBar.Images.SetKeyName(6, "export1.ico");
     this.imageListGridPageBar.Images.SetKeyName(7, "refresh.png");
     this.imageListGridPageBar.Images.SetKeyName(8, "window_split_ver.ico");
     this.imageListGridPageBar.Images.SetKeyName(9, "add2.png");
     this.imageListGridPageBar.Images.SetKeyName(10, "delete2.png");
     this.imageListGridPageBar.Images.SetKeyName(11, "copynew.ico");
     this.imageListGridPageBar.Images.SetKeyName(12, "goto.ico");
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Пример #3
0
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PickEntryStep));
            this.treeView = new System.Windows.Forms.TreeView();
            this.treeImages = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // treeView
            // 
            resources.ApplyResources(this.treeView, "treeView");
            this.treeView.FullRowSelect = true;
            this.treeView.HideSelection = false;
            this.treeView.ImageList = this.treeImages;
            this.treeView.Name = "treeView";
            this.treeView.DoubleClick += new System.EventHandler(this.TreeView_DoubleClick);
            // 
            // treeImages
            // 
            this.treeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
            resources.ApplyResources(this.treeImages, "treeImages");
            this.treeImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // PickEntryStep
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Transparent;
            this.Controls.Add(this.treeView);
            this.Name = "PickEntryStep";
            this.Tag = "Double click on the file in the directory tree below to be the entry point for yo" +
                "ur application.  This should be an executable.";
            this.ResumeLayout(false);

        }
Пример #4
0
		// <summary>
		// Constructor.  Create and populate an image list
		// </summary>
		public TriStateTreeView() : base()
		{
			StateImageList = new System.Windows.Forms.ImageList();

			// populate the image list, using images from the System.Windows.Forms.CheckBoxRenderer class
			for (int i = 0; i < 3; i++)
			{
				// Create a bitmap which holds the relevent check box style
				// see http://msdn.microsoft.com/en-us/library/ms404307.aspx and http://msdn.microsoft.com/en-us/library/system.windows.forms.checkboxrenderer.aspx

				System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(16, 16);
				System.Drawing.Graphics chkGraphics = System.Drawing.Graphics.FromImage(bmp);
				switch ( i )
				{
					// 0,1 - offset the checkbox slightly so it positions in the correct place
					case 0:
						System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(chkGraphics, new System.Drawing.Point(0, 1), System.Windows.Forms.VisualStyles.CheckBoxState.UncheckedNormal);
						break;
					case 1:
						System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(chkGraphics, new System.Drawing.Point(0, 1), System.Windows.Forms.VisualStyles.CheckBoxState.CheckedNormal);
						break;
					case 2:
						System.Windows.Forms.CheckBoxRenderer.DrawCheckBox(chkGraphics, new System.Drawing.Point(0, 1), System.Windows.Forms.VisualStyles.CheckBoxState.MixedNormal);
						break;
				}

				StateImageList.Images.Add(bmp);
			}
		}
Пример #5
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SplitButton));
     this.SplitButtonDropDown = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.SplitButtonImages = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // SplitButtonDropDown
     //
     this.SplitButtonDropDown.Name = "SplitButtonDropDown";
     this.SplitButtonDropDown.Size = new System.Drawing.Size(61, 4);
     this.SplitButtonDropDown.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.SplitButtonDropDownClosed);
     this.SplitButtonDropDown.Opening += new System.ComponentModel.CancelEventHandler(this.SplitButtonDropDownOpening);
     this.SplitButtonDropDown.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.SplitButtonDropDownItemClicked);
     //
     // SplitButtonImages
     //
     this.SplitButtonImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("SplitButtonImages.ImageStream")));
     this.SplitButtonImages.TransparentColor = System.Drawing.Color.Transparent;
     this.SplitButtonImages.Images.SetKeyName(0, "Normal");
     this.SplitButtonImages.Images.SetKeyName(1, "Hover");
     this.SplitButtonImages.Images.SetKeyName(2, "Clicked");
     this.SplitButtonImages.Images.SetKeyName(3, "Disabled");
     //
     // SplitButton
     //
     this.ContextMenuStrip = this.SplitButtonDropDown;
     this.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.ImageKey = "Normal";
     this.ImageList = this.SplitButtonImages;
     this.ResumeLayout(false);
 }
Пример #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MsgBoxVN));
     this.imgList = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // imgList
     //
     this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     this.imgList.TransparentColor = System.Drawing.Color.Transparent;
     this.imgList.Images.SetKeyName(0, "");
     this.imgList.Images.SetKeyName(1, "");
     this.imgList.Images.SetKeyName(2, "");
     this.imgList.Images.SetKeyName(3, "");
     //
     // MsgBoxVN
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(331, 115);
     this.ControlBox = false;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "MsgBoxVN";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Message";
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.MsgBoxVN_Paint);
     this.Shown += new System.EventHandler(this.MsgBoxVN_Shown);
     this.ResumeLayout(false);
 }
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SolutionPickerControl));
			this.treeIcons = new System.Windows.Forms.ImageList(this.components);
			this.solutionTree = new System.Windows.Forms.TreeView();
			this.SuspendLayout();
			// 
			// treeIcons
			// 
			this.treeIcons.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
			resources.ApplyResources(this.treeIcons, "treeIcons");
			this.treeIcons.TransparentColor = System.Drawing.Color.Magenta;
			// 
			// solutionTree
			// 
			resources.ApplyResources(this.solutionTree, "solutionTree");
			this.solutionTree.ImageList = this.treeIcons;
			this.solutionTree.Name = "solutionTree";
			this.solutionTree.Sorted = true;
			this.solutionTree.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.OnBeforeExpand);
			this.solutionTree.DoubleClick += new System.EventHandler(this.OnSelect);
			// 
			// SolutionPickerControl
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.solutionTree);
			this.Name = "SolutionPickerControl";
			this.ResumeLayout(false);

		}
Пример #8
0
        public TButton()
            : base()
        {

            Point[] pts = {   new Point(0, _buttonsize / 2 - 1), 
                              new Point(_buttonsize / 2 - 1, 0), 
                              new Point(_buttonsize , _buttonsize / 2 - 1), 
                              new Point(_buttonsize , _buttonsize / 2 + 2),
                              new Point(_buttonsize / 2 + 2, _buttonsize - 1),
                              new Point(_buttonsize / 2 - 1, _buttonsize - 1) };

            GraphicsPath p = new GraphicsPath();
            p.AddPolygon(pts);
            p.CloseFigure();
            p.FillMode = FillMode.Alternate;
            this.Region = new Region(p);

            ImageList = new System.Windows.Forms.ImageList();
            ImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
            ImageList.ImageSize = new System.Drawing.Size(_buttonsize, _buttonsize);


            ImageList.Images.Add(((System.Drawing.Image)(Resource1.ResourceManager.GetObject("diamond1"))));
            ImageList.Images.Add(((System.Drawing.Image)(Resource1.ResourceManager.GetObject("diamond1_down"))));
            ImageIndex = 0;

        }
Пример #9
0
		private System.Drawing.Image GetImage(System.ComponentModel.ITypeDescriptorContext context,int index)
		{
			if(m_ImageList!=null && index>=0 && index<=m_ImageList.Images.Count)
			{
				return m_ImageList.Images[index];
			}
			if(context==null)
				return null;

			object o=context.Instance;
			if(o==null)
				return null;
			System.ComponentModel.PropertyDescriptorCollection pd=System.ComponentModel.TypeDescriptor.GetProperties(o);
			if(pd==null)
				return null;

			foreach(System.ComponentModel.PropertyDescriptor prop in pd)
			{
				if(prop.PropertyType==typeof(System.Windows.Forms.ImageList))
				{
					m_ImageList=prop.GetValue(o) as System.Windows.Forms.ImageList;
					if(m_ImageList!=null && index>=0 && index<=m_ImageList.Images.Count)
					{
						return m_ImageList.Images[index];
					}
					break;
				}
			}
			return null;
		}
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EMapObject));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "a1.png");
     this.imageList1.Images.SetKeyName(1, "a2.png");
     this.imageList1.Images.SetKeyName(2, "a3.png");
     this.imageList1.Images.SetKeyName(3, "a4.png");
     this.imageList1.Images.SetKeyName(4, "b1.png");
     this.imageList1.Images.SetKeyName(5, "b4.png");
     this.imageList1.Images.SetKeyName(6, "b2.png");
     this.imageList1.Images.SetKeyName(7, "b3.png");
     this.imageList1.Images.SetKeyName(8, "b5.png");
     this.imageList1.Images.SetKeyName(9, "b6.png");
     this.imageList1.Images.SetKeyName(10, "b9.png");
     this.imageList1.Images.SetKeyName(11, "b10.png");
     //
     // EMapObject
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Name = "EMapObject";
     this.Size = new System.Drawing.Size(24, 24);
     this.ResumeLayout(false);
 }
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Windows.Forms.ImageList imageList;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelErrorDisplayFilterForm));
			this.virtualTreeControl = new ORMSolutions.ORMArchitect.Framework.Shell.StandardVirtualTreeControl();
			this.btnOK = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			imageList = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			// 
			// imageList
			// 
			imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
			resources.ApplyResources(imageList, "imageList");
			imageList.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// virtualTreeControl
			// 
			resources.ApplyResources(this.virtualTreeControl, "virtualTreeControl");
			this.virtualTreeControl.ImageList = imageList;
			this.virtualTreeControl.Name = "virtualTreeControl";
			this.virtualTreeControl.StandardCheckBoxes = true;
			// 
			// btnOK
			// 
			resources.ApplyResources(this.btnOK, "btnOK");
			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnOK.Name = "btnOK";
			this.btnOK.UseVisualStyleBackColor = true;
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			// 
			// btnCancel
			// 
			resources.ApplyResources(this.btnCancel, "btnCancel");
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.UseVisualStyleBackColor = true;
			// 
			// ModelErrorDisplayFilterForm
			// 
			this.AcceptButton = this.btnOK;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
			this.CancelButton = this.btnCancel;
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.virtualTreeControl);
			this.MinimizeBox = false;
			this.Name = "ModelErrorDisplayFilterForm";
			this.ShowIcon = false;
			this.ResumeLayout(false);

		}
Пример #12
0
 //public static int Unknown = 3;
 public static System.Windows.Forms.ImageList GetColorList()
 {
     System.Windows.Forms.ImageList myImageList = new System.Windows.Forms.ImageList();
     myImageList.Images.Add(Properties.Resources.Default.ToBitmap());
     myImageList.Images.Add(Properties.Resources.DefaultSelect.ToBitmap());
     myImageList.Images.Add(Properties.Resources.Passed.ToBitmap());
     myImageList.Images.Add(Properties.Resources.PassedSelect.ToBitmap());
     myImageList.Images.Add(Properties.Resources.Failed.ToBitmap());
     myImageList.Images.Add(Properties.Resources.FailedSelect.ToBitmap());
     return myImageList;
 }
Пример #13
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("商品B", 0);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("商品A", 1);
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("商品C", 2);
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("商品D", 3);
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("商品E", 4);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.listView1 = new System.Windows.Forms.ListView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.AllowDrop = true;
     this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5});
     this.listView1.LargeImageList = this.imageList1;
     this.listView1.Location = new System.Drawing.Point(1, -1);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(301, 180);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop);
     this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter);
     this.listView1.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.listView1_ItemDrag);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "1.bmp");
     this.imageList1.Images.SetKeyName(1, "2.bmp");
     this.imageList1.Images.SetKeyName(2, "3.bmp");
     this.imageList1.Images.SetKeyName(3, "4.bmp");
     this.imageList1.Images.SetKeyName(4, "5.bmp");
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(303, 179);
     this.Controls.Add(this.listView1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "在列表视图中拖动视图项";
     this.ResumeLayout(false);
 }
Пример #14
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "1.jpg");
     this.imageList1.Images.SetKeyName(1, "2.jpg");
     this.imageList1.Images.SetKeyName(2, "3.jpg");
     this.imageList1.Images.SetKeyName(3, "4.jpg");
     this.imageList1.Images.SetKeyName(4, "5.jpg");
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Location = new System.Drawing.Point(104, 59);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(111, 111);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(315, 218);
     this.Controls.Add(this.pictureBox1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "使用ImageList组件制作动画图形";
     this.Load += new System.EventHandler(this.Form2_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DivisionTree));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "category.png");
     this.imageList1.Images.SetKeyName(1, "customer.png");
 }
Пример #16
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NetState));
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.timer = new System.Windows.Forms.Timer(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(13, 4);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(20, 20);
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(50, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "label1";
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "user-busy-2.png");
     this.imageList.Images.SetKeyName(1, "user-online-2.png");
     this.imageList.Images.SetKeyName(2, "dialog-warning-4.png");
     //
     // NetState
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox1);
     this.Name = "NetState";
     this.Size = new System.Drawing.Size(208, 26);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( EntityTypesForm ) );
     this.treeView = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList( this.components );
     this.SuspendLayout();
     //
     // treeView
     //
     this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView.HideSelection = false;
     this.treeView.ImageIndex = 0;
     this.treeView.ImageList = this.imageList1;
     this.treeView.Location = new System.Drawing.Point( 0, 0 );
     this.treeView.Name = "treeView";
     this.treeView.SelectedImageIndex = 0;
     this.treeView.Size = new System.Drawing.Size( 292, 270 );
     this.treeView.TabIndex = 1;
     this.treeView.Text = "s";
     this.treeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler( this.treeView_AfterSelect );
     //
     // imageList1
     //
     this.imageList1.ImageStream = ( (System.Windows.Forms.ImageListStreamer)( resources.GetObject( "imageList1.ImageStream" ) ) );
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName( 0, "Folder_16.png" );
     this.imageList1.Images.SetKeyName( 1, "EntityType_16.png" );
     //
     // EntityTypesForm
     //
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size( 292, 270 );
     this.Controls.Add( this.treeView );
     this.DockAreas = ( (WeifenLuo.WinFormsUI.Docking.DockAreas)( ( ( ( ( WeifenLuo.WinFormsUI.Docking.DockAreas.Float | WeifenLuo.WinFormsUI.Docking.DockAreas.DockLeft )
                     | WeifenLuo.WinFormsUI.Docking.DockAreas.DockRight )
                     | WeifenLuo.WinFormsUI.Docking.DockAreas.DockTop )
                     | WeifenLuo.WinFormsUI.Docking.DockAreas.DockBottom ) ) );
     this.Font = new System.Drawing.Font( "Microsoft Sans Serif", 7.471698F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( (byte)( 204 ) ) );
     this.HideOnClose = true;
     this.Name = "EntityTypesForm";
     this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockRight;
     this.TabText = "Entity Types";
     this.Text = "Entity Types";
     this.ResumeLayout( false );
 }
Пример #18
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // treeView1
     //
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList1;
     this.treeView1.Location = new System.Drawing.Point(0, 0);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(303, 196);
     this.treeView1.TabIndex = 0;
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "1.bmp");
     this.imageList1.Images.SetKeyName(1, "2.bmp");
     this.imageList1.Images.SetKeyName(2, "3.bmp");
     this.imageList1.Images.SetKeyName(3, "4.bmp");
     this.imageList1.Images.SetKeyName(4, "5.bmp");
     this.imageList1.Images.SetKeyName(5, "6.bmp");
     this.imageList1.Images.SetKeyName(6, "7.bmp");
     this.imageList1.Images.SetKeyName(7, "8.bmp");
     this.imageList1.Images.SetKeyName(8, "9.bmp");
     this.imageList1.Images.SetKeyName(9, "10.bmp");
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(303, 196);
     this.Controls.Add(this.treeView1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "将数据库数据显示到树视图中\t";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ResumeLayout(false);
 }
Пример #19
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Info));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0,"Close2.bmp");
     this.imageList1.Images.SetKeyName(1,"Close1.bmp");
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(246,7);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(19,19);
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop = false;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F,12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.HotTrack;
     this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize = new System.Drawing.Size(269,163);
     this.ControlBox = false;
     this.Controls.Add(this.pictureBox1);
     this.ForeColor = System.Drawing.SystemColors.ControlText;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "MainForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "制作下拉窗体";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FunctionTree));
     this.images = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // images
     //
     this.images.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("images.ImageStream")));
     this.images.TransparentColor = System.Drawing.Color.Transparent;
     this.images.Images.SetKeyName(0, "Catalog");
     this.images.Images.SetKeyName(1, "Right");
     //
     // FunctionTree
     //
     this.LineColor = System.Drawing.Color.Black;
     this.ResumeLayout(false);
 }
Пример #21
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmIcons));
     this.m_imgListOfIcons = new System.Windows.Forms.ImageList(this.components);
     //
     //m_imgListOfIcons
     //
     this.m_imgListOfIcons.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.m_imgListOfIcons.ImageSize = new System.Drawing.Size(16, 16);
     this.m_imgListOfIcons.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("m_imgListOfIcons.ImageStream"));
     this.m_imgListOfIcons.TransparentColor = System.Drawing.Color.Transparent;
     //
     //frmIcons
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(219, 34);
     this.Name = "frmIcons";
     this.Text = "frmIcons";
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.SuspendLayout();
     //
     // imageList
     //
     this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // listBox1
     //
     this.listBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.Location = new System.Drawing.Point(0, 2);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(263, 348);
     this.listBox1.TabIndex = 3;
     //
     // DispatchOutput
     //
     this.ClientSize = new System.Drawing.Size(263, 352);
     this.Controls.Add(this.listBox1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HideOnClose = true;
     this.Location = new System.Drawing.Point(0, 20);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.MinimumSize = new System.Drawing.Size(278, 0);
     this.Name = "DispatchOutput";
     this.Padding = new System.Windows.Forms.Padding(0, 2, 0, 2);
     this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockLeftAutoHide;
     this.ShowInTaskbar = false;
     this.TabText = "Connection Output";
     this.Text = "Connection Output";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExerciseForm));
     this.lstImg = new System.Windows.Forms.ImageList(this.components);
     this.settingsControl = new lucidcode.LucidScribe.Plugin.Pranayama.SettingsControl();
     this.SuspendLayout();
     //
     // lstImg
     //
     this.lstImg.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("lstImg.ImageStream")));
     this.lstImg.TransparentColor = System.Drawing.Color.Transparent;
     this.lstImg.Images.SetKeyName(0, "Graph.Plugin2.bmp");
     //
     // settingsControl
     //
     this.settingsControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.settingsControl.BackColor = System.Drawing.Color.LightSteelBlue;
     this.settingsControl.Location = new System.Drawing.Point(12, 12);
     this.settingsControl.Name = "settingsControl";
     this.settingsControl.Size = new System.Drawing.Size(239, 158);
     this.settingsControl.TabIndex = 6;
     this.settingsControl.ExerciseChanged += new lucidcode.LucidScribe.Plugin.Pranayama.SettingsControl.ExerciseChangedEventHandler(this.settingsControl_ExerciseChanged);
     //
     // ExerciseForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ClientSize = new System.Drawing.Size(263, 182);
     this.Controls.Add(this.settingsControl);
     this.Font = new System.Drawing.Font("Verdana", 8.25F);
     this.ForeColor = System.Drawing.Color.MidnightBlue;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "ExerciseForm";
     this.Text = "Lucid Scribe - Pranayama";
     this.ResumeLayout(false);
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.treeView = new System.Windows.Forms.TreeView();
            this.treeImages = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // treeView
            // 
            this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView.FullRowSelect = true;
            this.treeView.HideSelection = false;
            this.treeView.ImageIndex = 0;
            this.treeView.ImageList = this.treeImages;
            this.treeView.Location = new System.Drawing.Point(0, 0);
            this.treeView.Name = "treeView";
            this.treeView.SelectedImageIndex = 0;
            this.treeView.Size = new System.Drawing.Size(300, 225);
            this.treeView.TabIndex = 0;
            this.treeView.DoubleClick += new System.EventHandler(this.TreeView_DoubleClick);
            // 
            // treeImages
            // 
            this.treeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
            this.treeImages.ImageSize = new System.Drawing.Size(16, 16);
            this.treeImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // PickEntryStep
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Transparent;
            this.Controls.Add(this.treeView);
            this.Name = "PickEntryStep";
            this.Size = new System.Drawing.Size(300, 225);
            this.Tag = "Double click on the file in the directory tree below to be the entry point for yo" +
                "ur application.  This should be an executable.";
            this.ResumeLayout(false);

        }
Пример #25
0
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WPagination));
     this.imageEnter = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // imageEnter
     //
     this.imageEnter.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageEnter.ImageStream")));
     this.imageEnter.TransparentColor = System.Drawing.Color.Transparent;
     this.imageEnter.Images.SetKeyName(0, "enterArrow.jpg");
     //
     // WPagination
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Name = "WPagination";
     this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileSysTree));
			this.imgList = new System.Windows.Forms.ImageList(this.components);
			this.SuspendLayout();
			// 
			// imgList
			// 
			this.imgList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
			this.imgList.TransparentColor = System.Drawing.Color.Transparent;
			this.imgList.Images.SetKeyName(0, "home");
			this.imgList.Images.SetKeyName(1, "folder");
			// 
			// FileSysTree
			// 
			this.ImageIndex = 0;
			this.ImageList = this.imgList;
			this.LineColor = System.Drawing.Color.Black;
			this.SelectedImageIndex = 0;
			this.ResumeLayout(false);
		}
    /// <summary> 
    /// Required method for Designer support - do not modify 
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      System.Windows.Forms.ImageList listaDeImágenes;
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControladorDePestañas));
      listaDeImágenes = new System.Windows.Forms.ImageList(this.components);
      this.SuspendLayout();
      // 
      // listaDeImágenes
      // 
      listaDeImágenes.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("listaDeImágenes.ImageStream")));
      listaDeImágenes.TransparentColor = System.Drawing.Color.Transparent;
      listaDeImágenes.Images.SetKeyName(0, "accept.png");
      listaDeImágenes.Images.SetKeyName(1, "help.png");
      listaDeImágenes.Images.SetKeyName(2, "attention.png");
      listaDeImágenes.Images.SetKeyName(3, "stop.png");
      // 
      // ControladorDePestañas
      // 
      this.ImageList = listaDeImágenes;
      this.ResumeLayout(false);

    }
Пример #28
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.listView1 = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "vvv.ico");
     this.imageList1.Images.SetKeyName(1, "通用图2.bmp");
     //
     // listView1
     //
     this.listView1.BackgroundImage = global::DrawBackGround.Properties.Resources.通用图2;
     this.listView1.BackgroundImageTiled = true;
     this.listView1.Location = new System.Drawing.Point(4, -1);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(304, 172);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(309, 174);
     this.Controls.Add(this.listView1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "在ListView组件中绘制底纹";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ResumeLayout(false);
 }
Пример #29
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KmlTreeView));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.SuspendLayout();
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "ge");
            this.imageList1.Images.SetKeyName(1, "kml");
            this.imageList1.Images.SetKeyName(2, "folderClosed");
            this.imageList1.Images.SetKeyName(3, "folderOpen");
            this.imageList1.Images.SetKeyName(4, "flag");
            this.imageList1.Images.SetKeyName(5, "overlay");
            this.imageList1.Images.SetKeyName(6, "photo");
            this.imageList1.Images.SetKeyName(7, "tour");
            // 
            // KmlTreeView
            // 
            this.CheckBoxes = true;
            this.ImageIndex = 0;
            this.ImageList = this.imageList1;
            this.LineColor = System.Drawing.Color.Black;
            this.SelectedImageIndex = 0;
            this.ShowNodeToolTips = true;
            this.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.KmlTree_AfterCheck);
            this.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.KmlTreeView_AfterCollapse);
            this.DoubleClick += new System.EventHandler(this.KmlTree_DoubleClick);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.KmlTreeView_MouseUp);
            this.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.KmlTreeView_AfterExpand);
            this.ResumeLayout(false);

        }
Пример #30
0
 public clsIdiomaFaturaProforma(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int Exportador, string Codigo, ref System.Windows.Forms.ImageList bandeiras) : base(ref tratadorErro, ref ConnectionDB, EnderecoExecutavel, Exportador, Codigo, ref bandeiras)
 {
     try
     {
         this.carregaDadosBD();
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
Пример #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager          resources            = new System.ComponentModel.ComponentResourceManager(typeof(DashBoard));
     Syncfusion.Windows.Forms.Tools.CaptionButtonsCollection ccbaddPortfolioPanel = new Syncfusion.Windows.Forms.Tools.CaptionButtonsCollection();
     this.dockingManager                    = new Syncfusion.Windows.Forms.Tools.DockingManager(this.components);
     this.dashBoardImages24                 = new System.Windows.Forms.ImageList(this.components);
     this.addPortfolioPanel                 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.exchangeComboBox                  = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.exchangeLabel                     = new System.Windows.Forms.Label();
     this.addPortfolioButton                = new Syncfusion.Windows.Forms.ButtonAdv();
     this.accountLabel                      = new System.Windows.Forms.Label();
     this.accountsComboBox                  = new Syncfusion.Windows.Forms.Tools.ComboBoxAdv();
     this.priceLookUpCheckBox               = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.priceLabel                        = new System.Windows.Forms.Label();
     this.priceDoubleTextBox                = new Syncfusion.Windows.Forms.Tools.DoubleTextBox();
     this.quantityTextBox                   = new Syncfusion.Windows.Forms.Tools.NumericTextBox();
     this.quantityLabel                     = new System.Windows.Forms.Label();
     this.symbolTextBox                     = new Syncfusion.Windows.Forms.Tools.TextBoxExt();
     this.symbolLabel                       = new System.Windows.Forms.Label();
     this.dashBoardToolStrip                = new Syncfusion.Windows.Forms.Tools.ToolStripEx();
     this.overViewToolStripLabel            = new System.Windows.Forms.ToolStripLabel();
     this.detailViewToolStripLabel          = new System.Windows.Forms.ToolStripLabel();
     this.Industry_SectorViewtoolStripLabel = new System.Windows.Forms.ToolStripLabel();
     this.exchangeViewToolStripLabel        = new System.Windows.Forms.ToolStripLabel();
     this.Grid = new Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl();
     this.dashboardImageList  = new Syncfusion.Windows.Forms.Tools.ImageListAdv(this.components);
     this.symbolAutoComplete  = new Syncfusion.Windows.Forms.Tools.AutoComplete(this.components);
     this.dockingClientPanel1 = new Syncfusion.Windows.Forms.Tools.DockingClientPanel();
     this.dashBoardImages16   = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.dockingManager)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.addPortfolioPanel)).BeginInit();
     this.addPortfolioPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.exchangeComboBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.accountsComboBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.priceLookUpCheckBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.priceDoubleTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.quantityTextBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.symbolTextBox)).BeginInit();
     this.dashBoardToolStrip.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.symbolAutoComplete)).BeginInit();
     this.dockingClientPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dockingManager
     //
     this.dockingManager.ActiveCaptionBackground = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226))))));
     this.dockingManager.ActiveCaptionFont       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockingManager.BorderColor             = System.Drawing.Color.White;
     this.dockingManager.CloseEnabled            = false;
     this.dockingManager.DockLayoutStream        = ((System.IO.MemoryStream)(resources.GetObject("dockingManager.DockLayoutStream")));
     this.dockingManager.EnableAutoAdjustCaption = true;
     this.dockingManager.HostControl             = this;
     this.dockingManager.ImageList = this.dashBoardImages24;
     this.dockingManager.InActiveCaptionBackground = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.FromArgb(((int)(((byte)(209)))), ((int)(((byte)(211)))), ((int)(((byte)(212))))));
     this.dockingManager.InActiveCaptionFont       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
     this.dockingManager.MetroButtonColor          = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.dockingManager.MetroColor             = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.dockingManager.MetroSplitterBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(159)))), ((int)(((byte)(183)))));
     this.dockingManager.Office2007Theme        = Syncfusion.Windows.Forms.Office2007Theme.Managed;
     this.dockingManager.ReduceFlickeringInRtl  = false;
     this.dockingManager.ThemesEnabled          = true;
     this.dockingManager.VisualStyle            = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.dockingManager.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Close, "CloseButton"));
     this.dockingManager.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Pin, "PinButton"));
     this.dockingManager.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Menu, "MenuButton"));
     this.dockingManager.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Maximize, "MaximizeButton"));
     this.dockingManager.CaptionButtons.Add(new Syncfusion.Windows.Forms.Tools.CaptionButton(Syncfusion.Windows.Forms.Tools.CaptionButtonType.Restore, "RestoreButton"));
     this.dockingManager.SetDockLabel(this.addPortfolioPanel, "Add new stocks");
     this.dockingManager.SetDockIcon(this.addPortfolioPanel, 17);
     this.dockingManager.SetEnableDocking(this.addPortfolioPanel, true);
     ccbaddPortfolioPanel.MergeWith(this.dockingManager.CaptionButtons, false);
     this.dockingManager.SetCustomCaptionButtons(this.addPortfolioPanel, ccbaddPortfolioPanel);
     //
     // dashBoardImages24
     //
     this.dashBoardImages24.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("dashBoardImages24.ImageStream")));
     this.dashBoardImages24.TransparentColor = System.Drawing.Color.Transparent;
     this.dashBoardImages24.Images.SetKeyName(0, "AmericanFunds.png");
     this.dashBoardImages24.Images.SetKeyName(1, "Children-College-Savings.png");
     this.dashBoardImages24.Images.SetKeyName(2, "Day-Trading.png");
     this.dashBoardImages24.Images.SetKeyName(3, "Fidelity-Funds.png");
     this.dashBoardImages24.Images.SetKeyName(4, "Retirement-Savings.png");
     this.dashBoardImages24.Images.SetKeyName(5, "Schwab-Funds.png");
     this.dashBoardImages24.Images.SetKeyName(6, "Vanguard-Funds.png");
     this.dashBoardImages24.Images.SetKeyName(7, "Australian-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(8, "Bombay-Stock-Exchange-2.png");
     this.dashBoardImages24.Images.SetKeyName(9, "Franfurt-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(10, "Hong-Kong-Futures-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(11, "London-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(12, "New-York-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(13, "Paris-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(14, "Russian-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(15, "Swiss-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(16, "Tokyo-Stock-Exchange.png");
     this.dashBoardImages24.Images.SetKeyName(17, "Add-New-Stock-icon.png");
     //
     // addPortfolioPanel
     //
     this.addPortfolioPanel.AutoScroll      = true;
     this.addPortfolioPanel.BackColor       = System.Drawing.Color.Transparent;
     this.addPortfolioPanel.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
     this.addPortfolioPanel.BorderColor     = System.Drawing.Color.White;
     this.addPortfolioPanel.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.addPortfolioPanel.Controls.Add(this.exchangeComboBox);
     this.addPortfolioPanel.Controls.Add(this.exchangeLabel);
     this.addPortfolioPanel.Controls.Add(this.addPortfolioButton);
     this.addPortfolioPanel.Controls.Add(this.accountLabel);
     this.addPortfolioPanel.Controls.Add(this.accountsComboBox);
     this.addPortfolioPanel.Controls.Add(this.priceLookUpCheckBox);
     this.addPortfolioPanel.Controls.Add(this.priceLabel);
     this.addPortfolioPanel.Controls.Add(this.priceDoubleTextBox);
     this.addPortfolioPanel.Controls.Add(this.quantityTextBox);
     this.addPortfolioPanel.Controls.Add(this.quantityLabel);
     this.addPortfolioPanel.Controls.Add(this.symbolTextBox);
     this.addPortfolioPanel.Controls.Add(this.symbolLabel);
     this.addPortfolioPanel.Font     = new System.Drawing.Font("Segoe UI", 8.25F);
     this.addPortfolioPanel.Location = new System.Drawing.Point(1, 35);
     this.addPortfolioPanel.Name     = "addPortfolioPanel";
     this.addPortfolioPanel.Size     = new System.Drawing.Size(360, 371);
     this.addPortfolioPanel.TabIndex = 2;
     //
     // exchangeComboBox
     //
     this.exchangeComboBox.BackColor       = System.Drawing.Color.White;
     this.exchangeComboBox.BeforeTouchSize = new System.Drawing.Size(138, 33);
     this.exchangeComboBox.Font            = new System.Drawing.Font("Segoe UI", 9.25F);
     this.exchangeComboBox.Location        = new System.Drawing.Point(150, 261);
     this.exchangeComboBox.Name            = "exchangeComboBox";
     this.exchangeComboBox.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.exchangeComboBox.Size            = new System.Drawing.Size(200, 33);
     this.exchangeComboBox.Style           = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.exchangeComboBox.TabIndex        = 11;
     //
     // exchangeLabel
     //
     this.exchangeLabel.AutoSize  = true;
     this.exchangeLabel.Font      = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.exchangeLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.exchangeLabel.Location  = new System.Drawing.Point(6, 261);
     this.exchangeLabel.Name      = "exchangeLabel";
     this.exchangeLabel.Size      = new System.Drawing.Size(133, 25);
     this.exchangeLabel.TabIndex  = 10;
     this.exchangeLabel.Text      = "StockExchange";
     //
     // addPortfolioButton
     //
     this.addPortfolioButton.Appearance            = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.addPortfolioButton.BackColor             = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(152)))), ((int)(((byte)(218)))));
     this.addPortfolioButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.addPortfolioButton.BeforeTouchSize       = new System.Drawing.Size(128, 42);
     this.addPortfolioButton.BorderStyleAdv        = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.None;
     this.addPortfolioButton.Font                    = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.addPortfolioButton.ForeColor               = System.Drawing.SystemColors.ButtonHighlight;
     this.addPortfolioButton.IsBackStageButton       = false;
     this.addPortfolioButton.Location                = new System.Drawing.Point(67, 308);
     this.addPortfolioButton.Name                    = "addPortfolioButton";
     this.addPortfolioButton.Size                    = new System.Drawing.Size(250, 42);
     this.addPortfolioButton.TabIndex                = 9;
     this.addPortfolioButton.Text                    = "Add to portfolio";
     this.addPortfolioButton.UseVisualStyle          = true;
     this.addPortfolioButton.UseVisualStyleBackColor = true;
     this.addPortfolioButton.Click                  += new System.EventHandler(this.addPortfolioButton_Click);
     //
     // accountLabel
     //
     this.accountLabel.AutoSize  = true;
     this.accountLabel.Font      = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.accountLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.accountLabel.Location  = new System.Drawing.Point(46, 220);
     this.accountLabel.Name      = "accountLabel";
     this.accountLabel.Size      = new System.Drawing.Size(80, 25);
     this.accountLabel.TabIndex  = 8;
     this.accountLabel.Text      = "Account";
     //
     // accountsComboBox
     //
     this.accountsComboBox.BackColor       = System.Drawing.Color.White;
     this.accountsComboBox.BeforeTouchSize = new System.Drawing.Size(138, 33);
     this.accountsComboBox.Font            = new System.Drawing.Font("Segoe UI", 9.25F);
     this.accountsComboBox.Location        = new System.Drawing.Point(150, 220);
     this.accountsComboBox.Name            = "accountsComboBox";
     this.accountsComboBox.DropDownStyle   = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.accountsComboBox.Size            = new System.Drawing.Size(200, 33);
     this.accountsComboBox.Style           = Syncfusion.Windows.Forms.VisualStyle.Metro;
     this.accountsComboBox.TabIndex        = 7;
     //
     // priceLookUpCheckBox
     //
     this.priceLookUpCheckBox.BeforeTouchSize    = new System.Drawing.Size(228, 39);
     this.priceLookUpCheckBox.DrawFocusRectangle = false;
     this.priceLookUpCheckBox.Font               = new System.Drawing.Font("Segoe UI", 9.75F);
     this.priceLookUpCheckBox.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.priceLookUpCheckBox.Location           = new System.Drawing.Point(23, 166);
     this.priceLookUpCheckBox.MetroColor         = System.Drawing.Color.Blue;
     this.priceLookUpCheckBox.Name               = "priceLookUpCheckBox";
     this.priceLookUpCheckBox.Size               = new System.Drawing.Size(300, 39);
     this.priceLookUpCheckBox.Style              = Syncfusion.Windows.Forms.Tools.CheckBoxAdvStyle.Metro;
     this.priceLookUpCheckBox.TabIndex           = 6;
     this.priceLookUpCheckBox.Text               = "Use the current market price";
     this.priceLookUpCheckBox.ThemesEnabled      = false;
     this.priceLookUpCheckBox.CheckStateChanged += new System.EventHandler(this.priceLookUpCheckBox_CheckStateChanged);
     //
     // priceLabel
     //
     this.priceLabel.AutoSize  = true;
     this.priceLabel.Font      = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.priceLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.priceLabel.Location  = new System.Drawing.Point(64, 125);
     this.priceLabel.Name      = "priceLabel";
     this.priceLabel.Size      = new System.Drawing.Size(53, 25);
     this.priceLabel.TabIndex  = 5;
     this.priceLabel.Text      = "Price";
     //
     // priceDoubleTextBox
     //
     this.priceDoubleTextBox.BackGroundColor = System.Drawing.SystemColors.Window;
     this.priceDoubleTextBox.BeforeTouchSize = new System.Drawing.Size(138, 32);
     this.priceDoubleTextBox.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.priceDoubleTextBox.DoubleValue     = 0D;
     this.priceDoubleTextBox.Font            = new System.Drawing.Font("Segoe UI", 9.25F);
     this.priceDoubleTextBox.Location        = new System.Drawing.Point(150, 125);
     this.priceDoubleTextBox.Metrocolor      = System.Drawing.Color.Empty;
     this.priceDoubleTextBox.Name            = "priceDoubleTextBox";
     this.priceDoubleTextBox.NullString      = "0.0";
     this.priceDoubleTextBox.OverflowIndicatorToolTipText = null;
     this.priceDoubleTextBox.Size     = new System.Drawing.Size(138, 32);
     this.priceDoubleTextBox.Style    = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Default;
     this.priceDoubleTextBox.TabIndex = 4;
     this.priceDoubleTextBox.Text     = "0.00";
     //
     // quantityTextBox
     //
     this.quantityTextBox.BeforeTouchSize = new System.Drawing.Size(138, 32);
     this.quantityTextBox.Cursor          = System.Windows.Forms.Cursors.IBeam;
     this.quantityTextBox.Font            = new System.Drawing.Font("Segoe UI", 9.25F);
     this.quantityTextBox.Location        = new System.Drawing.Point(150, 81);
     this.quantityTextBox.Metrocolor      = System.Drawing.Color.Empty;
     this.quantityTextBox.Name            = "quantityTextBox";
     this.quantityTextBox.OverflowIndicatorToolTipText = null;
     this.quantityTextBox.Size     = new System.Drawing.Size(138, 32);
     this.quantityTextBox.Style    = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Default;
     this.quantityTextBox.TabIndex = 3;
     this.quantityTextBox.Text     = "0";
     this.quantityTextBox.Enter   += new System.EventHandler(this.quantityTextBox_Enter);
     this.quantityTextBox.Leave   += new System.EventHandler(this.quantityTextBox_Leave);
     //
     // quantityLabel
     //
     this.quantityLabel.AutoSize  = true;
     this.quantityLabel.Font      = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.quantityLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.quantityLabel.Location  = new System.Drawing.Point(44, 81);
     this.quantityLabel.Name      = "quantityLabel";
     this.quantityLabel.Size      = new System.Drawing.Size(85, 25);
     this.quantityLabel.TabIndex  = 2;
     this.quantityLabel.Text      = "Quantity";
     //
     // symbolTextBox
     //
     this.symbolAutoComplete.SetAutoComplete(this.symbolTextBox, Syncfusion.Windows.Forms.Tools.AutoCompleteModes.MultiSuggest);
     this.symbolTextBox.AutoCompleteMode             = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.symbolTextBox.BeforeTouchSize              = new System.Drawing.Size(138, 32);
     this.symbolTextBox.Cursor                       = System.Windows.Forms.Cursors.IBeam;
     this.symbolTextBox.Font                         = new System.Drawing.Font("Segoe UI", 9.25F);
     this.symbolTextBox.Location                     = new System.Drawing.Point(150, 30);
     this.symbolTextBox.Metrocolor                   = System.Drawing.Color.Empty;
     this.symbolTextBox.Name                         = "symbolTextBox";
     this.symbolTextBox.OverflowIndicatorToolTipText = null;
     this.symbolTextBox.Size                         = new System.Drawing.Size(138, 32);
     this.symbolTextBox.Style                        = Syncfusion.Windows.Forms.Tools.TextBoxExt.theme.Default;
     this.symbolTextBox.TabIndex                     = 0;
     this.symbolTextBox.Text                         = "Symbol";
     this.symbolTextBox.Enter                       += new System.EventHandler(this.symbolTextBox_Enter);
     this.symbolTextBox.Leave                       += new System.EventHandler(this.symbolTextBox_Leave);
     //
     // symbolLabel
     //
     this.symbolLabel.AutoSize  = true;
     this.symbolLabel.Font      = new System.Drawing.Font("Segoe UI Semibold", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.symbolLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.symbolLabel.Location  = new System.Drawing.Point(10, 30);
     this.symbolLabel.Name      = "symbolLabel";
     this.symbolLabel.Size      = new System.Drawing.Size(128, 25);
     this.symbolLabel.TabIndex  = 1;
     this.symbolLabel.Text      = "Symbol Name";
     //
     // dashBoardToolStrip
     //
     this.dashBoardToolStrip.AutoSize         = false;
     this.dashBoardToolStrip.BackColor        = System.Drawing.Color.White;
     this.dashBoardToolStrip.CaptionAlignment = Syncfusion.Windows.Forms.Tools.CaptionAlignment.Near;
     this.dashBoardToolStrip.CaptionFont      = new System.Drawing.Font("Segoe UI", 10F);
     this.dashBoardToolStrip.CaptionStyle     = Syncfusion.Windows.Forms.Tools.CaptionStyle.Top;
     this.dashBoardToolStrip.Font             = new System.Drawing.Font("Segoe UI", 10F);
     this.dashBoardToolStrip.ForeColor        = System.Drawing.Color.MidnightBlue;
     this.dashBoardToolStrip.Image            = null;
     this.dashBoardToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.overViewToolStripLabel,
         this.detailViewToolStripLabel,
         this.Industry_SectorViewtoolStripLabel,
         this.exchangeViewToolStripLabel
     });
     this.dashBoardToolStrip.LauncherStyle     = Syncfusion.Windows.Forms.Tools.LauncherStyle.Metro;
     this.dashBoardToolStrip.LayoutStyle       = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.dashBoardToolStrip.Location          = new System.Drawing.Point(0, 0);
     this.dashBoardToolStrip.Name              = "dashBoardToolStrip";
     this.dashBoardToolStrip.Office12Mode      = false;
     this.dashBoardToolStrip.OfficeColorScheme = Syncfusion.Windows.Forms.Tools.ToolStripEx.ColorScheme.Silver;
     this.dashBoardToolStrip.ShowCaption       = false;
     this.dashBoardToolStrip.Size              = new System.Drawing.Size(781, 40);
     this.dashBoardToolStrip.Stretch           = true;
     this.dashBoardToolStrip.TabIndex          = 0;
     this.dashBoardToolStrip.Text              = "VIEWS";
     this.dashBoardToolStrip.VisualStyle       = Syncfusion.Windows.Forms.Tools.ToolStripExStyle.Metro;
     //
     // overViewToolStripLabel
     //
     this.overViewToolStripLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.overViewToolStripLabel.IsLink    = true;
     this.overViewToolStripLabel.Name      = "overViewToolStripLabel";
     this.overViewToolStripLabel.Size      = new System.Drawing.Size(95, 35);
     this.overViewToolStripLabel.Text      = "OverView";
     this.overViewToolStripLabel.Click    += new System.EventHandler(this.overViewToolStripLabel_Click);
     //
     // detailViewToolStripLabel
     //
     this.detailViewToolStripLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.detailViewToolStripLabel.IsLink    = true;
     this.detailViewToolStripLabel.Name      = "detailViewToolStripLabel";
     this.detailViewToolStripLabel.Size      = new System.Drawing.Size(104, 35);
     this.detailViewToolStripLabel.Text      = "DetailView";
     this.detailViewToolStripLabel.Click    += new System.EventHandler(this.detailViewToolStripLabel_Click);
     //
     // Industry_SectorViewtoolStripLabel
     //
     this.Industry_SectorViewtoolStripLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Industry_SectorViewtoolStripLabel.IsLink    = true;
     this.Industry_SectorViewtoolStripLabel.Name      = "Industry_SectorViewtoolStripLabel";
     this.Industry_SectorViewtoolStripLabel.Size      = new System.Drawing.Size(188, 35);
     this.Industry_SectorViewtoolStripLabel.Text      = "Industry/SectorView";
     this.Industry_SectorViewtoolStripLabel.Click    += new System.EventHandler(this.Industry_SectorViewtoolStripLabel_Click);
     //
     // exchangeViewToolStripLabel
     //
     this.exchangeViewToolStripLabel.ForeColor = System.Drawing.SystemColors.ControlText;
     this.exchangeViewToolStripLabel.IsLink    = true;
     this.exchangeViewToolStripLabel.Name      = "exchangeViewToolStripLabel";
     this.exchangeViewToolStripLabel.Size      = new System.Drawing.Size(183, 35);
     this.exchangeViewToolStripLabel.Text      = "StockExchangeView";
     this.exchangeViewToolStripLabel.Click    += new System.EventHandler(this.exchangeViewToolStripLabel_Click);
     //
     // Grid
     //
     this.Grid.BackColor            = System.Drawing.SystemColors.Window;
     this.Grid.Dock                 = System.Windows.Forms.DockStyle.Fill;
     this.Grid.FreezeCaption        = false;
     this.Grid.GridOfficeScrollBars = Syncfusion.Windows.Forms.OfficeScrollBars.Metro;
     this.Grid.Location             = new System.Drawing.Point(0, 0);
     this.Grid.Name                 = "Grid";
     this.Grid.Size                 = new System.Drawing.Size(415, 407);
     this.Grid.TabIndex             = 4;
     //
     // dashboardImageList
     //
     this.dashboardImageList.Images.AddRange(new System.Drawing.Image[] {
         ((System.Drawing.Image)(resources.GetObject("dashboardImageList.Images"))),
         ((System.Drawing.Image)(resources.GetObject("dashboardImageList.Images1"))),
         ((System.Drawing.Image)(resources.GetObject("dashboardImageList.Images2"))),
         ((System.Drawing.Image)(resources.GetObject("dashboardImageList.Images3"))),
         ((System.Drawing.Image)(resources.GetObject("dashboardImageList.Images4")))
     });
     this.dashboardImageList.ImageSize    = new System.Drawing.Size(32, 32);
     this.dashboardImageList.UseImageSize = false;
     //
     // symbolAutoComplete
     //
     this.symbolAutoComplete.MetroColor     = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.symbolAutoComplete.PreferredWidth = 200;
     this.symbolAutoComplete.SingleClick    = true;
     this.symbolAutoComplete.Style          = Syncfusion.Windows.Forms.Tools.AutoCompleteStyle.Default;
     this.symbolAutoComplete.TextColor      = System.Drawing.Color.Black;
     //
     // dockingClientPanel1
     //
     this.dockingClientPanel1.BackColor = System.Drawing.Color.White;
     this.dockingClientPanel1.Controls.Add(this.Grid);
     this.dockingClientPanel1.Location  = new System.Drawing.Point(0, 40);
     this.dockingClientPanel1.Name      = "dockingClientPanel1";
     this.dockingClientPanel1.Size      = new System.Drawing.Size(415, 407);
     this.dockingClientPanel1.SizeToFit = true;
     this.dockingClientPanel1.TabIndex  = 7;
     //
     // dashBoardImages16
     //
     this.dashBoardImages16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("dashBoardImages16.ImageStream")));
     this.dashBoardImages16.TransparentColor = System.Drawing.Color.Transparent;
     this.dashBoardImages16.Images.SetKeyName(0, "basicMaterials.png");
     this.dashBoardImages16.Images.SetKeyName(1, "Consumer-Goods.png");
     this.dashBoardImages16.Images.SetKeyName(2, "finance.png");
     this.dashBoardImages16.Images.SetKeyName(3, "Healthcare.png");
     this.dashBoardImages16.Images.SetKeyName(4, "Industrial-Goods.png");
     this.dashBoardImages16.Images.SetKeyName(5, "Services.png");
     this.dashBoardImages16.Images.SetKeyName(6, "Technology.png");
     this.dashBoardImages16.Images.SetKeyName(7, "Utilities.png");
     this.dashBoardImages16.Images.SetKeyName(8, "agriculturalChemicals.png");
     this.dashBoardImages16.Images.SetKeyName(9, "aluminium.png");
     this.dashBoardImages16.Images.SetKeyName(10, "copper.png");
     this.dashBoardImages16.Images.SetKeyName(11, "gold.png");
     this.dashBoardImages16.Images.SetKeyName(12, "oil-&-gas.png");
     this.dashBoardImages16.Images.SetKeyName(13, "Silver.png");
     this.dashBoardImages16.Images.SetKeyName(14, "steel-&-iron.png");
     this.dashBoardImages16.Images.SetKeyName(15, "Appliances.png");
     this.dashBoardImages16.Images.SetKeyName(16, "Automotive-Manufacturers-1.png");
     this.dashBoardImages16.Images.SetKeyName(17, "Business-Equipment.png");
     this.dashBoardImages16.Images.SetKeyName(18, "Elecronic-Equipment-2.png");
     this.dashBoardImages16.Images.SetKeyName(19, "Sporting-Goods.png");
     this.dashBoardImages16.Images.SetKeyName(20, "Toys-&-Games.png");
     this.dashBoardImages16.Images.SetKeyName(21, "Accidents-&-Health-Insurance-2.png");
     this.dashBoardImages16.Images.SetKeyName(22, "Asst-management.png");
     this.dashBoardImages16.Images.SetKeyName(23, "Insurance-Brokers.png");
     this.dashBoardImages16.Images.SetKeyName(24, "Invesement.png");
     this.dashBoardImages16.Images.SetKeyName(25, "Real-Estate.png");
     this.dashBoardImages16.Images.SetKeyName(26, "Life-Insurance-2.png");
     this.dashBoardImages16.Images.SetKeyName(27, "Biotechnology.png");
     this.dashBoardImages16.Images.SetKeyName(28, "Healthcare-Plans.png");
     this.dashBoardImages16.Images.SetKeyName(29, "Hospital.png");
     this.dashBoardImages16.Images.SetKeyName(30, "Medical-Appliances-&-Equipment.png");
     this.dashBoardImages16.Images.SetKeyName(31, "Medical-Instruments-&-Supplies.png");
     this.dashBoardImages16.Images.SetKeyName(32, "MedicalPractitioners.png");
     this.dashBoardImages16.Images.SetKeyName(33, "Aerospace-&-Defense-Product-&-Services.png");
     this.dashBoardImages16.Images.SetKeyName(34, "cement.png");
     this.dashBoardImages16.Images.SetKeyName(35, "General-Building-Materials.png");
     this.dashBoardImages16.Images.SetKeyName(36, "Heavy-Construction.png");
     this.dashBoardImages16.Images.SetKeyName(37, "Manufactured-Housing.png");
     this.dashBoardImages16.Images.SetKeyName(38, "Metal-Fabrication.png");
     this.dashBoardImages16.Images.SetKeyName(39, "Textile-Industrial.png");
     this.dashBoardImages16.Images.SetKeyName(40, "Waste-Management.png");
     this.dashBoardImages16.Images.SetKeyName(41, "Apparel-Stores.png");
     this.dashBoardImages16.Images.SetKeyName(42, "Consumer-Services.png");
     this.dashBoardImages16.Images.SetKeyName(43, "Deparmental-stores.png");
     this.dashBoardImages16.Images.SetKeyName(44, "ElectronicsStores.png");
     this.dashBoardImages16.Images.SetKeyName(45, "FoodWholeSale-2.png");
     this.dashBoardImages16.Images.SetKeyName(46, "Lodging-3.png");
     this.dashBoardImages16.Images.SetKeyName(47, "MajorAirlines-2.png");
     this.dashBoardImages16.Images.SetKeyName(48, "Regional-Airlines.png");
     this.dashBoardImages16.Images.SetKeyName(49, "Business-Software-&-Services.png");
     this.dashBoardImages16.Images.SetKeyName(50, "Computer-Based-Systems.png");
     this.dashBoardImages16.Images.SetKeyName(51, "Data-Storage-Devices.png");
     this.dashBoardImages16.Images.SetKeyName(52, "Healthcare-Information-Services.png");
     this.dashBoardImages16.Images.SetKeyName(53, "Information-Technology-Services.png");
     this.dashBoardImages16.Images.SetKeyName(54, "Personal-Computers.png");
     this.dashBoardImages16.Images.SetKeyName(55, "Wireless-Communications.png");
     this.dashBoardImages16.Images.SetKeyName(56, "Diversified-Utilities-2.png");
     this.dashBoardImages16.Images.SetKeyName(57, "Electric-Utilities-2.png");
     this.dashBoardImages16.Images.SetKeyName(58, "Foreign-Utilities-2.png");
     this.dashBoardImages16.Images.SetKeyName(59, "Gas-Utilities.png");
     this.dashBoardImages16.Images.SetKeyName(60, "Water-Utilities.png");
     //
     // DashBoard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 23F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.dockingClientPanel1);
     this.Controls.Add(this.dashBoardToolStrip);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.Name = "DashBoard";
     this.Size = new System.Drawing.Size(781, 447);
     ((System.ComponentModel.ISupportInitialize)(this.dockingManager)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.addPortfolioPanel)).EndInit();
     this.addPortfolioPanel.ResumeLayout(false);
     this.addPortfolioPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.exchangeComboBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.accountsComboBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.priceLookUpCheckBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.priceDoubleTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.quantityTextBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.symbolTextBox)).EndInit();
     this.dashBoardToolStrip.ResumeLayout(false);
     this.dashBoardToolStrip.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Grid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.symbolAutoComplete)).EndInit();
     this.dockingClientPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        public clsPaisIdiomaConsignatario(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int nIdExportador, int nIdImportador, int nIdConsignatario, int nIdioma, ref System.Windows.Forms.ImageList bandeiras) : base(ref tratadorErro, ref ConnectionDB, EnderecoExecutavel, nIdioma, ref bandeiras)
        {
            m_nIdExportador    = nIdExportador;
            m_nIdImportador    = nIdImportador;
            m_nIdConsignatario = nIdConsignatario;

            this.carregaDadosBD();
        }
Пример #33
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMeters));
     this.panel1                   = new System.Windows.Forms.Panel();
     this.treeView1                = new System.Windows.Forms.TreeView();
     this.contextMenuStrip1        = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.新计量表ToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.修改计量表ToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.除计量表ToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1               = new System.Windows.Forms.ImageList(this.components);
     this.buttonClose              = new System.Windows.Forms.Button();
     this.buttonDel                = new System.Windows.Forms.Button();
     this.buttonModify             = new System.Windows.Forms.Button();
     this.buttonNew                = new System.Windows.Forms.Button();
     this.panel2                   = new System.Windows.Forms.Panel();
     this.comboBoxWyID             = new System.Windows.Forms.ComboBox();
     this.comboBoxRateID           = new System.Windows.Forms.ComboBox();
     this.comboBoxMeterClass       = new System.Windows.Forms.ComboBox();
     this.comboBoxTreeViewMeterPID = new WGSF.ComboBoxTreeView();
     this.textBoxMeterMaxNumber    = new System.Windows.Forms.TextBox();
     this.textBoxMeterMulti        = new System.Windows.Forms.TextBox();
     this.textBoxMeterName         = new System.Windows.Forms.TextBox();
     this.textBoxMeterID           = new System.Windows.Forms.TextBox();
     this.buttonCancel             = new System.Windows.Forms.Button();
     this.buttonSave               = new System.Windows.Forms.Button();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.checkBoxMeterSelfUse     = new System.Windows.Forms.CheckBox();
     this.checkBoxMeterSharing     = new System.Windows.Forms.CheckBox();
     this.checkBoxMeterUsing       = new System.Windows.Forms.CheckBox();
     this.label4                   = new System.Windows.Forms.Label();
     this.label6                   = new System.Windows.Forms.Label();
     this.label8                   = new System.Windows.Forms.Label();
     this.label7                   = new System.Windows.Forms.Label();
     this.label5                   = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.Controls.Add(this.treeView1);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Controls.Add(this.buttonDel);
     this.panel1.Controls.Add(this.buttonModify);
     this.panel1.Controls.Add(this.buttonNew);
     this.panel1.Location = new System.Drawing.Point(12, 12);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(467, 344);
     this.panel1.TabIndex = 0;
     //
     // treeView1
     //
     this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.treeView1.ContextMenuStrip   = this.contextMenuStrip1;
     this.treeView1.ImageIndex         = 0;
     this.treeView1.ImageList          = this.imageList1;
     this.treeView1.ItemHeight         = 32;
     this.treeView1.Location           = new System.Drawing.Point(4, 4);
     this.treeView1.Name               = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.ShowNodeToolTips   = true;
     this.treeView1.Size               = new System.Drawing.Size(460, 303);
     this.treeView1.TabIndex           = 4;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.新计量表ToolStripMenuItem,
         this.修改计量表ToolStripMenuItem,
         this.除计量表ToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(137, 70);
     //
     // 新计量表ToolStripMenuItem
     //
     this.新计量表ToolStripMenuItem.Name   = "新计量表ToolStripMenuItem";
     this.新计量表ToolStripMenuItem.Size   = new System.Drawing.Size(136, 22);
     this.新计量表ToolStripMenuItem.Text   = "新计量表";
     this.新计量表ToolStripMenuItem.Click += new System.EventHandler(this.新计量表ToolStripMenuItemClick);
     //
     // 修改计量表ToolStripMenuItem
     //
     this.修改计量表ToolStripMenuItem.Name   = "修改计量表ToolStripMenuItem";
     this.修改计量表ToolStripMenuItem.Size   = new System.Drawing.Size(136, 22);
     this.修改计量表ToolStripMenuItem.Text   = "修改计量表";
     this.修改计量表ToolStripMenuItem.Click += new System.EventHandler(this.修改计量表ToolStripMenuItemClick);
     //
     // 删除计量表ToolStripMenuItem
     //
     this.除计量表ToolStripMenuItem.Name   = "删除计量表ToolStripMenuItem";
     this.除计量表ToolStripMenuItem.Size   = new System.Drawing.Size(136, 22);
     this.除计量表ToolStripMenuItem.Text   = "删除计量表";
     this.除计量表ToolStripMenuItem.Click += new System.EventHandler(this.除计量表ToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "无表类.png");
     this.imageList1.Images.SetKeyName(1, "水表(使用中).png");
     this.imageList1.Images.SetKeyName(2, "水表(未使用).png");
     this.imageList1.Images.SetKeyName(3, "电表(使用中).png");
     this.imageList1.Images.SetKeyName(4, "电表(未使用).png");
     this.imageList1.Images.SetKeyName(5, "气表(使用中).png");
     this.imageList1.Images.SetKeyName(6, "气表(未使用).png");
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(389, 313);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 3;
     this.buttonClose.Text     = "退出";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // buttonDel
     //
     this.buttonDel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonDel.Location = new System.Drawing.Point(166, 313);
     this.buttonDel.Name     = "buttonDel";
     this.buttonDel.Size     = new System.Drawing.Size(75, 23);
     this.buttonDel.TabIndex = 2;
     this.buttonDel.Text     = "删除计量表";
     this.buttonDel.UseVisualStyleBackColor = true;
     this.buttonDel.Click += new System.EventHandler(this.ButtonDelClick);
     //
     // buttonModify
     //
     this.buttonModify.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonModify.Location = new System.Drawing.Point(85, 313);
     this.buttonModify.Name     = "buttonModify";
     this.buttonModify.Size     = new System.Drawing.Size(75, 23);
     this.buttonModify.TabIndex = 1;
     this.buttonModify.Text     = "修改计量表";
     this.buttonModify.UseVisualStyleBackColor = true;
     this.buttonModify.Click += new System.EventHandler(this.ButtonModifyClick);
     //
     // buttonNew
     //
     this.buttonNew.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonNew.Location = new System.Drawing.Point(4, 313);
     this.buttonNew.Name     = "buttonNew";
     this.buttonNew.Size     = new System.Drawing.Size(75, 23);
     this.buttonNew.TabIndex = 0;
     this.buttonNew.Text     = "新计量表";
     this.buttonNew.UseVisualStyleBackColor = true;
     this.buttonNew.Click += new System.EventHandler(this.ButtonNewClick);
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.Controls.Add(this.comboBoxWyID);
     this.panel2.Controls.Add(this.comboBoxRateID);
     this.panel2.Controls.Add(this.comboBoxMeterClass);
     this.panel2.Controls.Add(this.comboBoxTreeViewMeterPID);
     this.panel2.Controls.Add(this.textBoxMeterMaxNumber);
     this.panel2.Controls.Add(this.textBoxMeterMulti);
     this.panel2.Controls.Add(this.textBoxMeterName);
     this.panel2.Controls.Add(this.textBoxMeterID);
     this.panel2.Controls.Add(this.buttonCancel);
     this.panel2.Controls.Add(this.buttonSave);
     this.panel2.Controls.Add(this.groupBox1);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.label6);
     this.panel2.Controls.Add(this.label8);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Location = new System.Drawing.Point(485, 12);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(239, 344);
     this.panel2.TabIndex = 0;
     //
     // comboBoxWyID
     //
     this.comboBoxWyID.FormattingEnabled = true;
     this.comboBoxWyID.Location          = new System.Drawing.Point(70, 276);
     this.comboBoxWyID.Name     = "comboBoxWyID";
     this.comboBoxWyID.Size     = new System.Drawing.Size(166, 20);
     this.comboBoxWyID.TabIndex = 7;
     //
     // comboBoxRateID
     //
     this.comboBoxRateID.FormattingEnabled = true;
     this.comboBoxRateID.Location          = new System.Drawing.Point(70, 248);
     this.comboBoxRateID.Name     = "comboBoxRateID";
     this.comboBoxRateID.Size     = new System.Drawing.Size(166, 20);
     this.comboBoxRateID.TabIndex = 6;
     //
     // comboBoxMeterClass
     //
     this.comboBoxMeterClass.FormattingEnabled = true;
     this.comboBoxMeterClass.Items.AddRange(new object[] {
         "水表",
         "电表",
         "气表"
     });
     this.comboBoxMeterClass.Location = new System.Drawing.Point(70, 91);
     this.comboBoxMeterClass.Name     = "comboBoxMeterClass";
     this.comboBoxMeterClass.Size     = new System.Drawing.Size(166, 20);
     this.comboBoxMeterClass.TabIndex = 3;
     //
     // comboBoxTreeViewMeterPID
     //
     this.comboBoxTreeViewMeterPID.FormattingEnabled = true;
     this.comboBoxTreeViewMeterPID.Location          = new System.Drawing.Point(70, 33);
     this.comboBoxTreeViewMeterPID.Name     = "comboBoxTreeViewMeterPID";
     this.comboBoxTreeViewMeterPID.Size     = new System.Drawing.Size(166, 20);
     this.comboBoxTreeViewMeterPID.TabIndex = 1;
     //
     // textBoxMeterMaxNumber
     //
     this.textBoxMeterMaxNumber.Location     = new System.Drawing.Point(70, 220);
     this.textBoxMeterMaxNumber.Name         = "textBoxMeterMaxNumber";
     this.textBoxMeterMaxNumber.Size         = new System.Drawing.Size(166, 21);
     this.textBoxMeterMaxNumber.TabIndex     = 5;
     this.textBoxMeterMaxNumber.TextChanged += new System.EventHandler(this.TextBoxMeterMaxNumberTextChanged);
     //
     // textBoxMeterMulti
     //
     this.textBoxMeterMulti.Location     = new System.Drawing.Point(70, 192);
     this.textBoxMeterMulti.Name         = "textBoxMeterMulti";
     this.textBoxMeterMulti.Size         = new System.Drawing.Size(166, 21);
     this.textBoxMeterMulti.TabIndex     = 4;
     this.textBoxMeterMulti.TextChanged += new System.EventHandler(this.TextBoxMeterMultiTextChanged);
     //
     // textBoxMeterName
     //
     this.textBoxMeterName.Location = new System.Drawing.Point(70, 62);
     this.textBoxMeterName.Name     = "textBoxMeterName";
     this.textBoxMeterName.Size     = new System.Drawing.Size(166, 21);
     this.textBoxMeterName.TabIndex = 2;
     //
     // textBoxMeterID
     //
     this.textBoxMeterID.Location = new System.Drawing.Point(70, 4);
     this.textBoxMeterID.Name     = "textBoxMeterID";
     this.textBoxMeterID.ReadOnly = true;
     this.textBoxMeterID.Size     = new System.Drawing.Size(166, 21);
     this.textBoxMeterID.TabIndex = 0;
     //
     // buttonCancel
     //
     this.buttonCancel.Enabled  = false;
     this.buttonCancel.Location = new System.Drawing.Point(161, 313);
     this.buttonCancel.Name     = "buttonCancel";
     this.buttonCancel.Size     = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex = 9;
     this.buttonCancel.Text     = "取消";
     this.buttonCancel.UseVisualStyleBackColor = true;
     this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick);
     //
     // buttonSave
     //
     this.buttonSave.Enabled  = false;
     this.buttonSave.Location = new System.Drawing.Point(80, 313);
     this.buttonSave.Name     = "buttonSave";
     this.buttonSave.Size     = new System.Drawing.Size(75, 23);
     this.buttonSave.TabIndex = 8;
     this.buttonSave.Text     = "保存";
     this.buttonSave.UseVisualStyleBackColor = true;
     this.buttonSave.Click += new System.EventHandler(this.ButtonSaveClick);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.checkBoxMeterSelfUse);
     this.groupBox1.Controls.Add(this.checkBoxMeterSharing);
     this.groupBox1.Controls.Add(this.checkBoxMeterUsing);
     this.groupBox1.Location = new System.Drawing.Point(3, 115);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(233, 61);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     //
     // checkBoxMeterSelfUse
     //
     this.checkBoxMeterSelfUse.Location = new System.Drawing.Point(7, 35);
     this.checkBoxMeterSelfUse.Name     = "checkBoxMeterSelfUse";
     this.checkBoxMeterSelfUse.Size     = new System.Drawing.Size(104, 24);
     this.checkBoxMeterSelfUse.TabIndex = 2;
     this.checkBoxMeterSelfUse.Text     = "下级表未全";
     this.checkBoxMeterSelfUse.UseVisualStyleBackColor = true;
     //
     // checkBoxMeterSharing
     //
     this.checkBoxMeterSharing.Location = new System.Drawing.Point(123, 10);
     this.checkBoxMeterSharing.Name     = "checkBoxMeterSharing";
     this.checkBoxMeterSharing.Size     = new System.Drawing.Size(104, 24);
     this.checkBoxMeterSharing.TabIndex = 1;
     this.checkBoxMeterSharing.Text     = "分摊量计费";
     this.checkBoxMeterSharing.UseVisualStyleBackColor = true;
     //
     // checkBoxMeterUsing
     //
     this.checkBoxMeterUsing.Location = new System.Drawing.Point(7, 10);
     this.checkBoxMeterUsing.Name     = "checkBoxMeterUsing";
     this.checkBoxMeterUsing.Size     = new System.Drawing.Size(104, 24);
     this.checkBoxMeterUsing.TabIndex = 0;
     this.checkBoxMeterUsing.Text     = "使用中";
     this.checkBoxMeterUsing.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(3, 61);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(100, 23);
     this.label4.TabIndex  = 0;
     this.label4.Text      = "表名:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(3, 219);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(100, 23);
     this.label6.TabIndex  = 0;
     this.label6.Text      = "最大计数:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label8
     //
     this.label8.Location  = new System.Drawing.Point(3, 275);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(100, 23);
     this.label8.TabIndex  = 0;
     this.label8.Text      = "属于物业:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(3, 247);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(100, 23);
     this.label7.TabIndex  = 0;
     this.label7.Text      = "费率:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(3, 191);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(100, 23);
     this.label5.TabIndex  = 0;
     this.label5.Text      = "倍率:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(3, 90);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(100, 23);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "表类:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(3, 32);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(100, 23);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "上级表号:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(3, 3);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(100, 23);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "表号:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FormMeters
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(736, 368);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name  = "FormMeters";
     this.Text  = "计量表";
     this.Load += new System.EventHandler(this.FormMetersLoad);
     this.panel1.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFolders));
     ctrlTreeView    = new System.Windows.Forms.TreeView();
     ctrlCancel      = new System.Windows.Forms.Button();
     ctrlAdd         = new System.Windows.Forms.Button();
     icons           = new System.Windows.Forms.ImageList(components);
     splitContainer1 = new System.Windows.Forms.SplitContainer();
     ctrlList        = new System.Windows.Forms.ListView();
     colId           = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     colType         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     colName         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     label1          = new System.Windows.Forms.Label();
     ctrlPath        = new System.Windows.Forms.Label();
     splitContainer1.Panel1.SuspendLayout();
     splitContainer1.Panel2.SuspendLayout();
     splitContainer1.SuspendLayout();
     SuspendLayout();
     //
     // ctrlTreeView
     //
     ctrlTreeView.Dock         = System.Windows.Forms.DockStyle.Fill;
     ctrlTreeView.Location     = new System.Drawing.Point(0, 0);
     ctrlTreeView.Name         = "ctrlTreeView";
     ctrlTreeView.Size         = new System.Drawing.Size(124, 302);
     ctrlTreeView.TabIndex     = 0;
     ctrlTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(ctrlTreeView_AfterSelect);
     //
     // ctrlCancel
     //
     ctrlCancel.AccessibleRole          = System.Windows.Forms.AccessibleRole.None;
     ctrlCancel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     ctrlCancel.CausesValidation        = false;
     ctrlCancel.Location                = new System.Drawing.Point(433, 332);
     ctrlCancel.Name                    = "ctrlCancel";
     ctrlCancel.Size                    = new System.Drawing.Size(90, 24);
     ctrlCancel.TabIndex                = 29;
     ctrlCancel.Text                    = "Cancel";
     ctrlCancel.UseVisualStyleBackColor = true;
     ctrlCancel.Click                  += new System.EventHandler(ctrlCancel_Click);
     //
     // ctrlAdd
     //
     ctrlAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     ctrlAdd.FlatAppearance.BorderSize = 2;
     ctrlAdd.Location = new System.Drawing.Point(337, 332);
     ctrlAdd.Name     = "ctrlAdd";
     ctrlAdd.Size     = new System.Drawing.Size(90, 24);
     ctrlAdd.TabIndex = 28;
     ctrlAdd.Text     = "Add";
     ctrlAdd.UseVisualStyleBackColor = true;
     ctrlAdd.Click += new System.EventHandler(ctrlAdd_Click);
     //
     // icons
     //
     icons.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("icons.ImageStream")));
     icons.TransparentColor = System.Drawing.Color.Transparent;
     icons.Images.SetKeyName(0, "folder.jpg");
     //
     // splitContainer1
     //
     splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     splitContainer1.Location = new System.Drawing.Point(0, 24);
     splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     splitContainer1.Panel1.Controls.Add(ctrlTreeView);
     //
     // splitContainer1.Panel2
     //
     splitContainer1.Panel2.Controls.Add(ctrlList);
     splitContainer1.Size             = new System.Drawing.Size(535, 302);
     splitContainer1.SplitterDistance = 124;
     splitContainer1.TabIndex         = 30;
     //
     // ctrlList
     //
     ctrlList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         colId,
         colType,
         colName
     });
     ctrlList.Dock          = System.Windows.Forms.DockStyle.Fill;
     ctrlList.FullRowSelect = true;
     ctrlList.Location      = new System.Drawing.Point(0, 0);
     ctrlList.Name          = "ctrlList";
     ctrlList.Size          = new System.Drawing.Size(407, 302);
     ctrlList.Sorting       = System.Windows.Forms.SortOrder.Ascending;
     ctrlList.TabIndex      = 0;
     ctrlList.UseCompatibleStateImageBehavior = false;
     ctrlList.View = System.Windows.Forms.View.Details;
     ctrlList.SelectedIndexChanged += new System.EventHandler(ctrlList_SelectedIndexChanged);
     //
     // colId
     //
     colId.Text = "Id";
     //
     // colType
     //
     colType.Text = "Type";
     //
     // colName
     //
     colName.Text  = "Name";
     colName.Width = 266;
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(2, 6);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(32, 13);
     label1.TabIndex = 31;
     label1.Text     = "Path:";
     //
     // ctrlPath
     //
     ctrlPath.AutoSize = true;
     ctrlPath.Location = new System.Drawing.Point(36, 6);
     ctrlPath.Name     = "ctrlPath";
     ctrlPath.Size     = new System.Drawing.Size(0, 13);
     ctrlPath.TabIndex = 31;
     //
     // FrmFolders
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(535, 361);
     Controls.Add(ctrlPath);
     Controls.Add(label1);
     Controls.Add(splitContainer1);
     Controls.Add(ctrlCancel);
     Controls.Add(ctrlAdd);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "FrmFolders";
     ShowIcon        = false;
     ShowInTaskbar   = false;
     Text            = "Folders";
     splitContainer1.Panel1.ResumeLayout(false);
     splitContainer1.Panel2.ResumeLayout(false);
     splitContainer1.ResumeLayout(false);
     ResumeLayout(false);
     PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ListViewItem listViewItem1          = new System.Windows.Forms.ListViewItem("Mystic", 1);
     System.Windows.Forms.ListViewItem listViewItem2          = new System.Windows.Forms.ListViewItem("Valor", 2);
     System.Windows.Forms.ListViewItem listViewItem3          = new System.Windows.Forms.ListViewItem("Instinct", 0);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TeamSelect));
     this.buttonOk     = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.listView     = new System.Windows.Forms.ListView();
     this.imageList    = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // buttonOk
     //
     this.buttonOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOk.Location = new System.Drawing.Point(340, 129);
     this.buttonOk.Margin   = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.buttonOk.Name     = "buttonOk";
     this.buttonOk.Size     = new System.Drawing.Size(73, 28);
     this.buttonOk.TabIndex = 86;
     this.buttonOk.Text     = "Ok";
     this.buttonOk.UseVisualStyleBackColor = true;
     this.buttonOk.Click += new System.EventHandler(this.ButtonOkClick);
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(419, 129);
     this.buttonCancel.Margin                  = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(73, 28);
     this.buttonCancel.TabIndex                = 85;
     this.buttonCancel.Text                    = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // listView
     //
     this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.listView.FullRowSelect = true;
     this.listView.GridLines     = true;
     this.listView.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
         listViewItem1,
         listViewItem2,
         listViewItem3
     });
     this.listView.LargeImageList = this.imageList;
     this.listView.Location       = new System.Drawing.Point(21, 16);
     this.listView.Margin         = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.listView.MultiSelect    = false;
     this.listView.Name           = "listView";
     this.listView.Size           = new System.Drawing.Size(473, 107);
     this.listView.TabIndex       = 87;
     this.listView.UseCompatibleStateImageBehavior = false;
     //
     // imageList
     //
     this.imageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "team-instinct");
     this.imageList.Images.SetKeyName(1, "team-mystic");
     this.imageList.Images.SetKeyName(2, "team-valor");
     //
     // TeamSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.buttonCancel;
     this.ClientSize          = new System.Drawing.Size(507, 171);
     this.Controls.Add(this.listView);
     this.Controls.Add(this.buttonOk);
     this.Controls.Add(this.buttonCancel);
     this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.Name   = "TeamSelect";
     this.Text   = "PokemonGoBot | Select Team";
     this.ResumeLayout(false);
 }
Пример #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoomFrm));
     listViewMessage   = new System.Windows.Forms.ListView();
     msg               = new System.Windows.Forms.ColumnHeader();
     likes             = new System.Windows.Forms.ColumnHeader();
     txtNewMessage     = new Proshot.UtilityLib.TextBox();
     lblNewMessage     = new Proshot.UtilityLib.Label();
     splitContainer    = new System.Windows.Forms.SplitContainer();
     listViewRoomUsers = new Proshot.UtilityLib.ListView();
     colUserIcon       = new System.Windows.Forms.ColumnHeader();
     colUserName       = new System.Windows.Forms.ColumnHeader();
     imgList           = new System.Windows.Forms.ImageList(components);
     btnSend           = new Proshot.UtilityLib.Button();
     mnuMain           = new Proshot.UtilityLib.MenuStrip();
     mniChat           = new System.Windows.Forms.ToolStripMenuItem();
     mniSave           = new System.Windows.Forms.ToolStripMenuItem();
     mniExit           = new System.Windows.Forms.ToolStripMenuItem();
     contextMenuStripListViewMessage = new System.Windows.Forms.ContextMenuStrip(components);
     deleteToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     likeToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(splitContainer)).BeginInit();
     splitContainer.Panel1.SuspendLayout();
     splitContainer.Panel2.SuspendLayout();
     splitContainer.SuspendLayout();
     mnuMain.SuspendLayout();
     contextMenuStripListViewMessage.SuspendLayout();
     SuspendLayout();
     //
     // listViewMessage
     //
     listViewMessage.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         msg,
         likes
     });
     listViewMessage.Dock     = System.Windows.Forms.DockStyle.Fill;
     listViewMessage.Location = new System.Drawing.Point(0, 0);
     listViewMessage.Name     = "listViewMessage";
     listViewMessage.Size     = new System.Drawing.Size(331, 195);
     listViewMessage.TabIndex = 10;
     listViewMessage.UseCompatibleStateImageBehavior = false;
     listViewMessage.View = System.Windows.Forms.View.Details;
     listViewMessage.SelectedIndexChanged += new System.EventHandler(listViewMessage_SelectedIndexChanged);
     listViewMessage.MouseClick           += new System.Windows.Forms.MouseEventHandler(listViewMessage_MouseClick);
     //
     // msg
     //
     msg.Text  = "Message";
     msg.Width = 290;
     //
     // likes
     //
     likes.Text  = "Likes";
     likes.Width = 38;
     //
     // txtNewMessage
     //
     txtNewMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     txtNewMessage.BorderWidth = 1F;
     txtNewMessage.FloatValue  = 0D;
     txtNewMessage.Location    = new System.Drawing.Point(145, 223);
     txtNewMessage.Name        = "txtNewMessage";
     txtNewMessage.Size        = new System.Drawing.Size(267, 21);
     txtNewMessage.TabIndex    = 1;
     //
     // lblNewMessage
     //
     lblNewMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     lblNewMessage.AutoSize    = true;
     lblNewMessage.BorderWidth = 1F;
     lblNewMessage.Location    = new System.Drawing.Point(85, 226);
     lblNewMessage.Name        = "lblNewMessage";
     lblNewMessage.Size        = new System.Drawing.Size(56, 13);
     lblNewMessage.TabIndex    = 2;
     lblNewMessage.Text        = "Message :";
     //
     // splitContainer
     //
     splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     splitContainer.Location = new System.Drawing.Point(3, 24);
     splitContainer.Name     = "splitContainer";
     //
     // splitContainer.Panel1
     //
     splitContainer.Panel1.Controls.Add(listViewRoomUsers);
     splitContainer.Panel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     splitContainer.Panel1.Paint      += new System.Windows.Forms.PaintEventHandler(splitContainer_Panel1_Paint);
     splitContainer.Panel1MinSize      = 130;
     //
     // splitContainer.Panel2
     //
     splitContainer.Panel2.Controls.Add(listViewMessage);
     splitContainer.Panel2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     splitContainer.Size             = new System.Drawing.Size(477, 195);
     splitContainer.SplitterDistance = 137;
     splitContainer.TabIndex         = 8;
     //
     // listViewRoomUsers
     //
     listViewRoomUsers.Alignment = System.Windows.Forms.ListViewAlignment.Default;
     listViewRoomUsers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         colUserIcon,
         colUserName
     });
     listViewRoomUsers.Dock              = System.Windows.Forms.DockStyle.Fill;
     listViewRoomUsers.FullRowSelect     = true;
     listViewRoomUsers.HeaderStyle       = System.Windows.Forms.ColumnHeaderStyle.None;
     listViewRoomUsers.HideSelection     = false;
     listViewRoomUsers.LabelWrap         = false;
     listViewRoomUsers.Location          = new System.Drawing.Point(0, 0);
     listViewRoomUsers.MultiSelect       = false;
     listViewRoomUsers.Name              = "listViewRoomUsers";
     listViewRoomUsers.RightToLeftLayout = true;
     listViewRoomUsers.Size              = new System.Drawing.Size(137, 195);
     listViewRoomUsers.SmallImageList    = imgList;
     listViewRoomUsers.TabIndex          = 8;
     listViewRoomUsers.UseCompatibleStateImageBehavior = false;
     listViewRoomUsers.View = System.Windows.Forms.View.Details;
     listViewRoomUsers.SelectedIndexChanged += new System.EventHandler(listViewRoomUsers_SelectedIndexChanged);
     //
     // colUserIcon
     //
     colUserIcon.Text  = "";
     colUserIcon.Width = 23;
     //
     // colUserName
     //
     colUserName.Text  = "";
     colUserName.Width = 85;
     //
     // imgList
     //
     imgList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     imgList.TransparentColor = System.Drawing.Color.Transparent;
     imgList.Images.Add((Image)resources.GetObject("InLine.Image"));
     imgList.Images.SetKeyName(0, "Smiely.ico");
     imgList.Images.SetKeyName(1, "Private.ico");
     imgList.Images.SetKeyName(2, "SendMessage.ico");
     imgList.Images.SetKeyName(3, "Enter.ico");
     imgList.Images.SetKeyName(4, "Exit.ico");
     imgList.Images.SetKeyName(5, "InLine.png");
     //
     // btnSend
     //
     btnSend.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnSend.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     btnSend.ImageKey   = "SendMessage.ico";
     btnSend.ImageList  = imgList;
     btnSend.Location   = new System.Drawing.Point(417, 222);
     btnSend.Name       = "btnSend";
     btnSend.Size       = new System.Drawing.Size(67, 23);
     btnSend.TabIndex   = 3;
     btnSend.Text       = "Send";
     btnSend.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     btnSend.UseVisualStyleBackColor = true;
     btnSend.Click += new System.EventHandler(btnSend_Click);
     //
     // mnuMain
     //
     mnuMain.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("mnuMain.BackgroundImage")));
     mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         mniChat
     });
     mnuMain.Location = new System.Drawing.Point(0, 0);
     mnuMain.Name     = "mnuMain";
     mnuMain.Size     = new System.Drawing.Size(487, 24);
     mnuMain.TabIndex = 7;
     //
     // mniChat
     //
     mniChat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         mniSave,
         mniExit
     });
     mniChat.Name = "mniChat";
     mniChat.Size = new System.Drawing.Size(44, 20);
     mniChat.Text = "Chat";
     //
     // mniSave
     //
     mniSave.Image  = ((System.Drawing.Image)(resources.GetObject("mniSave.Image")));
     mniSave.Name   = "mniSave";
     mniSave.Size   = new System.Drawing.Size(98, 22);
     mniSave.Text   = "Save";
     mniSave.Click += new System.EventHandler(mniSave_Click);
     //
     // mniExit
     //
     mniExit.Image  = ((System.Drawing.Image)(resources.GetObject("mniExit.Image")));
     mniExit.Name   = "mniExit";
     mniExit.Size   = new System.Drawing.Size(98, 22);
     mniExit.Text   = "Exit";
     mniExit.Click += new System.EventHandler(mniExit_Click);
     //
     // contextMenuStripListViewMessage
     //
     contextMenuStripListViewMessage.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         deleteToolStripMenuItem,
         likeToolStripMenuItem
     });
     contextMenuStripListViewMessage.Name = "contextMenuStripListViewMessage";
     contextMenuStripListViewMessage.Size = new System.Drawing.Size(108, 48);
     //
     // deleteToolStripMenuItem
     //
     deleteToolStripMenuItem.Name   = "deleteToolStripMenuItem";
     deleteToolStripMenuItem.Size   = new System.Drawing.Size(50, 22);
     deleteToolStripMenuItem.Text   = "Delete";
     deleteToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("Garbage.Image")));
     deleteToolStripMenuItem.Click += new System.EventHandler(deleteToolStripMenuItem_Click);
     //
     // likeToolStripMenuItem
     //
     likeToolStripMenuItem.Name   = "likeToolStripMenuItem";
     likeToolStripMenuItem.Size   = new System.Drawing.Size(50, 22);
     likeToolStripMenuItem.Text   = "Like";
     likeToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("Like.Image")));
     likeToolStripMenuItem.Click += new System.EventHandler(likeToolStripMenuItem_Click);
     //
     // RoomFrm
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(487, 258);
     Controls.Add(btnSend);
     Controls.Add(lblNewMessage);
     Controls.Add(txtNewMessage);
     Controls.Add(mnuMain);
     Controls.Add(splitContainer);
     Font          = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
     MinimumSize   = new System.Drawing.Size(354, 292);
     Name          = "RoomFrm";
     ShowIcon      = false;
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Activated    += new System.EventHandler(RoomFrm_Activated);
     Deactivate   += new System.EventHandler(RoomFrm_Deactivate);
     FormClosing  += new System.Windows.Forms.FormClosingEventHandler(RoomFrm_FormClosing);
     Load         += new System.EventHandler(RoomFrm_Load);
     splitContainer.Panel1.ResumeLayout(false);
     splitContainer.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(splitContainer)).EndInit();
     splitContainer.ResumeLayout(false);
     mnuMain.ResumeLayout(false);
     mnuMain.PerformLayout();
     contextMenuStripListViewMessage.ResumeLayout(false);
     ResumeLayout(false);
     PerformLayout();
 }
        public clsProdutosCertificadoOrigem(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int nIdExportador, string strIdPE, int nIdTipoCO, int nTipoClassificacao, ref System.Windows.Forms.ImageList ilBandeiras)
        {
            m_cls_ter_tratadorErro  = tratadorErro;
            m_cls_dba_ConnectionDB  = ConnectionDB;
            m_strEnderecoExecutavel = EnderecoExecutavel;
            m_nIdExportador         = nIdExportador;
            m_strIdPE            = strIdPE;
            m_nIdTipoCO          = nIdTipoCO;
            m_nTipoClassificacao = nTipoClassificacao;
            m_ilBandeiras        = ilBandeiras;
            vCarregaDados();

            mdlManipuladorArquivo.clsManipuladorArquivoIni obj = new mdlManipuladorArquivo.clsManipuladorArquivoIni(m_strEnderecoExecutavel + "sisco.ini");
            m_bMostrarBaloes = obj.retornaValor(mdlConstantes.clsConstantes.SHOW_BALLOONTIP_SESSAO, mdlConstantes.clsConstantes.SHOW_BALLOONTIP_VARIAVEL, true);
        }
Пример #38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.Location = new System.Drawing.Point(99, 236);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(645, 62);
     this.textBox1.TabIndex = 0;
     this.textBox1.Text = "test";
     this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(12, 333);
     this.progressBar1.Maximum = 6;
     this.progressBar1.Name = "progressBar1";
     this.progressBar1.Size = new System.Drawing.Size(293, 23);
     this.progressBar1.TabIndex = 1;
     this.progressBar1.Value = 6;
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Location = new System.Drawing.Point(99, 49);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(121, 24);
     this.comboBox1.TabIndex = 3;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.textBox1);
     this.Name = "Form1";
     this.Text = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 // ***************************************************************************************************
 #endregion
 #region Constructor
 public clsEsquemaPagamentoFaturaProforma(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string strEnderecoExecutavel, ref System.Windows.Forms.ImageList Bandeiras, int idExportador, string idPe) : base(ref tratadorErro, ref ConnectionDB, strEnderecoExecutavel, ref Bandeiras, idExportador)
 {
     m_strIdPE = idPe;
     this.CarregaDados();
 }
Пример #40
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MenuItemImage"/> class.
 /// </summary>
 /// <param name="text">The text.</param>
 /// <param name="p_ImageList">The image list.</param>
 /// <param name="p_ImageIndex">Index of the image.</param>
 public MenuItemImage(System.String text, System.Windows.Forms.ImageList p_ImageList, int p_ImageIndex)
     : base(text)
 {
     SetImage(p_ImageList, p_ImageIndex);
 }
Пример #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Client));
     this.panel1 = new System.Windows.Forms.Panel();
     this.SidePanel = new System.Windows.Forms.Panel();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.Order_button = new System.Windows.Forms.Button();
     this.Add_menu = new System.Windows.Forms.Button();
     this.listView1 = new System.Windows.Forms.ListView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.Delete_menu = new System.Windows.Forms.Button();
     this.Order_listView = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.amount_label = new System.Windows.Forms.Label();
     this.price_label = new System.Windows.Forms.Label();
     this.listView2 = new System.Windows.Forms.ListView();
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.listView3 = new System.Windows.Forms.ListView();
     this.imageList3 = new System.Windows.Forms.ImageList(this.components);
     this.Call_button = new System.Windows.Forms.Button();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.Selected_menu_label = new System.Windows.Forms.Label();
     this.Selected_menu_price_label = new System.Windows.Forms.Label();
     this.imageList4 = new System.Windows.Forms.ImageList(this.components);
     this.imageList5 = new System.Windows.Forms.ImageList(this.components);
     this.imageList6 = new System.Windows.Forms.ImageList(this.components);
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel7 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.Selected_menu_price_label2 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel4.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel1.Controls.Add(this.SidePanel);
     this.panel1.Controls.Add(this.button3);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(244, 681);
     this.panel1.TabIndex = 0;
     this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.Panel1_Paint);
     //
     // SidePanel
     //
     this.SidePanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(8)))), ((int)(((byte)(55)))));
     this.SidePanel.Location = new System.Drawing.Point(1, 56);
     this.SidePanel.Name = "SidePanel";
     this.SidePanel.Size = new System.Drawing.Size(12, 50);
     this.SidePanel.TabIndex = 4;
     //
     // button3
     //
     this.button3.FlatAppearance.BorderSize = 0;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.Font = new System.Drawing.Font("Century Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.ForeColor = System.Drawing.Color.White;
     this.button3.Image = ((System.Drawing.Image)(resources.GetObject("button3.Image")));
     this.button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button3.Location = new System.Drawing.Point(14, 154);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(230, 50);
     this.button3.TabIndex = 4;
     this.button3.Text = "       음료수";
     this.button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3_Click);
     //
     // button2
     //
     this.button2.FlatAppearance.BorderSize = 0;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font = new System.Drawing.Font("Century Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor = System.Drawing.Color.White;
     this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
     this.button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button2.Location = new System.Drawing.Point(14, 104);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(230, 50);
     this.button2.TabIndex = 4;
     this.button2.Text = "       사이드메뉴";
     this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("Century Gothic", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor = System.Drawing.Color.White;
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location = new System.Drawing.Point(14, 54);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(230, 50);
     this.button1.TabIndex = 4;
     this.button1.Text = "       주메뉴";
     this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(8)))), ((int)(((byte)(55)))));
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(244, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1020, 9);
     this.panel2.TabIndex = 1;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(8)))), ((int)(((byte)(55)))));
     this.panel3.Controls.Add(this.label3);
     this.panel3.Controls.Add(this.label2);
     this.panel3.Location = new System.Drawing.Point(283, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(129, 106);
     this.panel3.TabIndex = 2;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.999999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(12, 50);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 15);
     this.label3.TabIndex = 3;
     this.label3.Text = "Restourents";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(11, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(45, 20);
     this.label2.TabIndex = 3;
     this.label2.Text = "봉식당";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(1031, 168);
     this.textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(195, 136);
     this.textBox1.TabIndex = 13;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.label1.Location = new System.Drawing.Point(1090, 138);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(80, 21);
     this.label1.TabIndex = 12;
     this.label1.Text = "요청 사항";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.label4.Location = new System.Drawing.Point(886, 138);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(74, 21);
     this.label4.TabIndex = 11;
     this.label4.Text = "주문목록";
     //
     // Order_button
     //
     this.Order_button.BackColor = System.Drawing.SystemColors.ButtonShadow;
     this.Order_button.FlatAppearance.BorderSize = 0;
     this.Order_button.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Order_button.Font = new System.Drawing.Font("맑은 고딕", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.Order_button.ForeColor = System.Drawing.Color.White;
     this.Order_button.Location = new System.Drawing.Point(1031, 559);
     this.Order_button.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Order_button.Name = "Order_button";
     this.Order_button.Size = new System.Drawing.Size(197, 98);
     this.Order_button.TabIndex = 10;
     this.Order_button.Text = "주문하기";
     this.Order_button.UseVisualStyleBackColor = false;
     this.Order_button.Click += new System.EventHandler(this.Order_button_Click);
     //
     // Add_menu
     //
     this.Add_menu.Location = new System.Drawing.Point(970, 399);
     this.Add_menu.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Add_menu.Name = "Add_menu";
     this.Add_menu.Size = new System.Drawing.Size(28, 25);
     this.Add_menu.TabIndex = 9;
     this.Add_menu.Text = "+";
     this.Add_menu.UseVisualStyleBackColor = true;
     this.Add_menu.Click += new System.EventHandler(this.Add_menu_Click);
     //
     // listView1
     //
     this.listView1.LargeImageList = this.imageList1;
     this.listView1.Location = new System.Drawing.Point(283, 168);
     this.listView1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(560, 256);
     this.listView1.TabIndex = 7;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView1_ItemSelectionChanged);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(120, 120);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // Delete_menu
     //
     this.Delete_menu.Location = new System.Drawing.Point(849, 399);
     this.Delete_menu.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Delete_menu.Name = "Delete_menu";
     this.Delete_menu.Size = new System.Drawing.Size(27, 25);
     this.Delete_menu.TabIndex = 14;
     this.Delete_menu.Text = "-";
     this.Delete_menu.UseVisualStyleBackColor = true;
     this.Delete_menu.Click += new System.EventHandler(this.Delete_menu_Click);
     //
     // Order_listView
     //
     this.Order_listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.Order_listView.Location = new System.Drawing.Point(849, 168);
     this.Order_listView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Order_listView.Name = "Order_listView";
     this.Order_listView.Size = new System.Drawing.Size(149, 192);
     this.Order_listView.TabIndex = 15;
     this.Order_listView.UseCompatibleStateImageBehavior = false;
     this.Order_listView.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "메뉴";
     this.columnHeader1.Width = 104;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "수량";
     //
     // amount_label
     //
     this.amount_label.AutoSize = true;
     this.amount_label.Location = new System.Drawing.Point(917, 406);
     this.amount_label.Name = "amount_label";
     this.amount_label.Size = new System.Drawing.Size(11, 12);
     this.amount_label.TabIndex = 16;
     this.amount_label.Text = "0";
     //
     // price_label
     //
     this.price_label.AutoSize = true;
     this.price_label.Location = new System.Drawing.Point(846, 373);
     this.price_label.Name = "price_label";
     this.price_label.Size = new System.Drawing.Size(47, 12);
     this.price_label.TabIndex = 17;
     this.price_label.Text = "가격 : 0";
     //
     // listView2
     //
     this.listView2.LargeImageList = this.imageList2;
     this.listView2.Location = new System.Drawing.Point(283, 168);
     this.listView2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.listView2.Name = "listView2";
     this.listView2.Size = new System.Drawing.Size(560, 256);
     this.listView2.TabIndex = 18;
     this.listView2.UseCompatibleStateImageBehavior = false;
     this.listView2.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView2_ItemSelectionChanged);
     //
     // imageList2
     //
     this.imageList2.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList2.ImageSize = new System.Drawing.Size(120, 120);
     this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
     //
     // listView3
     //
     this.listView3.LargeImageList = this.imageList3;
     this.listView3.Location = new System.Drawing.Point(283, 168);
     this.listView3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.listView3.Name = "listView3";
     this.listView3.Size = new System.Drawing.Size(560, 256);
     this.listView3.TabIndex = 19;
     this.listView3.UseCompatibleStateImageBehavior = false;
     this.listView3.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listView3_ItemSelectionChanged);
     //
     // imageList3
     //
     this.imageList3.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList3.ImageSize = new System.Drawing.Size(120, 120);
     this.imageList3.TransparentColor = System.Drawing.Color.Transparent;
     //
     // Call_button
     //
     this.Call_button.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.Call_button.FlatAppearance.BorderSize = 0;
     this.Call_button.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Call_button.Font = new System.Drawing.Font("맑은 고딕", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.Call_button.ForeColor = System.Drawing.Color.White;
     this.Call_button.Location = new System.Drawing.Point(1031, 446);
     this.Call_button.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Call_button.Name = "Call_button";
     this.Call_button.Size = new System.Drawing.Size(197, 98);
     this.Call_button.TabIndex = 20;
     this.Call_button.Text = "직원호출";
     this.Call_button.UseVisualStyleBackColor = false;
     this.Call_button.Click += new System.EventHandler(this.Call_button_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(17, 56);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(143, 132);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 21;
     this.pictureBox1.TabStop = false;
     //
     // Selected_menu_label
     //
     this.Selected_menu_label.AutoSize = true;
     this.Selected_menu_label.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.Selected_menu_label.Location = new System.Drawing.Point(52, 196);
     this.Selected_menu_label.Name = "Selected_menu_label";
     this.Selected_menu_label.Size = new System.Drawing.Size(71, 15);
     this.Selected_menu_label.TabIndex = 22;
     this.Selected_menu_label.Text = "선택한 메뉴";
     //
     // Selected_menu_price_label
     //
     this.Selected_menu_price_label.AutoSize = true;
     this.Selected_menu_price_label.Location = new System.Drawing.Point(924, 686);
     this.Selected_menu_price_label.Name = "Selected_menu_price_label";
     this.Selected_menu_price_label.Size = new System.Drawing.Size(29, 12);
     this.Selected_menu_price_label.TabIndex = 23;
     this.Selected_menu_price_label.Text = "가격";
     //
     // imageList4
     //
     this.imageList4.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList4.ImageSize = new System.Drawing.Size(200, 200);
     this.imageList4.TransparentColor = System.Drawing.Color.Transparent;
     //
     // imageList5
     //
     this.imageList5.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList5.ImageSize = new System.Drawing.Size(200, 200);
     this.imageList5.TransparentColor = System.Drawing.Color.Transparent;
     //
     // imageList6
     //
     this.imageList6.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList6.ImageSize = new System.Drawing.Size(200, 200);
     this.imageList6.TransparentColor = System.Drawing.Color.Transparent;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.panel4.Controls.Add(this.panel7);
     this.panel4.Controls.Add(this.panel5);
     this.panel4.Location = new System.Drawing.Point(283, 438);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(561, 240);
     this.panel4.TabIndex = 24;
     //
     // panel7
     //
     this.panel7.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.panel7.Location = new System.Drawing.Point(185, 0);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(4, 300);
     this.panel7.TabIndex = 26;
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.SystemColors.Control;
     this.panel5.Controls.Add(this.label6);
     this.panel5.Controls.Add(this.label5);
     this.panel5.Controls.Add(this.panel6);
     this.panel5.Controls.Add(this.Selected_menu_price_label2);
     this.panel5.Controls.Add(this.pictureBox1);
     this.panel5.Controls.Add(this.Selected_menu_label);
     this.panel5.Location = new System.Drawing.Point(5, 5);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(551, 230);
     this.panel5.TabIndex = 0;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.label6.Location = new System.Drawing.Point(50, 9);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(74, 20);
     this.label6.TabIndex = 27;
     this.label6.Text = "메뉴 사진";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.label5.Location = new System.Drawing.Point(350, 9);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(39, 20);
     this.label5.TabIndex = 26;
     this.label5.Text = "가격";
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.panel6.Location = new System.Drawing.Point(1, 36);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(550, 4);
     this.panel6.TabIndex = 25;
     //
     // Selected_menu_price_label2
     //
     this.Selected_menu_price_label2.AutoSize = true;
     this.Selected_menu_price_label2.Font = new System.Drawing.Font("맑은 고딕", 32.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.Selected_menu_price_label2.Location = new System.Drawing.Point(307, 103);
     this.Selected_menu_price_label2.Name = "Selected_menu_price_label2";
     this.Selected_menu_price_label2.Size = new System.Drawing.Size(111, 59);
     this.Selected_menu_price_label2.TabIndex = 23;
     this.Selected_menu_price_label2.Text = "가격";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("맑은 고딕", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
     this.label7.Location = new System.Drawing.Point(284, 136);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(42, 21);
     this.label7.TabIndex = 25;
     this.label7.Text = "메뉴";
     //
     // Client
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
     this.ClientSize = new System.Drawing.Size(1264, 681);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.Selected_menu_price_label);
     this.Controls.Add(this.Call_button);
     this.Controls.Add(this.price_label);
     this.Controls.Add(this.amount_label);
     this.Controls.Add(this.Order_listView);
     this.Controls.Add(this.Delete_menu);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.Order_button);
     this.Controls.Add(this.Add_menu);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.listView2);
     this.Controls.Add(this.listView3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "Client";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Form1";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #42
0
        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。

        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            FarPoint.Win.Spread.TipAppearance tipAppearance2 = new FarPoint.Win.Spread.TipAppearance();
            this.fpSpread1        = new FarPoint.Win.Spread.FpSpread();
            this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView();
            this.treeView1        = new Neusoft.FrameWork.WinForms.Controls.ucChooseList();
            this.ilTreeView       = new System.Windows.Forms.ImageList(this.components);
            this.toolBar1         = new System.Windows.Forms.ToolBar();
            this.tbPrint          = new System.Windows.Forms.ToolBarButton();
            this.tbList           = new System.Windows.Forms.ToolBarButton();
            this.tbExist          = new System.Windows.Forms.ToolBarButton();
            this.ilMenu           = new System.Windows.Forms.ImageList(this.components);
            this.panel1           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.LBSeacheInfo     = new Neusoft.FrameWork.WinForms.Controls.NeuLabel();
            this.panel2           = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            this.neuPanel1        = new Neusoft.FrameWork.WinForms.Controls.NeuPanel();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.neuPanel1.SuspendLayout();
            this.SuspendLayout();
            //
            // fpSpread1
            //
            this.fpSpread1.About = "3.0.2004.2005";
            this.fpSpread1.AccessibleDescription = "";
            this.fpSpread1.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
            this.fpSpread1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.fpSpread1.Location = new System.Drawing.Point(0, 0);
            this.fpSpread1.Name     = "fpSpread1";
            this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] {
                this.fpSpread1_Sheet1
            });
            this.fpSpread1.Size              = new System.Drawing.Size(568, 459);
            this.fpSpread1.TabIndex          = 1;
            tipAppearance2.BackColor         = System.Drawing.SystemColors.Info;
            tipAppearance2.Font              = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            tipAppearance2.ForeColor         = System.Drawing.SystemColors.InfoText;
            this.fpSpread1.TextTipAppearance = tipAppearance2;
            //
            // fpSpread1_Sheet1
            //
            this.fpSpread1_Sheet1.Reset();
            this.fpSpread1_Sheet1.SheetName = "Sheet1";
            // Formulas and custom names must be loaded with R1C1 reference style
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
            this.fpSpread1_Sheet1.ActiveSkin     = FarPoint.Win.Spread.DefaultSkins.Classic2;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.ForeColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Locked    = false;
            this.fpSpread1_Sheet1.ColumnHeader.DefaultStyle.Parent    = "HeaderDefault";
            this.fpSpread1_Sheet1.DefaultStyle.BackColor = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.DefaultStyle.ForeColor = System.Drawing.Color.Black;
            this.fpSpread1_Sheet1.DefaultStyle.Locked    = false;
            this.fpSpread1_Sheet1.DefaultStyle.Parent    = "DataAreaDefault";
            this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false;
            this.fpSpread1_Sheet1.RowHeader.Columns.Get(0).Width      = 40F;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.ForeColor    = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Locked       = false;
            this.fpSpread1_Sheet1.RowHeader.DefaultStyle.Parent       = "HeaderDefault";
            this.fpSpread1_Sheet1.SheetCornerStyle.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(105)))), ((int)(((byte)(107)))));
            this.fpSpread1_Sheet1.SheetCornerStyle.ForeColor          = System.Drawing.Color.White;
            this.fpSpread1_Sheet1.SheetCornerStyle.Locked             = false;
            this.fpSpread1_Sheet1.SheetCornerStyle.Parent             = "HeaderDefault";
            this.fpSpread1_Sheet1.VisualStyles   = FarPoint.Win.VisualStyles.Off;
            this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1;
            //
            // treeView1
            //
            this.treeView1.Caption           = "选择项目";
            this.treeView1.Dock              = System.Windows.Forms.DockStyle.Left;
            this.treeView1.IsShowCloseButton = true;
            this.treeView1.IsShowTreeView    = true;
            this.treeView1.Location          = new System.Drawing.Point(0, 0);
            this.treeView1.Name              = "treeView1";
            this.treeView1.Size              = new System.Drawing.Size(208, 459);
            this.treeView1.TabIndex          = 2;
            //
            // ilTreeView
            //
            this.ilTreeView.ColorDepth       = System.Windows.Forms.ColorDepth.Depth24Bit;
            this.ilTreeView.ImageSize        = new System.Drawing.Size(16, 16);
            this.ilTreeView.TransparentColor = System.Drawing.Color.Transparent;
            //
            // toolBar1
            //
            this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
                this.tbPrint,
                this.tbList,
                this.tbExist
            });
            this.toolBar1.DropDownArrows = true;
            this.toolBar1.ImageList      = this.ilMenu;
            this.toolBar1.Location       = new System.Drawing.Point(0, 0);
            this.toolBar1.Name           = "toolBar1";
            this.toolBar1.ShowToolTips   = true;
            this.toolBar1.Size           = new System.Drawing.Size(776, 57);
            this.toolBar1.TabIndex       = 3;
            this.toolBar1.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
            //
            // tbPrint
            //
            this.tbPrint.ImageIndex = 12;
            this.tbPrint.Name       = "tbPrint";
            this.tbPrint.Text       = "打印";
            //
            // tbList
            //
            this.tbList.ImageIndex = 7;
            this.tbList.Name       = "tbList";
            this.tbList.Text       = "列表";
            //
            // tbExist
            //
            this.tbExist.ImageIndex = 14;
            this.tbExist.Name       = "tbExist";
            this.tbExist.Text       = "退出";
            //
            // ilMenu
            //
            this.ilMenu.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
            this.ilMenu.ImageSize        = new System.Drawing.Size(32, 32);
            this.ilMenu.TransparentColor = System.Drawing.Color.Transparent;
            //
            // panel1
            //
            this.panel1.BackColor = System.Drawing.Color.MintCream;
            this.panel1.Controls.Add(this.LBSeacheInfo);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 57);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(776, 49);
            this.panel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel1.TabIndex = 4;
            //
            // LBSeacheInfo
            //
            this.LBSeacheInfo.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.LBSeacheInfo.Location = new System.Drawing.Point(0, 0);
            this.LBSeacheInfo.Name     = "LBSeacheInfo";
            this.LBSeacheInfo.Size     = new System.Drawing.Size(776, 49);
            this.LBSeacheInfo.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.LBSeacheInfo.TabIndex = 0;
            //
            // panel2
            //
            this.panel2.Controls.Add(this.neuPanel1);
            this.panel2.Controls.Add(this.treeView1);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 106);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(776, 459);
            this.panel2.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.panel2.TabIndex = 5;
            //
            // neuPanel1
            //
            this.neuPanel1.BackColor = System.Drawing.SystemColors.Window;
            this.neuPanel1.Controls.Add(this.fpSpread1);
            this.neuPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.neuPanel1.Location = new System.Drawing.Point(208, 0);
            this.neuPanel1.Name     = "neuPanel1";
            this.neuPanel1.Size     = new System.Drawing.Size(568, 459);
            this.neuPanel1.Style    = Neusoft.FrameWork.WinForms.Controls.StyleType.Fixed3D;
            this.neuPanel1.TabIndex = 3;
            //
            // frmShowResult
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
            this.ClientSize        = new System.Drawing.Size(776, 565);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.toolBar1);
            this.Name          = "frmShowResult";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "查询结果显示";
            this.Load         += new System.EventHandler(this.frmShowResult_Load);
            this.Closing      += new System.ComponentModel.CancelEventHandler(this.frmShowResult_Closing);
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.neuPanel1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #43
0
 public clsProdutosCertificadoOrigemFormA(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int nIdExportador, string strIdPE, ref System.Windows.Forms.ImageList ilBandeiras) : base(ref tratadorErro, ref ConnectionDB, EnderecoExecutavel, nIdExportador, strIdPE, FORMA, -1, ref ilBandeiras)
 {
     m_enumClassificacao = Classificacao.Naladi;
 }
Пример #44
0
 /// <summary> 
 /// Método necessário para suporte ao Designer - não modifique 
 /// o conteúdo deste método com o editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Toggle));
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.labelText = new System.Windows.Forms.Label();
     this.switchToggle = new System.Windows.Forms.PictureBox();
     this.toggleImages = new System.Windows.Forms.ImageList(this.components);
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.switchToggle)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Controls.Add(this.labelText, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.switchToggle, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(260, 50);
     this.tableLayoutPanel1.TabIndex = 0;
     //
     // labelText
     //
     this.labelText.BackColor = System.Drawing.Color.Transparent;
     this.labelText.Dock = System.Windows.Forms.DockStyle.Fill;
     this.labelText.Font = new System.Drawing.Font("Microsoft Tai Le", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelText.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelText.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.labelText.Location = new System.Drawing.Point(53, 0);
     this.labelText.Name = "labelText";
     this.labelText.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.labelText.Size = new System.Drawing.Size(204, 50);
     this.labelText.TabIndex = 8;
     this.labelText.Text = "Toogle";
     this.labelText.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // switchToggle
     //
     this.switchToggle.Dock = System.Windows.Forms.DockStyle.Fill;
     this.switchToggle.Location = new System.Drawing.Point(3, 3);
     this.switchToggle.Name = "switchToggle";
     this.switchToggle.Size = new System.Drawing.Size(44, 44);
     this.switchToggle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.switchToggle.TabIndex = 7;
     this.switchToggle.TabStop = false;
     this.switchToggle.Click += new System.EventHandler(this.switchToggle_Click);
     this.switchToggle.MouseEnter += new System.EventHandler(this.switchToggle_MouseEnter);
     this.switchToggle.MouseLeave += new System.EventHandler(this.switchToggle_MouseLeave);
     //
     // toogleImages
     //
     this.toggleImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("toogleImages.ImageStream")));
     this.toggleImages.TransparentColor = System.Drawing.Color.Transparent;
     this.toggleImages.Images.SetKeyName(0, "switchOff.png");
     this.toggleImages.Images.SetKeyName(1, "switchMiddle.png");
     this.toggleImages.Images.SetKeyName(2, "switchOn.png");
     //
     // Toogle
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Name = "Toogle";
     this.Size = new System.Drawing.Size(260, 50);
     this.EnabledChanged += new System.EventHandler(this.Toogle_EnabledChanged);
     this.ForeColorChanged += new System.EventHandler(this.Toogle_ForeColorChanged);
     this.tableLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.switchToggle)).EndInit();
     this.ResumeLayout(false);
 }
Пример #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ImageList imgList;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogWindow));
     System.Windows.Forms.Button       btnExport;
     System.Windows.Forms.ColumnHeader clmLevel;
     System.Windows.Forms.Button       btnClose;
     System.Windows.Forms.ColumnHeader clmMessage;
     System.Windows.Forms.ColumnHeader clmDateTime;
     System.Windows.Forms.Button       btnClear;
     this._lstLog = new System.Windows.Forms.ListView();
     imgList      = new System.Windows.Forms.ImageList(this.components);
     btnExport    = new System.Windows.Forms.Button();
     clmLevel     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     btnClose     = new System.Windows.Forms.Button();
     clmMessage   = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     clmDateTime  = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     btnClear     = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // imgList
     //
     imgList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgList.ImageStream")));
     imgList.TransparentColor = System.Drawing.Color.Transparent;
     imgList.Images.SetKeyName(0, "error");
     imgList.Images.SetKeyName(1, "warning");
     imgList.Images.SetKeyName(2, "info");
     imgList.Images.SetKeyName(3, "verbose");
     //
     // btnExport
     //
     btnExport.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     btnExport.Location = new System.Drawing.Point(93, 266);
     btnExport.Name     = "btnExport";
     btnExport.Size     = new System.Drawing.Size(75, 23);
     btnExport.TabIndex = 1;
     btnExport.Text     = "Export to file";
     btnExport.UseVisualStyleBackColor = true;
     btnExport.Visible = false;
     //
     // clmLevel
     //
     clmLevel.Text  = "";
     clmLevel.Width = 24;
     //
     // btnClose
     //
     btnClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnClose.Location = new System.Drawing.Point(515, 266);
     btnClose.Name     = "btnClose";
     btnClose.Size     = new System.Drawing.Size(75, 23);
     btnClose.TabIndex = 2;
     btnClose.Text     = "Close";
     btnClose.UseVisualStyleBackColor = true;
     btnClose.Click += new System.EventHandler(this.CloseClick);
     //
     // clmMessage
     //
     clmMessage.Text  = "Message";
     clmMessage.Width = 395;
     //
     // clmDateTime
     //
     clmDateTime.Text  = "Time";
     clmDateTime.Width = 134;
     //
     // _lstLog
     //
     this._lstLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)
                                                                 | System.Windows.Forms.AnchorStyles.Right)));
     this._lstLog.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         clmLevel,
         clmDateTime,
         clmMessage
     });
     this._lstLog.FullRowSelect  = true;
     this._lstLog.Location       = new System.Drawing.Point(12, 12);
     this._lstLog.Name           = "_lstLog";
     this._lstLog.Size           = new System.Drawing.Size(578, 248);
     this._lstLog.SmallImageList = imgList;
     this._lstLog.TabIndex       = 0;
     this._lstLog.UseCompatibleStateImageBehavior = false;
     this._lstLog.View = System.Windows.Forms.View.Details;
     //
     // btnClear
     //
     btnClear.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     btnClear.Location = new System.Drawing.Point(12, 266);
     btnClear.Name     = "btnClear";
     btnClear.Size     = new System.Drawing.Size(75, 23);
     btnClear.TabIndex = 3;
     btnClear.Text     = "Clear";
     btnClear.UseVisualStyleBackColor = true;
     btnClear.Click += new System.EventHandler(this.ClearClick);
     //
     // LogWindow
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(602, 301);
     this.Controls.Add(btnClear);
     this.Controls.Add(btnClose);
     this.Controls.Add(btnExport);
     this.Controls.Add(this._lstLog);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MinimumSize     = new System.Drawing.Size(196, 196);
     this.Name            = "LogWindow";
     this.Text            = "Log";
     this.ResumeLayout(false);
 }
Пример #46
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDeclareList));
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.button1 = new DevComponents.DotNetBar.ButtonX();
     this.button2 = new DevComponents.DotNetBar.ButtonX();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(12, 32);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(564, 293);
     this.listView1.SmallImageList = this.imageList1;
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "单号";
     this.columnHeader1.Width = 66;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "投诉时间";
     this.columnHeader2.Width = 117;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "投诉内容";
     this.columnHeader3.Width = 374;
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(351, 331);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(102, 23);
     this.button1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button1.TabIndex = 42;
     this.button1.Text = "处  理";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button2.Location = new System.Drawing.Point(474, 331);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(102, 23);
     this.button2.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button2.TabIndex = 43;
     this.button2.Text = "关  闭";
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(1, 14);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormDeclareList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::YTGPS_Client.Properties.Resources.fbk2;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(588, 366);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.button1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FormDeclareList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "待处理投诉、故障列表";
     this.Controls.SetChildIndex(this.button1, 0);
     this.Controls.SetChildIndex(this.listView1, 0);
     this.Controls.SetChildIndex(this.button2, 0);
     this.ResumeLayout(false);
 }
Пример #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PortfolioManager));
     this.PortfolioTabControl         = new Syncfusion.Windows.Forms.Tools.TabControlAdv();
     this.dashboardTabPage            = new Syncfusion.Windows.Forms.Tools.TabPageAdv();
     this.performanceAnalyzerTabPage  = new Syncfusion.Windows.Forms.Tools.TabPageAdv();
     this.loadingProgressBar          = new Syncfusion.Windows.Forms.Tools.ProgressBarAdv();
     this.contributionAnalyzerTabPage = new Syncfusion.Windows.Forms.Tools.TabPageAdv();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.formLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     ((System.ComponentModel.ISupportInitialize)(this.PortfolioTabControl)).BeginInit();
     this.PortfolioTabControl.SuspendLayout();
     this.performanceAnalyzerTabPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.loadingProgressBar)).BeginInit();
     this.formLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // PortfolioTabControl
     //
     this.PortfolioTabControl.AccessibleDescription = "";
     this.PortfolioTabControl.AccessibleName        = "";
     this.PortfolioTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.PortfolioTabControl.BackColor       = System.Drawing.Color.White;
     this.PortfolioTabControl.BeforeTouchSize = new System.Drawing.Size(932, 558);
     this.PortfolioTabControl.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.PortfolioTabControl.Controls.Add(this.dashboardTabPage);
     this.PortfolioTabControl.Controls.Add(this.performanceAnalyzerTabPage);
     this.PortfolioTabControl.Controls.Add(this.contributionAnalyzerTabPage);
     this.PortfolioTabControl.FixedSingleBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.PortfolioTabControl.Font        = new System.Drawing.Font("Segoe UI", 9F);
     this.PortfolioTabControl.ImageList   = this.imageList1;
     this.PortfolioTabControl.ImageOffset = 4;
     this.PortfolioTabControl.Location    = new System.Drawing.Point(3, 12);
     this.PortfolioTabControl.Name        = "PortfolioTabControl";
     this.PortfolioTabControl.Size        = new System.Drawing.Size(932, 558);
     this.PortfolioTabControl.TabIndex    = 1;
     this.PortfolioTabControl.TabStyle    = typeof(Syncfusion.Windows.Forms.Tools.TabRenderer2D);
     //
     // dashboardTabPage
     //
     this.dashboardTabPage.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dashboardTabPage.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.dashboardTabPage.Image           = null;
     this.dashboardTabPage.ImageIndex      = 0;
     this.dashboardTabPage.ImageSize       = new System.Drawing.Size(16, 16);
     this.dashboardTabPage.Location        = new System.Drawing.Point(0, 28);
     this.dashboardTabPage.Name            = "dashboardTabPage";
     this.dashboardTabPage.ShowCloseButton = true;
     this.dashboardTabPage.Size            = new System.Drawing.Size(932, 530);
     this.dashboardTabPage.TabFont         = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dashboardTabPage.TabForeColor    = System.Drawing.SystemColors.ControlText;
     this.dashboardTabPage.TabIndex        = 1;
     this.dashboardTabPage.Text            = "Dashboard ";
     this.dashboardTabPage.ThemesEnabled   = false;
     //
     // performanceAnalyzerTabPage
     //
     this.performanceAnalyzerTabPage.BackColor   = System.Drawing.Color.White;
     this.performanceAnalyzerTabPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.performanceAnalyzerTabPage.Controls.Add(this.loadingProgressBar);
     this.performanceAnalyzerTabPage.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.performanceAnalyzerTabPage.Image           = null;
     this.performanceAnalyzerTabPage.ImageIndex      = 2;
     this.performanceAnalyzerTabPage.ImageSize       = new System.Drawing.Size(16, 16);
     this.performanceAnalyzerTabPage.Location        = new System.Drawing.Point(0, 28);
     this.performanceAnalyzerTabPage.Name            = "performanceAnalyzerTabPage";
     this.performanceAnalyzerTabPage.ShowCloseButton = true;
     this.performanceAnalyzerTabPage.Size            = new System.Drawing.Size(932, 530);
     this.performanceAnalyzerTabPage.TabFont         = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.performanceAnalyzerTabPage.TabForeColor    = System.Drawing.SystemColors.ControlText;
     this.performanceAnalyzerTabPage.TabIndex        = 3;
     this.performanceAnalyzerTabPage.Text            = "Performance Analyzer ";
     this.performanceAnalyzerTabPage.ThemesEnabled   = false;
     //
     // loadingProgressBar
     //
     this.loadingProgressBar.BackGradientEndColor   = System.Drawing.Color.White;
     this.loadingProgressBar.BackGradientStartColor = System.Drawing.Color.LightGray;
     this.loadingProgressBar.BackgroundStyle        = Syncfusion.Windows.Forms.Tools.ProgressBarBackgroundStyles.Tube;
     this.loadingProgressBar.BackMultipleColors     = new System.Drawing.Color[0];
     this.loadingProgressBar.BackSegments           = false;
     this.loadingProgressBar.BackTubeEndColor       = System.Drawing.Color.White;
     this.loadingProgressBar.BackTubeStartColor     = System.Drawing.Color.LightGray;
     this.loadingProgressBar.Border3DStyle          = System.Windows.Forms.Border3DStyle.Adjust;
     this.loadingProgressBar.CustomText             = null;
     this.loadingProgressBar.CustomWaitingRender    = false;
     this.loadingProgressBar.FontColor          = System.Drawing.Color.OrangeRed;
     this.loadingProgressBar.ForegroundImage    = null;
     this.loadingProgressBar.ForeSegments       = false;
     this.loadingProgressBar.GradientEndColor   = System.Drawing.Color.LightSteelBlue;
     this.loadingProgressBar.GradientStartColor = System.Drawing.Color.WhiteSmoke;
     this.loadingProgressBar.Location           = new System.Drawing.Point(200, 213);
     this.loadingProgressBar.MultipleColors     = new System.Drawing.Color[0];
     this.loadingProgressBar.Name = "loadingProgressBar";
     this.loadingProgressBar.ProgressFallbackStyle = Syncfusion.Windows.Forms.Tools.ProgressBarStyles.WaitingGradient;
     this.loadingProgressBar.ProgressStyle         = Syncfusion.Windows.Forms.Tools.ProgressBarStyles.WaitingGradient;
     this.loadingProgressBar.SegmentWidth          = 35;
     this.loadingProgressBar.Size                    = new System.Drawing.Size(400, 23);
     this.loadingProgressBar.TabIndex                = 1;
     this.loadingProgressBar.TextStyle               = Syncfusion.Windows.Forms.Tools.ProgressBarTextStyles.Custom;
     this.loadingProgressBar.ThemesEnabled           = false;
     this.loadingProgressBar.TubeEndColor            = System.Drawing.Color.Black;
     this.loadingProgressBar.TubeStartColor          = System.Drawing.Color.Red;
     this.loadingProgressBar.UseWaitCursor           = true;
     this.loadingProgressBar.WaitingGradientEnabled  = true;
     this.loadingProgressBar.WaitingGradientInterval = 20;
     this.loadingProgressBar.WaitingGradientWidth    = 200;
     //
     // contributionAnalyzerTabPage
     //
     this.contributionAnalyzerTabPage.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.contributionAnalyzerTabPage.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.contributionAnalyzerTabPage.Image           = null;
     this.contributionAnalyzerTabPage.ImageIndex      = 1;
     this.contributionAnalyzerTabPage.ImageSize       = new System.Drawing.Size(16, 16);
     this.contributionAnalyzerTabPage.Location        = new System.Drawing.Point(0, 28);
     this.contributionAnalyzerTabPage.Name            = "contributionAnalyzerTabPage";
     this.contributionAnalyzerTabPage.ShowCloseButton = true;
     this.contributionAnalyzerTabPage.Size            = new System.Drawing.Size(932, 530);
     this.contributionAnalyzerTabPage.TabFont         = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contributionAnalyzerTabPage.TabForeColor    = System.Drawing.SystemColors.ControlText;
     this.contributionAnalyzerTabPage.TabIndex        = 2;
     this.contributionAnalyzerTabPage.Text            = "Contribution Analyzer ";
     this.contributionAnalyzerTabPage.ThemesEnabled   = false;
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "Dashboard.png");
     this.imageList1.Images.SetKeyName(1, "Contribution-Analyzer.png");
     this.imageList1.Images.SetKeyName(2, "Performance-Analyzer.png");
     //
     // formLayoutPanel
     //
     this.formLayoutPanel.BackColor   = System.Drawing.Color.White;
     this.formLayoutPanel.ColumnCount = 1;
     this.formLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.formLayoutPanel.Controls.Add(this.PortfolioTabControl, 0, 1);
     this.formLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.formLayoutPanel.Location = new System.Drawing.Point(0, 0);
     this.formLayoutPanel.Name     = "formLayoutPanel";
     this.formLayoutPanel.RowCount = 2;
     this.formLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.570681F));
     this.formLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 98.42932F));
     this.formLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.formLayoutPanel.Size     = new System.Drawing.Size(938, 573);
     this.formLayoutPanel.TabIndex = 0;
     //
     // PortfolioManager
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(938, 573);
     this.Controls.Add(this.formLayoutPanel);
     this.MinimumSize = new System.Drawing.Size(550, 509);
     this.Name        = "PortfolioManager";
     this.Text        = "Portfolio Grid";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     ((System.ComponentModel.ISupportInitialize)(this.PortfolioTabControl)).EndInit();
     this.PortfolioTabControl.ResumeLayout(false);
     this.performanceAnalyzerTabPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.loadingProgressBar)).EndInit();
     this.formLayoutPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #48
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MenuItemImage"/> class.
 /// </summary>
 /// <param name="text">The text.</param>
 /// <param name="onClick">The on click.</param>
 /// <param name="p_ImageList">The image list.</param>
 /// <param name="p_ImageIndex">Index of the image.</param>
 public MenuItemImage(System.String text, System.EventHandler onClick, System.Windows.Forms.ImageList p_ImageList, int p_ImageIndex)
     : base(text, onClick)
 {
     SetImage(p_ImageList, p_ImageIndex);
 }
Пример #49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 internal void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.StatusLabel                   = new System.Windows.Forms.ToolStripStatusLabel();
     this.MainProgressBar               = new System.Windows.Forms.ToolStripProgressBar();
     this.Images                        = new System.Windows.Forms.ImageList(this.components);
     this.ToolTipManager                = new System.Windows.Forms.ToolTip(this.components);
     this.YouTubeButton                 = new System.Windows.Forms.Button();
     this.ManageDataButton              = new System.Windows.Forms.Button();
     this.StatusListBox                 = new System.Windows.Forms.ListView();
     this.ProjectLabel                  = new System.Windows.Forms.Label();
     this.CurrentProjectLabel           = new System.Windows.Forms.Label();
     this.NewProjectButton              = new System.Windows.Forms.Button();
     this.OpenProjectButton             = new System.Windows.Forms.Button();
     this.EditProjectButton             = new System.Windows.Forms.Button();
     this.CloseProjectButton            = new System.Windows.Forms.Button();
     this.BuildAllButton                = new System.Windows.Forms.Button();
     this.HiddenButton                  = new System.Windows.Forms.Button();
     this.StoredProcedureSQLButton      = new System.Windows.Forms.Label();
     this.RunSetupButton                = new System.Windows.Forms.Label();
     this.MainPanel                     = new DataTierClient.Objects.PanelExtender();
     this.RightContainer                = new DataTierClient.Objects.PanelExtender();
     this.BottomPanel                   = new DataTierClient.Objects.PanelExtender();
     this.YouTubeButtonRightMarginPanel = new DataTierClient.Objects.PanelExtender();
     this.BottomRightMarginpanel        = new DataTierClient.Objects.PanelExtender();
     this.RightPanel                    = new DataTierClient.Objects.PanelExtender();
     this.ViewPDFButton2                = new System.Windows.Forms.Button();
     this.ViewWordButton2               = new System.Windows.Forms.Button();
     this.UsersGuideLabel               = new System.Windows.Forms.Label();
     this.ViewPDFButton                 = new System.Windows.Forms.Button();
     this.ViewWordButton                = new System.Windows.Forms.Button();
     this.QuickStartLabel               = new System.Windows.Forms.Label();
     this.ClassRoomImage                = new System.Windows.Forms.PictureBox();
     this.MainStatus                    = new System.Windows.Forms.Label();
     this.StatusTimer                   = new System.Windows.Forms.Timer(this.components);
     this.MainPanel.SuspendLayout();
     this.RightContainer.SuspendLayout();
     this.BottomPanel.SuspendLayout();
     this.RightPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ClassRoomImage)).BeginInit();
     this.SuspendLayout();
     //
     // StatusLabel
     //
     this.StatusLabel.BackColor = System.Drawing.SystemColors.Control;
     this.StatusLabel.Name      = "StatusLabel";
     this.StatusLabel.Size      = new System.Drawing.Size(39, 17);
     this.StatusLabel.Text      = "Ready";
     //
     // MainProgressBar
     //
     this.MainProgressBar.Name    = "MainProgressBar";
     this.MainProgressBar.Size    = new System.Drawing.Size(100, 16);
     this.MainProgressBar.Visible = false;
     //
     // Images
     //
     this.Images.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Images.ImageStream")));
     this.Images.TransparentColor = System.Drawing.Color.Transparent;
     this.Images.Images.SetKeyName(0, "success.ico");
     this.Images.Images.SetKeyName(1, "Failed.ico");
     //
     // YouTubeButton
     //
     this.YouTubeButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("YouTubeButton.BackgroundImage")));
     this.YouTubeButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.YouTubeButton.Dock      = System.Windows.Forms.DockStyle.Right;
     this.YouTubeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.YouTubeButton.Location  = new System.Drawing.Point(228, 0);
     this.YouTubeButton.Name      = "YouTubeButton";
     this.YouTubeButton.Size      = new System.Drawing.Size(128, 64);
     this.YouTubeButton.TabIndex  = 68;
     this.ToolTipManager.SetToolTip(this.YouTubeButton, "Click here to launch your browser to watch the DataTier.Net Intro Movie");
     this.YouTubeButton.UseVisualStyleBackColor = true;
     this.YouTubeButton.Click      += new System.EventHandler(this.YouTubeButton_Click);
     this.YouTubeButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.YouTubeButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ManageDataButton
     //
     this.ManageDataButton.BackgroundImage       = global::DataTierClient.Properties.Resources.BlackButton;
     this.ManageDataButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ManageDataButton.Enabled = false;
     this.ManageDataButton.FlatAppearance.BorderSize         = 0;
     this.ManageDataButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.ManageDataButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.ManageDataButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ManageDataButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ManageDataButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.ManageDataButton.Location  = new System.Drawing.Point(186, 114);
     this.ManageDataButton.Name      = "ManageDataButton";
     this.ManageDataButton.Size      = new System.Drawing.Size(150, 40);
     this.ManageDataButton.TabIndex  = 107;
     this.ManageDataButton.Text      = "Manage Data";
     this.ManageDataButton.UseVisualStyleBackColor = true;
     this.ManageDataButton.Click      += new System.EventHandler(this.ManageDataButton_Click);
     this.ManageDataButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ManageDataButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // StatusListBox
     //
     this.StatusListBox.AutoArrange    = false;
     this.StatusListBox.Font           = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StatusListBox.FullRowSelect  = true;
     this.StatusListBox.HideSelection  = false;
     this.StatusListBox.Location       = new System.Drawing.Point(20, 170);
     this.StatusListBox.Name           = "StatusListBox";
     this.StatusListBox.Size           = new System.Drawing.Size(482, 440);
     this.StatusListBox.SmallImageList = this.Images;
     this.StatusListBox.TabIndex       = 56;
     this.StatusListBox.UseCompatibleStateImageBehavior = false;
     this.StatusListBox.View         = System.Windows.Forms.View.List;
     this.StatusListBox.DoubleClick += new System.EventHandler(this.StatusListBox_DoubleClick);
     //
     // ProjectLabel
     //
     this.ProjectLabel.AutoSize  = true;
     this.ProjectLabel.BackColor = System.Drawing.Color.Transparent;
     this.ProjectLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ProjectLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.ProjectLabel.Location  = new System.Drawing.Point(21, 19);
     this.ProjectLabel.Name      = "ProjectLabel";
     this.ProjectLabel.Size      = new System.Drawing.Size(78, 18);
     this.ProjectLabel.TabIndex  = 70;
     this.ProjectLabel.Text      = "Project:";
     this.ProjectLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // CurrentProjectLabel
     //
     this.CurrentProjectLabel.AutoSize  = true;
     this.CurrentProjectLabel.BackColor = System.Drawing.Color.Transparent;
     this.CurrentProjectLabel.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CurrentProjectLabel.ForeColor = System.Drawing.Color.DimGray;
     this.CurrentProjectLabel.Location  = new System.Drawing.Point(94, 20);
     this.CurrentProjectLabel.Name      = "CurrentProjectLabel";
     this.CurrentProjectLabel.Size      = new System.Drawing.Size(169, 18);
     this.CurrentProjectLabel.TabIndex  = 71;
     this.CurrentProjectLabel.Text      = "No Project Selected";
     this.CurrentProjectLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // NewProjectButton
     //
     this.NewProjectButton.BackgroundImage                   = global::DataTierClient.Properties.Resources.BlackButton;
     this.NewProjectButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.NewProjectButton.FlatAppearance.BorderSize         = 0;
     this.NewProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.NewProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.NewProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NewProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.NewProjectButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.NewProjectButton.Location  = new System.Drawing.Point(20, 57);
     this.NewProjectButton.Name      = "NewProjectButton";
     this.NewProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.NewProjectButton.TabIndex  = 87;
     this.NewProjectButton.Text      = "New Project";
     this.NewProjectButton.UseVisualStyleBackColor = true;
     this.NewProjectButton.Click      += new System.EventHandler(this.NewProjectButton_Click);
     this.NewProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.NewProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // OpenProjectButton
     //
     this.OpenProjectButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("OpenProjectButton.BackgroundImage")));
     this.OpenProjectButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.OpenProjectButton.FlatAppearance.BorderSize         = 0;
     this.OpenProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.OpenProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.OpenProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.OpenProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OpenProjectButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.OpenProjectButton.Location  = new System.Drawing.Point(186, 57);
     this.OpenProjectButton.Name      = "OpenProjectButton";
     this.OpenProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.OpenProjectButton.TabIndex  = 88;
     this.OpenProjectButton.Text      = "Open Project";
     this.OpenProjectButton.UseVisualStyleBackColor = true;
     this.OpenProjectButton.Click      += new System.EventHandler(this.OpenProjectButton_Click);
     this.OpenProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.OpenProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // EditProjectButton
     //
     this.EditProjectButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("EditProjectButton.BackgroundImage")));
     this.EditProjectButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.EditProjectButton.Enabled = false;
     this.EditProjectButton.FlatAppearance.BorderSize         = 0;
     this.EditProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.EditProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.EditProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.EditProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EditProjectButton.ForeColor = System.Drawing.Color.DimGray;
     this.EditProjectButton.Location  = new System.Drawing.Point(352, 57);
     this.EditProjectButton.Name      = "EditProjectButton";
     this.EditProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.EditProjectButton.TabIndex  = 89;
     this.EditProjectButton.Text      = "Edit Project";
     this.EditProjectButton.UseVisualStyleBackColor = true;
     this.EditProjectButton.Click      += new System.EventHandler(this.EditProjectButton_Click);
     this.EditProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.EditProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // CloseProjectButton
     //
     this.CloseProjectButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("CloseProjectButton.BackgroundImage")));
     this.CloseProjectButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.CloseProjectButton.Enabled = false;
     this.CloseProjectButton.FlatAppearance.BorderSize         = 0;
     this.CloseProjectButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.CloseProjectButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.CloseProjectButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.CloseProjectButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CloseProjectButton.ForeColor = System.Drawing.Color.DimGray;
     this.CloseProjectButton.Location  = new System.Drawing.Point(352, 114);
     this.CloseProjectButton.Name      = "CloseProjectButton";
     this.CloseProjectButton.Size      = new System.Drawing.Size(150, 40);
     this.CloseProjectButton.TabIndex  = 90;
     this.CloseProjectButton.Text      = "Close Project";
     this.CloseProjectButton.UseVisualStyleBackColor = true;
     this.CloseProjectButton.Click      += new System.EventHandler(this.CloseProjectButton_Click);
     this.CloseProjectButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.CloseProjectButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // BuildAllButton
     //
     this.BuildAllButton.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("BuildAllButton.BackgroundImage")));
     this.BuildAllButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.BuildAllButton.Enabled = false;
     this.BuildAllButton.FlatAppearance.BorderSize         = 0;
     this.BuildAllButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.BuildAllButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.BuildAllButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.BuildAllButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BuildAllButton.ForeColor = System.Drawing.Color.DimGray;
     this.BuildAllButton.Location  = new System.Drawing.Point(20, 114);
     this.BuildAllButton.Name      = "BuildAllButton";
     this.BuildAllButton.Size      = new System.Drawing.Size(150, 40);
     this.BuildAllButton.TabIndex  = 91;
     this.BuildAllButton.Text      = "Build All";
     this.BuildAllButton.UseVisualStyleBackColor = true;
     this.BuildAllButton.Click      += new System.EventHandler(this.BuildAllButton_Click);
     this.BuildAllButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.BuildAllButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // HiddenButton
     //
     this.HiddenButton.BackgroundImage                   = global::DataTierClient.Properties.Resources.BlackButton;
     this.HiddenButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.HiddenButton.FlatAppearance.BorderSize         = 0;
     this.HiddenButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.HiddenButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.HiddenButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.HiddenButton.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HiddenButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.HiddenButton.Location  = new System.Drawing.Point(-1000, 655);
     this.HiddenButton.Name      = "HiddenButton";
     this.HiddenButton.Size      = new System.Drawing.Size(160, 40);
     this.HiddenButton.TabIndex  = 94;
     this.HiddenButton.Text      = "New Project";
     this.HiddenButton.UseVisualStyleBackColor = true;
     //
     // StoredProcedureSQLButton
     //
     this.StoredProcedureSQLButton.ForeColor   = System.Drawing.Color.GhostWhite;
     this.StoredProcedureSQLButton.Location    = new System.Drawing.Point(18, 616);
     this.StoredProcedureSQLButton.Name        = "StoredProcedureSQLButton";
     this.StoredProcedureSQLButton.Size        = new System.Drawing.Size(220, 24);
     this.StoredProcedureSQLButton.TabIndex    = 109;
     this.StoredProcedureSQLButton.Text        = "StoredProcedures.sql";
     this.StoredProcedureSQLButton.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.StoredProcedureSQLButton.Visible     = false;
     this.StoredProcedureSQLButton.Click      += new System.EventHandler(this.StoredProcedureSQLButton_Click);
     this.StoredProcedureSQLButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.StoredProcedureSQLButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // RunSetupButton
     //
     this.RunSetupButton.Font        = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RunSetupButton.ForeColor   = System.Drawing.Color.LemonChiffon;
     this.RunSetupButton.Location    = new System.Drawing.Point(262, 20);
     this.RunSetupButton.Name        = "RunSetupButton";
     this.RunSetupButton.Size        = new System.Drawing.Size(240, 18);
     this.RunSetupButton.TabIndex    = 110;
     this.RunSetupButton.Text        = "Run Setup Again";
     this.RunSetupButton.TextAlign   = System.Drawing.ContentAlignment.MiddleRight;
     this.RunSetupButton.Click      += new System.EventHandler(this.RunSetupButton_Click);
     this.RunSetupButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.RunSetupButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // MainPanel
     //
     this.MainPanel.BackColor             = System.Drawing.Color.Transparent;
     this.MainPanel.BackgroundImage       = global::DataTierClient.Properties.Resources.Deep_Black;
     this.MainPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.MainPanel.Controls.Add(this.RightContainer);
     this.MainPanel.Controls.Add(this.MainStatus);
     this.MainPanel.Controls.Add(this.RunSetupButton);
     this.MainPanel.Controls.Add(this.StoredProcedureSQLButton);
     this.MainPanel.Controls.Add(this.HiddenButton);
     this.MainPanel.Controls.Add(this.BuildAllButton);
     this.MainPanel.Controls.Add(this.CloseProjectButton);
     this.MainPanel.Controls.Add(this.EditProjectButton);
     this.MainPanel.Controls.Add(this.OpenProjectButton);
     this.MainPanel.Controls.Add(this.NewProjectButton);
     this.MainPanel.Controls.Add(this.CurrentProjectLabel);
     this.MainPanel.Controls.Add(this.ProjectLabel);
     this.MainPanel.Controls.Add(this.StatusListBox);
     this.MainPanel.Controls.Add(this.ManageDataButton);
     this.MainPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.MainPanel.Font     = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainPanel.Location = new System.Drawing.Point(0, 0);
     this.MainPanel.Name     = "MainPanel";
     this.MainPanel.Size     = new System.Drawing.Size(900, 681);
     this.MainPanel.TabIndex = 17;
     //
     // RightContainer
     //
     this.RightContainer.Controls.Add(this.BottomPanel);
     this.RightContainer.Controls.Add(this.RightPanel);
     this.RightContainer.Dock     = System.Windows.Forms.DockStyle.Right;
     this.RightContainer.Location = new System.Drawing.Point(520, 0);
     this.RightContainer.Name     = "RightContainer";
     this.RightContainer.Size     = new System.Drawing.Size(380, 649);
     this.RightContainer.TabIndex = 112;
     //
     // BottomPanel
     //
     this.BottomPanel.Controls.Add(this.YouTubeButton);
     this.BottomPanel.Controls.Add(this.YouTubeButtonRightMarginPanel);
     this.BottomPanel.Controls.Add(this.BottomRightMarginpanel);
     this.BottomPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.BottomPanel.Location = new System.Drawing.Point(0, 585);
     this.BottomPanel.Name     = "BottomPanel";
     this.BottomPanel.Size     = new System.Drawing.Size(380, 64);
     this.BottomPanel.TabIndex = 104;
     //
     // YouTubeButtonRightMarginPanel
     //
     this.YouTubeButtonRightMarginPanel.Dock     = System.Windows.Forms.DockStyle.Right;
     this.YouTubeButtonRightMarginPanel.Location = new System.Drawing.Point(356, 0);
     this.YouTubeButtonRightMarginPanel.Name     = "YouTubeButtonRightMarginPanel";
     this.YouTubeButtonRightMarginPanel.Size     = new System.Drawing.Size(16, 64);
     this.YouTubeButtonRightMarginPanel.TabIndex = 67;
     //
     // BottomRightMarginpanel
     //
     this.BottomRightMarginpanel.Dock     = System.Windows.Forms.DockStyle.Right;
     this.BottomRightMarginpanel.Location = new System.Drawing.Point(372, 0);
     this.BottomRightMarginpanel.Name     = "BottomRightMarginpanel";
     this.BottomRightMarginpanel.Size     = new System.Drawing.Size(8, 64);
     this.BottomRightMarginpanel.TabIndex = 1;
     //
     // RightPanel
     //
     this.RightPanel.Controls.Add(this.ViewPDFButton2);
     this.RightPanel.Controls.Add(this.ViewWordButton2);
     this.RightPanel.Controls.Add(this.UsersGuideLabel);
     this.RightPanel.Controls.Add(this.ViewPDFButton);
     this.RightPanel.Controls.Add(this.ViewWordButton);
     this.RightPanel.Controls.Add(this.QuickStartLabel);
     this.RightPanel.Controls.Add(this.ClassRoomImage);
     this.RightPanel.Location = new System.Drawing.Point(31, 57);
     this.RightPanel.Name     = "RightPanel";
     this.RightPanel.Size     = new System.Drawing.Size(319, 370);
     this.RightPanel.TabIndex = 101;
     //
     // ViewPDFButton2
     //
     this.ViewPDFButton2.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewPDFButton2.BackgroundImage")));
     this.ViewPDFButton2.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewPDFButton2.FlatAppearance.BorderSize         = 0;
     this.ViewPDFButton2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewPDFButton2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewPDFButton2.Location  = new System.Drawing.Point(164, 263);
     this.ViewPDFButton2.Name      = "ViewPDFButton2";
     this.ViewPDFButton2.Size      = new System.Drawing.Size(64, 64);
     this.ViewPDFButton2.TabIndex  = 104;
     this.ViewPDFButton2.UseVisualStyleBackColor = true;
     this.ViewPDFButton2.Click      += new System.EventHandler(this.ViewPDFButton2_Click);
     this.ViewPDFButton2.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewPDFButton2.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ViewWordButton2
     //
     this.ViewWordButton2.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewWordButton2.BackgroundImage")));
     this.ViewWordButton2.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewWordButton2.FlatAppearance.BorderSize         = 0;
     this.ViewWordButton2.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewWordButton2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewWordButton2.Location  = new System.Drawing.Point(76, 263);
     this.ViewWordButton2.Name      = "ViewWordButton2";
     this.ViewWordButton2.Size      = new System.Drawing.Size(64, 64);
     this.ViewWordButton2.TabIndex  = 103;
     this.ViewWordButton2.UseVisualStyleBackColor = true;
     this.ViewWordButton2.Click      += new System.EventHandler(this.ViewWordButton2_Click);
     this.ViewWordButton2.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewWordButton2.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // UsersGuideLabel
     //
     this.UsersGuideLabel.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.UsersGuideLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.UsersGuideLabel.Location  = new System.Drawing.Point(34, 335);
     this.UsersGuideLabel.Name      = "UsersGuideLabel";
     this.UsersGuideLabel.Size      = new System.Drawing.Size(236, 17);
     this.UsersGuideLabel.TabIndex  = 105;
     this.UsersGuideLabel.Text      = "DataTier.Net User\'s Guide";
     this.UsersGuideLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ViewPDFButton
     //
     this.ViewPDFButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewPDFButton.BackgroundImage")));
     this.ViewPDFButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewPDFButton.FlatAppearance.BorderSize         = 0;
     this.ViewPDFButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewPDFButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewPDFButton.Location  = new System.Drawing.Point(164, 146);
     this.ViewPDFButton.Name      = "ViewPDFButton";
     this.ViewPDFButton.Size      = new System.Drawing.Size(64, 64);
     this.ViewPDFButton.TabIndex  = 101;
     this.ViewPDFButton.UseVisualStyleBackColor = true;
     this.ViewPDFButton.Click      += new System.EventHandler(this.ViewPDFButton_Click);
     this.ViewPDFButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewPDFButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // ViewWordButton
     //
     this.ViewWordButton.BackgroundImage                   = ((System.Drawing.Image)(resources.GetObject("ViewWordButton.BackgroundImage")));
     this.ViewWordButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.ViewWordButton.FlatAppearance.BorderSize         = 0;
     this.ViewWordButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.ViewWordButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ViewWordButton.Location  = new System.Drawing.Point(76, 146);
     this.ViewWordButton.Name      = "ViewWordButton";
     this.ViewWordButton.Size      = new System.Drawing.Size(64, 64);
     this.ViewWordButton.TabIndex  = 100;
     this.ViewWordButton.UseVisualStyleBackColor = true;
     this.ViewWordButton.Click      += new System.EventHandler(this.ViewWordButton_Click);
     this.ViewWordButton.MouseEnter += new System.EventHandler(this.Button_Enter);
     this.ViewWordButton.MouseLeave += new System.EventHandler(this.Button_Leave);
     //
     // QuickStartLabel
     //
     this.QuickStartLabel.Font      = new System.Drawing.Font("Arial Rounded MT Bold", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuickStartLabel.ForeColor = System.Drawing.Color.LemonChiffon;
     this.QuickStartLabel.Location  = new System.Drawing.Point(34, 218);
     this.QuickStartLabel.Name      = "QuickStartLabel";
     this.QuickStartLabel.Size      = new System.Drawing.Size(236, 17);
     this.QuickStartLabel.TabIndex  = 102;
     this.QuickStartLabel.Text      = "DataTier.Net Quick Start";
     this.QuickStartLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // ClassRoomImage
     //
     this.ClassRoomImage.Image    = ((System.Drawing.Image)(resources.GetObject("ClassRoomImage.Image")));
     this.ClassRoomImage.Location = new System.Drawing.Point(9, 9);
     this.ClassRoomImage.Name     = "ClassRoomImage";
     this.ClassRoomImage.Size     = new System.Drawing.Size(300, 113);
     this.ClassRoomImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.ClassRoomImage.TabIndex = 99;
     this.ClassRoomImage.TabStop  = false;
     //
     // MainStatus
     //
     this.MainStatus.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.MainStatus.Font      = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainStatus.ForeColor = System.Drawing.Color.LemonChiffon;
     this.MainStatus.Location  = new System.Drawing.Point(0, 649);
     this.MainStatus.Name      = "MainStatus";
     this.MainStatus.Size      = new System.Drawing.Size(900, 32);
     this.MainStatus.TabIndex  = 111;
     this.MainStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // StatusTimer
     //
     this.StatusTimer.Interval = 5000;
     this.StatusTimer.Tick    += new System.EventHandler(this.StatusTimer_Tick);
     //
     // MainForm
     //
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor             = System.Drawing.Color.White;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize            = new System.Drawing.Size(900, 681);
     this.Controls.Add(this.MainPanel);
     this.Cursor         = System.Windows.Forms.Cursors.Default;
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name           = "MainForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "DataTier.Net";
     this.MainPanel.ResumeLayout(false);
     this.MainPanel.PerformLayout();
     this.RightContainer.ResumeLayout(false);
     this.BottomPanel.ResumeLayout(false);
     this.RightPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ClassRoomImage)).EndInit();
     this.ResumeLayout(false);
 }
Пример #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(TestHeader));
     this.gtv                     = new Genius.Controls.TreeView.GeniusTreeView();
     this.imageList1              = new System.Windows.Forms.ImageList(this.components);
     this.geniusTreeViewColonne1  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne2  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne3  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne4  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne5  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne6  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne7  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne8  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne9  = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.geniusTreeViewColonne10 = new Genius.Controls.TreeView.GeniusTreeViewColonne();
     this.SuspendLayout();
     // GeniusTreeView By Pierrick Gourlain
     //
     // gtv
     //
     this.gtv.Alignment   = System.Drawing.StringAlignment.Near;
     this.gtv.AutoSort    = false;
     this.gtv.BackColor   = System.Drawing.SystemColors.Window;
     this.gtv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gtv.Colors.FocusedRectanglePenColor = new Genius.Controls.TreeView.Colors.GeniusPen(System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255))), 1F, System.Drawing.Drawing2D.DashStyle.Dot);
     this.gtv.Colors.HeaderColor            = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.White, System.Drawing.Color.LightGray, 90F);
     this.gtv.Colors.SelectedColor          = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.SystemColors.Highlight, System.Drawing.Color.Empty, 0F);
     this.gtv.Colors.SelectedTextColor      = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.SystemColors.HighlightText, System.Drawing.Color.Empty, 0F);
     this.gtv.Colors.SelectedUnfocusedColor = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.SystemColors.InactiveCaption, System.Drawing.Color.Empty, 0F);
     this.gtv.Colors.SignaledPenColor       = new Genius.Controls.TreeView.Colors.GeniusPen(System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(165)), ((System.Byte)(0))), 2F, System.Drawing.Drawing2D.DashStyle.Solid);
     this.gtv.Colors.TextColor = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.gtv.Colors.UnFocusedRectanglePenColor = new Genius.Controls.TreeView.Colors.GeniusPen(System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255))), 1F, System.Drawing.Drawing2D.DashStyle.Dot);
     this.gtv.DefaultDrawingOption = Genius.Controls.TreeView.DrawingOptions.ShowGridLines;
     this.gtv.Dock                      = System.Windows.Forms.DockStyle.Fill;
     this.gtv.ElapsedHint               = 500;
     this.gtv.Header.Font               = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.gtv.Header.ImageList          = this.imageList1;
     this.gtv.Header.MainColumnIndex    = 0;
     this.gtv.Header.SortImageAlignment = Genius.Controls.TreeView.ImageSortAlignment.BottomRight;
     this.gtv.HeaderColonnes.AddRange(new Genius.Controls.TreeView.GeniusTreeViewColonne[] {
         this.geniusTreeViewColonne1,
         this.geniusTreeViewColonne2,
         this.geniusTreeViewColonne3,
         this.geniusTreeViewColonne4,
         this.geniusTreeViewColonne5,
         this.geniusTreeViewColonne6,
         this.geniusTreeViewColonne7,
         this.geniusTreeViewColonne8,
         this.geniusTreeViewColonne9,
         this.geniusTreeViewColonne10
     });
     this.gtv.HeaderHeight    = 100;
     this.gtv.KeysGridMode    = false;
     this.gtv.Location        = new System.Drawing.Point(0, 0);
     this.gtv.Name            = "gtv";
     this.gtv.ShowHeader      = true;
     this.gtv.Size            = new System.Drawing.Size(392, 256);
     this.gtv.TabIndex        = 0;
     this.gtv.Text            = "geniusTreeView1";
     this.gtv.UseColumns      = true;
     this.gtv.OnGetNodeValue += new Genius.Controls.TreeView.OnGetNodeValueForComparisonDelegate(this.gtv_OnGetNodeValue);
     this.gtv.OnGetNodeText  += new Genius.Controls.TreeView.OnGetNodeTextDelegate(this.gtv_OnGetNodeText);
     //
     // imageList1
     //
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // geniusTreeViewColonne1
     //
     this.geniusTreeViewColonne1.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne1.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne1.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne1.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne1.ImageIndex  = 0;
     this.geniusTreeViewColonne1.Text        = "Colonne 1";
     //
     // geniusTreeViewColonne2
     //
     this.geniusTreeViewColonne2.BackColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne2.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne2.FontColonne     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne2.ForeColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne2.HeadColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne2.ImageAlignment  = Genius.Controls.TreeView.ImageAlignment.Top;
     this.geniusTreeViewColonne2.ImageIndex      = 1;
     this.geniusTreeViewColonne2.Text            = "Colonne 2";
     this.geniusTreeViewColonne2.TextOrientation = 90F;
     //
     // geniusTreeViewColonne3
     //
     this.geniusTreeViewColonne3.BackColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne3.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne3.FontColonne     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne3.ForeColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne3.HeadColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne3.ImageAlignment  = Genius.Controls.TreeView.ImageAlignment.Right;
     this.geniusTreeViewColonne3.ImageIndex      = 2;
     this.geniusTreeViewColonne3.Text            = "Colonne 3";
     this.geniusTreeViewColonne3.TextOrientation = 180F;
     //
     // geniusTreeViewColonne4
     //
     this.geniusTreeViewColonne4.BackColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne4.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne4.FontColonne     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne4.ForeColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne4.HeadColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne4.ImageAlignment  = Genius.Controls.TreeView.ImageAlignment.Bottom;
     this.geniusTreeViewColonne4.ImageIndex      = 3;
     this.geniusTreeViewColonne4.Text            = "Colonne 4";
     this.geniusTreeViewColonne4.TextOrientation = 270F;
     //
     // geniusTreeViewColonne5
     //
     this.geniusTreeViewColonne5.BackColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne5.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne5.FontColonne     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne5.ForeColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne5.HeadColor       = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne5.ImageIndex      = 4;
     this.geniusTreeViewColonne5.Text            = "Colonne 5";
     this.geniusTreeViewColonne5.TextOrientation = -45F;
     //
     // geniusTreeViewColonne6
     //
     this.geniusTreeViewColonne6.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne6.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne6.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne6.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Black, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne6.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne6.ImageIndex  = 5;
     this.geniusTreeViewColonne6.Text        = "Colonne 6";
     //
     // geniusTreeViewColonne7
     //
     this.geniusTreeViewColonne7.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne7.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne7.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne7.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne7.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne7.Text        = "Colonne 6";
     //
     // geniusTreeViewColonne8
     //
     this.geniusTreeViewColonne8.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne8.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne8.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne8.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne8.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne8.Text        = "Colonne 7";
     //
     // geniusTreeViewColonne9
     //
     this.geniusTreeViewColonne9.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne9.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne9.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne9.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne9.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne9.Text        = "Colonne 8";
     //
     // geniusTreeViewColonne10
     //
     this.geniusTreeViewColonne10.BackColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne10.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne10.FontColonne = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.geniusTreeViewColonne10.ForeColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne10.HeadColor   = new Genius.Controls.GeniusLinearGradientBrush(System.Drawing.Color.Empty, System.Drawing.Color.Empty, 0F);
     this.geniusTreeViewColonne10.Text        = "Colonne 9";
     //
     // TestHeader
     //
     this.Controls.Add(this.gtv);
     this.Name = "TestHeader";
     this.Size = new System.Drawing.Size(392, 256);
     this.ResumeLayout(false);
 }
Пример #51
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormUnits));
     this.panel1                          = new System.Windows.Forms.Panel();
     this.button1                         = new System.Windows.Forms.Button();
     this.buttonClose                     = new System.Windows.Forms.Button();
     this.panel2                          = new System.Windows.Forms.Panel();
     this.toolStrip1                      = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2                = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1              = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9                = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6             = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10               = new System.Windows.Forms.ToolStripButton();
     this.panel3                          = new System.Windows.Forms.Panel();
     this.listView1                       = new System.Windows.Forms.ListView();
     this.columnHeader1                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3                   = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4                   = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1               = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.создатьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2              = new System.Windows.Forms.ToolStripSeparator();
     this.выбратьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.imageList1                      = new System.Windows.Forms.ImageList(this.components);
     this.toolTip1                        = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 325);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(611, 45);
     this.panel1.TabIndex = 2;
     //
     // button1
     //
     this.button1.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Image      = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.button1.Location   = new System.Drawing.Point(443, 10);
     this.button1.Name       = "button1";
     this.button1.Size       = new System.Drawing.Size(75, 23);
     this.button1.TabIndex   = 1;
     this.button1.Text       = "Выбрать";
     this.button1.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click  += new System.EventHandler(this.Button1Click);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(524, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.toolStrip1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(611, 25);
     this.panel2.TabIndex = 3;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(611, 25);
     this.toolStrip1.TabIndex    = 18;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton2.Text   = "Изменить";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 20);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 23);
     this.toolStripComboBox1.Text      = "Введите данные для поиска";
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 20);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 23);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 20);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.listView1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(611, 300);
     this.panel3.TabIndex = 4;
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 0);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(611, 300);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 6;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Наименование";
     this.columnHeader2.Width = 400;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "";
     this.columnHeader3.Width = 50;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "№";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьЗаписьToolStripMenuItem,
         this.изменитьЗаписьToolStripMenuItem,
         this.удалитьЗаписьToolStripMenuItem,
         this.toolStripMenuItem2,
         this.выбратьЗаписьToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(172, 98);
     //
     // создатьЗаписьToolStripMenuItem
     //
     this.создатьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьЗаписьToolStripMenuItem.Image")));
     this.создатьЗаписьToolStripMenuItem.Name   = "создатьЗаписьToolStripMenuItem";
     this.создатьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.создатьЗаписьToolStripMenuItem.Text   = "Создать запись.";
     this.создатьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.СоздатьЗаписьToolStripMenuItemClick);
     //
     // изменитьЗаписьToolStripMenuItem
     //
     this.изменитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьЗаписьToolStripMenuItem.Image")));
     this.изменитьЗаписьToolStripMenuItem.Name   = "изменитьЗаписьToolStripMenuItem";
     this.изменитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.изменитьЗаписьToolStripMenuItem.Text   = "Изменить запись.";
     this.изменитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьЗаписьToolStripMenuItemClick);
     //
     // удалитьЗаписьToolStripMenuItem
     //
     this.удалитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьЗаписьToolStripMenuItem.Image")));
     this.удалитьЗаписьToolStripMenuItem.Name   = "удалитьЗаписьToolStripMenuItem";
     this.удалитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(171, 22);
     this.удалитьЗаписьToolStripMenuItem.Text   = "Удалить запись.";
     this.удалитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.УдалитьЗаписьToolStripMenuItemClick);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name    = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size    = new System.Drawing.Size(168, 6);
     this.toolStripMenuItem2.Visible = false;
     //
     // выбратьЗаписьToolStripMenuItem
     //
     this.выбратьЗаписьToolStripMenuItem.Name    = "выбратьЗаписьToolStripMenuItem";
     this.выбратьЗаписьToolStripMenuItem.Size    = new System.Drawing.Size(171, 22);
     this.выбратьЗаписьToolStripMenuItem.Text    = "Выбрать запись.";
     this.выбратьЗаписьToolStripMenuItem.Visible = false;
     this.выбратьЗаписьToolStripMenuItem.Click  += new System.EventHandler(this.ВыбратьЗаписьToolStripMenuItemClick);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder.png");
     this.imageList1.Images.SetKeyName(1, "page.png");
     //
     // FormUnits
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(611, 370);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "FormUnits";
     this.Text        = "Единицы измерения";
     this.Activated  += new System.EventHandler(this.FormUnitsActivated);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormUnitsFormClosed);
     this.Load       += new System.EventHandler(this.FormUnitsLoad);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 public clsProdutosCertificadoOrigemComNormas(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int nIdExportador, string strIdPE, int nIdTipoCO, int nTipoClassificacao, ref System.Windows.Forms.ImageList ilBandeiras) : base(ref tratadorErro, ref ConnectionDB, EnderecoExecutavel, nIdExportador, strIdPE, nIdTipoCO, nTipoClassificacao, ref ilBandeiras)
 {
 }
Пример #53
0
 [System.Diagnostics.DebuggerStepThrough()] private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout));
     this.Button1        = new System.Windows.Forms.Button();
     this.Label1         = new System.Windows.Forms.Label();
     this.LinkLabel1     = new System.Windows.Forms.LinkLabel();
     this.Label2         = new System.Windows.Forms.Label();
     this.Label4         = new System.Windows.Forms.Label();
     this.ImageList1     = new System.Windows.Forms.ImageList(this.components);
     this.PictureBox1    = new System.Windows.Forms.PictureBox();
     this.label6         = new System.Windows.Forms.Label();
     this.Label7         = new System.Windows.Forms.Label();
     this.Label8         = new System.Windows.Forms.Label();
     this.GroupBox1      = new System.Windows.Forms.GroupBox();
     this.lblUserName    = new System.Windows.Forms.Label();
     this.lblCompanyName = new System.Windows.Forms.Label();
     this.PictureBox2    = new System.Windows.Forms.PictureBox();
     this.Label9         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
     this.GroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // Button1
     //
     this.Button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.Button1.Location     = new System.Drawing.Point(368, 256);
     this.Button1.Name         = "Button1";
     this.Button1.Size         = new System.Drawing.Size(75, 37);
     this.Button1.TabIndex     = 0;
     this.Button1.Text         = "确定(&O)";
     //
     // Label1
     //
     this.Label1.Location = new System.Drawing.Point(210, 64);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(250, 23);
     this.Label1.TabIndex = 1;
     this.Label1.Text     = "Label1";
     //
     // LinkLabel1
     //
     this.LinkLabel1.Location     = new System.Drawing.Point(0, 237);
     this.LinkLabel1.Name         = "LinkLabel1";
     this.LinkLabel1.Size         = new System.Drawing.Size(368, 23);
     this.LinkLabel1.TabIndex     = 1;
     this.LinkLabel1.TabStop      = true;
     this.LinkLabel1.Text         = "http://www.carreygroup.com";
     this.LinkLabel1.TextAlign    = System.Drawing.ContentAlignment.BottomLeft;
     this.LinkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel1_LinkClicked);
     //
     // Label2
     //
     this.Label2.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label2.ForeColor = System.Drawing.SystemColors.WindowText;
     this.Label2.Location  = new System.Drawing.Point(210, 40);
     this.Label2.Name      = "Label2";
     this.Label2.Size      = new System.Drawing.Size(250, 24);
     this.Label2.TabIndex  = 6;
     this.Label2.Text      = "PPC 多线程接口服务程序";
     this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label4
     //
     this.Label4.Font      = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label4.ForeColor = System.Drawing.SystemColors.WindowText;
     this.Label4.Location  = new System.Drawing.Point(210, 8);
     this.Label4.Name      = "Label4";
     this.Label4.Size      = new System.Drawing.Size(250, 32);
     this.Label4.TabIndex  = 5;
     this.Label4.Text      = "Carrey 无线餐饮管理系统";
     this.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ImageList1
     //
     this.ImageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList1.ImageStream")));
     this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList1.Images.SetKeyName(0, "");
     this.ImageList1.Images.SetKeyName(1, "");
     this.ImageList1.Images.SetKeyName(2, "");
     this.ImageList1.Images.SetKeyName(3, "");
     this.ImageList1.Images.SetKeyName(4, "");
     this.ImageList1.Images.SetKeyName(5, "");
     //
     // PictureBox1
     //
     this.PictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.PictureBox1.Location  = new System.Drawing.Point(150, 8);
     this.PictureBox1.Name      = "PictureBox1";
     this.PictureBox1.Size      = new System.Drawing.Size(56, 48);
     this.PictureBox1.TabIndex  = 7;
     this.PictureBox1.TabStop   = false;
     //
     // label6
     //
     this.label6.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label6.ForeColor = System.Drawing.Color.Navy;
     this.label6.Location  = new System.Drawing.Point(152, 163);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(304, 32);
     this.label6.TabIndex  = 10;
     this.label6.Text      = "Carrey Group 软件产品";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Label7
     //
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Label7.Font        = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Label7.ForeColor   = System.Drawing.Color.Red;
     this.Label7.Location    = new System.Drawing.Point(152, 195);
     this.Label7.Name        = "Label7";
     this.Label7.Size        = new System.Drawing.Size(304, 40);
     this.Label7.TabIndex    = 9;
     this.Label7.Text        = "版权声明:该程序的著作权归程序作者本人所有,任何单位和/或个人不得擅自再发布和反编译。";
     this.Label7.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Label8
     //
     this.Label8.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.Label8.Location = new System.Drawing.Point(0, 296);
     this.Label8.Name     = "Label8";
     this.Label8.Size     = new System.Drawing.Size(466, 16);
     this.Label8.TabIndex = 0;
     this.Label8.Text     = "Copyright (C) Carrey Group. All Rights Reserved!";
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.lblUserName);
     this.GroupBox1.Controls.Add(this.lblCompanyName);
     this.GroupBox1.Location = new System.Drawing.Point(152, 88);
     this.GroupBox1.Name     = "GroupBox1";
     this.GroupBox1.Size     = new System.Drawing.Size(304, 72);
     this.GroupBox1.TabIndex = 11;
     this.GroupBox1.TabStop  = false;
     this.GroupBox1.Text     = "本产品使用权属于";
     //
     // lblUserName
     //
     this.lblUserName.Location  = new System.Drawing.Point(16, 40);
     this.lblUserName.Name      = "lblUserName";
     this.lblUserName.Size      = new System.Drawing.Size(280, 24);
     this.lblUserName.TabIndex  = 1;
     this.lblUserName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblCompanyName
     //
     this.lblCompanyName.Location  = new System.Drawing.Point(16, 20);
     this.lblCompanyName.Name      = "lblCompanyName";
     this.lblCompanyName.Size      = new System.Drawing.Size(280, 23);
     this.lblCompanyName.TabIndex  = 0;
     this.lblCompanyName.Text      = "Carrey Group";
     this.lblCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PictureBox2
     //
     this.PictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("PictureBox2.Image")));
     this.PictureBox2.Location = new System.Drawing.Point(0, 0);
     this.PictureBox2.Name     = "PictureBox2";
     this.PictureBox2.Size     = new System.Drawing.Size(144, 234);
     this.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.PictureBox2.TabIndex = 12;
     this.PictureBox2.TabStop  = false;
     //
     // Label9
     //
     this.Label9.Location  = new System.Drawing.Point(0, 260);
     this.Label9.Name      = "Label9";
     this.Label9.Size      = new System.Drawing.Size(368, 23);
     this.Label9.TabIndex  = 13;
     this.Label9.Text      = "版权所有(C) Carrey Group。保留所有权利!";
     this.Label9.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     //
     // frmAbout
     //
     this.AcceptButton      = this.Button1;
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.BackColor         = System.Drawing.SystemColors.Control;
     this.ClientSize        = new System.Drawing.Size(466, 312);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.PictureBox2);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.PictureBox1);
     this.Controls.Add(this.LinkLabel1);
     this.Controls.Add(this.Button1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmAbout";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "关于";
     this.Load           += new System.EventHandler(this.frmAbout_Load);
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
     this.GroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).EndInit();
     this.ResumeLayout(false);
 }
Пример #54
0
        /// <summary>
        ///  Required method for Designer support - do not modify
        ///  the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            //this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            //this.ClientSize = new System.Drawing.Size(800, 450);
            //this.Text = "Form1";

            #region [=====控件初始化=====]

            this.statusStrip1          = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.menuStrip1            = new System.Windows.Forms.MenuStrip();
            //
            // 工具栏
            //
            this.文件FToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.打开OToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator             = new System.Windows.Forms.ToolStripSeparator();
            this.退出XToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.工具TToolStripMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemBuildAdd      = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemBuildEdit     = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2            = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItemBuildTable    = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemBuildSelector = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator11           = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItemBuildView     = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator7            = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripMenuItemBuildClass    = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1            = new System.Windows.Forms.ToolStripSeparator();
            this.项OToolStripMenuItem            = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItemBuild         = new System.Windows.Forms.ToolStripMenuItem();
            this.toolRefresh                  = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1                   = new System.Windows.Forms.ToolStrip();
            this.打开OToolStripButton           = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator6          = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBuildAdd      = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonBuildEdit     = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator8          = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBuildTable    = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonBuildSelector = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator10         = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBuildView     = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator9          = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonBuildClass    = new System.Windows.Forms.ToolStripButton();
            this.treeView1  = new System.Windows.Forms.TreeView();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);

            // 弹出菜单相关
            this.contextMenuTable = new System.Windows.Forms.ContextMenuStrip();
            this.menuBuildAdd     = new System.Windows.Forms.ToolStripMenuItem();
            this.contextMenuPage  = new System.Windows.Forms.ContextMenuStrip();
            this.menuPageBuild    = new System.Windows.Forms.ToolStripMenuItem();

            this.statusStrip1.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();

            #endregion

            //
            // statusStrip1
            //
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.toolStripStatusLabel1
            });
            this.statusStrip1.Location = new System.Drawing.Point(0, 539);
            this.statusStrip1.Name     = "statusStrip1";
            this.statusStrip1.Size     = new System.Drawing.Size(784, 22);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text     = "statusStrip1";
            //
            // toolStripStatusLabel1
            //
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(131, 17);
            this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
            //
            // menuStrip1
            //
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.文件FToolStripMenuItem,
                this.工具TToolStripMenuItem
            });
            this.menuStrip1.Location     = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name         = "menuStrip1";
            this.menuStrip1.Size         = new System.Drawing.Size(784, 25);
            this.menuStrip1.TabIndex     = 2;
            this.menuStrip1.Text         = "menuStrip1";
            this.menuStrip1.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.menuStrip1_ItemClicked);
            //
            // 文件FToolStripMenuItem
            //
            this.文件FToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.打开OToolStripMenuItem,
                this.toolStripSeparator,
                this.退出XToolStripMenuItem
            });
            this.文件FToolStripMenuItem.Name = "文件FToolStripMenuItem";
            this.文件FToolStripMenuItem.Size = new System.Drawing.Size(58, 21);
            this.文件FToolStripMenuItem.Text = "文件(&F)";
            //
            // 打开OToolStripMenuItem
            //
            this.打开OToolStripMenuItem.Image = ((System.Drawing.Image)(Resources.tool_open));
            this.打开OToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.打开OToolStripMenuItem.Name         = "打开OToolStripMenuItem";
            this.打开OToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            this.打开OToolStripMenuItem.Size         = new System.Drawing.Size(165, 22);
            this.打开OToolStripMenuItem.Text         = "打开(&O)";
            this.打开OToolStripMenuItem.Click       += new System.EventHandler(this.打开OToolStripMenuItem_Click);
            //
            // toolStripSeparator
            //
            this.toolStripSeparator.Name = "toolStripSeparator";
            this.toolStripSeparator.Size = new System.Drawing.Size(162, 6);
            //
            // 退出XToolStripMenuItem
            //
            this.退出XToolStripMenuItem.Name   = "退出XToolStripMenuItem";
            this.退出XToolStripMenuItem.Size   = new System.Drawing.Size(165, 22);
            this.退出XToolStripMenuItem.Text   = "退出(&X)";
            this.退出XToolStripMenuItem.Click += new System.EventHandler(this.退出XToolStripMenuItem_Click);

            #region [=====工具菜单初始化=====]

            //
            // 工具TToolStripMenuItem
            //
            this.工具TToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.toolStripMenuItemBuildAdd,
                this.toolStripMenuItemBuildEdit,
                this.toolStripSeparator2,
                this.toolStripMenuItemBuildTable,
                this.toolStripMenuItemBuildSelector,
                this.toolStripSeparator11,
                this.toolStripMenuItemBuildView,
                this.toolStripSeparator7,
                this.toolStripMenuItemBuildClass,
                this.toolStripSeparator1,
                this.项OToolStripMenuItem,
                this.toolStripMenuItemBuild
            });
            this.工具TToolStripMenuItem.Name = "工具TToolStripMenuItem";
            this.工具TToolStripMenuItem.Size = new System.Drawing.Size(59, 21);
            this.工具TToolStripMenuItem.Text = "工具(&T)";
            //
            // toolStripMenuItemBuildAdd
            //
            this.toolStripMenuItemBuildAdd.Image  = ((System.Drawing.Image)(Resources.add_build));
            this.toolStripMenuItemBuildAdd.Name   = "toolStripMenuItemBuildAdd";
            this.toolStripMenuItemBuildAdd.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildAdd.Text   = "构建添加表单页";
            this.toolStripMenuItemBuildAdd.Click += new System.EventHandler(this.ToolStripMenuItemBuildAdd_Click);
            //
            // toolStripMenuItemBuildEdit
            //
            this.toolStripMenuItemBuildEdit.Image  = ((System.Drawing.Image)(Resources.edit_build));
            this.toolStripMenuItemBuildEdit.Name   = "toolStripMenuItemBuildEdit";
            this.toolStripMenuItemBuildEdit.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildEdit.Text   = "构建修改表单页";
            this.toolStripMenuItemBuildEdit.Click += new System.EventHandler(this.ToolStripMenuItemBuildEdit_Click);
            //
            // toolStripSeparator2
            //
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(164, 6);
            //
            // toolStripMenuItemBuildTable
            //
            this.toolStripMenuItemBuildTable.Image  = ((System.Drawing.Image)(Resources.table_build));
            this.toolStripMenuItemBuildTable.Name   = "toolStripMenuItemBuildTable";
            this.toolStripMenuItemBuildTable.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildTable.Text   = "构建表格页";
            this.toolStripMenuItemBuildTable.Click += new System.EventHandler(this.ToolStripMenuItem1_Click);
            //
            // toolStripMenuItemBuildSelector
            //
            this.toolStripMenuItemBuildSelector.Image  = ((System.Drawing.Image)(Resources.selector));
            this.toolStripMenuItemBuildSelector.Name   = "toolStripMenuItemBuildSelector";
            this.toolStripMenuItemBuildSelector.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildSelector.Text   = "构建选择器";
            this.toolStripMenuItemBuildSelector.Click += new System.EventHandler(this.toolStripMenuItemBuildSelector_Click);
            //
            // toolStripSeparator11
            //
            this.toolStripSeparator11.Name = "toolStripSeparator11";
            this.toolStripSeparator11.Size = new System.Drawing.Size(164, 6);
            //
            // toolStripMenuItemBuildView
            //
            this.toolStripMenuItemBuildView.Image  = ((System.Drawing.Image)(Resources.view_build));
            this.toolStripMenuItemBuildView.Name   = "toolStripMenuItemBuildView";
            this.toolStripMenuItemBuildView.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildView.Text   = "构建视图页";
            this.toolStripMenuItemBuildView.Click += new System.EventHandler(this.ToolStripMenuItemBuildView_Click);
            //
            // toolStripSeparator7
            //
            this.toolStripSeparator7.Name = "toolStripSeparator7";
            this.toolStripSeparator7.Size = new System.Drawing.Size(164, 6);
            //
            // toolStripMenuItemBuildClass
            //
            this.toolStripMenuItemBuildClass.Image  = ((System.Drawing.Image)(Resources.code_build));
            this.toolStripMenuItemBuildClass.Name   = "toolStripMenuItemBuildClass";
            this.toolStripMenuItemBuildClass.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuildClass.Text   = "构建主类";
            this.toolStripMenuItemBuildClass.Click += new System.EventHandler(this.ToolStripMenuItemBuildClass_Click);
            //
            // toolStripSeparator1
            //
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(164, 6);
            //
            // 选项OToolStripMenuItem
            //
            this.项OToolStripMenuItem.Name   = "选项OToolStripMenuItem";
            this.项OToolStripMenuItem.Size   = new System.Drawing.Size(167, 22);
            this.项OToolStripMenuItem.Text   = "XOrm 选项(&X) ...";
            this.项OToolStripMenuItem.Click += new System.EventHandler(this.项OToolStripMenuItem_Click);
            //
            // toolStripMenuItemBuild
            //
            this.toolStripMenuItemBuild.Name   = "toolStripMenuItemBuild";
            this.toolStripMenuItemBuild.Size   = new System.Drawing.Size(167, 22);
            this.toolStripMenuItemBuild.Text   = "构建 选项(&B) ...";
            this.toolStripMenuItemBuild.Click += new System.EventHandler(this.ToolStripMenuItemBuild_Click);

            #endregion

            #region [=====工具栏初始化=====]

            //
            // toolStrip1
            //
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.打开OToolStripButton,
                this.toolRefresh,
                this.toolStripSeparator6,
                this.toolStripButtonBuildAdd,
                this.toolStripButtonBuildEdit,
                this.toolStripSeparator8,
                this.toolStripButtonBuildTable,
                this.toolStripButtonBuildSelector,
                this.toolStripSeparator10,
                this.toolStripButtonBuildView,
                this.toolStripSeparator9,
                this.toolStripButtonBuildClass
            });
            this.toolStrip1.Location = new System.Drawing.Point(0, 25);
            this.toolStrip1.Name     = "toolStrip1";
            this.toolStrip1.Size     = new System.Drawing.Size(784, 25);
            this.toolStrip1.TabIndex = 3;
            this.toolStrip1.Text     = "toolStrip1";
            //
            // 打开OToolStripButton
            //
            this.打开OToolStripButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.打开OToolStripButton.Image                 = ((System.Drawing.Image)(Resources.tool_open));
            this.打开OToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.打开OToolStripButton.Name   = "打开OToolStripButton";
            this.打开OToolStripButton.Size   = new System.Drawing.Size(23, 22);
            this.打开OToolStripButton.Text   = "打开(&O)";
            this.打开OToolStripButton.Click += new System.EventHandler(this.打开OToolStripButton_Click);
            //
            // 刷新
            //
            this.toolRefresh.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolRefresh.Image                 = ((System.Drawing.Image)(Resources.tool_refresh));
            this.toolRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolRefresh.Name   = "toolRefresh";
            this.toolRefresh.Size   = new System.Drawing.Size(23, 22);
            this.toolRefresh.Text   = "刷新(&R)";
            this.toolRefresh.Click += new System.EventHandler(this.toolRefresh_Click);
            //
            // toolStripSeparator6
            //
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
            //
            // toolStripButtonBuildAdd
            //
            this.toolStripButtonBuildAdd.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildAdd.Image                 = ((System.Drawing.Image)(Resources.add_build));
            this.toolStripButtonBuildAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildAdd.Name   = "toolStripButtonBuildAdd";
            this.toolStripButtonBuildAdd.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildAdd.Text   = "构建添加表单页";
            this.toolStripButtonBuildAdd.Click += new System.EventHandler(this.ToolStripButtonBuildAdd_Click);
            //
            // toolStripButtonBuildEdit
            //
            this.toolStripButtonBuildEdit.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildEdit.Image                 = ((System.Drawing.Image)(Resources.edit_build));
            this.toolStripButtonBuildEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildEdit.Name   = "toolStripButtonBuildEdit";
            this.toolStripButtonBuildEdit.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildEdit.Text   = "构建修改表单页";
            this.toolStripButtonBuildEdit.Click += new System.EventHandler(this.ToolStripButtonBuildEdit_Click);
            //
            // toolStripSeparator8
            //
            this.toolStripSeparator8.Name = "toolStripSeparator8";
            this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
            //
            // toolStripButtonBuildTable
            //
            this.toolStripButtonBuildTable.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildTable.Image                 = ((System.Drawing.Image)(Resources.table_build));
            this.toolStripButtonBuildTable.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildTable.Name   = "toolStripButtonBuildTable";
            this.toolStripButtonBuildTable.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildTable.Text   = "构建表格页";
            this.toolStripButtonBuildTable.Click += new System.EventHandler(this.ToolStripButtonBuildTable_Click);
            //
            // toolStripButtonBuildSelector
            //
            this.toolStripButtonBuildSelector.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildSelector.Image                 = ((System.Drawing.Image)(Resources.selector));
            this.toolStripButtonBuildSelector.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildSelector.Name   = "toolStripButtonBuildSelector";
            this.toolStripButtonBuildSelector.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildSelector.Text   = "构建选择器";
            this.toolStripButtonBuildSelector.Click += new System.EventHandler(this.toolStripButtonBuildSelector_Click);
            //
            // toolStripSeparator10
            //
            this.toolStripSeparator10.Name = "toolStripSeparator10";
            this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
            //
            // toolStripButtonBuildView
            //
            this.toolStripButtonBuildView.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildView.Image                 = ((System.Drawing.Image)(Resources.view_build));
            this.toolStripButtonBuildView.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildView.Name   = "toolStripButtonBuildView";
            this.toolStripButtonBuildView.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildView.Text   = "构建视图页";
            this.toolStripButtonBuildView.Click += new System.EventHandler(this.ToolStripButtonBuildView_Click);
            //
            // toolStripSeparator9
            //
            this.toolStripSeparator9.Name = "toolStripSeparator9";
            this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
            //
            // toolStripButtonBuildClass
            //
            this.toolStripButtonBuildClass.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBuildClass.Image                 = ((System.Drawing.Image)(Resources.code_build));
            this.toolStripButtonBuildClass.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBuildClass.Name   = "toolStripButtonBuildClass";
            this.toolStripButtonBuildClass.Size   = new System.Drawing.Size(23, 22);
            this.toolStripButtonBuildClass.Text   = "构建主类";
            this.toolStripButtonBuildClass.Click += new System.EventHandler(this.ToolStripButtonBuildClass_Click);

            #endregion

            //
            // treeView1
            //
            this.treeView1.Dock               = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.ImageIndex         = 0;
            this.treeView1.ImageList          = this.imageList1;
            this.treeView1.ItemHeight         = 20;
            this.treeView1.Location           = new System.Drawing.Point(0, 50);
            this.treeView1.Name               = "treeView1";
            this.treeView1.SelectedImageIndex = 0;
            this.treeView1.Size               = new System.Drawing.Size(784, 489);
            this.treeView1.TabIndex           = 4;
            this.treeView1.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.TreeView1_AfterSelect);
            //
            // imageList1
            //
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.Add("project", Resources.tree_project);
            this.imageList1.Images.Add("object", Resources.tree_object);
            this.imageList1.Images.Add("table", Resources.table_16);
            this.imageList1.Images.Add("page", Resources.tree_page);
            this.imageList1.Images.Add("mod", Resources.tree_mod);
            //
            // 初始化其他工具
            //
            InitializeMenu();
            //
            // Form1
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(800, 450);
            this.Controls.Add(this.treeView1);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.menuStrip1);
            this.MainMenuStrip = this.menuStrip1;
            this.Name          = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "Form1";
            this.Load         += new System.EventHandler(this.Form1_Load);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #55
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NounsForm));
     this.toolTip1          = new System.Windows.Forms.ToolTip(this.components);
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.создатьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьЗаписьToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьЗаписьToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.выбратьЗаписьИзSingularToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.выбратьЗаписьИзPluralToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1          = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripComboBox1  = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripButton9    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton10   = new System.Windows.Forms.ToolStripButton();
     this.listView1           = new System.Windows.Forms.ListView();
     this.columnHeader1       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5       = new System.Windows.Forms.ColumnHeader();
     this.panel1               = new System.Windows.Forms.Panel();
     this.buttonReturnPlural   = new System.Windows.Forms.Button();
     this.buttonReturnSingular = new System.Windows.Forms.Button();
     this.buttonClose          = new System.Windows.Forms.Button();
     this.contextMenuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "folder.png");
     this.imageList1.Images.SetKeyName(1, "page.png");
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.создатьЗаписьToolStripMenuItem,
         this.изменитьЗаписьToolStripMenuItem,
         this.удалитьЗаписьToolStripMenuItem,
         this.toolStripMenuItem2,
         this.выбратьЗаписьИзSingularToolStripMenuItem,
         this.выбратьЗаписьИзPluralToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(310, 142);
     //
     // создатьЗаписьToolStripMenuItem
     //
     this.создатьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("создатьЗаписьToolStripMenuItem.Image")));
     this.создатьЗаписьToolStripMenuItem.Name   = "создатьЗаписьToolStripMenuItem";
     this.создатьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(309, 22);
     this.создатьЗаписьToolStripMenuItem.Text   = "Создать запись.";
     this.создатьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.СоздатьЗаписьToolStripMenuItemClick);
     //
     // изменитьЗаписьToolStripMenuItem
     //
     this.изменитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьЗаписьToolStripMenuItem.Image")));
     this.изменитьЗаписьToolStripMenuItem.Name   = "изменитьЗаписьToolStripMenuItem";
     this.изменитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(309, 22);
     this.изменитьЗаписьToolStripMenuItem.Text   = "Изменить запись.";
     this.изменитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьЗаписьToolStripMenuItemClick);
     //
     // удалитьЗаписьToolStripMenuItem
     //
     this.удалитьЗаписьToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьЗаписьToolStripMenuItem.Image")));
     this.удалитьЗаписьToolStripMenuItem.Name   = "удалитьЗаписьToolStripMenuItem";
     this.удалитьЗаписьToolStripMenuItem.Size   = new System.Drawing.Size(309, 22);
     this.удалитьЗаписьToolStripMenuItem.Text   = "Удалить запись.";
     this.удалитьЗаписьToolStripMenuItem.Click += new System.EventHandler(this.УдалитьЗаписьToolStripMenuItemClick);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name    = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size    = new System.Drawing.Size(306, 6);
     this.toolStripMenuItem2.Visible = false;
     //
     // выбратьЗаписьИзSingularToolStripMenuItem
     //
     this.выбратьЗаписьИзSingularToolStripMenuItem.Name    = "выбратьЗаписьИзSingularToolStripMenuItem";
     this.выбратьЗаписьИзSingularToolStripMenuItem.Size    = new System.Drawing.Size(309, 22);
     this.выбратьЗаписьИзSingularToolStripMenuItem.Text    = "Выбрать запись из единственного числа";
     this.выбратьЗаписьИзSingularToolStripMenuItem.Visible = false;
     this.выбратьЗаписьИзSingularToolStripMenuItem.Click  += new System.EventHandler(this.ВыбратьЗаписьИзSingularToolStripMenuItemClick);
     //
     // выбратьЗаписьИзPluralToolStripMenuItem
     //
     this.выбратьЗаписьИзPluralToolStripMenuItem.Name    = "выбратьЗаписьИзPluralToolStripMenuItem";
     this.выбратьЗаписьИзPluralToolStripMenuItem.Size    = new System.Drawing.Size(309, 22);
     this.выбратьЗаписьИзPluralToolStripMenuItem.Text    = "Выбрать запись из множественного числа";
     this.выбратьЗаписьИзPluralToolStripMenuItem.Visible = false;
     this.выбратьЗаписьИзPluralToolStripMenuItem.Click  += new System.EventHandler(this.ВыбратьЗаписьИзPluralToolStripMenuItemClick);
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator5,
         this.toolStripComboBox1,
         this.toolStripButton9,
         this.toolStripSeparator6,
         this.toolStripButton10
     });
     this.toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.toolStrip1.Location    = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name        = "toolStrip1";
     this.toolStrip1.Size        = new System.Drawing.Size(609, 25);
     this.toolStrip1.TabIndex    = 22;
     this.toolStrip1.Text        = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text   = "Изменить";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripComboBox1
     //
     this.toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBox1.Name      = "toolStripComboBox1";
     this.toolStripComboBox1.Size      = new System.Drawing.Size(200, 25);
     this.toolStripComboBox1.Text      = "Введите данные для поиска";
     this.toolStripComboBox1.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ToolStripComboBox1KeyDown);
     //
     // toolStripButton9
     //
     this.toolStripButton9.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton9.Image")));
     this.toolStripButton9.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton9.Name   = "toolStripButton9";
     this.toolStripButton9.Size   = new System.Drawing.Size(62, 22);
     this.toolStripButton9.Text   = "Поиск";
     this.toolStripButton9.Click += new System.EventHandler(this.ToolStripButton9Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton10
     //
     this.toolStripButton10.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton10.Image")));
     this.toolStripButton10.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton10.Name   = "toolStripButton10";
     this.toolStripButton10.Size   = new System.Drawing.Size(81, 22);
     this.toolStripButton10.Text   = "Обновить";
     this.toolStripButton10.Click += new System.EventHandler(this.ToolStripButton10Click);
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4,
         this.columnHeader5
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Cursor           = System.Windows.Forms.Cursors.Default;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 25);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(609, 341);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 28;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Единственное число";
     this.columnHeader2.Width = 150;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Множественное число";
     this.columnHeader3.Width = 150;
     //
     // columnHeader4
     //
     this.columnHeader4.Text  = "Перевод";
     this.columnHeader4.Width = 150;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "№";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.buttonReturnPlural);
     this.panel1.Controls.Add(this.buttonReturnSingular);
     this.panel1.Controls.Add(this.buttonClose);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 366);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(609, 45);
     this.panel1.TabIndex = 27;
     //
     // buttonReturnPlural
     //
     this.buttonReturnPlural.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonReturnPlural.Image      = ((System.Drawing.Image)(resources.GetObject("buttonReturnPlural.Image")));
     this.buttonReturnPlural.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonReturnPlural.Location   = new System.Drawing.Point(310, 10);
     this.buttonReturnPlural.Name       = "buttonReturnPlural";
     this.buttonReturnPlural.Size       = new System.Drawing.Size(206, 23);
     this.buttonReturnPlural.TabIndex   = 2;
     this.buttonReturnPlural.Text       = "Выбрать из множественного числа";
     this.buttonReturnPlural.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonReturnPlural.UseVisualStyleBackColor = true;
     this.buttonReturnPlural.Visible = false;
     this.buttonReturnPlural.Click  += new System.EventHandler(this.ButtonReturnPluralClick);
     //
     // buttonReturnSingular
     //
     this.buttonReturnSingular.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonReturnSingular.Image      = ((System.Drawing.Image)(resources.GetObject("buttonReturnSingular.Image")));
     this.buttonReturnSingular.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.buttonReturnSingular.Location   = new System.Drawing.Point(104, 10);
     this.buttonReturnSingular.Name       = "buttonReturnSingular";
     this.buttonReturnSingular.Size       = new System.Drawing.Size(200, 23);
     this.buttonReturnSingular.TabIndex   = 1;
     this.buttonReturnSingular.Text       = "Выбрать из единственного числа";
     this.buttonReturnSingular.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.buttonReturnSingular.UseVisualStyleBackColor = true;
     this.buttonReturnSingular.Visible = false;
     this.buttonReturnSingular.Click  += new System.EventHandler(this.ButtonReturnSingularClick);
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(522, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // NounsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(609, 411);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.toolStrip1);
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "NounsForm";
     this.Text  = "Существительные";
     this.Load += new System.EventHandler(this.NounsFormLoad);
     this.contextMenuStrip1.ResumeLayout(false);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Пример #56
0
 public clsImportadorExportador(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string EnderecoExecutavel, int nIdExportador, ref System.Windows.Forms.ImageList bandeiras) : base(ref tratadorErro, ref ConnectionDB, EnderecoExecutavel, nIdExportador, ref bandeiras)
 {
     m_strCaptionFrame = "Cadastro de Importadores";
     this.inicializaTypDatSet();
     this.carregaDadosBD();
     this.carregaDadosBDCadEdit();
 }
Пример #57
0
 public clsCriacaoRomaneio(ref mdlTratamentoErro.clsTratamentoErro tratadorErro, ref mdlDataBaseAccess.clsDataBaseAccess ConnectionDB, string strEnderecoExecutavel, int nIdExportador, string strIdPE, ref System.Windows.Forms.ImageList ilBandeiras)
 {
     m_cls_terTratadorErro   = tratadorErro;
     m_cls_dbaConnnectionDB  = ConnectionDB;
     m_strEnderecoExecutavel = strEnderecoExecutavel;
     m_nIdExportador         = nIdExportador;
     m_strIdPE     = strIdPE;
     m_ilBandeiras = ilBandeiras;
     carregaTypDatSet();
     verificaCamposPreenchidos();
 }
Пример #58
0
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.tvMacroTree      = new System.Windows.Forms.TreeView();
     this.mnuTreeContext   = new System.Windows.Forms.ContextMenu();
     this.mnuTreeClear     = new System.Windows.Forms.MenuItem();
     this.mnuTreeDelete    = new System.Windows.Forms.MenuItem();
     this.mnuTreeRename    = new System.Windows.Forms.MenuItem();
     this.mnuTreeSave      = new System.Windows.Forms.MenuItem();
     this.mnuTreeSep       = new System.Windows.Forms.MenuItem();
     this.mnuTreeCollapse  = new System.Windows.Forms.MenuItem();
     this.mnuTreeExpand    = new System.Windows.Forms.MenuItem();
     this.mnuTreeExpandAll = new System.Windows.Forms.MenuItem();
     this.mnuTreeSep2      = new System.Windows.Forms.MenuItem();
     this.mnuTreeNew       = new System.Windows.Forms.MenuItem();
     this.mnuTreeNewFolder = new System.Windows.Forms.MenuItem();
     this.mnuTreeNewMacro  = new System.Windows.Forms.MenuItem();
     this.ilBrowserIcons   = new System.Windows.Forms.ImageList(this.components);
     this.pnlProperties    = new System.Windows.Forms.Panel();
     this.grpMacroCommands = new System.Windows.Forms.GroupBox();
     this.txtCommand6      = new System.Windows.Forms.TextBox();
     this.mnuTextContext   = new System.Windows.Forms.ContextMenu();
     this.mnuTextClear     = new System.Windows.Forms.MenuItem();
     this.mnuTextCopy      = new System.Windows.Forms.MenuItem();
     this.mnuTextCut       = new System.Windows.Forms.MenuItem();
     this.mnuTextPaste     = new System.Windows.Forms.MenuItem();
     this.txtCommand5      = new System.Windows.Forms.TextBox();
     this.txtCommand4      = new System.Windows.Forms.TextBox();
     this.txtCommand3      = new System.Windows.Forms.TextBox();
     this.txtCommand2      = new System.Windows.Forms.TextBox();
     this.txtCommand1      = new System.Windows.Forms.TextBox();
     this.pnlProperties.SuspendLayout();
     this.grpMacroCommands.SuspendLayout();
     this.SuspendLayout();
     //
     // tvMacroTree
     //
     this.tvMacroTree.AllowDrop          = true;
     this.tvMacroTree.ContextMenu        = this.mnuTreeContext;
     this.tvMacroTree.Dock               = System.Windows.Forms.DockStyle.Fill;
     this.tvMacroTree.HideSelection      = false;
     this.tvMacroTree.HotTracking        = true;
     this.tvMacroTree.ImageIndex         = 0;
     this.tvMacroTree.ImageList          = this.ilBrowserIcons;
     this.tvMacroTree.LabelEdit          = true;
     this.tvMacroTree.Location           = new System.Drawing.Point(0, 0);
     this.tvMacroTree.Name               = "tvMacroTree";
     this.tvMacroTree.PathSeparator      = "::";
     this.tvMacroTree.SelectedImageIndex = 0;
     this.tvMacroTree.Size               = new System.Drawing.Size(394, 412);
     this.tvMacroTree.TabIndex           = 0;
     this.tvMacroTree.BeforeLabelEdit   += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvMacroTree_BeforeLabelEdit);
     this.tvMacroTree.AfterLabelEdit    += new System.Windows.Forms.NodeLabelEditEventHandler(this.tvMacroTree_AfterLabelEdit);
     this.tvMacroTree.ItemDrag          += new System.Windows.Forms.ItemDragEventHandler(this.tvMacroTree_ItemDrag);
     this.tvMacroTree.AfterSelect       += new System.Windows.Forms.TreeViewEventHandler(this.tvMacroTree_AfterSelect);
     this.tvMacroTree.DragDrop          += new System.Windows.Forms.DragEventHandler(this.tvMacroTree_DragDrop);
     this.tvMacroTree.DragOver          += new System.Windows.Forms.DragEventHandler(this.tvMacroTree_DragOver);
     this.tvMacroTree.KeyUp             += new System.Windows.Forms.KeyEventHandler(this.tvMacroTree_KeyUp);
     //
     // mnuTreeContext
     //
     this.mnuTreeContext.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuTreeClear,
         this.mnuTreeDelete,
         this.mnuTreeRename,
         this.mnuTreeSave,
         this.mnuTreeSep,
         this.mnuTreeCollapse,
         this.mnuTreeExpand,
         this.mnuTreeExpandAll,
         this.mnuTreeSep2,
         this.mnuTreeNew
     });
     this.mnuTreeContext.Popup += new System.EventHandler(this.mnuTreeContext_Popup);
     //
     // mnuTreeClear
     //
     this.mnuTreeClear.Index  = 0;
     this.mnuTreeClear.Text   = "&Clear";
     this.mnuTreeClear.Click += new System.EventHandler(this.mnuTreeClear_Click);
     //
     // mnuTreeDelete
     //
     this.mnuTreeDelete.Index  = 1;
     this.mnuTreeDelete.Text   = "&Delete";
     this.mnuTreeDelete.Click += new System.EventHandler(this.mnuTreeDelete_Click);
     //
     // mnuTreeRename
     //
     this.mnuTreeRename.Index  = 2;
     this.mnuTreeRename.Text   = "&Rename";
     this.mnuTreeRename.Click += new System.EventHandler(this.mnuTreeRename_Click);
     //
     // mnuTreeSave
     //
     this.mnuTreeSave.Index  = 3;
     this.mnuTreeSave.Text   = "&Save Changes";
     this.mnuTreeSave.Click += new System.EventHandler(this.mnuTreeSave_Click);
     //
     // mnuTreeSep
     //
     this.mnuTreeSep.Index = 4;
     this.mnuTreeSep.Text  = "-";
     //
     // mnuTreeCollapse
     //
     this.mnuTreeCollapse.Index  = 5;
     this.mnuTreeCollapse.Text   = "Co&llapse";
     this.mnuTreeCollapse.Click += new System.EventHandler(this.mnuTreeCollapse_Click);
     //
     // mnuTreeExpand
     //
     this.mnuTreeExpand.Index  = 6;
     this.mnuTreeExpand.Text   = "&Expand";
     this.mnuTreeExpand.Click += new System.EventHandler(this.mnuTreeExpand_Click);
     //
     // mnuTreeExpandAll
     //
     this.mnuTreeExpandAll.Index  = 7;
     this.mnuTreeExpandAll.Text   = "E&xpand All";
     this.mnuTreeExpandAll.Click += new System.EventHandler(this.mnuTreeExpandAll_Click);
     //
     // mnuTreeSep2
     //
     this.mnuTreeSep2.Index   = 8;
     this.mnuTreeSep2.Text    = "-";
     this.mnuTreeSep2.Visible = false;
     //
     // mnuTreeNew
     //
     this.mnuTreeNew.Index = 9;
     this.mnuTreeNew.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuTreeNewFolder,
         this.mnuTreeNewMacro
     });
     this.mnuTreeNew.Text    = "&New";
     this.mnuTreeNew.Visible = false;
     //
     // mnuTreeNewFolder
     //
     this.mnuTreeNewFolder.Index  = 0;
     this.mnuTreeNewFolder.Text   = "&Folder";
     this.mnuTreeNewFolder.Click += new System.EventHandler(this.mnuTreeNewFolder_Click);
     //
     // mnuTreeNewMacro
     //
     this.mnuTreeNewMacro.Index  = 1;
     this.mnuTreeNewMacro.Text   = "&Macro";
     this.mnuTreeNewMacro.Click += new System.EventHandler(this.mnuTreeNewMacro_Click);
     //
     // ilBrowserIcons
     //
     this.ilBrowserIcons.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.ilBrowserIcons.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilBrowserIcons.TransparentColor = System.Drawing.Color.Transparent;
     //
     // pnlProperties
     //
     this.pnlProperties.Controls.Add(this.grpMacroCommands);
     this.pnlProperties.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pnlProperties.Location = new System.Drawing.Point(394, 0);
     this.pnlProperties.Name     = "pnlProperties";
     this.pnlProperties.Size     = new System.Drawing.Size(396, 412);
     this.pnlProperties.TabIndex = 1;
     //
     // grpMacroCommands
     //
     this.grpMacroCommands.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.grpMacroCommands.Controls.Add(this.txtCommand6);
     this.grpMacroCommands.Controls.Add(this.txtCommand5);
     this.grpMacroCommands.Controls.Add(this.txtCommand4);
     this.grpMacroCommands.Controls.Add(this.txtCommand3);
     this.grpMacroCommands.Controls.Add(this.txtCommand2);
     this.grpMacroCommands.Controls.Add(this.txtCommand1);
     this.grpMacroCommands.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.grpMacroCommands.Location  = new System.Drawing.Point(8, 4);
     this.grpMacroCommands.Name      = "grpMacroCommands";
     this.grpMacroCommands.Size      = new System.Drawing.Size(380, 216);
     this.grpMacroCommands.TabIndex  = 0;
     this.grpMacroCommands.TabStop   = false;
     this.grpMacroCommands.Text      = "Macro Commands";
     //
     // txtCommand6
     //
     this.txtCommand6.AcceptsTab   = true;
     this.txtCommand6.ContextMenu  = this.mnuTextContext;
     this.txtCommand6.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand6.Location     = new System.Drawing.Point(8, 180);
     this.txtCommand6.Name         = "txtCommand6";
     this.txtCommand6.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand6.TabIndex     = 5;
     this.txtCommand6.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // mnuTextContext
     //
     this.mnuTextContext.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuTextClear,
         this.mnuTextCopy,
         this.mnuTextCut,
         this.mnuTextPaste
     });
     this.mnuTextContext.Popup += new System.EventHandler(this.mnuTextContext_Popup);
     //
     // mnuTextClear
     //
     this.mnuTextClear.Index  = 0;
     this.mnuTextClear.Text   = "C&lear";
     this.mnuTextClear.Click += new System.EventHandler(this.mnuTextClear_Click);
     //
     // mnuTextCopy
     //
     this.mnuTextCopy.Index  = 1;
     this.mnuTextCopy.Text   = "&Copy";
     this.mnuTextCopy.Click += new System.EventHandler(this.mnuTextCopy_Click);
     //
     // mnuTextCut
     //
     this.mnuTextCut.Index  = 2;
     this.mnuTextCut.Text   = "Cu&t";
     this.mnuTextCut.Click += new System.EventHandler(this.mnuTextCut_Click);
     //
     // mnuTextPaste
     //
     this.mnuTextPaste.Index  = 3;
     this.mnuTextPaste.Text   = "&Paste";
     this.mnuTextPaste.Click += new System.EventHandler(this.mnuTextPaste_Click);
     //
     // txtCommand5
     //
     this.txtCommand5.AcceptsTab   = true;
     this.txtCommand5.ContextMenu  = this.mnuTextContext;
     this.txtCommand5.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand5.Location     = new System.Drawing.Point(8, 148);
     this.txtCommand5.Name         = "txtCommand5";
     this.txtCommand5.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand5.TabIndex     = 4;
     this.txtCommand5.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // txtCommand4
     //
     this.txtCommand4.AcceptsTab   = true;
     this.txtCommand4.ContextMenu  = this.mnuTextContext;
     this.txtCommand4.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand4.Location     = new System.Drawing.Point(8, 116);
     this.txtCommand4.Name         = "txtCommand4";
     this.txtCommand4.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand4.TabIndex     = 3;
     this.txtCommand4.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // txtCommand3
     //
     this.txtCommand3.AcceptsTab   = true;
     this.txtCommand3.ContextMenu  = this.mnuTextContext;
     this.txtCommand3.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand3.Location     = new System.Drawing.Point(8, 84);
     this.txtCommand3.Name         = "txtCommand3";
     this.txtCommand3.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand3.TabIndex     = 2;
     this.txtCommand3.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // txtCommand2
     //
     this.txtCommand2.AcceptsTab   = true;
     this.txtCommand2.ContextMenu  = this.mnuTextContext;
     this.txtCommand2.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand2.Location     = new System.Drawing.Point(8, 52);
     this.txtCommand2.Name         = "txtCommand2";
     this.txtCommand2.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand2.TabIndex     = 1;
     this.txtCommand2.Tag          = "";
     this.txtCommand2.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // txtCommand1
     //
     this.txtCommand1.AcceptsTab   = true;
     this.txtCommand1.ContextMenu  = this.mnuTextContext;
     this.txtCommand1.Font         = new System.Drawing.Font("Lucida Sans Unicode", 9F);
     this.txtCommand1.Location     = new System.Drawing.Point(8, 20);
     this.txtCommand1.Name         = "txtCommand1";
     this.txtCommand1.Size         = new System.Drawing.Size(364, 26);
     this.txtCommand1.TabIndex     = 0;
     this.txtCommand1.Tag          = "";
     this.txtCommand1.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
     //
     // MainWindow
     //
     this.ClientSize = new System.Drawing.Size(790, 412);
     this.Controls.Add(this.tvMacroTree);
     this.Controls.Add(this.pnlProperties);
     this.MaximizeBox   = false;
     this.Name          = "MainWindow";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "FFXI Macro Manager";
     this.pnlProperties.ResumeLayout(false);
     this.grpMacroCommands.ResumeLayout(false);
     this.grpMacroCommands.PerformLayout();
     this.ResumeLayout(false);
 }
Пример #59
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormUsers));
     this.panel1              = new System.Windows.Forms.Panel();
     this.toolStrip1          = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton2    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton3    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton4    = new System.Windows.Forms.ToolStripButton();
     this.imageList1          = new System.Windows.Forms.ImageList(this.components);
     this.panel2              = new System.Windows.Forms.Panel();
     this.buttonClose         = new System.Windows.Forms.Button();
     this.panel3              = new System.Windows.Forms.Panel();
     this.listView1           = new System.Windows.Forms.ListView();
     this.columnHeader1       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3       = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4       = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1   = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.добавитьПользователяToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.изменитьПользователяToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.удалитьПользователяToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.toolStrip1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(620, 25);
     this.panel1.TabIndex = 0;
     //
     // toolStrip1
     //
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButton1,
         this.toolStripButton2,
         this.toolStripButton3,
         this.toolStripSeparator1,
         this.toolStripButton4
     });
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name     = "toolStrip1";
     this.toolStrip1.Size     = new System.Drawing.Size(620, 25);
     this.toolStrip1.TabIndex = 5;
     this.toolStrip1.Text     = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name   = "toolStripButton1";
     this.toolStripButton1.Size   = new System.Drawing.Size(79, 22);
     this.toolStripButton1.Text   = "Добавить";
     this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1Click);
     //
     // toolStripButton2
     //
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton2.Name   = "toolStripButton2";
     this.toolStripButton2.Size   = new System.Drawing.Size(107, 22);
     this.toolStripButton2.Text   = "Редактировать";
     this.toolStripButton2.Click += new System.EventHandler(this.ToolStripButton2Click);
     //
     // toolStripButton3
     //
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton3.Name   = "toolStripButton3";
     this.toolStripButton3.Size   = new System.Drawing.Size(71, 22);
     this.toolStripButton3.Text   = "Удалить";
     this.toolStripButton3.Click += new System.EventHandler(this.ToolStripButton3Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton4
     //
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton4.Name   = "toolStripButton4";
     this.toolStripButton4.Size   = new System.Drawing.Size(81, 22);
     this.toolStripButton4.Text   = "Обновить";
     this.toolStripButton4.Click += new System.EventHandler(this.ToolStripButton4Click);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "drive_user.png");
     this.imageList1.Images.SetKeyName(1, "report_user.png");
     this.imageList1.Images.SetKeyName(2, "folder_user.png");
     this.imageList1.Images.SetKeyName(3, "group.png");
     this.imageList1.Images.SetKeyName(4, "group_add.png");
     this.imageList1.Images.SetKeyName(5, "group_delete.png");
     this.imageList1.Images.SetKeyName(6, "group_edit.png");
     this.imageList1.Images.SetKeyName(7, "group_error.png");
     this.imageList1.Images.SetKeyName(8, "group_gear.png");
     this.imageList1.Images.SetKeyName(9, "group_go.png");
     this.imageList1.Images.SetKeyName(10, "arrow_refresh_small.png");
     //
     // panel2
     //
     this.panel2.Controls.Add(this.buttonClose);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 299);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(620, 45);
     this.panel2.TabIndex = 1;
     //
     // buttonClose
     //
     this.buttonClose.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonClose.Location = new System.Drawing.Point(533, 10);
     this.buttonClose.Name     = "buttonClose";
     this.buttonClose.Size     = new System.Drawing.Size(75, 23);
     this.buttonClose.TabIndex = 0;
     this.buttonClose.Text     = "Закрыть";
     this.buttonClose.UseVisualStyleBackColor = true;
     this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.listView1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 25);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(620, 274);
     this.panel3.TabIndex = 2;
     //
     // listView1
     //
     this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
     this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.listView1.ContextMenuStrip = this.contextMenuStrip1;
     this.listView1.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.listView1.FullRowSelect    = true;
     this.listView1.LargeImageList   = this.imageList1;
     this.listView1.Location         = new System.Drawing.Point(0, 0);
     this.listView1.MultiSelect      = false;
     this.listView1.Name             = "listView1";
     this.listView1.Size             = new System.Drawing.Size(620, 274);
     this.listView1.SmallImageList   = this.imageList1;
     this.listView1.StateImageList   = this.imageList1;
     this.listView1.TabIndex         = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "...";
     this.columnHeader1.Width = 40;
     //
     // columnHeader2
     //
     this.columnHeader2.Text  = "Имя";
     this.columnHeader2.Width = 350;
     //
     // columnHeader3
     //
     this.columnHeader3.Text  = "Права";
     this.columnHeader3.Width = 150;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "№";
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.добавитьПользователяToolStripMenuItem,
         this.изменитьПользователяToolStripMenuItem,
         this.удалитьПользователяToolStripMenuItem
     });
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(233, 92);
     //
     // добавитьПользователяToolStripMenuItem
     //
     this.добавитьПользователяToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("добавитьПользователяToolStripMenuItem.Image")));
     this.добавитьПользователяToolStripMenuItem.Name   = "добавитьПользователяToolStripMenuItem";
     this.добавитьПользователяToolStripMenuItem.Size   = new System.Drawing.Size(232, 22);
     this.добавитьПользователяToolStripMenuItem.Text   = "Добавить пользователя";
     this.добавитьПользователяToolStripMenuItem.Click += new System.EventHandler(this.ДобавитьПользователяToolStripMenuItemClick);
     //
     // изменитьПользователяToolStripMenuItem
     //
     this.изменитьПользователяToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("изменитьПользователяToolStripMenuItem.Image")));
     this.изменитьПользователяToolStripMenuItem.Name   = "изменитьПользователяToolStripMenuItem";
     this.изменитьПользователяToolStripMenuItem.Size   = new System.Drawing.Size(232, 22);
     this.изменитьПользователяToolStripMenuItem.Text   = "Редактировать пользователя";
     this.изменитьПользователяToolStripMenuItem.Click += new System.EventHandler(this.ИзменитьПользователяToolStripMenuItemClick);
     //
     // удалитьПользователяToolStripMenuItem
     //
     this.удалитьПользователяToolStripMenuItem.Image  = ((System.Drawing.Image)(resources.GetObject("удалитьПользователяToolStripMenuItem.Image")));
     this.удалитьПользователяToolStripMenuItem.Name   = "удалитьПользователяToolStripMenuItem";
     this.удалитьПользователяToolStripMenuItem.Size   = new System.Drawing.Size(232, 22);
     this.удалитьПользователяToolStripMenuItem.Text   = "Удалить пользователя";
     this.удалитьПользователяToolStripMenuItem.Click += new System.EventHandler(this.УдалитьПользователяToolStripMenuItemClick);
     //
     // FormUsers
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(620, 344);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name        = "FormUsers";
     this.Text        = "Пользователи";
     this.Activated  += new System.EventHandler(this.FormUsersActivated);
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormUsersFormClosed);
     this.Load       += new System.EventHandler(this.FormUsersLoad);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Пример #60
0
        public EditorNavigationDropdownBar([NotNull] IVsCodeWindow codeWindow, [NotNull] IVsEditorAdaptersFactoryService editorAdaptersFactory, [NotNull] IEnumerable <IEditorNavigationSource> sources, [NotNull] IBufferGraphFactoryService bufferGraphFactoryService, [NotNull] IEditorNavigationTypeRegistryService editorNavigationTypeRegistryService)
        {
            Requires.NotNull(codeWindow, nameof(codeWindow));
            Requires.NotNull(editorAdaptersFactory, nameof(editorAdaptersFactory));
            Requires.NotNull(sources, nameof(sources));
            Requires.NotNull(bufferGraphFactoryService, nameof(bufferGraphFactoryService));
            Requires.NotNull(editorNavigationTypeRegistryService, nameof(editorNavigationTypeRegistryService));

            this._codeWindow            = codeWindow;
            this._editorAdaptersFactory = editorAdaptersFactory;
            this._sources = sources;
            this._bufferGraphFactoryService           = bufferGraphFactoryService;
            this._editorNavigationTypeRegistryService = editorNavigationTypeRegistryService;
            this._currentTextView = editorAdaptersFactory.GetWpfTextView(codeWindow.GetLastActiveView());
            this._dispatcher      = this._currentTextView.VisualElement.Dispatcher;
            this._imageList       = new ImageList()
            {
                ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit
            };

            _navigationControls =
                this._sources
                .SelectMany(source => source.GetNavigationTypes())
                .Distinct()
                //.OrderBy(...)
                .Select(type => Tuple.Create(type, new List <IEditorNavigationTarget>()))
                .ToArray();

            _selectedItem = new IEditorNavigationTarget[_navigationControls.Length];

            if (this._navigationControls.Length == 0)
            {
                return;
            }

            IConnectionPointContainer connectionPointContainer = codeWindow as IConnectionPointContainer;

            if (connectionPointContainer != null)
            {
                Guid             textViewEventsGuid = typeof(IVsCodeWindowEvents).GUID;
                IConnectionPoint connectionPoint;
                connectionPointContainer.FindConnectionPoint(ref textViewEventsGuid, out connectionPoint);
                if (connectionPoint != null)
                {
                    connectionPoint.Advise(this, out _codeWindowEventsCookie);
                }
            }

            IVsTextView primaryView = codeWindow.GetPrimaryView();

            if (primaryView != null)
            {
                ((IVsCodeWindowEvents)this).OnNewView(primaryView);
            }

            IVsTextView secondaryView = codeWindow.GetSecondaryView();

            if (secondaryView != null)
            {
                ((IVsCodeWindowEvents)this).OnNewView(secondaryView);
            }

            foreach (var source in this._sources)
            {
                source.NavigationTargetsChanged += WeakEvents.AsWeak(OnNavigationTargetsChanged, eh => source.NavigationTargetsChanged -= eh);
                UpdateNavigationTargets(source);
            }

            _currentTextView.Caret.PositionChanged += OnCaretPositionChanged;
        }