Inheritance: ScrollableControl
Exemplo n.º 1
1
        private void button1_Click(object sender, EventArgs e)
        {
            Panel p = new Panel();
            p.Name = "test";
            p.Dock = DockStyle.Fill;
            p.BackColor = Color.Yellow;
            panelMain.Controls.Add(p);

            Panel p1 = new Panel();

            p1.Size = new Size(200, 200);
            p1.BackColor = Color.Violet;
            p.Controls.Add(p1);

            Panel p2 = new Panel();
            p2.Size = new Size(500, 100);
            p2.BackColor = Color.Red;
            //p2.Location = new Point(200, 0);
            Control prev = p.Controls[p.Controls.Count - 1];
            p2.Location = prev.Location + prev.Size - new Size(0, p2.Height);
            p.Controls.Add(p2);

            /*Label l = new Label();
            l.AutoSize = true;
            l.Font = new Font(l.Font.FontFamily,20);
            l.BorderStyle = BorderStyle.Fixed3D;
            Point point = p1.Location + p1.Size - new Size(0, l.Height);
            l.Location = point;
            l.Text = l.Location.ToString();
            //l.Height
            p.Controls.Add(l);*/

            //p.Controls[p.Controls.].Location.X
        }
Exemplo n.º 2
1
 public ProductSliderPane(InventoryView inventory, Panel panel, MasterController masterController)
     : base(masterController, panel, DOCKSTYLE_TYPE)
 {
     InitializeComponent();
     this.inventoryView = inventory;
     this.dbController = masterController.DataBaseController;
 }
		internal WaitingForAppDialog() : base(!INCLUDE_BUTTONS)
		{
			Text = StringParser.Parse("${res:ComponentInspector.WaitingForAppDialog.Title}");
			Height = 150;

			String descText = StringParser.Parse("${res:ComponentInspector.WaitingForAppDialog.Information}");

			_textBox = Utils.MakeDescText(descText, this);
			_textBox.Dock = DockStyle.Fill;
			Controls.Add(_textBox);

			Label l = new Label();
			l.Dock = DockStyle.Fill;
			Controls.Add(l);

			Panel bottomPanel = new Panel();
			bottomPanel.Dock = DockStyle.Bottom;

			l = new Label();
			l.Dock = DockStyle.Fill;
			bottomPanel.Controls.Add(l);

			Button cancel = Utils.MakeButton(StringParser.Parse("${res:Global.CancelButtonText}"));
			cancel.Dock = DockStyle.Right;
			cancel.DialogResult = DialogResult.Cancel;
			bottomPanel.Controls.Add(cancel);

			bottomPanel.Height = Utils.BUTTON_HEIGHT;
			Controls.Add(bottomPanel);
		}
    	public void buildGui()
    	{
    		var topPanel = this.add_Panel();
    		Path = topPanel.insert_Above<TextBox>(20);
			sourceCode = topPanel.add_SourceCodeEditor();
			dataGridView = sourceCode.insert_Above<Panel>(100).add_DataGridView();
			leftPanel = topPanel.insert_Left<Panel>(300);									
			
			Path.onEnter(loadFiles);
			Path.onDrop(
				(fileOrFolder)=>{
									Path.set_Text(fileOrFolder);
									loadFiles(fileOrFolder);
								}); 	   	   	   	   
			dataGridView.SelectionChanged+= 
				(sender,e) => {
						if (dataGridView.SelectedRows.size() == 1)
						{
							var selectedRow = dataGridView.SelectedRows[0]; 
							var filePath = selectedRow.Cells[0].Value.str();
							var filename = selectedRow.Cells[1].Value.str();
							var lineNumber = selectedRow.Cells[2].Value.str();
							"opening up source code: {0}".info(filePath);
							sourceCode.open(filePath.pathCombine(filename));  
							sourceCode.gotoLine(lineNumber.toInt() + 1);
							dataGridView.focus();
						}
				  };
								
		}
Exemplo n.º 5
1
        public Panel listEntradas()
        {
            Panel panel = new Panel();
               TextBox textBox1 = new TextBox();
               Label label1 = new Label();

               // Initialize the Panel control.
               //panel.Location = new Point(56, 72);
               panel.Size = new Size(694, 534);  //694, 534
               // Set the Borderstyle for the Panel to three-dimensional.
               panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;

               //panel.BackColor = System.Windows.Forms.ColorDepth.Depth4Bit;

               // Initialize the Label and TextBox controls.
               panel.Location = new Point(16, 16);
               label1.Text = "Entradas";
               label1.Size = new Size(104, 16);
               textBox1.Location = new Point(16, 32);
               textBox1.Text = "";
               textBox1.Size = new Size(152, 20);

               // Add the Panel control to the form.
               this.Controls.Add(panel);
               // Add the Label and TextBox controls to the Panel.
               panel.Controls.Add(label1);
               panel.Controls.Add(textBox1);

               return panel;
        }
Exemplo n.º 6
1
        protected override void OnResize(EventArgs e)
        {
            if (panels.GetLength(0) < _rows || panels.GetLength(1) < _cols)
            {
                panels = new Panel[_rows, _cols];
                
            }
            

            for (int i = 0; i < _rows; i++)
                for (int j = 0; j < _cols; j++)
                {
                    if (panels[i,j] == null)
                        panels[i, j] = new Panel();

                    Rectangle rect = GetRect(i, j);
                    panels[i, j].Width = rect.Width;
                    panels[i, j].Height = rect.Width;
                    panels[i, j].Top = rect.Top;
                    panels[i, j].Left = rect.Left;

                }
            base.OnResize(e);

        }
Exemplo n.º 7
1
 public Drawer(Panel panel, int _xGridSquareSize, int _yGridSquareSize)
 {
     g = panel.CreateGraphics();
     xGridSquareSize = _xGridSquareSize;
     yGridSquareSize = _yGridSquareSize;
     with = new DrawerUtensils();
 }
Exemplo n.º 8
1
        public ClientGUI(string ip, string name)
        {
            InitializeComponent();
            this.FormBorderStyle = FormBorderStyle.FixedSingle;

            panelGame1 = new Panel();
            this.name = name;
            this.ip = ip;
            this.broadcast = "BROADCAST";
            this.Text = name;

            tabController.TabPages.Add(broadcast);
            tabController.TabPages[0].Name = broadcast;
            tabController.TabPages[0].Controls.Add(new ChatPanel());

            Comm = new Communication(ip, name);

            openGames = new Dictionary<string, string>();

            Comm.IncommingMessageHandler += Comm_IncommingMessageHandler;

            buttonRpsls.Text = "Rock - Paper - Scissors -" + Environment.NewLine +"Lizard - Spock";

            this.BackColor = Color.Gray;

            buttonConnect4.Enabled = false;
            buttonRpsls.Enabled = false;
        }
Exemplo n.º 9
1
    public static void Attach (Panel ParentArg)
    { Tabs = new TabControl () ;

      Tabs.Parent = ParentArg ;
      Tabs.Dock = DockStyle.Fill ;
      Tabs.Multiline = true ;
    }
Exemplo n.º 10
1
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.panelBottom = new System.Windows.Forms.Panel();
			this.grid = new SourceGrid.Grid();
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.mnWindow = new System.Windows.Forms.MenuItem();
			this.panelBottom.SuspendLayout();
			this.SuspendLayout();
			// 
			// panelBottom
			// 
			this.panelBottom.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panelBottom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panelBottom.Controls.Add(this.grid);
			this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panelBottom.Location = new System.Drawing.Point(0, 342);
			this.panelBottom.Name = "panelBottom";
			this.panelBottom.Size = new System.Drawing.Size(772, 128);
			this.panelBottom.TabIndex = 1;
			// 
			// grid
			// 
			this.grid.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.grid.AutoStretchColumnsToFitWidth = false;
			this.grid.AutoStretchRowsToFitHeight = false;
			this.grid.BackColor = System.Drawing.SystemColors.Window;
			this.grid.CustomSort = false;
			this.grid.Location = new System.Drawing.Point(0, 4);
			this.grid.Name = "grid";
			this.grid.OverrideCommonCmdKey = true;
			this.grid.Size = new System.Drawing.Size(768, 120);
			this.grid.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
			this.grid.TabIndex = 0;
			// 
			// mainMenu1
			// 
			this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					  this.mnWindow});
			// 
			// mnWindow
			// 
			this.mnWindow.Index = 0;
			this.mnWindow.Text = "Window";
			// 
			// frmSample25
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(772, 470);
			this.Controls.Add(this.panelBottom);
			this.IsMdiContainer = true;
			this.Menu = this.mainMenu1;
			this.Name = "frmSample25";
			this.Text = "frmSample25";
			this.Load += new System.EventHandler(this.frmSample25_Load);
			this.panelBottom.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Exemplo n.º 11
1
        /// <summary>
        /// Constructor
        /// </summary>
        public AutoCompleteTextbox()
            : base()
        {
            entireList = new List<string>();
            matchingList = new List<string>();

            lboxSuggestions = new ListBox();
            lboxSuggestions.Name = "SuggestionListBox";
            lboxSuggestions.Font = this.Font;
            lboxSuggestions.Visible = true;
            lboxSuggestions.Dock = DockStyle.Fill;// make the listbox fill the panel
            lboxSuggestions.SelectionMode = SelectionMode.One;
            lboxSuggestions.KeyDown += new KeyEventHandler(listBox_KeyDown);
            lboxSuggestions.MouseClick += new MouseEventHandler(listBox_MouseClick);
            lboxSuggestions.DataSource = matchingList;// Bind matchingList as DataSource to the listbox

            this.GotFocus += new EventHandler(AutoCompleteTextbox_GotFocus);

            //Will hold listbox
            panel = new Panel();
            panel.Visible = false;
            panel.Font = this.Font;
            panel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            panel.ClientSize = new System.Drawing.Size(1, 1);
            panel.Name = "SuggestionPanel";
            panel.Padding = new System.Windows.Forms.Padding(0, 0, 0, 0);
            panel.Margin = new System.Windows.Forms.Padding(0, 0, 0, 0);
            panel.Text = "";
            panel.PerformLayout();
            if (!panel.Controls.Contains(lboxSuggestions)) { this.panel.Controls.Add(lboxSuggestions); }
        }
Exemplo n.º 12
1
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.StartupPanel = new System.Windows.Forms.Panel();
     this.OdeoLogo = new System.Windows.Forms.PictureBox();
     this.ProgressMeter = new System.Windows.Forms.ProgressBar();
     //
     // StartupPanel
     //
     this.StartupPanel.Controls.Add(this.ProgressMeter);
     this.StartupPanel.Controls.Add(this.OdeoLogo);
     this.StartupPanel.Location = new System.Drawing.Point(0, 3);
     this.StartupPanel.Size = new System.Drawing.Size(176, 194);
     //
     // OdeoLogo
     //
     this.OdeoLogo.Location = new System.Drawing.Point(42, 49);
     this.OdeoLogo.Size = new System.Drawing.Size(92, 39);
     //
     // ProgressMeter
     //
     this.ProgressMeter.Location = new System.Drawing.Point(42, 94);
     this.ProgressMeter.Size = new System.Drawing.Size(92, 6);
     //
     // FrmStartup
     //
     this.ClientSize = new System.Drawing.Size(176, 200);
     this.Controls.Add(this.StartupPanel);
     this.Text = "Odeo Syncr";
 }
Exemplo n.º 13
1
        public MainForm()
        {
            rmsController = new RMS_Controller();
            rmsController.MainFrm = this;

            InitializeComponent();

            Panel leftPanel = new Panel();
            leftPanel.AutoScroll = true;
            leftPanel.Width = 350;
            leftPanel.Dock = DockStyle.Left;

            Splitter splitterCtrl = new Splitter();
            splitterCtrl.Dock = DockStyle.Left;
            splitterCtrl.MinExtra = 200;
            splitterCtrl.MinSize = 200;

            Panel mainPanel = new Panel();
            mainPanel.AutoScroll = true;
            mainPanel.Dock = DockStyle.Fill;

            this.Controls.AddRange(new Control[] {mainPanel, splitterCtrl, leftPanel});

            Contract_Control contractsCtrl = new Contract_Control(rmsController);
            contractsCtrl.Dock = DockStyle.Fill;
            leftPanel.Controls.Add(contractsCtrl);

            RateSchedule_Control rateScheduleCtrl = new RateSchedule_Control(rmsController);
            rateScheduleCtrl.Dock = DockStyle.Fill;
            mainPanel.Controls.Add(rateScheduleCtrl);

            //rmsController.RateIDChanged += new System.EventHandler(this.RateID_Changed);
            //rmsController.RateScheduleChange += new System.EventHandler(this.RateID_Changed);
        }
Exemplo n.º 14
1
        /// <summary>
        /// Constructeur par défaut, génère plusieurs carrés.
        /// </summary>
        public RectangleEnigmaPanel()
        {
            Random rnd = new Random();

            TableLayoutPanel centerLayout = new TableLayoutPanel();
            centerLayout.ColumnCount = 27;
            for (int i = 0; i < 27 ;i++)
            {
                centerLayout.ColumnStyles.Add(new ColumnStyle(SizeType.Percent,0.04f));
            }
            centerLayout.RowCount = 21;
            for (int i = 0; i < 21; i++)
            {
                centerLayout.RowStyles.Add(new RowStyle(SizeType.Percent, 0.05f));
            }
            centerLayout.Dock = DockStyle.Fill;
            Controls.Add(centerLayout);

            for (int i = 0; i < tpnlCarre.Length; i++)
            {
                tpnlCarre[i] = new Panel();
                Random randonGen = new Random();
                Color randomColor = Color.FromArgb(randonGen.Next(240), randonGen.Next(240),
                randonGen.Next(255));
                tpnlCarre[i].BackColor = randomColor;
                tpnlCarre[i].Size = new Size(20, 20);
                int iLocX = rnd.Next(1, 27);
                int iLocY = rnd.Next(0, 21);
                centerLayout.Controls.Add(tpnlCarre[i], iLocX, iLocY);
                tpnlCarre[i].Click += new EventHandler(ClickOnCarre);
            }

            centerLayout.Click += new EventHandler(ClickOnPanel);
        }
Exemplo n.º 15
1
 // We take both the EditorForm's handle and its displayPanel handle, since messages
 // will sometimes be for the form, or the display panel.
 public MessageHandler( Panel displayPanel, EditorForm parent )
 {
     m_fakeFocus = false;
     m_displayPanel = displayPanel;
     m_parent = parent;
     m_mouseDownPosition = new System.Drawing.Point(0, 0); 
 }
Exemplo n.º 16
1
 /// <summary>
 /// 从服务器中获得图片
 /// </summary>
 /// <param name="savePath">图片保存相对路径</param>
 /// <param name="pl">显示图片的容器</param>
 public void getPic_Server(string filepath, Panel pl)
 {
     if (string.IsNullOrEmpty(filepath))
         return;
     int port = 2010;
     string ipsrv = "127.0.0.1";
     string sport = DataAccRes.AppSettings("Granity文件服务");
     string conn = DataAccRes.DefaultDataConnInfo.Value;
     if (!string.IsNullOrEmpty(sport))
         try { port = Convert.ToInt32(sport); }
         catch { return; }
     Regex regIP = new Regex(@"server=([\w.\(\)]*)(;|\\)");
     if (regIP.IsMatch(conn))
     {
         Match mt = regIP.Match(conn);
         if (mt.Groups.Count > 1)
             ipsrv = mt.Groups[1].Value.ToLower();
         if ("(local)" == ipsrv || "127.0.0.1" == ipsrv)
             ipsrv = Dns.GetHostName();
         ipsrv = Dns.GetHostAddresses(ipsrv)[0].ToString();
     }
     CommiTarget target = new CommiTarget(ipsrv, port, CommiType.TCP);
     target.setProtocol(CmdFileTrans.PTL);
     CmdFileTrans cmd = new CmdFileTrans(false);
     cmd.GetFile(filepath);
     CommiManager.GlobalManager.SendCommand(target, cmd);
     if (cmd.EventWh.WaitOne(new TimeSpan(0, 0, 15), false))
     {
         byte[] data = cmd.FileContext;
         if (data.Length < 1)
             return;
         MemoryStream stream = new MemoryStream(data);
         pl.BackgroundImage = Image.FromStream(stream);
     }
 }
Exemplo n.º 17
1
        public Gradient()
        {
            InitializeComponent();

            
            //Gradients = new Panel[16];

            int step = 16;
            int steps = 16;

            for (int i = 0; i < steps; i++)
            {
                var p = new Panel();

                var c = Math.Floor((double)((i  * 0xff / steps)));

                p.BackColor = Color.FromArgb((int)c, 0, 0);
                p.Location = new Point(0, i * step);
                p.Size = new Size(200, step);

                this.Controls.Add(p);
                Gradients.Add(p);
            }

            UpdateGradientColors();

        }
Exemplo n.º 18
1
        public ErrorPanelLayout()
        {
            _header = new InternalSplitter();
            _contentDefault = new Panel();
            _contentCurrent = _contentDefault;

            Controls.Add(_header[PANEL_LEFT]);
            //Controls.Add(_header[PANEL_RIGHT]);
            Controls.Add(_contentDefault);

            //_header[PANEL_LEFT].BackColor = Color.Yellow;
            //_header[PANEL_RIGHT].BackColor = Color.Violet;
            //_contentDefault.BackColor = Color.Green;

            SizeChanged += new EventHandler(ErrorPanelLayout_SizeChanged);

            _header[PANEL_RIGHT].ControlAdded += new ControlEventHandler(ErrorPanelLayout_ControlAddedOrRemoved);

            _header[PANEL_RIGHT].ControlRemoved += new ControlEventHandler(ErrorPanelLayout_ControlAddedOrRemoved);

            Width = 200;
            Height = 200;

            return;
        }
Exemplo n.º 19
1
        private void ShowHand(Panel aPanel, Hand aHand)
        {
            aPanel.Controls.Clear();
            Card aCard;
            Button aButton;

            for (int i = 0; i < aHand.Count; i++)
            {
                aCard = aHand[i];

                //Make the button and add it to the form.
                aButton = new Button();
                aPanel.Controls.Add(aButton);

                //Modify the appearance.
                aButton.Image = (Image)m_icons[aCard.Suit];
                aButton.Text = aCard.FaceValue.ToString();
                aButton.TextAlign = ContentAlignment.BottomCenter;
                aButton.ForeColor = Color.Red;
                aButton.ImageAlign = ContentAlignment.TopCenter;
                aButton.FlatStyle = FlatStyle.Flat;
                aButton.Height = 40;

                //Locate the button on the panel.
                aButton.Top = 45 * i;
                //Save the associated card.
                aButton.Tag = aCard;
                //Add a MouseDown event to the new button.
                aButton.MouseDown += new System.Windows.Forms.MouseEventHandler(ButtonMouseDown);
            }
        }
Exemplo n.º 20
1
		protected TextBox BuildDirPanel(Control parent, String name)
		{
			Panel panel = new Panel();
			panel.Dock = DockStyle.Top;
			panel.Height = 60;

			Label l = new Label();
			l.Location = new Point(0, 0);
			l.Dock = DockStyle.Left;
			l.Text = name;
			l.AutoSize = true;
			panel.Controls.Add(l);

			TextBox textBox = new TextBox();
			textBox.Location = new Point(10, 20);
			textBox.Width = ((ICustPanel)this).PreferredSize.Width - 40;
			panel.Controls.Add(textBox);
			
			// Don't have a reasonable directory browser and don't feel
			// like doing the P/Invoke for the underlying one.  Sigh.
			/*****
			Button b = new Button();
			b.Location = new Point(120, 20);
			b.Width = 20;
			b.Text = "...";
			b.Tag = textBox;
			b.Click += new EventHandler(DirButtonClicked);
			panel.Controls.Add(b);
			*****/
			
			parent.Controls.Add(panel);
			
			return textBox;
		}
Exemplo n.º 21
0
        public ascx_Panel_With_Inspector()
        {
            try
            {
                this.Width = 800;
                this.Height = 600;

                var controls = this.add_1x1("Panel", "Inspector", false, 200);

                panel = controls[0].add_Panel();

                //graph.testGraph();
                inspector = controls[1].add_Script();

                if (inspector.isNull())
                {
                    "[ascx_Panel_With_Inspector] add_Script failed, inspector variable was null".error();
                    return;
                }
                inspector.defaultCode = "//var topPanel = \"{name}\".popupWindow(700,400);".line() +
                                         "var topPanel = panel.clear().add_Panel();".line() +                   // so that we don't get an autosave for this test code
                                        "var textBox = topPanel.add_TextBox(true);".line() +
                                        "textBox.set_Text(\"hello world\");";
                inspector.Code = inspector.defaultCode;
                inspector.InvocationParameters.Add("panel", panel);
                inspector.showLogViewer();
                inspector.compile();
                //inspector.InvocationParameters.Add("inspector", inspector);
                //inspector.enableCodeComplete();
            }
            catch (Exception ex)
            {
                ex.log();
            }
        }
Exemplo n.º 22
0
 public Point calcStationCenter(Panel panel)
 {
     Point center = new Point();
       center.X = panel.Location.X + panel.Width / 2;
       center.Y = panel.Location.Y + panel.Height / 2;
       return center;
 }
Exemplo n.º 23
0
        public void CreateMaze(int _w, int _h)
        {
            var maze = new MazeGenerator(_w, _h, null);

            var w = new BlockMaze(maze);

            for (var y = 0; y < w.Height; y++)
            {
                Console.Write(new string(' ', 8));

                for (var x = 0; x < w.Width; x++)
                {
                    var v = w.Walls[x][y];

                    var p = new Panel();

                    p.SetBounds(16 + x * 16, 16 + y * 16, 15, 15);
                    if (!v)
                    {
                        p.BackColor = Color.White;
                    }
                    else
                    {
                        p.BackColor = Color.Black;
                    }

                    this.Controls.Add(p);



                }
            }

            this.ClientSize = new Size(16 * (w.Width + 2), 16 * (w.Height + 2));
        }
        /// <summary>
        /// Imports the toolStripContainer with all his nice controls into the given form
        /// also adds the controls from this.pnlContentHolder to masterFormContents.pnlContentHolder
        /// </summary>
        public static void InitializeContent(Form newForm,
            Label lblTooltip,
            ToolStripContainer toolStripContainer,
            Panel pnlContentHolder,
            CNNProjectHolder cnnProjectHolder)
        {
            MasterForm masterFormContents = new MasterForm(newForm, cnnProjectHolder);

            // import
            toolStripContainer = masterFormContents.toolStripContainer1;
            newForm.Controls.Add(toolStripContainer);

            // control replacement
            newForm.Controls.Remove(pnlContentHolder);
            newForm.Controls.Remove(lblTooltip);
            masterFormContents.pnlContentHolder.Controls.Clear();

            foreach (Control control in pnlContentHolder.Controls)
            {
                masterFormContents.pnlContentHolder.Controls.Add(control);
            }

            int time = (cnnProjectHolder.CNNProject.ExpertMode) ? 1 : 5000;

            masterFormContents.ShowPictureBoxBalloon(lblTooltip.Text, time, newForm, true);
            masterFormContents.lblHeading.Text = newForm.Text;
        }
Exemplo n.º 25
0
 public void DrawCross(Panel panel)
 {
     Graphics g = panel.CreateGraphics();
     Pen _pen = new Pen(Color.Black, _linewidth);
     g.DrawLine(_pen, new Point(_innerMargin, _innerMargin), new Point(_square - _innerMargin, _square - _innerMargin));
     g.DrawLine(_pen, new Point(_innerMargin, _square - _innerMargin), new Point(_square - _innerMargin, _innerMargin));
 }
Exemplo n.º 26
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="panel"></param>
        /// <param name="labels"></param>
        /// <param name="xOffset"></param>
        /// <param name="yOffset"></param>
        /// <param name="height"></param>
        /// <param name="widthFactor"></param>
        /// <returns></returns>
        public static CheckBox[] CreateCheckBoxControls(
			Panel panel, string[] labels, int xOffset, int yOffset, int height, int widthFactor)
        {
            Rectangle rect = panel.DisplayRectangle;

            int numOfCheckBoxes = labels.Length;

            int w = GetMaxItemLableLength(labels)*widthFactor;

            int colSize = (rect.Width - xOffset*2)/w;

            xOffset = (rect.Width - w*colSize)/2;
            CheckBox[] controls = new CheckBox[numOfCheckBoxes];

            for (int i = 0; i < numOfCheckBoxes; i++)
            {
                int row = i / colSize;
                int col = i % colSize;
                CheckBox checkBox = new System.Windows.Forms.CheckBox();
                checkBox.Width = w;
                checkBox.Location = new Point(xOffset + col*w, yOffset + row*height);
                checkBox.Name = "checkBox" + i;
                checkBox.TabIndex = i;
                checkBox.Height = height;
                checkBox.Text = labels[i];
                controls[i] = checkBox;
            }

            panel.Controls.AddRange(controls);
            return controls;
        }
Exemplo n.º 27
0
        public ProjectReferencePanel(ISelectReferenceDialog selectDialog)
        {
            this.selectDialog = selectDialog;

            ColumnHeader nameHeader = new ColumnHeader();
            nameHeader.Text  = ResourceService.GetString("Dialog.SelectReferenceDialog.ProjectReferencePanel.NameHeader");
            nameHeader.Width = 170;
            Columns.Add(nameHeader);

            ColumnHeader directoryHeader = new ColumnHeader();
            directoryHeader.Text  = ResourceService.GetString("Dialog.SelectReferenceDialog.ProjectReferencePanel.DirectoryHeader");
            directoryHeader.Width = 290;
            Columns.Add(directoryHeader);

            View = View.Details;
            Dock = DockStyle.Fill;
            FullRowSelect = true;

            ItemActivate += delegate { AddReference(); };
            PopulateListView();

            Panel upperPanel = new Panel { Dock = DockStyle.Top, Height = 20 };
            filterTextBox = new TextBox { Width = 150, Dock = DockStyle.Right };
            filterTextBox.TextChanged += delegate { Search(); };

            upperPanel.Controls.Add(filterTextBox);

            this.Controls.Add(upperPanel);
        }
Exemplo n.º 28
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.m_ButtonPanel = new System.Windows.Forms.Panel();
      this.m_TabControl = new System.Windows.Forms.TabControl();
      this.SuspendLayout();
      // 
      // m_ButtonPanel
      // 
      this.m_ButtonPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
      this.m_ButtonPanel.Location = new System.Drawing.Point(0, 218);
      this.m_ButtonPanel.Name = "m_ButtonPanel";
      this.m_ButtonPanel.Size = new System.Drawing.Size(272, 40);
      this.m_ButtonPanel.TabIndex = 0;
      // 
      // m_TabControl
      // 
      this.m_TabControl.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.m_TabControl.Location = new System.Drawing.Point(4, 8);
      this.m_TabControl.Name = "m_TabControl";
      this.m_TabControl.SelectedIndex = 0;
      this.m_TabControl.Size = new System.Drawing.Size(264, 200);
      this.m_TabControl.TabIndex = 1;
      // 
      // TabbedDialogView
      // 
      this.Controls.Add(this.m_TabControl);
      this.Controls.Add(this.m_ButtonPanel);
      this.Name = "TabbedDialogView";
      this.Size = new System.Drawing.Size(272, 258);
      this.Load += new System.EventHandler(this.EhView_Load);
      this.ResumeLayout(false);

    }
Exemplo n.º 29
0
 public void PlaceOnForm(Panel panel)
 {
     panel.Controls.Add(_mainPanel);
     _mainPanel.Controls.Add(_titlePanel);
     _mainPanel.Controls.Add(_descriptionLabel);
     _titlePanel.Controls.Add(_titleLabel);
 }
Exemplo n.º 30
0
        public CanvasForm(Control parent)
        {
            InitializeComponent();

            ContextContainer = new Panel();
            ContextContainer.Padding = new Padding(1);
            ContextContainer.BackColor = Color.Black;

            Console.WriteLine(ContextContainer.Anchor);

            GraphicsMode mode = new GraphicsMode(
                new ColorFormat(8, 8, 8, 8),
                8, 8, MSAASamples,
                new ColorFormat(8, 8, 8, 8), 2, false
            );
            GLContext = new GLControl(mode, 2, 0, GraphicsContextFlags.Default);
            GLContext.Dock = DockStyle.Fill;
            GLContext.VSync = true;
            GLContext.Paint += new PaintEventHandler(this.GLContext_Paint);
            GLContext.MouseDown += new MouseEventHandler(this.GLContext_MouseDown);
            GLContext.MouseMove += new MouseEventHandler(this.GLContext_MouseMove);
            GLContext.MouseUp += new MouseEventHandler(this.GLContext_MouseUp);

            ContextContainer.Controls.Add(GLContext);
            Controls.Add(ContextContainer);

            // Setup stuff
            TopLevel = false;
            parent.Controls.Add(this);
        }
Exemplo n.º 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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AsignacionEjecCyC));
     this.grdCliente     = new CustGrd.vwGrd();
     this.statusBar1     = new System.Windows.Forms.StatusBar();
     this.lblCaption     = new System.Windows.Forms.Label();
     this.cboEjecutivo   = new System.Windows.Forms.ComboBox();
     this.lblPuesto      = new System.Windows.Forms.Label();
     this.lblStatus      = new System.Windows.Forms.Label();
     this.btnBuscar      = new System.Windows.Forms.Button();
     this.pnlTool        = new System.Windows.Forms.Panel();
     this.btnBuscarLocal = new System.Windows.Forms.Button();
     this.btnSalir       = new System.Windows.Forms.Button();
     this.btnCancelar    = new System.Windows.Forms.Button();
     this.btnAceptar     = new System.Windows.Forms.Button();
     this.btnDesasignar  = new System.Windows.Forms.Button();
     this.toolTip1       = new System.Windows.Forms.ToolTip(this.components);
     this.pnlTool.SuspendLayout();
     this.SuspendLayout();
     //
     // grdCliente
     //
     this.grdCliente.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                | System.Windows.Forms.AnchorStyles.Left)
                               | System.Windows.Forms.AnchorStyles.Right);
     this.grdCliente.ColumnMargin  = 30;
     this.grdCliente.FullRowSelect = true;
     this.grdCliente.Location      = new System.Drawing.Point(0, 92);
     this.grdCliente.Name          = "grdCliente";
     this.grdCliente.Size          = new System.Drawing.Size(592, 256);
     this.grdCliente.TabIndex      = 0;
     this.grdCliente.View          = System.Windows.Forms.View.Details;
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 351);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(592, 22);
     this.statusBar1.TabIndex = 1;
     //
     // lblCaption
     //
     this.lblCaption.AutoSize = true;
     this.lblCaption.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblCaption.Location = new System.Drawing.Point(4, 12);
     this.lblCaption.Name     = "lblCaption";
     this.lblCaption.Size     = new System.Drawing.Size(133, 14);
     this.lblCaption.TabIndex = 2;
     this.lblCaption.Text     = "Ejecutivo responsable:";
     //
     // cboEjecutivo
     //
     this.cboEjecutivo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboEjecutivo.Location      = new System.Drawing.Point(140, 8);
     this.cboEjecutivo.Name          = "cboEjecutivo";
     this.cboEjecutivo.Size          = new System.Drawing.Size(304, 21);
     this.cboEjecutivo.TabIndex      = 3;
     //
     // lblPuesto
     //
     this.lblPuesto.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblPuesto.Location  = new System.Drawing.Point(140, 32);
     this.lblPuesto.Name      = "lblPuesto";
     this.lblPuesto.Size      = new System.Drawing.Size(304, 20);
     this.lblPuesto.TabIndex  = 4;
     this.lblPuesto.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblStatus
     //
     this.lblStatus.AutoSize     = true;
     this.lblStatus.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStatus.Location     = new System.Drawing.Point(452, 11);
     this.lblStatus.Name         = "lblStatus";
     this.lblStatus.Size         = new System.Drawing.Size(49, 14);
     this.lblStatus.TabIndex     = 5;
     this.lblStatus.Text         = "STATUS";
     this.lblStatus.TextAlign    = System.Drawing.ContentAlignment.MiddleRight;
     this.lblStatus.TextChanged += new System.EventHandler(this.lblStatus_TextChanged);
     //
     // btnBuscar
     //
     this.btnBuscar.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnBuscar.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnBuscar.Image")));
     this.btnBuscar.Name      = "btnBuscar";
     this.btnBuscar.Size      = new System.Drawing.Size(32, 28);
     this.btnBuscar.TabIndex  = 6;
     this.toolTip1.SetToolTip(this.btnBuscar, "Buscar y agregar un nuevo cliente");
     this.btnBuscar.Click += new System.EventHandler(this.btnBuscar_Click);
     //
     // pnlTool
     //
     this.pnlTool.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.btnBuscarLocal,
         this.btnSalir,
         this.btnCancelar,
         this.btnAceptar,
         this.btnDesasignar,
         this.btnBuscar
     });
     this.pnlTool.Location = new System.Drawing.Point(1, 60);
     this.pnlTool.Name     = "pnlTool";
     this.pnlTool.Size     = new System.Drawing.Size(203, 28);
     this.pnlTool.TabIndex = 7;
     //
     // btnBuscarLocal
     //
     this.btnBuscarLocal.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnBuscarLocal.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnBuscarLocal.Image")));
     this.btnBuscarLocal.Location  = new System.Drawing.Point(64, 0);
     this.btnBuscarLocal.Name      = "btnBuscarLocal";
     this.btnBuscarLocal.Size      = new System.Drawing.Size(32, 28);
     this.btnBuscarLocal.TabIndex  = 11;
     this.toolTip1.SetToolTip(this.btnBuscarLocal, "Buscar en la vista actual");
     this.btnBuscarLocal.Click += new System.EventHandler(this.btnBuscarLocal_Click);
     //
     // btnSalir
     //
     this.btnSalir.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnSalir.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnSalir.Image")));
     this.btnSalir.Location  = new System.Drawing.Point(161, 0);
     this.btnSalir.Name      = "btnSalir";
     this.btnSalir.Size      = new System.Drawing.Size(32, 28);
     this.btnSalir.TabIndex  = 10;
     this.toolTip1.SetToolTip(this.btnSalir, "Cancelar");
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnCancelar.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnCancelar.Image")));
     this.btnCancelar.Location  = new System.Drawing.Point(128, 0);
     this.btnCancelar.Name      = "btnCancelar";
     this.btnCancelar.Size      = new System.Drawing.Size(32, 28);
     this.btnCancelar.TabIndex  = 9;
     this.toolTip1.SetToolTip(this.btnCancelar, "Cancelar");
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnAceptar
     //
     this.btnAceptar.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnAceptar.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnAceptar.Image")));
     this.btnAceptar.Location  = new System.Drawing.Point(97, 0);
     this.btnAceptar.Name      = "btnAceptar";
     this.btnAceptar.Size      = new System.Drawing.Size(32, 28);
     this.btnAceptar.TabIndex  = 8;
     this.toolTip1.SetToolTip(this.btnAceptar, "Aceptar");
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnDesasignar
     //
     this.btnDesasignar.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btnDesasignar.Image     = ((System.Drawing.Bitmap)(resources.GetObject("btnDesasignar.Image")));
     this.btnDesasignar.Location  = new System.Drawing.Point(31, 0);
     this.btnDesasignar.Name      = "btnDesasignar";
     this.btnDesasignar.Size      = new System.Drawing.Size(32, 28);
     this.btnDesasignar.TabIndex  = 7;
     this.toolTip1.SetToolTip(this.btnDesasignar, "Desasignar los clientes seleccionados");
     this.btnDesasignar.Click += new System.EventHandler(this.btnDesasignar_Click);
     //
     // AsignacionEjecCyC
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(592, 373);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.pnlTool,
         this.lblStatus,
         this.lblPuesto,
         this.cboEjecutivo,
         this.lblCaption,
         this.statusBar1,
         this.grdCliente
     });
     this.Font  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name  = "AsignacionEjecCyC";
     this.Text  = "Ejecutivo responsable";
     this.Load += new System.EventHandler(this.AsignacionEjecCyC_Load);
     this.pnlTool.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea   chartArea1   = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel1 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel2 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel3 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.CustomLabel customLabel4 = new System.Windows.Forms.DataVisualization.Charting.CustomLabel();
     System.Windows.Forms.DataVisualization.Charting.Legend      legend1      = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series      series1      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint1   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint2   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 80);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint3   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint4   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 85);
     System.Windows.Forms.DataVisualization.Charting.Series      series2      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint5   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 65);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint6   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 70);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint7   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 60);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint8   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 75);
     System.Windows.Forms.DataVisualization.Charting.Series      series3      = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint9   = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 50);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint10  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 55);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint11  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 40);
     System.Windows.Forms.DataVisualization.Charting.DataPoint   dataPoint12  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 70);
     System.Windows.Forms.DataVisualization.Charting.Title       title1       = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TitleCustomPosition));
     this.label9 = new System.Windows.Forms.Label();
     this.Chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1 = new System.Windows.Forms.Panel();
     this.numericUpDownHeight = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownWidth  = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownY      = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownX      = new System.Windows.Forms.NumericUpDown();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = 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();
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownHeight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownWidth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownY)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownX)).BeginInit();
     this.SuspendLayout();
     //
     // label9
     //
     this.label9.Font     = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(16, 12);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(702, 45);
     this.label9.TabIndex = 0;
     this.label9.Text     = "This sample demonstrates how to position the chart by setting the coordinates of " +
                            "its top left corner, width, and height. ";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Chart1
     //
     this.Chart1.BackColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
     this.Chart1.BackGradientStyle           = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BackSecondaryColor          = System.Drawing.Color.White;
     this.Chart1.BorderlineColor             = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     this.Chart1.BorderlineDashStyle         = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderlineWidth             = 2;
     this.Chart1.BorderSkin.SkinStyle        = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Inclination      = 15;
     chartArea1.Area3DStyle.IsClustered      = true;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.Perspective      = 10;
     chartArea1.Area3DStyle.PointGapDepth    = 0;
     chartArea1.Area3DStyle.Rotation         = 5;
     chartArea1.Area3DStyle.WallWidth        = 0;
     customLabel1.FromPosition               = 0.5;
     customLabel1.Text         = "John";
     customLabel1.ToPosition   = 1.5;
     customLabel2.FromPosition = 1.5;
     customLabel2.Text         = "Mary";
     customLabel2.ToPosition   = 2.5;
     customLabel3.FromPosition = 2.5;
     customLabel3.Text         = "Jeff";
     customLabel3.ToPosition   = 3.5;
     customLabel4.FromPosition = 3.5;
     customLabel4.Text         = "Bob";
     customLabel4.ToPosition   = 4.5;
     chartArea1.AxisX.CustomLabels.Add(customLabel1);
     chartArea1.AxisX.CustomLabels.Add(customLabel2);
     chartArea1.AxisX.CustomLabels.Add(customLabel3);
     chartArea1.AxisX.CustomLabels.Add(customLabel4);
     chartArea1.AxisX.Interval            = 1;
     chartArea1.AxisX.IsLabelAutoFit      = false;
     chartArea1.AxisX.LabelStyle.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F);
     chartArea1.AxisX.LineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.IsLabelAutoFit      = false;
     chartArea1.AxisY.LabelStyle.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.BackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(165)))), ((int)(((byte)(191)))), ((int)(((byte)(228)))));
     chartArea1.BackGradientStyle  = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea1.BackSecondaryColor = System.Drawing.Color.White;
     chartArea1.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.Name            = "Default";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 75F;
     chartArea1.Position.Width  = 90F;
     chartArea1.Position.X      = 2F;
     chartArea1.Position.Y      = 13F;
     chartArea1.ShadowColor     = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.BackColor     = System.Drawing.Color.Transparent;
     legend1.BorderColor   = System.Drawing.Color.Black;
     legend1.BorderWidth   = 0;
     legend1.Docking       = System.Windows.Forms.DataVisualization.Charting.Docking.Bottom;
     legend1.Font          = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     legend1.IsTextAutoFit = false;
     legend1.LegendStyle   = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name          = "Default";
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location     = new System.Drawing.Point(16, 65);
     this.Chart1.Name         = "Chart1";
     this.Chart1.Palette      = System.Windows.Forms.DataVisualization.Charting.ChartColorPalette.Pastel;
     series1.BorderColor      = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     series1.ChartArea        = "Default";
     series1.Color            = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));
     series1.CustomProperties = "DrawingStyle=Cylinder";
     series1.Legend           = "Default";
     series1.LegendText       = "Total";
     series1.Name             = "Series2";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.ShadowColor      = System.Drawing.Color.Transparent;
     series1.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series1.YValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.BorderColor      = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     series2.ChartArea        = "Default";
     series2.Color            = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(180)))), ((int)(((byte)(65)))));
     series2.CustomProperties = "DrawingStyle=Cylinder";
     series2.Legend           = "Default";
     series2.LegendText       = "Sales";
     series2.Name             = "Series3";
     series2.Points.Add(dataPoint5);
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series2.XValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.YValueType       = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series3.BorderColor      = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     series3.ChartArea        = "Default";
     series3.Color            = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(64)))), ((int)(((byte)(10)))));
     series3.CustomProperties = "DrawingStyle=Cylinder";
     series3.Legend           = "Default";
     series3.LegendText       = "Clients";
     series3.Name             = "Series4";
     series3.Points.Add(dataPoint9);
     series3.Points.Add(dataPoint10);
     series3.Points.Add(dataPoint11);
     series3.Points.Add(dataPoint12);
     series3.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series3.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.Chart1.Series.Add(series1);
     this.Chart1.Series.Add(series2);
     this.Chart1.Series.Add(series3);
     this.Chart1.Size       = new System.Drawing.Size(412, 296);
     this.Chart1.TabIndex   = 1;
     title1.Alignment       = System.Drawing.ContentAlignment.TopLeft;
     title1.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(120)))), ((int)(((byte)(160)))), ((int)(((byte)(240)))));
     title1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     title1.Font            = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
     title1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     title1.Name            = "Title1";
     title1.Position.Auto   = false;
     title1.Position.Height = 8.738057F;
     title1.Position.Width  = 80F;
     title1.Position.X      = 4F;
     title1.Position.Y      = 4F;
     title1.ShadowColor     = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     title1.Text            = "Chart Control for .NET Framework";
     this.Chart1.Titles.Add(title1);
     this.Chart1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Chart1_MouseDown);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.numericUpDownHeight);
     this.panel1.Controls.Add(this.numericUpDownWidth);
     this.panel1.Controls.Add(this.numericUpDownY);
     this.panel1.Controls.Add(this.numericUpDownX);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Location = new System.Drawing.Point(432, 73);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 296);
     this.panel1.TabIndex = 2;
     //
     // numericUpDownHeight
     //
     this.numericUpDownHeight.Location = new System.Drawing.Point(168, 104);
     this.numericUpDownHeight.Maximum  = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     this.numericUpDownHeight.Name     = "numericUpDownHeight";
     this.numericUpDownHeight.Size     = new System.Drawing.Size(72, 22);
     this.numericUpDownHeight.TabIndex = 7;
     this.numericUpDownHeight.Value    = new decimal(new int[] {
         9,
         0,
         0,
         0
     });
     this.numericUpDownHeight.ValueChanged += new System.EventHandler(this.numericUpDownHeight_ValueChanged);
     //
     // numericUpDownWidth
     //
     this.numericUpDownWidth.Location = new System.Drawing.Point(168, 72);
     this.numericUpDownWidth.Maximum  = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     this.numericUpDownWidth.Name     = "numericUpDownWidth";
     this.numericUpDownWidth.Size     = new System.Drawing.Size(72, 22);
     this.numericUpDownWidth.TabIndex = 5;
     this.numericUpDownWidth.Value    = new decimal(new int[] {
         55,
         0,
         0,
         0
     });
     this.numericUpDownWidth.ValueChanged += new System.EventHandler(this.numericUpDownWidth_ValueChanged);
     //
     // numericUpDownY
     //
     this.numericUpDownY.Location = new System.Drawing.Point(168, 40);
     this.numericUpDownY.Maximum  = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     this.numericUpDownY.Name     = "numericUpDownY";
     this.numericUpDownY.Size     = new System.Drawing.Size(72, 22);
     this.numericUpDownY.TabIndex = 3;
     this.numericUpDownY.Value    = new decimal(new int[] {
         4,
         0,
         0,
         0
     });
     this.numericUpDownY.ValueChanged += new System.EventHandler(this.numericUpDownY_ValueChanged);
     //
     // numericUpDownX
     //
     this.numericUpDownX.Location = new System.Drawing.Point(168, 8);
     this.numericUpDownX.Maximum  = new decimal(new int[] {
         70,
         0,
         0,
         0
     });
     this.numericUpDownX.Name     = "numericUpDownX";
     this.numericUpDownX.Size     = new System.Drawing.Size(72, 22);
     this.numericUpDownX.TabIndex = 1;
     this.numericUpDownX.Value    = new decimal(new int[] {
         4,
         0,
         0,
         0
     });
     this.numericUpDownX.ValueChanged += new System.EventHandler(this.numericUpDownX_ValueChanged);
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(12, 104);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(152, 22);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "&Height:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(12, 72);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(152, 22);
     this.label4.TabIndex  = 4;
     this.label4.Text      = "&Width:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(12, 40);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(152, 22);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "&Y:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(12, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(152, 22);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "&X:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 377);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(702, 71);
     this.label1.TabIndex = 3;
     this.label1.Text     = resources.GetString("label1.Text");
     //
     // TitleCustomPosition
     //
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.label1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Chart1);
     this.Controls.Add(this.label9);
     this.Font  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name  = "TitleCustomPosition";
     this.Size  = new System.Drawing.Size(728, 448);
     this.Load += new System.EventHandler(this.LegendCustomPosition_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownHeight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownWidth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownY)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownX)).EndInit();
     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(f203_v_gd_trang_thai_lao_dong));
     this.ImageList           = new System.Windows.Forms.ImageList(this.components);
     this.m_pnl_out_place_dm  = new System.Windows.Forms.Panel();
     this.m_lbl_phim_tat      = new System.Windows.Forms.Label();
     this.m_cmd_insert        = new SIS.Controls.Button.SiSButton();
     this.m_cmd_update        = new SIS.Controls.Button.SiSButton();
     this.m_cmd_view          = new SIS.Controls.Button.SiSButton();
     this.m_cmd_delete        = new SIS.Controls.Button.SiSButton();
     this.m_cmd_exit          = new SIS.Controls.Button.SiSButton();
     this.m_lbl_tim_kiem      = new System.Windows.Forms.Label();
     this.m_txt_tim_kiem      = new System.Windows.Forms.TextBox();
     this.m_cmd_tim_kiem      = new SIS.Controls.Button.SiSButton();
     this.panel1              = new System.Windows.Forms.Panel();
     this.m_grv_trang_thai_ld = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_pnl_out_place_dm.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_grv_trang_thai_ld)).BeginInit();
     this.SuspendLayout();
     //
     // ImageList
     //
     this.ImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "");
     this.ImageList.Images.SetKeyName(1, "");
     this.ImageList.Images.SetKeyName(2, "");
     this.ImageList.Images.SetKeyName(3, "");
     this.ImageList.Images.SetKeyName(4, "");
     this.ImageList.Images.SetKeyName(5, "");
     this.ImageList.Images.SetKeyName(6, "");
     this.ImageList.Images.SetKeyName(7, "");
     this.ImageList.Images.SetKeyName(8, "");
     this.ImageList.Images.SetKeyName(9, "");
     this.ImageList.Images.SetKeyName(10, "");
     this.ImageList.Images.SetKeyName(11, "");
     this.ImageList.Images.SetKeyName(12, "");
     this.ImageList.Images.SetKeyName(13, "");
     this.ImageList.Images.SetKeyName(14, "");
     this.ImageList.Images.SetKeyName(15, "");
     this.ImageList.Images.SetKeyName(16, "");
     this.ImageList.Images.SetKeyName(17, "");
     this.ImageList.Images.SetKeyName(18, "");
     this.ImageList.Images.SetKeyName(19, "");
     this.ImageList.Images.SetKeyName(20, "");
     this.ImageList.Images.SetKeyName(21, "");
     //
     // m_pnl_out_place_dm
     //
     this.m_pnl_out_place_dm.Controls.Add(this.m_lbl_phim_tat);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_insert);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_update);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_view);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_delete);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_exit);
     this.m_pnl_out_place_dm.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.m_pnl_out_place_dm.Location = new System.Drawing.Point(0, 625);
     this.m_pnl_out_place_dm.Name     = "m_pnl_out_place_dm";
     this.m_pnl_out_place_dm.Padding  = new System.Windows.Forms.Padding(4);
     this.m_pnl_out_place_dm.Size     = new System.Drawing.Size(1284, 36);
     this.m_pnl_out_place_dm.TabIndex = 19;
     //
     // m_lbl_phim_tat
     //
     this.m_lbl_phim_tat.AutoSize = true;
     this.m_lbl_phim_tat.Location = new System.Drawing.Point(139, 12);
     this.m_lbl_phim_tat.Name     = "m_lbl_phim_tat";
     this.m_lbl_phim_tat.Size     = new System.Drawing.Size(206, 13);
     this.m_lbl_phim_tat.TabIndex = 1000;
     this.m_lbl_phim_tat.Text     = "Phím tắt: F6_Mở rộng-Thu gọn danh sách";
     //
     // m_cmd_insert
     //
     this.m_cmd_insert.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_insert.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_insert.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_insert.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_insert.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_insert.ImageIndex = 2;
     this.m_cmd_insert.ImageList  = this.ImageList;
     this.m_cmd_insert.Location   = new System.Drawing.Point(848, 4);
     this.m_cmd_insert.Name       = "m_cmd_insert";
     this.m_cmd_insert.Size       = new System.Drawing.Size(134, 28);
     this.m_cmd_insert.TabIndex   = 12;
     this.m_cmd_insert.Text       = "&Thay đổi trạng thái";
     //
     // m_cmd_update
     //
     this.m_cmd_update.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_update.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_update.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_update.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_update.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_update.ImageIndex = 3;
     this.m_cmd_update.ImageList  = this.ImageList;
     this.m_cmd_update.Location   = new System.Drawing.Point(982, 4);
     this.m_cmd_update.Name       = "m_cmd_update";
     this.m_cmd_update.Size       = new System.Drawing.Size(122, 28);
     this.m_cmd_update.TabIndex   = 13;
     this.m_cmd_update.Text       = "&Sửa thông tin";
     //
     // m_cmd_view
     //
     this.m_cmd_view.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_view.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_view.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_view.Dock       = System.Windows.Forms.DockStyle.Left;
     this.m_cmd_view.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_view.ImageIndex = 18;
     this.m_cmd_view.ImageList  = this.ImageList;
     this.m_cmd_view.Location   = new System.Drawing.Point(4, 4);
     this.m_cmd_view.Name       = "m_cmd_view";
     this.m_cmd_view.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_view.TabIndex   = 21;
     this.m_cmd_view.Text       = "Xem";
     this.m_cmd_view.Visible    = false;
     this.m_cmd_view.Click     += new System.EventHandler(this.m_cmd_view_Click);
     //
     // m_cmd_delete
     //
     this.m_cmd_delete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_delete.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_delete.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_delete.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_delete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_delete.ImageIndex = 4;
     this.m_cmd_delete.ImageList  = this.ImageList;
     this.m_cmd_delete.Location   = new System.Drawing.Point(1104, 4);
     this.m_cmd_delete.Name       = "m_cmd_delete";
     this.m_cmd_delete.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_delete.TabIndex   = 14;
     this.m_cmd_delete.Text       = "&Xoá";
     //
     // m_cmd_exit
     //
     this.m_cmd_exit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_exit.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_exit.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_exit.DialogResult        = System.Windows.Forms.DialogResult.Cancel;
     this.m_cmd_exit.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_exit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_exit.ImageIndex = 12;
     this.m_cmd_exit.ImageList  = this.ImageList;
     this.m_cmd_exit.Location   = new System.Drawing.Point(1192, 4);
     this.m_cmd_exit.Name       = "m_cmd_exit";
     this.m_cmd_exit.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_exit.TabIndex   = 11;
     this.m_cmd_exit.Text       = "Thoát (Esc)";
     this.m_cmd_exit.Click     += new System.EventHandler(this.m_cmd_exit_Click);
     //
     // m_lbl_tim_kiem
     //
     this.m_lbl_tim_kiem.AutoSize = true;
     this.m_lbl_tim_kiem.Location = new System.Drawing.Point(296, 21);
     this.m_lbl_tim_kiem.Name     = "m_lbl_tim_kiem";
     this.m_lbl_tim_kiem.Size     = new System.Drawing.Size(49, 13);
     this.m_lbl_tim_kiem.TabIndex = 21;
     this.m_lbl_tim_kiem.Text     = "Tìm kiếm";
     //
     // m_txt_tim_kiem
     //
     this.m_txt_tim_kiem.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.m_txt_tim_kiem.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.m_txt_tim_kiem.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_txt_tim_kiem.ForeColor          = System.Drawing.Color.Gray;
     this.m_txt_tim_kiem.Location           = new System.Drawing.Point(356, 18);
     this.m_txt_tim_kiem.Name        = "m_txt_tim_kiem";
     this.m_txt_tim_kiem.Size        = new System.Drawing.Size(430, 20);
     this.m_txt_tim_kiem.TabIndex    = 22;
     this.m_txt_tim_kiem.Text        = "Nhập mã nhân viên hoặc họ tên để tìm kiếm";
     this.m_txt_tim_kiem.MouseClick += new System.Windows.Forms.MouseEventHandler(this.m_txt_tim_kiem_MouseClick);
     this.m_txt_tim_kiem.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.m_txt_tim_kiem_KeyDown);
     this.m_txt_tim_kiem.Leave      += new System.EventHandler(this.m_txt_tim_kiem_Leave);
     //
     // m_cmd_tim_kiem
     //
     this.m_cmd_tim_kiem.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_tim_kiem.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_tim_kiem.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_tim_kiem.ImageAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_tim_kiem.ImageIndex          = 5;
     this.m_cmd_tim_kiem.ImageList           = this.ImageList;
     this.m_cmd_tim_kiem.Location            = new System.Drawing.Point(811, 13);
     this.m_cmd_tim_kiem.Name     = "m_cmd_tim_kiem";
     this.m_cmd_tim_kiem.Size     = new System.Drawing.Size(100, 28);
     this.m_cmd_tim_kiem.TabIndex = 23;
     this.m_cmd_tim_kiem.Text     = "Tìm kiếm(&S)";
     this.m_cmd_tim_kiem.Click   += new System.EventHandler(this.m_cmd_tim_kiem_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.m_cmd_tim_kiem);
     this.panel1.Controls.Add(this.m_lbl_tim_kiem);
     this.panel1.Controls.Add(this.m_txt_tim_kiem);
     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(1284, 52);
     this.panel1.TabIndex = 24;
     //
     // m_grv_trang_thai_ld
     //
     this.m_grv_trang_thai_ld.AllowEditing = false;
     this.m_grv_trang_thai_ld.ColumnInfo   = resources.GetString("m_grv_trang_thai_ld.ColumnInfo");
     this.m_grv_trang_thai_ld.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.m_grv_trang_thai_ld.Location     = new System.Drawing.Point(0, 52);
     this.m_grv_trang_thai_ld.Name         = "m_grv_trang_thai_ld";
     this.m_grv_trang_thai_ld.Size         = new System.Drawing.Size(1284, 573);
     this.m_grv_trang_thai_ld.Styles       = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_grv_trang_thai_ld.Styles"));
     this.m_grv_trang_thai_ld.TabIndex     = 25;
     //
     // f203_v_gd_trang_thai_lao_dong
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.CancelButton      = this.m_cmd_exit;
     this.ClientSize        = new System.Drawing.Size(1284, 661);
     this.Controls.Add(this.m_grv_trang_thai_ld);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.m_pnl_out_place_dm);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "f203_v_gd_trang_thai_lao_dong";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "F203 - Thay đổi trạng thái lao động";
     this.Load           += new System.EventHandler(this.f203_v_gd_trang_thai_lao_dong_Load);
     this.m_pnl_out_place_dm.ResumeLayout(false);
     this.m_pnl_out_place_dm.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_grv_trang_thai_ld)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.messageLabel = new System.Windows.Forms.Label();
     this.byeButton    = new System.Windows.Forms.Button();
     this.mainGroupBox = new System.Windows.Forms.GroupBox();
     this.hiButton     = new System.Windows.Forms.Button();
     this.mainPanel    = new System.Windows.Forms.Panel();
     this.rightButton  = new System.Windows.Forms.Button();
     this.leftButton   = new System.Windows.Forms.Button();
     this.mainGroupBox.SuspendLayout();
     this.mainPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // messageLabel
     //
     this.messageLabel.Location = new System.Drawing.Point(24, 144);
     this.messageLabel.Name     = "messageLabel";
     this.messageLabel.Size     = new System.Drawing.Size(176, 32);
     this.messageLabel.TabIndex = 2;
     //
     // byeButton
     //
     this.byeButton.Location = new System.Drawing.Point(96, 48);
     this.byeButton.Name     = "byeButton";
     this.byeButton.Size     = new System.Drawing.Size(72, 32);
     this.byeButton.TabIndex = 0;
     this.byeButton.Text     = "Bye";
     this.byeButton.Click   += new System.EventHandler(this.byeButton_Click);
     //
     // mainGroupBox
     //
     this.mainGroupBox.Controls.Add(this.byeButton);
     this.mainGroupBox.Controls.Add(this.hiButton);
     this.mainGroupBox.Location = new System.Drawing.Point(24, 24);
     this.mainGroupBox.Name     = "mainGroupBox";
     this.mainGroupBox.Size     = new System.Drawing.Size(176, 104);
     this.mainGroupBox.TabIndex = 0;
     this.mainGroupBox.TabStop  = false;
     this.mainGroupBox.Text     = "Main GroupBox";
     //
     // hiButton
     //
     this.hiButton.Location = new System.Drawing.Point(8, 48);
     this.hiButton.Name     = "hiButton";
     this.hiButton.Size     = new System.Drawing.Size(72, 32);
     this.hiButton.TabIndex = 0;
     this.hiButton.Text     = "Hi";
     this.hiButton.Click   += new System.EventHandler(this.hiButton_Click);
     //
     // mainPanel
     //
     this.mainPanel.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.mainPanel.AutoScroll = true;
     this.mainPanel.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.mainPanel.Controls.Add(this.rightButton);
     this.mainPanel.Controls.Add(this.leftButton);
     this.mainPanel.Location = new System.Drawing.Point(24, 192);
     this.mainPanel.Name     = "mainPanel";
     this.mainPanel.Size     = new System.Drawing.Size(176, 112);
     this.mainPanel.TabIndex = 1;
     //
     // rightButton
     //
     this.rightButton.Location = new System.Drawing.Point(264, 40);
     this.rightButton.Name     = "rightButton";
     this.rightButton.Size     = new System.Drawing.Size(80, 40);
     this.rightButton.TabIndex = 0;
     this.rightButton.Text     = "Far Right";
     this.rightButton.Click   += new System.EventHandler(this.rightButton_Click);
     //
     // leftButton
     //
     this.leftButton.Location = new System.Drawing.Point(8, 40);
     this.leftButton.Name     = "leftButton";
     this.leftButton.Size     = new System.Drawing.Size(80, 40);
     this.leftButton.TabIndex = 0;
     this.leftButton.Text     = "Far Left";
     this.leftButton.Click   += new System.EventHandler(this.leftButton_Click);
     //
     // GroupBoxPanelExample
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(224, 317);
     this.Controls.Add(this.messageLabel);
     this.Controls.Add(this.mainPanel);
     this.Controls.Add(this.mainGroupBox);
     this.Name = "GroupBoxPanelExample";
     this.Text = "GroupBoxPanelExample";
     this.mainGroupBox.ResumeLayout(false);
     this.mainPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 } // end method InitializeComponent
Exemplo n.º 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelFindWhat      = new System.Windows.Forms.Label();
     this.textBoxFindWhat    = new System.Windows.Forms.TextBox();
     this.checkBoxMatchCase  = new System.Windows.Forms.CheckBox();
     this.groupBoxSearch     = new System.Windows.Forms.GroupBox();
     this.radioButtonStreams = new System.Windows.Forms.RadioButton();
     this.radioButtonUnitOps = new System.Windows.Forms.RadioButton();
     this.radioButtonAll     = new System.Windows.Forms.RadioButton();
     this.buttonFind         = new System.Windows.Forms.Button();
     this.mainMenu           = new System.Windows.Forms.MainMenu();
     this.menuItemClose      = new System.Windows.Forms.MenuItem();
     this.panel = new System.Windows.Forms.Panel();
     this.groupBoxSearch.SuspendLayout();
     this.panel.SuspendLayout();
     this.SuspendLayout();
     //
     // labelFindWhat
     //
     this.labelFindWhat.Location  = new System.Drawing.Point(8, 16);
     this.labelFindWhat.Name      = "labelFindWhat";
     this.labelFindWhat.Size      = new System.Drawing.Size(68, 16);
     this.labelFindWhat.TabIndex  = 0;
     this.labelFindWhat.Text      = "Find what:";
     this.labelFindWhat.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // textBoxFindWhat
     //
     this.textBoxFindWhat.Location    = new System.Drawing.Point(80, 16);
     this.textBoxFindWhat.Name        = "textBoxFindWhat";
     this.textBoxFindWhat.Size        = new System.Drawing.Size(200, 20);
     this.textBoxFindWhat.TabIndex    = 1;
     this.textBoxFindWhat.Text        = "";
     this.textBoxFindWhat.WordWrap    = false;
     this.textBoxFindWhat.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxFindWhat_Validating);
     this.textBoxFindWhat.KeyUp      += new System.Windows.Forms.KeyEventHandler(this.textBoxFindWhat_KeyUp);
     //
     // checkBoxMatchCase
     //
     this.checkBoxMatchCase.Checked    = true;
     this.checkBoxMatchCase.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxMatchCase.Location   = new System.Drawing.Point(8, 40);
     this.checkBoxMatchCase.Name       = "checkBoxMatchCase";
     this.checkBoxMatchCase.Size       = new System.Drawing.Size(92, 20);
     this.checkBoxMatchCase.TabIndex   = 4;
     this.checkBoxMatchCase.Text       = "Match case";
     //
     // groupBoxSearch
     //
     this.groupBoxSearch.Controls.Add(this.radioButtonStreams);
     this.groupBoxSearch.Controls.Add(this.radioButtonUnitOps);
     this.groupBoxSearch.Controls.Add(this.radioButtonAll);
     this.groupBoxSearch.Location = new System.Drawing.Point(108, 40);
     this.groupBoxSearch.Name     = "groupBoxSearch";
     this.groupBoxSearch.Size     = new System.Drawing.Size(168, 80);
     this.groupBoxSearch.TabIndex = 3;
     this.groupBoxSearch.TabStop  = false;
     this.groupBoxSearch.Text     = "Search";
     //
     // radioButtonStreams
     //
     this.radioButtonStreams.Location = new System.Drawing.Point(8, 60);
     this.radioButtonStreams.Name     = "radioButtonStreams";
     this.radioButtonStreams.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonStreams.TabIndex = 2;
     this.radioButtonStreams.Text     = "Streams";
     //
     // radioButtonUnitOps
     //
     this.radioButtonUnitOps.Location = new System.Drawing.Point(8, 40);
     this.radioButtonUnitOps.Name     = "radioButtonUnitOps";
     this.radioButtonUnitOps.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonUnitOps.TabIndex = 1;
     this.radioButtonUnitOps.Text     = "Unit Operations";
     //
     // radioButtonAll
     //
     this.radioButtonAll.Checked  = true;
     this.radioButtonAll.Location = new System.Drawing.Point(8, 20);
     this.radioButtonAll.Name     = "radioButtonAll";
     this.radioButtonAll.Size     = new System.Drawing.Size(156, 16);
     this.radioButtonAll.TabIndex = 0;
     this.radioButtonAll.TabStop  = true;
     this.radioButtonAll.Text     = "All flowsheet elements";
     //
     // buttonFind
     //
     this.buttonFind.Location = new System.Drawing.Point(288, 16);
     this.buttonFind.Name     = "buttonFind";
     this.buttonFind.TabIndex = 2;
     this.buttonFind.Text     = "Find";
     this.buttonFind.Click   += new System.EventHandler(this.buttonFind_Click);
     //
     // mainMenu
     //
     this.mainMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItemClose
     });
     //
     // menuItemClose
     //
     this.menuItemClose.Index  = 0;
     this.menuItemClose.Text   = "Close";
     this.menuItemClose.Click += new System.EventHandler(this.menuItemClose_Click);
     //
     // panel
     //
     this.panel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel.Controls.Add(this.textBoxFindWhat);
     this.panel.Controls.Add(this.checkBoxMatchCase);
     this.panel.Controls.Add(this.groupBoxSearch);
     this.panel.Controls.Add(this.buttonFind);
     this.panel.Controls.Add(this.labelFindWhat);
     this.panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name     = "panel";
     this.panel.Size     = new System.Drawing.Size(374, 133);
     this.panel.TabIndex = 5;
     //
     // FindForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(374, 133);
     this.Controls.Add(this.panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.Menu            = this.mainMenu;
     this.MinimizeBox     = false;
     this.Name            = "FindForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Find";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.FindForm_Closing);
     this.groupBoxSearch.ResumeLayout(false);
     this.panel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.CancelBTN        = new System.Windows.Forms.Button();
     this.ButtonsPN        = new System.Windows.Forms.Panel();
     this.OkBTN            = new System.Windows.Forms.Button();
     this.MainPN           = new System.Windows.Forms.Panel();
     this.TimestampCTRL    = new System.Windows.Forms.DateTimePicker();
     this.TimestampLB      = new System.Windows.Forms.Label();
     this.UserLB           = new System.Windows.Forms.Label();
     this.CreationTimeLB   = new System.Windows.Forms.Label();
     this.ValueLB          = new System.Windows.Forms.Label();
     this.CreationTimeCTRL = new System.Windows.Forms.DateTimePicker();
     this.UserTB           = new System.Windows.Forms.TextBox();
     this.AnnotationTB     = new System.Windows.Forms.TextBox();
     this.ButtonsPN.SuspendLayout();
     this.MainPN.SuspendLayout();
     this.SuspendLayout();
     //
     // CancelBTN
     //
     this.CancelBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CancelBTN.Location     = new System.Drawing.Point(288, 8);
     this.CancelBTN.Name         = "CancelBTN";
     this.CancelBTN.TabIndex     = 0;
     this.CancelBTN.Text         = "Cancel";
     //
     // ButtonsPN
     //
     this.ButtonsPN.Controls.Add(this.OkBTN);
     this.ButtonsPN.Controls.Add(this.CancelBTN);
     this.ButtonsPN.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.ButtonsPN.Location = new System.Drawing.Point(0, 98);
     this.ButtonsPN.Name     = "ButtonsPN";
     this.ButtonsPN.Size     = new System.Drawing.Size(368, 36);
     this.ButtonsPN.TabIndex = 0;
     //
     // OkBTN
     //
     this.OkBTN.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OkBTN.Location     = new System.Drawing.Point(4, 8);
     this.OkBTN.Name         = "OkBTN";
     this.OkBTN.TabIndex     = 1;
     this.OkBTN.Text         = "OK";
     //
     // MainPN
     //
     this.MainPN.Controls.Add(this.AnnotationTB);
     this.MainPN.Controls.Add(this.UserTB);
     this.MainPN.Controls.Add(this.CreationTimeCTRL);
     this.MainPN.Controls.Add(this.TimestampCTRL);
     this.MainPN.Controls.Add(this.TimestampLB);
     this.MainPN.Controls.Add(this.UserLB);
     this.MainPN.Controls.Add(this.CreationTimeLB);
     this.MainPN.Controls.Add(this.ValueLB);
     this.MainPN.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.MainPN.DockPadding.Left  = 4;
     this.MainPN.DockPadding.Right = 4;
     this.MainPN.DockPadding.Top   = 4;
     this.MainPN.Location          = new System.Drawing.Point(0, 0);
     this.MainPN.Name              = "MainPN";
     this.MainPN.Size              = new System.Drawing.Size(368, 98);
     this.MainPN.TabIndex          = 1;
     //
     // TimestampCTRL
     //
     this.TimestampCTRL.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.TimestampCTRL.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimestampCTRL.Location     = new System.Drawing.Point(80, 28);
     this.TimestampCTRL.Name         = "TimestampCTRL";
     this.TimestampCTRL.Size         = new System.Drawing.Size(132, 20);
     this.TimestampCTRL.TabIndex     = 4;
     //
     // TimestampLB
     //
     this.TimestampLB.Location  = new System.Drawing.Point(4, 28);
     this.TimestampLB.Name      = "TimestampLB";
     this.TimestampLB.Size      = new System.Drawing.Size(76, 23);
     this.TimestampLB.TabIndex  = 3;
     this.TimestampLB.Text      = "Timestamp";
     this.TimestampLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // UserLB
     //
     this.UserLB.Location  = new System.Drawing.Point(4, 76);
     this.UserLB.Name      = "UserLB";
     this.UserLB.Size      = new System.Drawing.Size(76, 23);
     this.UserLB.TabIndex  = 7;
     this.UserLB.Text      = "User";
     this.UserLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // CreationTimeLB
     //
     this.CreationTimeLB.Location  = new System.Drawing.Point(4, 52);
     this.CreationTimeLB.Name      = "CreationTimeLB";
     this.CreationTimeLB.Size      = new System.Drawing.Size(76, 23);
     this.CreationTimeLB.TabIndex  = 5;
     this.CreationTimeLB.Text      = "Creation Time";
     this.CreationTimeLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ValueLB
     //
     this.ValueLB.Location  = new System.Drawing.Point(4, 4);
     this.ValueLB.Name      = "ValueLB";
     this.ValueLB.Size      = new System.Drawing.Size(76, 23);
     this.ValueLB.TabIndex  = 0;
     this.ValueLB.Text      = "Annotation";
     this.ValueLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // CreationTimeCTRL
     //
     this.CreationTimeCTRL.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     this.CreationTimeCTRL.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.CreationTimeCTRL.Location     = new System.Drawing.Point(80, 52);
     this.CreationTimeCTRL.Name         = "CreationTimeCTRL";
     this.CreationTimeCTRL.Size         = new System.Drawing.Size(132, 20);
     this.CreationTimeCTRL.TabIndex     = 9;
     //
     // UserTB
     //
     this.UserTB.Location = new System.Drawing.Point(80, 76);
     this.UserTB.Name     = "UserTB";
     this.UserTB.Size     = new System.Drawing.Size(132, 20);
     this.UserTB.TabIndex = 10;
     this.UserTB.Text     = "";
     //
     // AnnotationTB
     //
     this.AnnotationTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.AnnotationTB.Location = new System.Drawing.Point(80, 4);
     this.AnnotationTB.Name     = "AnnotationTB";
     this.AnnotationTB.Size     = new System.Drawing.Size(284, 20);
     this.AnnotationTB.TabIndex = 11;
     this.AnnotationTB.Text     = "";
     //
     // AnnotationValueEditDlg
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(368, 134);
     this.Controls.Add(this.MainPN);
     this.Controls.Add(this.ButtonsPN);
     this.Name          = "AnnotationValueEditDlg";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Edit Annotation";
     this.ButtonsPN.ResumeLayout(false);
     this.MainPN.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 37
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
            this.topPanel       = new System.Windows.Forms.Panel();
            this.lblVersion     = new System.Windows.Forms.Label();
            this.PictureBox1    = new System.Windows.Forms.PictureBox();
            this.lblDescription = new System.Windows.Forms.Label();
            this.panel1         = new System.Windows.Forms.Panel();
            this.assemblyInfoViewerUserControl1 = new Sytel.Common.WinForms.AssemblyInfoViewerUserControl();
            this.Label1           = new System.Windows.Forms.Label();
            this.panel2           = new System.Windows.Forms.Panel();
            this.txtCopyrightText = new System.Windows.Forms.TextBox();
            this.label3           = new System.Windows.Forms.Label();
            this.label2           = new System.Windows.Forms.Label();
            this.lblPartner       = new System.Windows.Forms.Label();
            this.butInfo          = new System.Windows.Forms.Button();
            this.butOK            = new System.Windows.Forms.Button();
            this.linkProduct      = new System.Windows.Forms.LinkLabel();
            this.linkCompany      = new System.Windows.Forms.LinkLabel();
            this.topPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
//
// topPanel
//
            this.topPanel.Controls.Add(this.PictureBox1);
            this.topPanel.Controls.Add(this.lblDescription);
            this.topPanel.Dock     = System.Windows.Forms.DockStyle.Top;
            this.topPanel.Location = new System.Drawing.Point(0, 0);
            this.topPanel.Name     = "topPanel";
            this.topPanel.Size     = new System.Drawing.Size(552, 48);
            this.topPanel.TabIndex = 0;
            this.topPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this.topPanel_Paint);
//
// lblVersion
//
            this.lblVersion.AccessibleDescription = "1.0.0.0";
            this.lblVersion.AccessibleName        = "Version";
            this.lblVersion.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
            this.lblVersion.Location  = new System.Drawing.Point(264, 0);
            this.lblVersion.Name      = "lblVersion";
            this.lblVersion.Size      = new System.Drawing.Size(288, 16);
            this.lblVersion.TabIndex  = 9;
            this.lblVersion.Text      = "< version >";
            this.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// PictureBox1
//
            this.PictureBox1.AccessibleDescription = "TaskVision Logo";
            this.PictureBox1.AccessibleName        = "Application Logo";
            this.PictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("PictureBox1.Image")));
            this.PictureBox1.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.PictureBox1.Location = new System.Drawing.Point(10, 6);
            this.PictureBox1.Name     = "PictureBox1";
            this.PictureBox1.Size     = new System.Drawing.Size(48, 48);
            this.PictureBox1.TabIndex = 8;
            this.PictureBox1.TabStop  = false;
//
// lblDescription
//
            this.lblDescription.AccessibleDescription = "Change Management Software";
            this.lblDescription.AccessibleName        = "TaskDescription";
            this.lblDescription.AutoSize = true;
            this.lblDescription.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.lblDescription.Location = new System.Drawing.Point(72, 8);
            this.lblDescription.Name     = "lblDescription";
            this.lblDescription.Size     = new System.Drawing.Size(78, 14);
            this.lblDescription.TabIndex = 7;
            this.lblDescription.Text     = "< description >";
//
// panel1
//
            this.panel1.Controls.Add(this.lblVersion);
            this.panel1.Controls.Add(this.assemblyInfoViewerUserControl1);
            this.panel1.Controls.Add(this.Label1);
            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 48);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(552, 262);
            this.panel1.TabIndex = 1;
//
// assemblyInfoViewerUserControl1
//
            this.assemblyInfoViewerUserControl1.AssmblyToUse = null;
            this.assemblyInfoViewerUserControl1.Dock         = System.Windows.Forms.DockStyle.Fill;
            this.assemblyInfoViewerUserControl1.Location     = new System.Drawing.Point(0, 16);
            this.assemblyInfoViewerUserControl1.Name         = "assemblyInfoViewerUserControl1";
            this.assemblyInfoViewerUserControl1.Size         = new System.Drawing.Size(552, 246);
            this.assemblyInfoViewerUserControl1.TabIndex     = 9;
//
// Label1
//
            this.Label1.AccessibleDescription = "Product components";
            this.Label1.AccessibleName        = "Product Components";
            this.Label1.Dock     = System.Windows.Forms.DockStyle.Top;
            this.Label1.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.Label1.Location = new System.Drawing.Point(0, 0);
            this.Label1.Name     = "Label1";
            this.Label1.Size     = new System.Drawing.Size(552, 16);
            this.Label1.TabIndex = 6;
            this.Label1.Text     = "Product Information:";
//
// panel2
//
            this.panel2.Controls.Add(this.txtCopyrightText);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Controls.Add(this.lblPartner);
            this.panel2.Controls.Add(this.butInfo);
            this.panel2.Controls.Add(this.butOK);
            this.panel2.Controls.Add(this.linkProduct);
            this.panel2.Controls.Add(this.linkCompany);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
            this.panel2.Location = new System.Drawing.Point(0, 310);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(552, 88);
            this.panel2.TabIndex = 2;
//
// txtCopyrightText
//
            this.txtCopyrightText.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtCopyrightText.Location    = new System.Drawing.Point(128, 40);
            this.txtCopyrightText.Multiline   = true;
            this.txtCopyrightText.Name        = "txtCopyrightText";
            this.txtCopyrightText.ReadOnly    = true;
            this.txtCopyrightText.ScrollBars  = System.Windows.Forms.ScrollBars.Vertical;
            this.txtCopyrightText.Size        = new System.Drawing.Size(304, 40);
            this.txtCopyrightText.TabIndex    = 20;
//
// label3
//
            this.label3.AutoSize = true;
            this.label3.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.label3.Location = new System.Drawing.Point(12, 40);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(71, 14);
            this.label3.TabIndex = 19;
            this.label3.Text     = "Copyright (C) ";
//
// label2
//
            this.label2.AutoSize = true;
            this.label2.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.label2.Location = new System.Drawing.Point(12, 7);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(105, 14);
            this.label2.TabIndex = 18;
            this.label2.Text     = "Product Homepage:";
//
// lblPartner
//
            this.lblPartner.AutoSize = true;
            this.lblPartner.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.lblPartner.Location = new System.Drawing.Point(12, 24);
            this.lblPartner.Name     = "lblPartner";
            this.lblPartner.Size     = new System.Drawing.Size(77, 14);
            this.lblPartner.TabIndex = 13;
            this.lblPartner.Text     = "Developed by:";
//
// butInfo
//
            this.butInfo.AccessibleDescription = "System Info";
            this.butInfo.AccessibleName        = "System Info";
            this.butInfo.FlatStyle             = System.Windows.Forms.FlatStyle.System;
            this.butInfo.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.butInfo.Location = new System.Drawing.Point(448, 40);
            this.butInfo.Name     = "butInfo";
            this.butInfo.Size     = new System.Drawing.Size(88, 23);
            this.butInfo.TabIndex = 17;
            this.butInfo.Text     = "System Info...";
            this.butInfo.Click   += new System.EventHandler(this.butInfo_Click);
//
// butOK
//
            this.butOK.AccessibleDescription = "OK";
            this.butOK.AccessibleName        = "OK";
            this.butOK.DialogResult          = System.Windows.Forms.DialogResult.OK;
            this.butOK.FlatStyle             = System.Windows.Forms.FlatStyle.System;
            this.butOK.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.butOK.Location = new System.Drawing.Point(448, 8);
            this.butOK.Name     = "butOK";
            this.butOK.Size     = new System.Drawing.Size(88, 23);
            this.butOK.TabIndex = 16;
            this.butOK.Text     = "OK";
//
// linkProduct
//
            this.linkProduct.AccessibleDescription = "Product Link";
            this.linkProduct.AccessibleName        = "Product Link";
            this.linkProduct.AutoSize = true;
            this.linkProduct.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.linkProduct.Links.Add(new System.Windows.Forms.LinkLabel.Link(0, 12));
            this.linkProduct.Location     = new System.Drawing.Point(128, 8);
            this.linkProduct.Name         = "linkProduct";
            this.linkProduct.Size         = new System.Drawing.Size(67, 14);
            this.linkProduct.TabIndex     = 12;
            this.linkProduct.TabStop      = true;
            this.linkProduct.Text         = "Product Link";
            this.linkProduct.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProduct_LinkClicked);
//
// linkCompany
//
            this.linkCompany.AccessibleDescription = "";
            this.linkCompany.AccessibleName        = "";
            this.linkCompany.AutoSize = true;
            this.linkCompany.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
            this.linkCompany.Links.Add(new System.Windows.Forms.LinkLabel.Link(0, 12));
            this.linkCompany.Location     = new System.Drawing.Point(128, 23);
            this.linkCompany.Name         = "linkCompany";
            this.linkCompany.Size         = new System.Drawing.Size(77, 14);
            this.linkCompany.TabIndex     = 14;
            this.linkCompany.TabStop      = true;
            this.linkCompany.Text         = "Company Link";
            this.linkCompany.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkProduct_LinkClicked);
//
// AboutForm
//
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(552, 398);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.topPanel);
            this.Name          = "AboutForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text          = "AboutForm";
            this.topPanel.ResumeLayout(false);
            this.topPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.ResumeLayout(false);
        }
Exemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Toolbox));
     this.radioButtonCyclone             = new System.Windows.Forms.RadioButton();
     this.radioButtonCompressor          = new System.Windows.Forms.RadioButton();
     this.radioButtonCooler              = new System.Windows.Forms.RadioButton();
     this.radioButtonFan                 = new System.Windows.Forms.RadioButton();
     this.radioButtonHeater              = new System.Windows.Forms.RadioButton();
     this.radioButtonPump                = new System.Windows.Forms.RadioButton();
     this.radioButtonDryerLiquid         = new System.Windows.Forms.RadioButton();
     this.radioButtonGasStream           = new System.Windows.Forms.RadioButton();
     this.radioButtonSolidMaterialStream = new System.Windows.Forms.RadioButton();
     this.panel = new System.Windows.Forms.Panel();
     this.radioButtonDryerSolid           = new System.Windows.Forms.RadioButton();
     this.radioButtonLiquidMaterialStream = new System.Windows.Forms.RadioButton();
     this.radioButtonWetScrubber          = new System.Windows.Forms.RadioButton();
     this.radioButtonEjector = new System.Windows.Forms.RadioButton();
     this.radioButtonElectrostaticPrecipitator = new System.Windows.Forms.RadioButton();
     this.radioButtonRecycle       = new System.Windows.Forms.RadioButton();
     this.radioButtonHeatExchanger = new System.Windows.Forms.RadioButton();
     this.radioButtonTee           = new System.Windows.Forms.RadioButton();
     this.radioButtonMixer         = new System.Windows.Forms.RadioButton();
     this.radioButtonAirFilter     = new System.Windows.Forms.RadioButton();
     this.radioButtonFlashTank     = new System.Windows.Forms.RadioButton();
     this.radioButtonValve         = new System.Windows.Forms.RadioButton();
     this.radioButtonBagFilter     = new System.Windows.Forms.RadioButton();
     this.panel.SuspendLayout();
     this.SuspendLayout();
     //
     // radioButtonCyclone
     //
     this.radioButtonCyclone.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonCyclone.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonCyclone.Image")));
     this.radioButtonCyclone.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonCyclone.Location        = new System.Drawing.Point(0, 170);
     this.radioButtonCyclone.Name            = "radioButtonCyclone";
     this.radioButtonCyclone.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonCyclone.TabIndex        = 6;
     this.radioButtonCyclone.CheckedChanged += new System.EventHandler(this.radioButtonCyclone_CheckedChanged);
     //
     // radioButtonCompressor
     //
     this.radioButtonCompressor.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonCompressor.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonCompressor.Image")));
     this.radioButtonCompressor.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonCompressor.Location        = new System.Drawing.Point(0, 102);
     this.radioButtonCompressor.Name            = "radioButtonCompressor";
     this.radioButtonCompressor.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonCompressor.TabIndex        = 5;
     this.radioButtonCompressor.CheckedChanged += new System.EventHandler(this.radioButtonCompressor_CheckedChanged);
     //
     // radioButtonCooler
     //
     this.radioButtonCooler.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonCooler.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonCooler.Image")));
     this.radioButtonCooler.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonCooler.Location        = new System.Drawing.Point(0, 272);
     this.radioButtonCooler.Name            = "radioButtonCooler";
     this.radioButtonCooler.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonCooler.TabIndex        = 4;
     this.radioButtonCooler.CheckedChanged += new System.EventHandler(this.radioButtonCooler_CheckedChanged);
     //
     // radioButtonFan
     //
     this.radioButtonFan.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonFan.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonFan.Image")));
     this.radioButtonFan.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonFan.Location        = new System.Drawing.Point(34, 68);
     this.radioButtonFan.Name            = "radioButtonFan";
     this.radioButtonFan.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonFan.TabIndex        = 3;
     this.radioButtonFan.CheckedChanged += new System.EventHandler(this.radioButtonFan_CheckedChanged);
     //
     // radioButtonHeater
     //
     this.radioButtonHeater.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonHeater.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonHeater.Image")));
     this.radioButtonHeater.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonHeater.Location        = new System.Drawing.Point(34, 238);
     this.radioButtonHeater.Name            = "radioButtonHeater";
     this.radioButtonHeater.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonHeater.TabIndex        = 2;
     this.radioButtonHeater.CheckedChanged += new System.EventHandler(this.radioButtonHeater_CheckedChanged);
     //
     // radioButtonPump
     //
     this.radioButtonPump.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonPump.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonPump.Image")));
     this.radioButtonPump.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonPump.Location        = new System.Drawing.Point(34, 102);
     this.radioButtonPump.Name            = "radioButtonPump";
     this.radioButtonPump.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonPump.TabIndex        = 1;
     this.radioButtonPump.CheckedChanged += new System.EventHandler(this.radioButtonPump_CheckedChanged);
     //
     // radioButtonDryerLiquid
     //
     this.radioButtonDryerLiquid.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonDryerLiquid.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonDryerLiquid.Image")));
     this.radioButtonDryerLiquid.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonDryerLiquid.Location        = new System.Drawing.Point(0, 68);
     this.radioButtonDryerLiquid.Name            = "radioButtonDryerLiquid";
     this.radioButtonDryerLiquid.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonDryerLiquid.TabIndex        = 0;
     this.radioButtonDryerLiquid.CheckedChanged += new System.EventHandler(this.radioButtonDryerLiquid_CheckedChanged);
     //
     // radioButtonGasStream
     //
     this.radioButtonGasStream.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonGasStream.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonGasStream.Image")));
     this.radioButtonGasStream.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonGasStream.Location        = new System.Drawing.Point(0, 0);
     this.radioButtonGasStream.Name            = "radioButtonGasStream";
     this.radioButtonGasStream.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonGasStream.TabIndex        = 3;
     this.radioButtonGasStream.CheckedChanged += new System.EventHandler(this.radioButtonGasStream_CheckedChanged);
     //
     // radioButtonSolidMaterialStream
     //
     this.radioButtonSolidMaterialStream.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonSolidMaterialStream.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonSolidMaterialStream.Image")));
     this.radioButtonSolidMaterialStream.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonSolidMaterialStream.Location        = new System.Drawing.Point(34, 0);
     this.radioButtonSolidMaterialStream.Name            = "radioButtonSolidMaterialStream";
     this.radioButtonSolidMaterialStream.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonSolidMaterialStream.TabIndex        = 2;
     this.radioButtonSolidMaterialStream.CheckedChanged += new System.EventHandler(this.radioButtonSolidMaterialStream_CheckedChanged);
     //
     // panel
     //
     this.panel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel.Controls.Add(this.radioButtonDryerSolid);
     this.panel.Controls.Add(this.radioButtonLiquidMaterialStream);
     this.panel.Controls.Add(this.radioButtonWetScrubber);
     this.panel.Controls.Add(this.radioButtonEjector);
     this.panel.Controls.Add(this.radioButtonElectrostaticPrecipitator);
     this.panel.Controls.Add(this.radioButtonRecycle);
     this.panel.Controls.Add(this.radioButtonHeatExchanger);
     this.panel.Controls.Add(this.radioButtonTee);
     this.panel.Controls.Add(this.radioButtonMixer);
     this.panel.Controls.Add(this.radioButtonAirFilter);
     this.panel.Controls.Add(this.radioButtonFlashTank);
     this.panel.Controls.Add(this.radioButtonValve);
     this.panel.Controls.Add(this.radioButtonBagFilter);
     this.panel.Controls.Add(this.radioButtonSolidMaterialStream);
     this.panel.Controls.Add(this.radioButtonGasStream);
     this.panel.Controls.Add(this.radioButtonDryerLiquid);
     this.panel.Controls.Add(this.radioButtonCyclone);
     this.panel.Controls.Add(this.radioButtonPump);
     this.panel.Controls.Add(this.radioButtonCompressor);
     this.panel.Controls.Add(this.radioButtonFan);
     this.panel.Controls.Add(this.radioButtonHeater);
     this.panel.Controls.Add(this.radioButtonCooler);
     this.panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel.Location = new System.Drawing.Point(0, 0);
     this.panel.Name     = "panel";
     this.panel.Size     = new System.Drawing.Size(70, 388);
     this.panel.TabIndex = 7;
     this.panel.Click   += new System.EventHandler(this.panel_Click);
     //
     // radioButtonDryerSolid
     //
     this.radioButtonDryerSolid.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonDryerSolid.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonDryerSolid.Image")));
     this.radioButtonDryerSolid.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonDryerSolid.Location        = new System.Drawing.Point(34, 34);
     this.radioButtonDryerSolid.Name            = "radioButtonDryerSolid";
     this.radioButtonDryerSolid.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonDryerSolid.TabIndex        = 20;
     this.radioButtonDryerSolid.CheckedChanged += new System.EventHandler(this.radioButtonDryerSolid_CheckedChanged);
     //
     // radioButtonLiquidMaterialStream
     //
     this.radioButtonLiquidMaterialStream.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonLiquidMaterialStream.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonLiquidMaterialStream.Image")));
     this.radioButtonLiquidMaterialStream.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonLiquidMaterialStream.Location        = new System.Drawing.Point(0, 34);
     this.radioButtonLiquidMaterialStream.Name            = "radioButtonLiquidMaterialStream";
     this.radioButtonLiquidMaterialStream.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonLiquidMaterialStream.TabIndex        = 19;
     this.radioButtonLiquidMaterialStream.CheckedChanged += new System.EventHandler(this.radioButtonLiquidMaterialStream_CheckedChanged);
     //
     // radioButtonWetScrubber
     //
     this.radioButtonWetScrubber.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonWetScrubber.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonWetScrubber.Image")));
     this.radioButtonWetScrubber.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonWetScrubber.Location        = new System.Drawing.Point(0, 238);
     this.radioButtonWetScrubber.Name            = "radioButtonWetScrubber";
     this.radioButtonWetScrubber.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonWetScrubber.TabIndex        = 18;
     this.radioButtonWetScrubber.CheckedChanged += new System.EventHandler(this.radioButtonWetScrubber_CheckedChanged);
     //
     // radioButtonEjector
     //
     this.radioButtonEjector.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonEjector.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonEjector.Image")));
     this.radioButtonEjector.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonEjector.Location        = new System.Drawing.Point(34, 136);
     this.radioButtonEjector.Name            = "radioButtonEjector";
     this.radioButtonEjector.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonEjector.TabIndex        = 17;
     this.radioButtonEjector.CheckedChanged += new System.EventHandler(this.radioButtonEjector_CheckedChanged);
     //
     // radioButtonElectrostaticPrecipitator
     //
     this.radioButtonElectrostaticPrecipitator.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonElectrostaticPrecipitator.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonElectrostaticPrecipitator.Image")));
     this.radioButtonElectrostaticPrecipitator.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonElectrostaticPrecipitator.Location        = new System.Drawing.Point(34, 204);
     this.radioButtonElectrostaticPrecipitator.Name            = "radioButtonElectrostaticPrecipitator";
     this.radioButtonElectrostaticPrecipitator.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonElectrostaticPrecipitator.TabIndex        = 16;
     this.radioButtonElectrostaticPrecipitator.CheckedChanged += new System.EventHandler(this.radioButtonElectrostaticPrecipitator_CheckedChanged);
     //
     // radioButtonRecycle
     //
     this.radioButtonRecycle.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonRecycle.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonRecycle.Image")));
     this.radioButtonRecycle.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonRecycle.Location        = new System.Drawing.Point(34, 340);
     this.radioButtonRecycle.Name            = "radioButtonRecycle";
     this.radioButtonRecycle.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonRecycle.TabIndex        = 15;
     this.radioButtonRecycle.CheckedChanged += new System.EventHandler(this.radioButtonRecycle_CheckedChanged);
     //
     // radioButtonHeatExchanger
     //
     this.radioButtonHeatExchanger.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonHeatExchanger.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonHeatExchanger.Image")));
     this.radioButtonHeatExchanger.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonHeatExchanger.Location        = new System.Drawing.Point(34, 272);
     this.radioButtonHeatExchanger.Name            = "radioButtonHeatExchanger";
     this.radioButtonHeatExchanger.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonHeatExchanger.TabIndex        = 14;
     this.radioButtonHeatExchanger.CheckedChanged += new System.EventHandler(this.radioButtonHeatExchanger_CheckedChanged);
     //
     // radioButtonTee
     //
     this.radioButtonTee.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonTee.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonTee.Image")));
     this.radioButtonTee.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonTee.Location        = new System.Drawing.Point(0, 306);
     this.radioButtonTee.Name            = "radioButtonTee";
     this.radioButtonTee.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonTee.TabIndex        = 13;
     this.radioButtonTee.CheckedChanged += new System.EventHandler(this.radioButtonTee_CheckedChanged);
     //
     // radioButtonMixer
     //
     this.radioButtonMixer.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonMixer.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonMixer.Image")));
     this.radioButtonMixer.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonMixer.Location        = new System.Drawing.Point(34, 306);
     this.radioButtonMixer.Name            = "radioButtonMixer";
     this.radioButtonMixer.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonMixer.TabIndex        = 12;
     this.radioButtonMixer.CheckedChanged += new System.EventHandler(this.radioButtonMixer_CheckedChanged);
     //
     // radioButtonAirFilter
     //
     this.radioButtonAirFilter.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonAirFilter.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonAirFilter.Image")));
     this.radioButtonAirFilter.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonAirFilter.Location        = new System.Drawing.Point(0, 204);
     this.radioButtonAirFilter.Name            = "radioButtonAirFilter";
     this.radioButtonAirFilter.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonAirFilter.TabIndex        = 11;
     this.radioButtonAirFilter.CheckedChanged += new System.EventHandler(this.radioButtonAirFilter_CheckedChanged);
     //
     // radioButtonFlashTank
     //
     this.radioButtonFlashTank.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonFlashTank.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonFlashTank.Image")));
     this.radioButtonFlashTank.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonFlashTank.Location        = new System.Drawing.Point(0, 340);
     this.radioButtonFlashTank.Name            = "radioButtonFlashTank";
     this.radioButtonFlashTank.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonFlashTank.TabIndex        = 10;
     this.radioButtonFlashTank.CheckedChanged += new System.EventHandler(this.radioButtonFlashTank_CheckedChanged);
     //
     // radioButtonValve
     //
     this.radioButtonValve.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonValve.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonValve.Image")));
     this.radioButtonValve.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonValve.Location        = new System.Drawing.Point(0, 136);
     this.radioButtonValve.Name            = "radioButtonValve";
     this.radioButtonValve.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonValve.TabIndex        = 9;
     this.radioButtonValve.CheckedChanged += new System.EventHandler(this.radioButtonValve_CheckedChanged);
     //
     // radioButtonBagFilter
     //
     this.radioButtonBagFilter.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radioButtonBagFilter.Image           = ((System.Drawing.Image)(resources.GetObject("radioButtonBagFilter.Image")));
     this.radioButtonBagFilter.ImageAlign      = System.Drawing.ContentAlignment.BottomRight;
     this.radioButtonBagFilter.Location        = new System.Drawing.Point(34, 170);
     this.radioButtonBagFilter.Name            = "radioButtonBagFilter";
     this.radioButtonBagFilter.Size            = new System.Drawing.Size(34, 34);
     this.radioButtonBagFilter.TabIndex        = 8;
     this.radioButtonBagFilter.CheckedChanged += new System.EventHandler(this.radioButtonBagFilter_CheckedChanged);
     //
     // Toolbox
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(70, 388);
     this.Controls.Add(this.panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Toolbox";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Toolbox";
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.Toolbox_Closing);
     this.MouseUp        += new System.Windows.Forms.MouseEventHandler(this.Toolbox_MouseUp);
     this.panel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 39
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(MainForm));
     System.Windows.Forms.ListViewItem listViewItem1          = new System.Windows.Forms.ListViewItem("PROGRAM", 2);
     System.Windows.Forms.ListViewItem listViewItem2          = new System.Windows.Forms.ListViewItem("SALE", 4);
     System.Windows.Forms.ListViewItem listViewItem3          = new System.Windows.Forms.ListViewItem("CR INFO", 1);
     System.Windows.Forms.ListViewItem listViewItem4          = new System.Windows.Forms.ListViewItem("STATUS CHECK", 0);
     System.Windows.Forms.ListViewItem listViewItem5          = new System.Windows.Forms.ListViewItem("REPORTS", 3);
     System.Windows.Forms.ListViewItem listViewItem6          = new System.Windows.Forms.ListViewItem("SERVICE", 5);
     this.imgLstMenus             = new System.Windows.Forms.ImageList(this.components);
     this.lvievMenu               = new System.Windows.Forms.ListView();
     this.pnlMain                 = new System.Windows.Forms.Panel();
     this.txtLog                  = new System.Windows.Forms.RichTextBox();
     this.pnlHeader               = new System.Windows.Forms.Panel();
     this.btnConnect              = new System.Windows.Forms.Button();
     this.label2                  = new System.Windows.Forms.Label();
     this.txtFiscalId             = new System.Windows.Forms.TextBox();
     this.tabConn                 = new System.Windows.Forms.TabControl();
     this.tabTCP                  = new System.Windows.Forms.TabPage();
     this.lblPort                 = new System.Windows.Forms.Label();
     this.txtTcpPort              = new System.Windows.Forms.TextBox();
     this.lblIP                   = new System.Windows.Forms.Label();
     this.txtTCPIP                = new System.Windows.Forms.TextBox();
     this.tabComPort              = new System.Windows.Forms.TabPage();
     this.cmbPorts                = new System.Windows.Forms.ComboBox();
     this.label1                  = new System.Windows.Forms.Label();
     this.txtBaudrate             = new System.Windows.Forms.TextBox();
     this.lblComport              = new System.Windows.Forms.Label();
     this.pnlLogo                 = new System.Windows.Forms.Panel();
     this.tableLayoutPanelMain    = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanelScreens = new System.Windows.Forms.TableLayoutPanel();
     this.pnlHeader.SuspendLayout();
     this.tabConn.SuspendLayout();
     this.tabTCP.SuspendLayout();
     this.tabComPort.SuspendLayout();
     this.tableLayoutPanelMain.SuspendLayout();
     this.tableLayoutPanelScreens.SuspendLayout();
     this.SuspendLayout();
     //
     // imgLstMenus
     //
     this.imgLstMenus.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgLstMenus.ImageStream")));
     this.imgLstMenus.TransparentColor = System.Drawing.Color.Transparent;
     this.imgLstMenus.Images.SetKeyName(0, "status.jpg");
     this.imgLstMenus.Images.SetKeyName(1, "kasainfo.jpg");
     this.imgLstMenus.Images.SetKeyName(2, "service.jpg");
     this.imgLstMenus.Images.SetKeyName(3, "reports.jpg");
     this.imgLstMenus.Images.SetKeyName(4, "sales.jpg");
     this.imgLstMenus.Images.SetKeyName(5, "program.jpg");
     this.imgLstMenus.Images.SetKeyName(6, "");
     //
     // lvievMenu
     //
     this.lvievMenu.BackColor     = System.Drawing.Color.White;
     this.lvievMenu.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lvievMenu.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.lvievMenu.FullRowSelect = true;
     this.lvievMenu.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
         listViewItem1,
         listViewItem2,
         listViewItem3,
         listViewItem4,
         listViewItem5,
         listViewItem6
     });
     this.lvievMenu.LargeImageList = this.imgLstMenus;
     this.lvievMenu.Location       = new System.Drawing.Point(3, 66);
     this.lvievMenu.Name           = "lvievMenu";
     this.lvievMenu.Size           = new System.Drawing.Size(169, 516);
     this.lvievMenu.SmallImageList = this.imgLstMenus;
     this.lvievMenu.TabIndex       = 4;
     this.lvievMenu.UseCompatibleStateImageBehavior = false;
     this.lvievMenu.View        = System.Windows.Forms.View.SmallIcon;
     this.lvievMenu.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lvievMenu_MouseClick);
     //
     // pnlMain
     //
     this.pnlMain.BackColor   = System.Drawing.Color.White;
     this.pnlMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlMain.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.pnlMain.Location    = new System.Drawing.Point(3, 3);
     this.pnlMain.Name        = "pnlMain";
     this.pnlMain.Size        = new System.Drawing.Size(595, 510);
     this.pnlMain.TabIndex    = 3;
     //
     // txtLog
     //
     this.txtLog.BackColor   = System.Drawing.Color.Black;
     this.txtLog.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtLog.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.txtLog.Font        = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
     this.txtLog.ForeColor   = System.Drawing.Color.White;
     this.txtLog.Location    = new System.Drawing.Point(603, 2);
     this.txtLog.Margin      = new System.Windows.Forms.Padding(2);
     this.txtLog.Name        = "txtLog";
     this.txtLog.ScrollBars  = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.txtLog.Size        = new System.Drawing.Size(439, 512);
     this.txtLog.TabIndex    = 5;
     this.txtLog.Text        = "";
     //
     // pnlHeader
     //
     this.pnlHeader.BackColor   = System.Drawing.Color.White;
     this.pnlHeader.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlHeader.Controls.Add(this.btnConnect);
     this.pnlHeader.Controls.Add(this.label2);
     this.pnlHeader.Controls.Add(this.txtFiscalId);
     this.pnlHeader.Controls.Add(this.tabConn);
     this.pnlHeader.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlHeader.Location = new System.Drawing.Point(178, 3);
     this.pnlHeader.Name     = "pnlHeader";
     this.pnlHeader.Size     = new System.Drawing.Size(1044, 57);
     this.pnlHeader.TabIndex = 4;
     //
     // btnConnect
     //
     this.btnConnect.Location = new System.Drawing.Point(470, 10);
     this.btnConnect.Margin   = new System.Windows.Forms.Padding(2);
     this.btnConnect.Name     = "btnConnect";
     this.btnConnect.Size     = new System.Drawing.Size(110, 41);
     this.btnConnect.TabIndex = 7;
     this.btnConnect.Text     = "CONNECT";
     this.btnConnect.UseVisualStyleBackColor = true;
     this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(343, 5);
     this.label2.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(63, 13);
     this.label2.TabIndex = 6;
     this.label2.Text     = "FISCAL ID :";
     //
     // txtFiscalId
     //
     this.txtFiscalId.Location = new System.Drawing.Point(346, 24);
     this.txtFiscalId.Margin   = new System.Windows.Forms.Padding(2);
     this.txtFiscalId.Name     = "txtFiscalId";
     this.txtFiscalId.Size     = new System.Drawing.Size(83, 20);
     this.txtFiscalId.TabIndex = 5;
     this.txtFiscalId.Text     = "111";
     //
     // tabConn
     //
     this.tabConn.Alignment = System.Windows.Forms.TabAlignment.Left;
     this.tabConn.Controls.Add(this.tabTCP);
     this.tabConn.Controls.Add(this.tabComPort);
     this.tabConn.DrawMode      = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
     this.tabConn.ItemSize      = new System.Drawing.Size(25, 120);
     this.tabConn.Location      = new System.Drawing.Point(1, 3);
     this.tabConn.Margin        = new System.Windows.Forms.Padding(2);
     this.tabConn.Multiline     = true;
     this.tabConn.Name          = "tabConn";
     this.tabConn.Padding       = new System.Drawing.Point(0, 0);
     this.tabConn.SelectedIndex = 0;
     this.tabConn.Size          = new System.Drawing.Size(322, 55);
     this.tabConn.SizeMode      = System.Windows.Forms.TabSizeMode.Fixed;
     this.tabConn.TabIndex      = 2;
     this.tabConn.DrawItem     += new System.Windows.Forms.DrawItemEventHandler(this.tabConn_DrawItem);
     //
     // tabTCP
     //
     this.tabTCP.Controls.Add(this.lblPort);
     this.tabTCP.Controls.Add(this.txtTcpPort);
     this.tabTCP.Controls.Add(this.lblIP);
     this.tabTCP.Controls.Add(this.txtTCPIP);
     this.tabTCP.Location = new System.Drawing.Point(124, 4);
     this.tabTCP.Margin   = new System.Windows.Forms.Padding(2);
     this.tabTCP.Name     = "tabTCP";
     this.tabTCP.Padding  = new System.Windows.Forms.Padding(2);
     this.tabTCP.Size     = new System.Drawing.Size(194, 47);
     this.tabTCP.TabIndex = 0;
     this.tabTCP.Text     = "TCP/IP";
     this.tabTCP.UseVisualStyleBackColor = true;
     //
     // lblPort
     //
     this.lblPort.AutoSize = true;
     this.lblPort.Location = new System.Drawing.Point(15, 24);
     this.lblPort.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblPort.Name     = "lblPort";
     this.lblPort.Size     = new System.Drawing.Size(32, 13);
     this.lblPort.TabIndex = 3;
     this.lblPort.Text     = "Port :";
     //
     // txtTcpPort
     //
     this.txtTcpPort.Location = new System.Drawing.Point(76, 24);
     this.txtTcpPort.Margin   = new System.Windows.Forms.Padding(2);
     this.txtTcpPort.Name     = "txtTcpPort";
     this.txtTcpPort.Size     = new System.Drawing.Size(108, 20);
     this.txtTcpPort.TabIndex = 2;
     this.txtTcpPort.Text     = "4444";
     //
     // lblIP
     //
     this.lblIP.AutoSize = true;
     this.lblIP.Location = new System.Drawing.Point(15, 7);
     this.lblIP.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblIP.Name     = "lblIP";
     this.lblIP.Size     = new System.Drawing.Size(23, 13);
     this.lblIP.TabIndex = 1;
     this.lblIP.Text     = "IP :";
     //
     // txtTCPIP
     //
     this.txtTCPIP.Location = new System.Drawing.Point(76, 5);
     this.txtTCPIP.Margin   = new System.Windows.Forms.Padding(2);
     this.txtTCPIP.Name     = "txtTCPIP";
     this.txtTCPIP.Size     = new System.Drawing.Size(108, 20);
     this.txtTCPIP.TabIndex = 0;
     this.txtTCPIP.Text     = "127.0.0.1";
     //
     // tabComPort
     //
     this.tabComPort.Controls.Add(this.cmbPorts);
     this.tabComPort.Controls.Add(this.label1);
     this.tabComPort.Controls.Add(this.txtBaudrate);
     this.tabComPort.Controls.Add(this.lblComport);
     this.tabComPort.Location = new System.Drawing.Point(124, 4);
     this.tabComPort.Margin   = new System.Windows.Forms.Padding(2);
     this.tabComPort.Name     = "tabComPort";
     this.tabComPort.Padding  = new System.Windows.Forms.Padding(2);
     this.tabComPort.Size     = new System.Drawing.Size(194, 47);
     this.tabComPort.TabIndex = 1;
     this.tabComPort.Text     = "SERIAL PORT";
     this.tabComPort.UseVisualStyleBackColor = true;
     //
     // cmbPorts
     //
     this.cmbPorts.FormattingEnabled = true;
     this.cmbPorts.Location          = new System.Drawing.Point(76, 5);
     this.cmbPorts.Margin            = new System.Windows.Forms.Padding(2);
     this.cmbPorts.Name      = "cmbPorts";
     this.cmbPorts.Size      = new System.Drawing.Size(92, 21);
     this.cmbPorts.TabIndex  = 8;
     this.cmbPorts.DropDown += new System.EventHandler(this.cmbPorts_DropDown);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(4, 28);
     this.label1.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(72, 13);
     this.label1.TabIndex = 7;
     this.label1.Text     = "BAUDRATE :";
     //
     // txtBaudrate
     //
     this.txtBaudrate.Location = new System.Drawing.Point(76, 24);
     this.txtBaudrate.Margin   = new System.Windows.Forms.Padding(2);
     this.txtBaudrate.Name     = "txtBaudrate";
     this.txtBaudrate.Size     = new System.Drawing.Size(92, 20);
     this.txtBaudrate.TabIndex = 6;
     this.txtBaudrate.Text     = "115200";
     //
     // lblComport
     //
     this.lblComport.AutoSize = true;
     this.lblComport.Location = new System.Drawing.Point(15, 7);
     this.lblComport.Margin   = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.lblComport.Name     = "lblComport";
     this.lblComport.Size     = new System.Drawing.Size(43, 13);
     this.lblComport.TabIndex = 5;
     this.lblComport.Text     = "PORT :";
     //
     // pnlLogo
     //
     this.pnlLogo.BackColor             = System.Drawing.Color.White;
     this.pnlLogo.BackgroundImage       = global::FP300Service.Properties.Resources.FP300_All_mini;
     this.pnlLogo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.pnlLogo.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlLogo.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlLogo.Location = new System.Drawing.Point(3, 3);
     this.pnlLogo.Name     = "pnlLogo";
     this.pnlLogo.Size     = new System.Drawing.Size(169, 57);
     this.pnlLogo.TabIndex = 4;
     //
     // tableLayoutPanelMain
     //
     this.tableLayoutPanelMain.ColumnCount = 2;
     this.tableLayoutPanelMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.36735F));
     this.tableLayoutPanelMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 85.63265F));
     this.tableLayoutPanelMain.Controls.Add(this.pnlHeader, 1, 0);
     this.tableLayoutPanelMain.Controls.Add(this.pnlLogo, 0, 0);
     this.tableLayoutPanelMain.Controls.Add(this.lvievMenu, 0, 1);
     this.tableLayoutPanelMain.Controls.Add(this.tableLayoutPanelScreens, 1, 1);
     this.tableLayoutPanelMain.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanelMain.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanelMain.Name     = "tableLayoutPanelMain";
     this.tableLayoutPanelMain.RowCount = 2;
     this.tableLayoutPanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.94017F));
     this.tableLayoutPanelMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 89.05983F));
     this.tableLayoutPanelMain.Size     = new System.Drawing.Size(1225, 585);
     this.tableLayoutPanelMain.TabIndex = 6;
     //
     // tableLayoutPanelScreens
     //
     this.tableLayoutPanelScreens.ColumnCount = 2;
     this.tableLayoutPanelScreens.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 57.66283F));
     this.tableLayoutPanelScreens.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.33717F));
     this.tableLayoutPanelScreens.Controls.Add(this.txtLog, 1, 0);
     this.tableLayoutPanelScreens.Controls.Add(this.pnlMain, 0, 0);
     this.tableLayoutPanelScreens.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanelScreens.Location = new System.Drawing.Point(178, 66);
     this.tableLayoutPanelScreens.Name     = "tableLayoutPanelScreens";
     this.tableLayoutPanelScreens.RowCount = 1;
     this.tableLayoutPanelScreens.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanelScreens.Size     = new System.Drawing.Size(1044, 516);
     this.tableLayoutPanelScreens.TabIndex = 5;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize          = new System.Drawing.Size(1225, 585);
     this.Controls.Add(this.tableLayoutPanelMain);
     this.Margin       = new System.Windows.Forms.Padding(2);
     this.Name         = "MainForm";
     this.Text         = "FP300 Servis";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load        += new System.EventHandler(this.MainForm_Load);
     this.pnlHeader.ResumeLayout(false);
     this.pnlHeader.PerformLayout();
     this.tabConn.ResumeLayout(false);
     this.tabTCP.ResumeLayout(false);
     this.tabTCP.PerformLayout();
     this.tabComPort.ResumeLayout(false);
     this.tabComPort.PerformLayout();
     this.tableLayoutPanelMain.ResumeLayout(false);
     this.tableLayoutPanelScreens.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.kryptonPanel1    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnOk           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnConvertToRGB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klbColours       = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.ktxtHexValue     = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel5    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.panel1           = new System.Windows.Forms.Panel();
     this.kbtnExport       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnLoadFromFile = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ctxColourList    = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removeSelectedColourToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.ctxColourList.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnLoadFromFile);
     this.kryptonPanel1.Controls.Add(this.kbtnExport);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 622);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(816, 51);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.AutoSize = true;
     this.kbtnOk.Location = new System.Drawing.Point(618, 9);
     this.kbtnOk.Name     = "kbtnOk";
     this.kbtnOk.Size     = new System.Drawing.Size(90, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 6;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCancel.AutoSize     = true;
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(714, 9);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 30);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 7;
     this.kbtnCancel.Values.Text = "Ca&ncel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnConvertToRGB);
     this.kryptonPanel2.Controls.Add(this.klbColours);
     this.kryptonPanel2.Controls.Add(this.ktxtHexValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(816, 622);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kbtnConvertToRGB
     //
     this.kbtnConvertToRGB.AutoSize     = true;
     this.kbtnConvertToRGB.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnConvertToRGB.Enabled      = false;
     this.kbtnConvertToRGB.Location     = new System.Drawing.Point(308, 577);
     this.kbtnConvertToRGB.Name         = "kbtnConvertToRGB";
     this.kbtnConvertToRGB.Size         = new System.Drawing.Size(124, 30);
     this.kbtnConvertToRGB.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnConvertToRGB.TabIndex    = 32;
     this.kbtnConvertToRGB.Values.Text = "&Convert to RGB";
     this.kbtnConvertToRGB.Click      += new System.EventHandler(this.kbtnConvertToRGB_Click);
     //
     // klbColours
     //
     this.klbColours.ContextMenuStrip = this.ctxColourList;
     this.klbColours.Location         = new System.Drawing.Point(12, 12);
     this.klbColours.Name             = "klbColours";
     this.klbColours.Size             = new System.Drawing.Size(792, 549);
     this.klbColours.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbColours.TabIndex = 0;
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Location  = new System.Drawing.Point(148, 576);
     this.ktxtHexValue.MaxLength = 7;
     this.ktxtHexValue.Name      = "ktxtHexValue";
     this.ktxtHexValue.Size      = new System.Drawing.Size(154, 29);
     this.ktxtHexValue.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtHexValue.TabIndex     = 31;
     this.ktxtHexValue.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtHexValue.TextChanged += new System.EventHandler(this.ktxtHexValue_TextChanged);
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(12, 577);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(130, 26);
     this.kryptonLabel5.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.TabIndex    = 30;
     this.kryptonLabel5.Values.Text = "Hexadecimal: #";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 619);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(816, 3);
     this.panel1.TabIndex  = 2;
     //
     // kbtnExport
     //
     this.kbtnExport.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.kbtnExport.AutoSize = true;
     this.kbtnExport.Enabled  = false;
     this.kbtnExport.Location = new System.Drawing.Point(12, 9);
     this.kbtnExport.Name     = "kbtnExport";
     this.kbtnExport.Size     = new System.Drawing.Size(147, 30);
     this.kbtnExport.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnExport.TabIndex    = 8;
     this.kbtnExport.Values.Text = "E&xport to File";
     this.kbtnExport.Click      += new System.EventHandler(this.kbtnExport_Click);
     //
     // kbtnLoadFromFile
     //
     this.kbtnLoadFromFile.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnLoadFromFile.AutoSize = true;
     this.kbtnLoadFromFile.Location = new System.Drawing.Point(165, 9);
     this.kbtnLoadFromFile.Name     = "kbtnLoadFromFile";
     this.kbtnLoadFromFile.Size     = new System.Drawing.Size(137, 30);
     this.kbtnLoadFromFile.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnLoadFromFile.TabIndex    = 9;
     this.kbtnLoadFromFile.Values.Text = "&Load from File";
     this.kbtnLoadFromFile.Click      += new System.EventHandler(this.kbtnLoadFromFile_Click);
     //
     // ctxColourList
     //
     this.ctxColourList.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ctxColourList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.removeSelectedColourToolStripMenuItem
     });
     this.ctxColourList.Name = "ctxColourList";
     this.ctxColourList.Size = new System.Drawing.Size(204, 48);
     //
     // removeSelectedColourToolStripMenuItem
     //
     this.removeSelectedColourToolStripMenuItem.Name   = "removeSelectedColourToolStripMenuItem";
     this.removeSelectedColourToolStripMenuItem.Size   = new System.Drawing.Size(203, 22);
     this.removeSelectedColourToolStripMenuItem.Text   = "&Remove Selected Colour";
     this.removeSelectedColourToolStripMenuItem.Click += new System.EventHandler(this.removeSelectedColourToolStripMenuItem_Click);
     //
     // HexadecimalToRGBConverter
     //
     this.AcceptButton = this.kbtnCancel;
     this.CancelButton = this.kbtnCancel;
     this.ClientSize   = new System.Drawing.Size(816, 673);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "HexadecimalToRGBConverter";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Hexadecimal to RGB Converter";
     this.Load           += new System.EventHandler(this.HexadecimalToRGBConverter_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ctxColourList.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(f701_v_hop_dong_lao_dong));
     this.ImageList          = new System.Windows.Forms.ImageList(this.components);
     this.m_pnl_out_place_dm = new System.Windows.Forms.Panel();
     this.m_lbl_phim_tat     = new System.Windows.Forms.Label();
     this.m_cmd_insert       = new SIS.Controls.Button.SiSButton();
     this.m_cmd_update       = new SIS.Controls.Button.SiSButton();
     this.m_cmd_delete       = new SIS.Controls.Button.SiSButton();
     this.m_cmd_exit         = new SIS.Controls.Button.SiSButton();
     this.m_fg                      = new C1.Win.C1FlexGrid.C1FlexGrid();
     this.m_cmd_tim_kiem            = new SIS.Controls.Button.SiSButton();
     this.m_txt_tim_kiem            = new System.Windows.Forms.TextBox();
     this.label1                    = new System.Windows.Forms.Label();
     this.m_lbl_count_record        = new System.Windows.Forms.Label();
     this.label2                    = new System.Windows.Forms.Label();
     this.m_cbo_loai_hop_dong       = new System.Windows.Forms.ComboBox();
     this.m_cbo_trang_thai_hop_dong = new System.Windows.Forms.ComboBox();
     this.label3                    = new System.Windows.Forms.Label();
     this.m_dat_tu_ngay             = new System.Windows.Forms.DateTimePicker();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.groupBox2                 = new System.Windows.Forms.GroupBox();
     this.label6                    = new System.Windows.Forms.Label();
     this.m_dat_den_ngay            = new System.Windows.Forms.DateTimePicker();
     this.m_cbo_tim_kiem_theo       = new System.Windows.Forms.ComboBox();
     this.label5                    = new System.Windows.Forms.Label();
     this.label4                    = new System.Windows.Forms.Label();
     this.panel1                    = new System.Windows.Forms.Panel();
     this.m_pnl_out_place_dm.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ImageList
     //
     this.ImageList.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImageList.ImageStream")));
     this.ImageList.TransparentColor = System.Drawing.Color.Transparent;
     this.ImageList.Images.SetKeyName(0, "");
     this.ImageList.Images.SetKeyName(1, "");
     this.ImageList.Images.SetKeyName(2, "");
     this.ImageList.Images.SetKeyName(3, "");
     this.ImageList.Images.SetKeyName(4, "");
     this.ImageList.Images.SetKeyName(5, "");
     this.ImageList.Images.SetKeyName(6, "");
     this.ImageList.Images.SetKeyName(7, "");
     this.ImageList.Images.SetKeyName(8, "");
     this.ImageList.Images.SetKeyName(9, "");
     this.ImageList.Images.SetKeyName(10, "");
     this.ImageList.Images.SetKeyName(11, "");
     this.ImageList.Images.SetKeyName(12, "");
     this.ImageList.Images.SetKeyName(13, "");
     this.ImageList.Images.SetKeyName(14, "");
     this.ImageList.Images.SetKeyName(15, "");
     this.ImageList.Images.SetKeyName(16, "");
     this.ImageList.Images.SetKeyName(17, "");
     this.ImageList.Images.SetKeyName(18, "");
     this.ImageList.Images.SetKeyName(19, "");
     this.ImageList.Images.SetKeyName(20, "");
     this.ImageList.Images.SetKeyName(21, "");
     //
     // m_pnl_out_place_dm
     //
     this.m_pnl_out_place_dm.Controls.Add(this.m_lbl_phim_tat);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_insert);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_update);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_delete);
     this.m_pnl_out_place_dm.Controls.Add(this.m_cmd_exit);
     this.m_pnl_out_place_dm.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.m_pnl_out_place_dm.Location = new System.Drawing.Point(0, 586);
     this.m_pnl_out_place_dm.Name     = "m_pnl_out_place_dm";
     this.m_pnl_out_place_dm.Padding  = new System.Windows.Forms.Padding(4);
     this.m_pnl_out_place_dm.Size     = new System.Drawing.Size(1268, 36);
     this.m_pnl_out_place_dm.TabIndex = 19;
     //
     // m_lbl_phim_tat
     //
     this.m_lbl_phim_tat.AutoSize = true;
     this.m_lbl_phim_tat.Location = new System.Drawing.Point(221, 12);
     this.m_lbl_phim_tat.Name     = "m_lbl_phim_tat";
     this.m_lbl_phim_tat.Size     = new System.Drawing.Size(206, 13);
     this.m_lbl_phim_tat.TabIndex = 1001;
     this.m_lbl_phim_tat.Text     = "Phím tắt: F6_Mở rộng-Thu gọn danh sách";
     //
     // m_cmd_insert
     //
     this.m_cmd_insert.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_insert.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_insert.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_insert.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_insert.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_insert.ImageIndex = 2;
     this.m_cmd_insert.ImageList  = this.ImageList;
     this.m_cmd_insert.Location   = new System.Drawing.Point(743, 4);
     this.m_cmd_insert.Name       = "m_cmd_insert";
     this.m_cmd_insert.Size       = new System.Drawing.Size(128, 28);
     this.m_cmd_insert.TabIndex   = 12;
     this.m_cmd_insert.Text       = "&Lập hợp đồng";
     //
     // m_cmd_update
     //
     this.m_cmd_update.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_update.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_update.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_update.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_update.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_update.ImageIndex = 3;
     this.m_cmd_update.ImageList  = this.ImageList;
     this.m_cmd_update.Location   = new System.Drawing.Point(871, 4);
     this.m_cmd_update.Name       = "m_cmd_update";
     this.m_cmd_update.Size       = new System.Drawing.Size(155, 28);
     this.m_cmd_update.TabIndex   = 13;
     this.m_cmd_update.Text       = "&Cập nhật hợp đồng";
     //
     // m_cmd_delete
     //
     this.m_cmd_delete.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_delete.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_delete.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_delete.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_delete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_delete.ImageIndex = 4;
     this.m_cmd_delete.ImageList  = this.ImageList;
     this.m_cmd_delete.Location   = new System.Drawing.Point(1026, 4);
     this.m_cmd_delete.Name       = "m_cmd_delete";
     this.m_cmd_delete.Size       = new System.Drawing.Size(150, 28);
     this.m_cmd_delete.TabIndex   = 14;
     this.m_cmd_delete.Text       = "&Hủy hợp đồng";
     //
     // m_cmd_exit
     //
     this.m_cmd_exit.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_exit.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_exit.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_exit.Dock       = System.Windows.Forms.DockStyle.Right;
     this.m_cmd_exit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_exit.ImageIndex = 12;
     this.m_cmd_exit.ImageList  = this.ImageList;
     this.m_cmd_exit.Location   = new System.Drawing.Point(1176, 4);
     this.m_cmd_exit.Name       = "m_cmd_exit";
     this.m_cmd_exit.Size       = new System.Drawing.Size(88, 28);
     this.m_cmd_exit.TabIndex   = 11;
     this.m_cmd_exit.Text       = "Thoát (Esc)";
     //
     // m_fg
     //
     this.m_fg.AllowEditing  = false;
     this.m_fg.ColumnInfo    = resources.GetString("m_fg.ColumnInfo");
     this.m_fg.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_fg.Location      = new System.Drawing.Point(0, 108);
     this.m_fg.Name          = "m_fg";
     this.m_fg.SelectionMode = C1.Win.C1FlexGrid.SelectionModeEnum.Row;
     this.m_fg.Size          = new System.Drawing.Size(1268, 478);
     this.m_fg.Styles        = new C1.Win.C1FlexGrid.CellStyleCollection(resources.GetString("m_fg.Styles"));
     this.m_fg.TabIndex      = 20;
     //
     // m_cmd_tim_kiem
     //
     this.m_cmd_tim_kiem.AdjustImageLocation = new System.Drawing.Point(0, 0);
     this.m_cmd_tim_kiem.BtnShape            = SIS.Controls.Button.emunType.BtnShape.Rectangle;
     this.m_cmd_tim_kiem.BtnStyle            = SIS.Controls.Button.emunType.XPStyle.Default;
     this.m_cmd_tim_kiem.ImageAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.m_cmd_tim_kiem.ImageIndex          = 5;
     this.m_cmd_tim_kiem.ImageList           = this.ImageList;
     this.m_cmd_tim_kiem.Location            = new System.Drawing.Point(412, 26);
     this.m_cmd_tim_kiem.Name     = "m_cmd_tim_kiem";
     this.m_cmd_tim_kiem.Size     = new System.Drawing.Size(101, 28);
     this.m_cmd_tim_kiem.TabIndex = 29;
     this.m_cmd_tim_kiem.Text     = "&Tìm kiếm";
     this.m_cmd_tim_kiem.Click   += new System.EventHandler(this.m_cmd_tim_kiem_Click);
     //
     // m_txt_tim_kiem
     //
     this.m_txt_tim_kiem.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.m_txt_tim_kiem.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
     this.m_txt_tim_kiem.ForeColor          = System.Drawing.Color.Gray;
     this.m_txt_tim_kiem.Location           = new System.Drawing.Point(154, 31);
     this.m_txt_tim_kiem.Name        = "m_txt_tim_kiem";
     this.m_txt_tim_kiem.Size        = new System.Drawing.Size(252, 20);
     this.m_txt_tim_kiem.TabIndex    = 28;
     this.m_txt_tim_kiem.Text        = "Nhập Mã nhân viên, Họ đệm, Tên, Mã hợp đồng";
     this.m_txt_tim_kiem.MouseClick += new System.Windows.Forms.MouseEventHandler(this.m_txt_tim_kiem_MouseClick);
     this.m_txt_tim_kiem.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.m_txt_tim_kiem_KeyDown_1);
     this.m_txt_tim_kiem.Leave      += new System.EventHandler(this.m_txt_tim_kiem_Leave);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(60, 34);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 13);
     this.label1.TabIndex = 27;
     this.label1.Text     = "Từ khoá tìm kiếm";
     //
     // m_lbl_count_record
     //
     this.m_lbl_count_record.AutoSize = true;
     this.m_lbl_count_record.Location = new System.Drawing.Point(14, 86);
     this.m_lbl_count_record.Name     = "m_lbl_count_record";
     this.m_lbl_count_record.Size     = new System.Drawing.Size(0, 13);
     this.m_lbl_count_record.TabIndex = 34;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(45, 59);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(76, 13);
     this.label2.TabIndex = 35;
     this.label2.Text     = "Loại hợp đồng";
     //
     // m_cbo_loai_hop_dong
     //
     this.m_cbo_loai_hop_dong.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_loai_hop_dong.FormattingEnabled = true;
     this.m_cbo_loai_hop_dong.Location          = new System.Drawing.Point(127, 56);
     this.m_cbo_loai_hop_dong.Name                  = "m_cbo_loai_hop_dong";
     this.m_cbo_loai_hop_dong.Size                  = new System.Drawing.Size(159, 21);
     this.m_cbo_loai_hop_dong.TabIndex              = 36;
     this.m_cbo_loai_hop_dong.SelectedIndexChanged += new System.EventHandler(this.m_cbo_loai_hop_dong_SelectedIndexChanged);
     //
     // m_cbo_trang_thai_hop_dong
     //
     this.m_cbo_trang_thai_hop_dong.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_trang_thai_hop_dong.FormattingEnabled = true;
     this.m_cbo_trang_thai_hop_dong.Location          = new System.Drawing.Point(127, 19);
     this.m_cbo_trang_thai_hop_dong.Name                  = "m_cbo_trang_thai_hop_dong";
     this.m_cbo_trang_thai_hop_dong.Size                  = new System.Drawing.Size(159, 21);
     this.m_cbo_trang_thai_hop_dong.TabIndex              = 38;
     this.m_cbo_trang_thai_hop_dong.SelectedIndexChanged += new System.EventHandler(this.m_cbo_trang_thai_hop_dong_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(17, 22);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(104, 13);
     this.label3.TabIndex = 37;
     this.label3.Text     = "Trạng thái hợp đồng";
     //
     // m_dat_tu_ngay
     //
     this.m_dat_tu_ngay.CustomFormat  = "dd/MM/yyyy";
     this.m_dat_tu_ngay.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.m_dat_tu_ngay.Location      = new System.Drawing.Point(100, 56);
     this.m_dat_tu_ngay.Name          = "m_dat_tu_ngay";
     this.m_dat_tu_ngay.Size          = new System.Drawing.Size(120, 20);
     this.m_dat_tu_ngay.TabIndex      = 39;
     this.m_dat_tu_ngay.ValueChanged += new System.EventHandler(this.m_dat_ngay_thang_ValueChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.m_cbo_trang_thai_hop_dong);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.m_cbo_loai_hop_dong);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(519, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(314, 88);
     this.groupBox1.TabIndex = 41;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Tìm kiếm theo";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.m_dat_den_ngay);
     this.groupBox2.Controls.Add(this.m_cbo_tim_kiem_theo);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Controls.Add(this.m_dat_tu_ngay);
     this.groupBox2.Location = new System.Drawing.Point(839, 12);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(452, 88);
     this.groupBox2.TabIndex = 42;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Tìm kiếm theo ngày tháng";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(244, 59);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(53, 13);
     this.label6.TabIndex = 44;
     this.label6.Text     = "Đến ngày";
     //
     // m_dat_den_ngay
     //
     this.m_dat_den_ngay.CustomFormat  = "dd/MM/yyyy";
     this.m_dat_den_ngay.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.m_dat_den_ngay.Location      = new System.Drawing.Point(309, 57);
     this.m_dat_den_ngay.Name          = "m_dat_den_ngay";
     this.m_dat_den_ngay.Size          = new System.Drawing.Size(120, 20);
     this.m_dat_den_ngay.TabIndex      = 43;
     this.m_dat_den_ngay.ValueChanged += new System.EventHandler(this.m_dat_den_ngay_ValueChanged);
     //
     // m_cbo_tim_kiem_theo
     //
     this.m_cbo_tim_kiem_theo.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_cbo_tim_kiem_theo.FormattingEnabled = true;
     this.m_cbo_tim_kiem_theo.Items.AddRange(new object[] {
         "----------- Không tìm kiếm -----------",
         "Ngày ký hợp đồng",
         "Ngày hợp đồng có hiệu lực",
         "Ngày hợp đồng hết hiệu lực"
     });
     this.m_cbo_tim_kiem_theo.Location              = new System.Drawing.Point(100, 19);
     this.m_cbo_tim_kiem_theo.Name                  = "m_cbo_tim_kiem_theo";
     this.m_cbo_tim_kiem_theo.Size                  = new System.Drawing.Size(329, 21);
     this.m_cbo_tim_kiem_theo.TabIndex              = 42;
     this.m_cbo_tim_kiem_theo.SelectedIndexChanged += new System.EventHandler(this.m_cbo_tim_kiem_theo_SelectedIndexChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(21, 22);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(73, 13);
     this.label5.TabIndex = 41;
     this.label5.Text     = "Tìm kiếm theo";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(48, 59);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(46, 13);
     this.label4.TabIndex = 40;
     this.label4.Text     = "Từ ngày";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.m_txt_tim_kiem);
     this.panel1.Controls.Add(this.m_lbl_count_record);
     this.panel1.Controls.Add(this.m_cmd_tim_kiem);
     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(1268, 108);
     this.panel1.TabIndex = 43;
     //
     // f701_v_hop_dong_lao_dong
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1268, 622);
     this.Controls.Add(this.m_fg);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.m_pnl_out_place_dm);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "f701_v_hop_dong_lao_dong";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "f701 Danh mục hợp đồng lao động";
     this.Load           += new System.EventHandler(this.f701_v_hop_dong_lao_dong_Load);
     this.m_pnl_out_place_dm.ResumeLayout(false);
     this.m_pnl_out_place_dm.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_fg)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 42
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Report));
     this.panel1            = new System.Windows.Forms.Panel();
     this.LogSaveButton     = new System.Windows.Forms.Button();
     this.LogOkButton       = new System.Windows.Forms.Button();
     this.LogRichTextBox    = new System.Windows.Forms.RichTextBox();
     this.LogSaveFileDialog = new System.Windows.Forms.SaveFileDialog();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.LogSaveButton);
     this.panel1.Controls.Add(this.LogOkButton);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 233);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 40);
     this.panel1.TabIndex = 0;
     //
     // LogSaveButton
     //
     this.LogSaveButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.LogSaveButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.LogSaveButton.Location  = new System.Drawing.Point(139, 8);
     this.LogSaveButton.Name      = "LogSaveButton";
     this.LogSaveButton.TabIndex  = 1;
     this.LogSaveButton.Text      = "Save Report";
     this.LogSaveButton.Click    += new System.EventHandler(this.LogSaveButton_Click);
     //
     // LogOkButton
     //
     this.LogOkButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.LogOkButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.LogOkButton.Location  = new System.Drawing.Point(216, 8);
     this.LogOkButton.Name      = "LogOkButton";
     this.LogOkButton.TabIndex  = 0;
     this.LogOkButton.Text      = "Close";
     this.LogOkButton.Click    += new System.EventHandler(this.LogOkButton_Click);
     //
     // LogRichTextBox
     //
     this.LogRichTextBox.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.LogRichTextBox.Location = new System.Drawing.Point(0, 0);
     this.LogRichTextBox.Name     = "LogRichTextBox";
     this.LogRichTextBox.Size     = new System.Drawing.Size(292, 233);
     this.LogRichTextBox.TabIndex = 1;
     this.LogRichTextBox.Text     = "";
     //
     // LogSaveFileDialog
     //
     this.LogSaveFileDialog.DefaultExt = "txt";
     this.LogSaveFileDialog.Filter     = "Text Files | *.txt";
     this.LogSaveFileDialog.Title      = "Save to text file";
     //
     // Report
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 273);
     this.Controls.Add(this.LogRichTextBox);
     this.Controls.Add(this.panel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name          = "Report";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "LogReportForm";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileDisassemblerWindow));
     this.lnkHomepage           = new System.Windows.Forms.LinkLabel();
     this.label7                = new System.Windows.Forms.Label();
     this.groupBox4             = new System.Windows.Forms.GroupBox();
     this.panel1                = new System.Windows.Forms.Panel();
     this.pictureBox1           = new System.Windows.Forms.PictureBox();
     this.label5                = new System.Windows.Forms.Label();
     this.label1                = new System.Windows.Forms.Label();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.label2                = new System.Windows.Forms.Label();
     this.cbProjectType         = new System.Windows.Forms.ComboBox();
     this.outputDirectoryText   = new System.Windows.Forms.TextBox();
     this.progressBar           = new System.Windows.Forms.ProgressBar();
     this.outputDirectoryLabel  = new System.Windows.Forms.Label();
     this.generateButton        = new System.Windows.Forms.Button();
     this.logTextBox            = new System.Windows.Forms.TextBox();
     this.checkBoxPublicOnly    = new System.Windows.Forms.CheckBox();
     this.checkBoxDocumentation = new System.Windows.Forms.CheckBox();
     this.checkBoxMembersBody   = new System.Windows.Forms.CheckBox();
     this.groupBox4.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // lnkHomepage
     //
     this.lnkHomepage.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lnkHomepage.Location     = new System.Drawing.Point(248, 568);
     this.lnkHomepage.Name         = "lnkHomepage";
     this.lnkHomepage.Size         = new System.Drawing.Size(184, 23);
     this.lnkHomepage.TabIndex     = 24;
     this.lnkHomepage.TabStop      = true;
     this.lnkHomepage.Text         = "http://www.denisbauer.com/";
     this.lnkHomepage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkHomepage_LinkClicked);
     //
     // label7
     //
     this.label7.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.label7.Location  = new System.Drawing.Point(16, 568);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(232, 23);
     this.label7.TabIndex  = 23;
     this.label7.Text      = "Copyright 2004-2011 by Denis Bauer, ";
     this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // groupBox4
     //
     this.groupBox4.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.groupBox4.Controls.Add(this.panel1);
     this.groupBox4.Controls.Add(this.groupBox1);
     this.groupBox4.Location = new System.Drawing.Point(8, 8);
     this.groupBox4.Name     = "groupBox4";
     this.groupBox4.Size     = new System.Drawing.Size(448, 552);
     this.groupBox4.TabIndex = 22;
     this.groupBox4.TabStop  = false;
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor = System.Drawing.SystemColors.Window;
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(4, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(440, 72);
     this.panel1.TabIndex = 16;
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(376, 8);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(56, 56);
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop  = false;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(16, 40);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(376, 23);
     this.label5.TabIndex = 1;
     this.label5.Text     = "Select an assembly to dump it to the disk";
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(16, 16);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(264, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Reflector FileDisassembler";
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.Controls.Add(this.checkBoxMembersBody);
     this.groupBox1.Controls.Add(this.checkBoxDocumentation);
     this.groupBox1.Controls.Add(this.checkBoxPublicOnly);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.cbProjectType);
     this.groupBox1.Controls.Add(this.outputDirectoryText);
     this.groupBox1.Controls.Add(this.progressBar);
     this.groupBox1.Controls.Add(this.outputDirectoryLabel);
     this.groupBox1.Controls.Add(this.generateButton);
     this.groupBox1.Controls.Add(this.logTextBox);
     this.groupBox1.Location = new System.Drawing.Point(8, 88);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(432, 456);
     this.groupBox1.TabIndex = 25;
     this.groupBox1.TabStop  = false;
     //
     // label2
     //
     this.label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.Location = new System.Drawing.Point(216, 16);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(72, 16);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Project Type:";
     //
     // cbProjectType
     //
     this.cbProjectType.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbProjectType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbProjectType.Items.AddRange(new object[] {
         "None",
         "Class Library",
         "Windows Application",
         "Console Application"
     });
     this.cbProjectType.Location = new System.Drawing.Point(288, 12);
     this.cbProjectType.Name     = "cbProjectType";
     this.cbProjectType.Size     = new System.Drawing.Size(132, 21);
     this.cbProjectType.TabIndex = 1;
     //
     // outputDirectoryText
     //
     this.outputDirectoryText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.outputDirectoryText.Location     = new System.Drawing.Point(8, 40);
     this.outputDirectoryText.Name         = "outputDirectoryText";
     this.outputDirectoryText.Size         = new System.Drawing.Size(328, 20);
     this.outputDirectoryText.TabIndex     = 0;
     this.outputDirectoryText.TextChanged += new System.EventHandler(this.OutputDirectoryText_TextChanged);
     //
     // progressBar
     //
     this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBar.Location = new System.Drawing.Point(8, 424);
     this.progressBar.Name     = "progressBar";
     this.progressBar.Size     = new System.Drawing.Size(416, 23);
     this.progressBar.TabIndex = 6;
     this.progressBar.TabStop  = false;
     this.progressBar.Visible  = false;
     //
     // outputDirectoryLabel
     //
     this.outputDirectoryLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.outputDirectoryLabel.Location  = new System.Drawing.Point(8, 16);
     this.outputDirectoryLabel.Name      = "outputDirectoryLabel";
     this.outputDirectoryLabel.Size      = new System.Drawing.Size(100, 16);
     this.outputDirectoryLabel.TabIndex  = 0;
     this.outputDirectoryLabel.Text      = "&Output Directory:";
     //
     // generateButton
     //
     this.generateButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.generateButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.generateButton.Location  = new System.Drawing.Point(344, 40);
     this.generateButton.Name      = "generateButton";
     this.generateButton.Size      = new System.Drawing.Size(75, 21);
     this.generateButton.TabIndex  = 2;
     this.generateButton.Text      = "&Generate";
     this.generateButton.Click    += new System.EventHandler(this.GenerateButton_Click);
     //
     // logTextBox
     //
     this.logTextBox.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.logTextBox.Location   = new System.Drawing.Point(8, 90);
     this.logTextBox.MaxLength  = 16777216;
     this.logTextBox.Multiline  = true;
     this.logTextBox.Name       = "logTextBox";
     this.logTextBox.ReadOnly   = true;
     this.logTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.logTextBox.Size       = new System.Drawing.Size(416, 326);
     this.logTextBox.TabIndex   = 5;
     this.logTextBox.Visible    = false;
     this.logTextBox.WordWrap   = false;
     //
     // checkBoxPublicOnly
     //
     this.checkBoxPublicOnly.AutoSize = true;
     this.checkBoxPublicOnly.Location = new System.Drawing.Point(8, 67);
     this.checkBoxPublicOnly.Name     = "checkBoxPublicOnly";
     this.checkBoxPublicOnly.Size     = new System.Drawing.Size(78, 17);
     this.checkBoxPublicOnly.TabIndex = 7;
     this.checkBoxPublicOnly.Text     = "Only public";
     this.checkBoxPublicOnly.UseVisualStyleBackColor = true;
     //
     // checkBoxDocumentation
     //
     this.checkBoxDocumentation.AutoSize   = true;
     this.checkBoxDocumentation.Checked    = true;
     this.checkBoxDocumentation.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxDocumentation.Location   = new System.Drawing.Point(93, 67);
     this.checkBoxDocumentation.Name       = "checkBoxDocumentation";
     this.checkBoxDocumentation.Size       = new System.Drawing.Size(98, 17);
     this.checkBoxDocumentation.TabIndex   = 8;
     this.checkBoxDocumentation.Text       = "Documentation";
     this.checkBoxDocumentation.UseVisualStyleBackColor = true;
     //
     // checkBoxMembersBody
     //
     this.checkBoxMembersBody.AutoSize   = true;
     this.checkBoxMembersBody.Checked    = true;
     this.checkBoxMembersBody.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxMembersBody.Location   = new System.Drawing.Point(198, 67);
     this.checkBoxMembersBody.Name       = "checkBoxMembersBody";
     this.checkBoxMembersBody.Size       = new System.Drawing.Size(95, 17);
     this.checkBoxMembersBody.TabIndex   = 9;
     this.checkBoxMembersBody.Text       = "Members body";
     this.checkBoxMembersBody.UseVisualStyleBackColor = true;
     //
     // FileDisassemblerWindow
     //
     this.Controls.Add(this.lnkHomepage);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.groupBox4);
     this.Name = "FileDisassemblerWindow";
     this.Size = new System.Drawing.Size(464, 592);
     this.groupBox4.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.CalloutAnnotation calloutAnnotation1 = new System.Windows.Forms.DataVisualization.Charting.CalloutAnnotation();
     System.Windows.Forms.DataVisualization.Charting.ChartArea         chartArea1         = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend            legend1            = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series            series1            = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint1         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(1, 700);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint2         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(2, 400);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint3         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(3, 200);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint4         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(4, 450);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint5         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(5, 300);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint6         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(6, 756);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint7         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(7, 398);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint8         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(8, 467);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint9         = new System.Windows.Forms.DataVisualization.Charting.DataPoint(9, 612);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint10        = new System.Windows.Forms.DataVisualization.Charting.DataPoint(10, 356);
     System.Windows.Forms.DataVisualization.Charting.DataPoint         dataPoint11        = new System.Windows.Forms.DataVisualization.Charting.DataPoint(11, 678);
     System.Windows.Forms.DataVisualization.Charting.Title             title1             = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AnnotationPositionChanging));
     this.label9          = new System.Windows.Forms.Label();
     this.panel1          = new System.Windows.Forms.Panel();
     this.AnchorY         = new System.Windows.Forms.Label();
     this.AnchorX         = new System.Windows.Forms.Label();
     this.label1          = new System.Windows.Forms.Label();
     this.AnchorXLocation = new System.Windows.Forms.Label();
     this.ResetPosition   = new System.Windows.Forms.Button();
     this.SnapToDataPoint = new System.Windows.Forms.CheckBox();
     this.Chart1          = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.label2          = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).BeginInit();
     this.SuspendLayout();
     //
     // label9
     //
     this.label9.Font      = new System.Drawing.Font("Verdana", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location  = new System.Drawing.Point(16, 8);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(702, 34);
     this.label9.TabIndex  = 1;
     this.label9.Text      = "This sample demonstrates the AnnotationPositionChanging event. ";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.AnchorY);
     this.panel1.Controls.Add(this.AnchorX);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.AnchorXLocation);
     this.panel1.Controls.Add(this.ResetPosition);
     this.panel1.Controls.Add(this.SnapToDataPoint);
     this.panel1.Location = new System.Drawing.Point(432, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 288);
     this.panel1.TabIndex = 19;
     //
     // AnchorY
     //
     this.AnchorY.ForeColor = System.Drawing.Color.Red;
     this.AnchorY.Location  = new System.Drawing.Point(168, 80);
     this.AnchorY.Name      = "AnchorY";
     this.AnchorY.Size      = new System.Drawing.Size(72, 23);
     this.AnchorY.TabIndex  = 8;
     this.AnchorY.Text      = "label4";
     this.AnchorY.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // AnchorX
     //
     this.AnchorX.ForeColor = System.Drawing.Color.Red;
     this.AnchorX.Location  = new System.Drawing.Point(168, 48);
     this.AnchorX.Name      = "AnchorX";
     this.AnchorX.Size      = new System.Drawing.Size(72, 23);
     this.AnchorX.TabIndex  = 7;
     this.AnchorX.Text      = "label4";
     this.AnchorX.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(24, 80);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(136, 23);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "Anchor Position Y:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // AnchorXLocation
     //
     this.AnchorXLocation.Location  = new System.Drawing.Point(16, 48);
     this.AnchorXLocation.Name      = "AnchorXLocation";
     this.AnchorXLocation.Size      = new System.Drawing.Size(144, 23);
     this.AnchorXLocation.TabIndex  = 3;
     this.AnchorXLocation.Text      = "Anchor Position X:";
     this.AnchorXLocation.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // ResetPosition
     //
     this.ResetPosition.BackColor = System.Drawing.SystemColors.Control;
     this.ResetPosition.Location  = new System.Drawing.Point(64, 120);
     this.ResetPosition.Name      = "ResetPosition";
     this.ResetPosition.Size      = new System.Drawing.Size(136, 23);
     this.ResetPosition.TabIndex  = 2;
     this.ResetPosition.Text      = "&Reset Position";
     this.ResetPosition.UseVisualStyleBackColor = false;
     this.ResetPosition.Click += new System.EventHandler(this.ResetPosition_Click);
     //
     // SnapToDataPoint
     //
     this.SnapToDataPoint.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.SnapToDataPoint.Checked    = true;
     this.SnapToDataPoint.CheckState = System.Windows.Forms.CheckState.Checked;
     this.SnapToDataPoint.Location   = new System.Drawing.Point(11, 16);
     this.SnapToDataPoint.Name       = "SnapToDataPoint";
     this.SnapToDataPoint.Size       = new System.Drawing.Size(168, 24);
     this.SnapToDataPoint.TabIndex   = 0;
     this.SnapToDataPoint.Text       = "&Snap to DataPoint";
     this.SnapToDataPoint.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Chart1
     //
     calloutAnnotation1.AllowAnchorMoving   = true;
     calloutAnnotation1.AllowSelecting      = true;
     calloutAnnotation1.AnchorDataPointName = "Default\\r2";
     calloutAnnotation1.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(240)))));
     calloutAnnotation1.Font    = new System.Drawing.Font("Trebuchet MS", 9F);
     calloutAnnotation1.Name    = "Callout1";
     calloutAnnotation1.Text    = "Select this Annotation Object\\nand move the Anchor point";
     calloutAnnotation1.ToolTip = "Don\'t forget to move the anchor point";
     this.Chart1.Annotations.Add(calloutAnnotation1);
     this.Chart1.BackColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(223)))), ((int)(((byte)(193)))));
     this.Chart1.BackGradientStyle           = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BorderlineColor             = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(64)))), ((int)(((byte)(1)))));
     this.Chart1.BorderlineDashStyle         = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderlineWidth             = 2;
     this.Chart1.BorderSkin.SkinStyle        = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Inclination      = 15;
     chartArea1.Area3DStyle.IsClustered      = true;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.Perspective      = 10;
     chartArea1.Area3DStyle.Rotation         = 10;
     chartArea1.Area3DStyle.WallWidth        = 0;
     chartArea1.AxisX.IsLabelAutoFit         = false;
     chartArea1.AxisX.LabelAutoFitStyle      = ((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles)(((System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.IncreaseFont | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.DecreaseFont)
                                                                                                                      | System.Windows.Forms.DataVisualization.Charting.LabelAutoFitStyles.WordWrap)));
     chartArea1.AxisX.LabelStyle.Font = new System.Drawing.Font("Trebuchet MS", 10F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisX.LabelStyle.IsEndLabelVisible = false;
     chartArea1.AxisX.LineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorGrid.Enabled   = false;
     chartArea1.AxisX.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX2.Enabled            = System.Windows.Forms.DataVisualization.Charting.AxisEnabled.False;
     chartArea1.AxisY.LabelStyle.Font     = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor           = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorGrid.Enabled   = false;
     chartArea1.AxisY.MajorGrid.LineColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY2.MajorGrid.Enabled  = false;
     chartArea1.BackColor                = System.Drawing.Color.OldLace;
     chartArea1.BackGradientStyle        = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea1.BackSecondaryColor       = System.Drawing.Color.White;
     chartArea1.BorderColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.BorderDashStyle          = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     chartArea1.InnerPlotPosition.Auto   = false;
     chartArea1.InnerPlotPosition.Height = 67F;
     chartArea1.InnerPlotPosition.Width  = 80F;
     chartArea1.InnerPlotPosition.X      = 12F;
     chartArea1.InnerPlotPosition.Y      = 22F;
     chartArea1.Name            = "Default";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 95F;
     chartArea1.Position.Width  = 99F;
     chartArea1.Position.X      = 1F;
     chartArea1.Position.Y      = 1F;
     chartArea1.ShadowColor     = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.BackColor     = System.Drawing.Color.Transparent;
     legend1.Enabled       = false;
     legend1.Font          = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     legend1.IsTextAutoFit = false;
     legend1.Name          = "Default";
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location = new System.Drawing.Point(16, 48);
     this.Chart1.Name     = "Chart1";
     series1.BorderColor  = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     series1.ChartArea    = "Default";
     series1.Legend       = "Default";
     series1.Name         = "Default";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.Points.Add(dataPoint5);
     series1.Points.Add(dataPoint6);
     series1.Points.Add(dataPoint7);
     series1.Points.Add(dataPoint8);
     series1.Points.Add(dataPoint9);
     series1.Points.Add(dataPoint10);
     series1.Points.Add(dataPoint11);
     this.Chart1.Series.Add(series1);
     this.Chart1.Size     = new System.Drawing.Size(412, 296);
     this.Chart1.TabIndex = 0;
     title1.Font          = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
     title1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     title1.Name          = "Title1";
     title1.ShadowColor   = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     title1.ShadowOffset  = 3;
     title1.Text          = "Position Changed Event";
     this.Chart1.Titles.Add(title1);
     this.Chart1.AnnotationPositionChanged  += new System.EventHandler(this.Chart1_AnnotationPositionChanged);
     this.Chart1.AnnotationSelectionChanged += new System.EventHandler(this.Chart1_AnnotationSelectionChanged);
     this.Chart1.AnnotationPositionChanging += new System.EventHandler <System.Windows.Forms.DataVisualization.Charting.AnnotationPositionChangingEventArgs>(this.Chart1_AnnotationPositionChanging);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Verdana", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(16, 357);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(702, 57);
     this.label2.TabIndex  = 20;
     this.label2.Text      = resources.GetString("label2.Text");
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // AnnotationPositionChanging
     //
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.label2);
     this.Controls.Add(this.Chart1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label9);
     this.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "AnnotationPositionChanging";
     this.Size = new System.Drawing.Size(728, 480);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 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();
     this.statusBar1       = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1  = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2  = new System.Windows.Forms.StatusBarPanel();
     this.progressBar1     = new System.Windows.Forms.ProgressBar();
     this.marqueeProvider1 = new EnoughPI.Components.MarqueeProvider(this.components);
     this.panel2           = new System.Windows.Forms.Panel();
     this.btnCalculate     = new System.Windows.Forms.Button();
     this.numericUpDown1   = new System.Windows.Forms.NumericUpDown();
     this.label1           = new System.Windows.Forms.Label();
     this.mainMenu1        = new System.Windows.Forms.MainMenu();
     this.mnuFile          = new System.Windows.Forms.MenuItem();
     this.mnuFileExit      = new System.Windows.Forms.MenuItem();
     this.panel1           = new System.Windows.Forms.Panel();
     this.textBox1         = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.marqueeProvider1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 388);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
         this.statusBarPanel1,
         this.statusBarPanel2
     });
     this.statusBar1.ShowPanels = true;
     this.statusBar1.Size       = new System.Drawing.Size(292, 22);
     this.statusBar1.TabIndex   = 0;
     this.statusBar1.Text       = "statusBar1";
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.Width = 150;
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel2.Width    = 126;
     //
     // progressBar1
     //
     this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.marqueeProvider1.SetAnimationWait(this.progressBar1, 50);
     this.marqueeProvider1.SetIsMarquee(this.progressBar1, true);
     this.progressBar1.Location = new System.Drawing.Point(157, 393);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(0, 14);
     this.progressBar1.TabIndex = 1;
     this.progressBar1.Visible  = false;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.panel2.Controls.Add(this.btnCalculate);
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Controls.Add(this.label1);
     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(292, 56);
     this.panel2.TabIndex = 2;
     //
     // btnCalculate
     //
     this.btnCalculate.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCalculate.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCalculate.Location  = new System.Drawing.Point(192, 11);
     this.btnCalculate.Name      = "btnCalculate";
     this.btnCalculate.Size      = new System.Drawing.Size(88, 32);
     this.btnCalculate.TabIndex  = 2;
     this.btnCalculate.Text      = "Calculate";
     this.btnCalculate.Click    += new System.EventHandler(this.btnCalculate_Click);
     //
     // numericUpDown1
     //
     this.numericUpDown1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.numericUpDown1.Location = new System.Drawing.Point(104, 14);
     this.numericUpDown1.Maximum  = new System.Decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.Size     = new System.Drawing.Size(72, 26);
     this.numericUpDown1.TabIndex = 1;
     this.numericUpDown1.Value    = new System.Decimal(new int[] {
         100,
         0,
         0,
         0
     });
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 16);
     this.label1.Name     = "label1";
     this.label1.TabIndex = 0;
     this.label1.Text     = "Digits of PI";
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFileExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuFileExit
     //
     this.mnuFileExit.Index  = 0;
     this.mnuFileExit.Text   = "E&xit";
     this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 388);
     this.panel1.TabIndex = 3;
     //
     // textBox1
     //
     this.textBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.textBox1.Location   = new System.Drawing.Point(0, 56);
     this.textBox1.Multiline  = true;
     this.textBox1.Name       = "textBox1";
     this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.textBox1.Size       = new System.Drawing.Size(292, 332);
     this.textBox1.TabIndex   = 3;
     this.textBox1.Text       = "3";
     //
     // MainForm
     //
     this.AcceptButton      = this.btnCalculate;
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 19);
     this.ClientSize        = new System.Drawing.Size(292, 410);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.statusBar1);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.Menu = this.mainMenu1;
     this.Name = "MainForm";
     this.Text = "Never Enough PI";
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.marqueeProvider1)).EndInit();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1      = new System.Windows.Forms.Panel();
     this.BtnStart    = new System.Windows.Forms.Button();
     this.button1     = new System.Windows.Forms.Button();
     this.panel2      = new System.Windows.Forms.Panel();
     this.txtIP       = new System.Windows.Forms.TextBox();
     this.lblState    = new System.Windows.Forms.Label();
     this.lblIP       = new System.Windows.Forms.Label();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.button2     = new System.Windows.Forms.Button();
     this.textBox2    = new System.Windows.Forms.TextBox();
     this.textBox1    = new System.Windows.Forms.TextBox();
     this.panel3      = new System.Windows.Forms.Panel();
     this.lstMsg      = new System.Windows.Forms.ListBox();
     this.TestFile    = new System.Windows.Forms.Label();
     this.txtTestFile = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.BtnStart);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 350);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(552, 48);
     this.panel1.TabIndex = 10;
     //
     // BtnStart
     //
     this.BtnStart.Location = new System.Drawing.Point(92, 8);
     this.BtnStart.Name     = "BtnStart";
     this.BtnStart.Size     = new System.Drawing.Size(112, 32);
     this.BtnStart.TabIndex = 9;
     this.BtnStart.Text     = "Start";
     this.BtnStart.Click   += new System.EventHandler(this.BtnStart_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(300, 8);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(120, 32);
     this.button1.TabIndex = 8;
     this.button1.Text     = "Exit";
     this.button1.Click   += new System.EventHandler(this.button1_Click);
     //
     // panel2
     //
     this.panel2.Controls.Add(this.txtTestFile);
     this.panel2.Controls.Add(this.TestFile);
     this.panel2.Controls.Add(this.txtIP);
     this.panel2.Controls.Add(this.lblState);
     this.panel2.Controls.Add(this.lblIP);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.button2);
     this.panel2.Controls.Add(this.textBox2);
     this.panel2.Controls.Add(this.textBox1);
     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(552, 184);
     this.panel2.TabIndex = 11;
     //
     // txtIP
     //
     this.txtIP.Location = new System.Drawing.Point(8, 80);
     this.txtIP.Name     = "txtIP";
     this.txtIP.Size     = new System.Drawing.Size(176, 20);
     this.txtIP.TabIndex = 17;
     this.txtIP.Text     = "";
     //
     // lblState
     //
     this.lblState.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblState.Location  = new System.Drawing.Point(16, 112);
     this.lblState.Name      = "lblState";
     this.lblState.Size      = new System.Drawing.Size(496, 32);
     this.lblState.TabIndex  = 16;
     this.lblState.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblIP
     //
     this.lblIP.Location  = new System.Drawing.Point(200, 80);
     this.lblIP.Name      = "lblIP";
     this.lblIP.Size      = new System.Drawing.Size(312, 24);
     this.lblIP.TabIndex  = 15;
     this.lblIP.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(24, 24);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(56, 16);
     this.label2.TabIndex = 14;
     this.label2.Text     = "TargetFile";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(16, 4);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 13;
     this.label1.Text     = "StartUpFile";
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(88, 48);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(144, 24);
     this.button2.TabIndex = 12;
     this.button2.Text     = "OK";
     this.button2.Click   += new System.EventHandler(this.button2_Click);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(80, 24);
     this.textBox2.Name     = "textBox2";
     this.textBox2.Size     = new System.Drawing.Size(424, 20);
     this.textBox2.TabIndex = 11;
     this.textBox2.Text     = "";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(80, 4);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(424, 20);
     this.textBox1.TabIndex = 10;
     this.textBox1.Text     = "";
     //
     // panel3
     //
     this.panel3.Controls.Add(this.lstMsg);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 184);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(552, 166);
     this.panel3.TabIndex = 12;
     //
     // lstMsg
     //
     this.lstMsg.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.lstMsg.Location = new System.Drawing.Point(0, 0);
     this.lstMsg.Name     = "lstMsg";
     this.lstMsg.Size     = new System.Drawing.Size(552, 160);
     this.lstMsg.TabIndex = 2;
     //
     // TestFile
     //
     this.TestFile.Location = new System.Drawing.Point(16, 152);
     this.TestFile.Name     = "TestFile";
     this.TestFile.Size     = new System.Drawing.Size(72, 24);
     this.TestFile.TabIndex = 18;
     this.TestFile.Text     = "TestFile";
     //
     // txtTestFile
     //
     this.txtTestFile.Location = new System.Drawing.Point(88, 152);
     this.txtTestFile.Name     = "txtTestFile";
     this.txtTestFile.Size     = new System.Drawing.Size(448, 20);
     this.txtTestFile.TabIndex = 19;
     this.txtTestFile.Text     = "";
     //
     // ReportService
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(552, 398);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "ReportService";
     this.Text            = "ReportService";
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components    = new System.ComponentModel.Container();
            this.groupBox1     = new System.Windows.Forms.GroupBox();
            this.CBDrag        = new System.Windows.Forms.CheckBox();
            this.CBDelete      = new System.Windows.Forms.CheckBox();
            this.CBInsert      = new System.Windows.Forms.CheckBox();
            this.CBType        = new System.Windows.Forms.CheckBox();
            this.CBColor       = new System.Windows.Forms.CheckBox();
            this.pLeft         = new System.Windows.Forms.Panel();
            this.chartListBox1 = new Steema.TeeChart.ChartListBox(this.components);
            this.tChart1       = new Steema.TeeChart.TChart();
            this.area1         = new Steema.TeeChart.Styles.Area();
            this.bar1          = new Steema.TeeChart.Styles.Bar();
            this.bubble1       = new Steema.TeeChart.Styles.Bubble();
            this.line1         = new Steema.TeeChart.Styles.Line();
            this.pRight        = new System.Windows.Forms.Panel();
            this.splitter1     = new System.Windows.Forms.Splitter();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.pLeft.SuspendLayout();
            this.pRight.SuspendLayout();
            this.SuspendLayout();
            //
            // textBox1
            //
            this.textBox1.Name = "textBox1";
            this.textBox1.Text = @"The ChartListBox component now has additional properties to control if the
end-user can change a Series type or Series color, if Series can be
re-ordered by dragging, and if Series can be deleted pressing the Del key.

Example: chartListBox1.EnableChangeColor=false;

ChartListBox now also synchronizes when Series are added or deleted programatically";
            //
            // panel1
            //
            this.panel1.Controls.Add(this.groupBox1);
            this.panel1.Name = "panel1";
            //
            // panel2
            //
            this.panel2.Controls.Add(this.splitter1);
            this.panel2.Controls.Add(this.pRight);
            this.panel2.Controls.Add(this.pLeft);
            this.panel2.Name = "panel2";
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.CBDrag);
            this.groupBox1.Controls.Add(this.CBDelete);
            this.groupBox1.Controls.Add(this.CBInsert);
            this.groupBox1.Controls.Add(this.CBType);
            this.groupBox1.Controls.Add(this.CBColor);
            this.groupBox1.Location = new System.Drawing.Point(2, 1);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(421, 39);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "Enable";
            //
            // CBDrag
            //
            this.CBDrag.Checked    = true;
            this.CBDrag.CheckState = System.Windows.Forms.CheckState.Checked;
            this.CBDrag.Location   = new System.Drawing.Point(331, 14);
            this.CBDrag.Name       = "CBDrag";
            this.CBDrag.Size       = new System.Drawing.Size(83, 19);
            this.CBDrag.TabIndex   = 4;
            this.CBDrag.Text       = "Drag Series";
            this.CBDrag.Click     += new System.EventHandler(this.CBDrag_Click);
            //
            // CBDelete
            //
            this.CBDelete.Checked    = true;
            this.CBDelete.CheckState = System.Windows.Forms.CheckState.Checked;
            this.CBDelete.Location   = new System.Drawing.Point(255, 14);
            this.CBDelete.Name       = "CBDelete";
            this.CBDelete.Size       = new System.Drawing.Size(81, 19);
            this.CBDelete.TabIndex   = 3;
            this.CBDelete.Text       = "Delete Key";
            this.CBDelete.Click     += new System.EventHandler(this.CBDelete_Click);
            //
            // CBInsert
            //
            this.CBInsert.Checked    = true;
            this.CBInsert.CheckState = System.Windows.Forms.CheckState.Checked;
            this.CBInsert.Location   = new System.Drawing.Point(186, 14);
            this.CBInsert.Name       = "CBInsert";
            this.CBInsert.Size       = new System.Drawing.Size(74, 19);
            this.CBInsert.TabIndex   = 2;
            this.CBInsert.Text       = "Insert Key";
            this.CBInsert.Click     += new System.EventHandler(this.CBInsert_Click);
            //
            // CBType
            //
            this.CBType.Checked    = true;
            this.CBType.CheckState = System.Windows.Forms.CheckState.Checked;
            this.CBType.Location   = new System.Drawing.Point(96, 14);
            this.CBType.Name       = "CBType";
            this.CBType.Size       = new System.Drawing.Size(93, 19);
            this.CBType.TabIndex   = 1;
            this.CBType.Text       = "Change Type";
            this.CBType.Click     += new System.EventHandler(this.CBType_Click);
            //
            // CBColor
            //
            this.CBColor.Checked    = true;
            this.CBColor.CheckState = System.Windows.Forms.CheckState.Checked;
            this.CBColor.Location   = new System.Drawing.Point(8, 14);
            this.CBColor.Name       = "CBColor";
            this.CBColor.Size       = new System.Drawing.Size(93, 19);
            this.CBColor.TabIndex   = 0;
            this.CBColor.Text       = "Change Color";
            this.CBColor.Click     += new System.EventHandler(this.CBColor_Click);
            //
            // pLeft
            //
            this.pLeft.BackColor = System.Drawing.Color.White;
            this.pLeft.Controls.Add(this.chartListBox1);
            this.pLeft.Dock     = System.Windows.Forms.DockStyle.Left;
            this.pLeft.Location = new System.Drawing.Point(0, 0);
            this.pLeft.Name     = "pLeft";
            this.pLeft.Size     = new System.Drawing.Size(176, 154);
            this.pLeft.TabIndex = 0;
            //
            // chartListBox1
            //
            this.chartListBox1.AllowDrop  = true;
            this.chartListBox1.Chart      = this.tChart1;
            this.chartListBox1.Dock       = System.Windows.Forms.DockStyle.Fill;
            this.chartListBox1.Location   = new System.Drawing.Point(0, 0);
            this.chartListBox1.Name       = "chartListBox1";
            this.chartListBox1.OtherItems = null;
            this.chartListBox1.Size       = new System.Drawing.Size(176, 148);
            this.chartListBox1.TabIndex   = 0;
            //
            // tChart1
            //
            //
            // tChart1.Aspect
            //
            this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
            this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
            this.tChart1.BackColor = System.Drawing.Color.Red;
            this.tChart1.Dock      = System.Windows.Forms.DockStyle.Fill;
            //
            // tChart1.Header
            //
            this.tChart1.Header.Lines = new string[] {
                "TeeChart"
            };
            this.tChart1.Location = new System.Drawing.Point(0, 0);
            this.tChart1.Name     = "tChart1";
            //
            // tChart1.Panel
            //
            //
            // tChart1.Panel.Brush
            //
            this.tChart1.Panel.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
            //
            // tChart1.Panel.Gradient
            //
            this.tChart1.Panel.Brush.Gradient.EndColor   = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(225)), ((System.Byte)(225)), ((System.Byte)(255)));
            this.tChart1.Panel.Brush.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
            //
            // tChart1.Panel.Gradient
            //
            this.tChart1.Panel.Gradient.EndColor   = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(225)), ((System.Byte)(225)), ((System.Byte)(255)));
            this.tChart1.Panel.Gradient.StartColor = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
            this.tChart1.Series.Add(this.area1);
            this.tChart1.Series.Add(this.bar1);
            this.tChart1.Series.Add(this.bubble1);
            this.tChart1.Series.Add(this.line1);
            this.tChart1.Size     = new System.Drawing.Size(250, 154);
            this.tChart1.TabIndex = 0;
            //
            // tChart1.Walls
            //
            //
            // tChart1.Walls.Bottom
            //
            //
            // tChart1.Walls.Bottom.Pen
            //
            this.tChart1.Walls.Bottom.Pen.Visible = false;
            this.tChart1.Walls.Bottom.Size        = 5;
            //
            // tChart1.Walls.Left
            //
            //
            // tChart1.Walls.Left.Pen
            //
            this.tChart1.Walls.Left.Pen.Visible = false;
            this.tChart1.Walls.Left.Size        = 5;
            //
            // area1
            //
            //
            // area1.AreaBrush
            //
            this.area1.AreaBrush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(128)), ((System.Byte)(0)));
            //
            // area1.AreaLines
            //
            this.area1.AreaLines.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(153)), ((System.Byte)(77)), ((System.Byte)(0)));
            //
            // area1.Brush
            //
            this.area1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(128)), ((System.Byte)(0)));
            //
            // area1.LinePen
            //
            this.area1.LinePen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(153)), ((System.Byte)(77)), ((System.Byte)(0)));
            //
            // area1.Marks
            //
            //
            // area1.Marks.Font
            //
            //
            // area1.Marks.Font.Brush
            //
            this.area1.Marks.Font.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)));
            this.area1.Marks.Font.Size        = 14;
            //
            // area1.Marks.Pen
            //
            this.area1.Marks.Pen.Visible = false;
            //
            // area1.Marks.Symbol
            //
            //
            // area1.Marks.Symbol.Shadow
            //
            this.area1.Marks.Symbol.Shadow.Height  = 1;
            this.area1.Marks.Symbol.Shadow.Visible = true;
            this.area1.Marks.Symbol.Shadow.Width   = 1;
            //
            // area1.Pointer
            //
            this.area1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
            this.area1.Title         = "area1";
            //
            // area1.XValues
            //
            this.area1.XValues.DataMember = "X";
            this.area1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
            //
            // area1.YValues
            //
            this.area1.YValues.DataMember = "Y";
            //
            // bar1
            //
            //
            // bar1.Brush
            //
            this.bar1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(128)));
            //
            // bar1.Marks
            //
            //
            // bar1.Marks.Font
            //
            //
            // bar1.Marks.Font.Brush
            //
            this.bar1.Marks.Font.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(64)), ((System.Byte)(0)), ((System.Byte)(0)));
            this.bar1.Marks.Font.Size        = 14;
            //
            // bar1.Marks.Pen
            //
            this.bar1.Marks.Pen.Visible = false;
            //
            // bar1.Marks.Symbol
            //
            //
            // bar1.Marks.Symbol.Shadow
            //
            this.bar1.Marks.Symbol.Shadow.Height  = 1;
            this.bar1.Marks.Symbol.Shadow.Visible = true;
            this.bar1.Marks.Symbol.Shadow.Width   = 1;
            this.bar1.Marks.Transparent           = true;
            //
            // bar1.Pen
            //
            this.bar1.Pen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(153)), ((System.Byte)(153)), ((System.Byte)(77)));
            this.bar1.Title     = "bar2";
            //
            // bar1.XValues
            //
            this.bar1.XValues.DataMember = "X";
            this.bar1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
            //
            // bar1.YValues
            //
            this.bar1.YValues.DataMember = "Bar";
            //
            // bubble1
            //
            this.bubble1.ColorEach   = false;
            this.bubble1.LabelMember = "Labels";
            //
            // bubble1.LinePen
            //
            this.bubble1.LinePen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(77)), ((System.Byte)(0)), ((System.Byte)(0)));
            //
            // bubble1.Marks
            //
            //
            // bubble1.Marks.Symbol
            //
            //
            // bubble1.Marks.Symbol.Shadow
            //
            this.bubble1.Marks.Symbol.Shadow.Height  = 1;
            this.bubble1.Marks.Symbol.Shadow.Visible = true;
            this.bubble1.Marks.Symbol.Shadow.Width   = 1;
            this.bubble1.Marks.Transparent           = true;
            //
            // bubble1.Pointer
            //
            //
            // bubble1.Pointer.Brush
            //
            this.bubble1.Pointer.Brush.Color    = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(128)), ((System.Byte)(0)), ((System.Byte)(0)));
            this.bubble1.Pointer.InflateMargins = false;
            //
            // bubble1.Pointer.Pen
            //
            this.bubble1.Pointer.Pen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(77)), ((System.Byte)(0)), ((System.Byte)(0)));
            this.bubble1.Pointer.Style     = Steema.TeeChart.Styles.PointerStyles.Sphere;
            this.bubble1.Title             = "bubble3";
            //
            // bubble1.XValues
            //
            this.bubble1.XValues.DataMember = "X";
            this.bubble1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
            //
            // bubble1.YValues
            //
            this.bubble1.YValues.DataMember = "Y";
            //
            // line1
            //
            //
            // line1.Brush
            //
            this.line1.Brush.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(64)));
            //
            // line1.LinePen
            //
            this.line1.LinePen.Color = System.Drawing.Color.FromArgb(((System.Byte)(254)), ((System.Byte)(0)), ((System.Byte)(0)), ((System.Byte)(38)));
            //
            // line1.Marks
            //
            //
            // line1.Marks.Symbol
            //
            //
            // line1.Marks.Symbol.Shadow
            //
            this.line1.Marks.Symbol.Shadow.Height  = 1;
            this.line1.Marks.Symbol.Shadow.Visible = true;
            this.line1.Marks.Symbol.Shadow.Width   = 1;
            //
            // line1.Pointer
            //
            this.line1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Rectangle;
            this.line1.Title         = "line4";
            //
            // line1.XValues
            //
            this.line1.XValues.DataMember = "X";
            this.line1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
            //
            // line1.YValues
            //
            this.line1.YValues.DataMember = "Y";
            //
            // pRight
            //
            this.pRight.BackColor = System.Drawing.Color.White;
            this.pRight.Controls.Add(this.tChart1);
            this.pRight.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.pRight.Location = new System.Drawing.Point(176, 0);
            this.pRight.Name     = "pRight";
            this.pRight.Size     = new System.Drawing.Size(250, 154);
            this.pRight.TabIndex = 1;
            //
            // splitter1
            //
            this.splitter1.Location = new System.Drawing.Point(176, 0);
            this.splitter1.Name     = "splitter1";
            this.splitter1.Size     = new System.Drawing.Size(3, 154);
            this.splitter1.TabIndex = 0;
            this.splitter1.TabStop  = false;
            //
            // ChartListBoxEnable
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(426, 258);
            this.Name = "ChartListBoxEnable";
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.pLeft.ResumeLayout(false);
            this.pRight.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Exemplo n.º 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.chartControl1 = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.panel1        = new System.Windows.Forms.Panel();
     this.button1       = new System.Windows.Forms.Button();
     this.label2        = new System.Windows.Forms.Label();
     this.label9        = new System.Windows.Forms.Label();
     this.textBox1      = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.ChartArea.CursorLocation  = new System.Drawing.Point(0, 0);
     this.chartControl1.ChartArea.CursorReDraw    = false;
     this.chartControl1.ChartArea.XAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartArea.YAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartAreaMargins          = new Syncfusion.Windows.Forms.Chart.ChartMargins(10, 10, 20, 10);
     this.chartControl1.ChartInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(209)))), ((int)(((byte)(226))))), System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(232)))), ((int)(((byte)(243))))));
     this.chartControl1.DataSourceName            = "";
     this.chartControl1.Font         = new System.Drawing.Font("Arial", 15F);
     this.chartControl1.IsWindowLess = false;
     //
     //
     //
     this.chartControl1.Legend.Font        = new System.Drawing.Font("Verdana", 10F);
     this.chartControl1.Legend.Location    = new System.Drawing.Point(76, 486);
     this.chartControl1.Legend.Orientation = Syncfusion.Windows.Forms.Chart.ChartOrientation.Horizontal;
     this.chartControl1.Legend.Position    = Syncfusion.Windows.Forms.Chart.ChartDock.Bottom;
     this.chartControl1.Localize           = null;
     this.chartControl1.Location           = new System.Drawing.Point(0, 0);
     this.chartControl1.Name = "chartControl1";
     this.chartControl1.PrimaryXAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryXAxis.Margin   = true;
     this.chartControl1.PrimaryXAxis.Title    = "Time(hr)";
     this.chartControl1.PrimaryYAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryYAxis.Margin   = true;
     this.chartControl1.PrimaryYAxis.Title    = "Network Load";
     this.chartControl1.Size     = new System.Drawing.Size(700, 581);
     this.chartControl1.TabIndex = 0;
     this.chartControl1.Text     = "Peak Average Network Load";
     //
     //
     //
     this.chartControl1.Title.Name = "Def_title";
     this.chartControl1.Title.Text = "Peak Average Network Load";
     this.chartControl1.Titles.Add(this.chartControl1.Title);
     //
     // panel1
     //
     this.panel1.Dock      = DockStyle.Right;
     this.panel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(700, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(259, 591);
     this.panel1.TabIndex = 1;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(58, 135);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(137, 33);
     this.button1.TabIndex = 6;
     this.button1.Text     = "Apply Filter";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label2.Location  = new System.Drawing.Point(33, 186);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(215, 52);
     this.label2.TabIndex  = 2;
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font      = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label9.Location  = new System.Drawing.Point(28, 30);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(176, 25);
     this.label9.TabIndex  = 5;
     this.label9.Text      = "Filtering Chart Data";
     //
     // textBox1
     //
     this.textBox1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.textBox1.Location  = new System.Drawing.Point(33, 102);
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(185, 27);
     this.textBox1.TabIndex  = 3;
     this.textBox1.Text      = "425";
     //
     // label1
     //
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label1.Location  = new System.Drawing.Point(33, 67);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(103, 28);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "Filter Value";
     //
     // Form1
     //
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(954, 581);
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.panel1);
     this.Icon                = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize         = new System.Drawing.Size(632, 437);
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Name                = "Form1";
     this.StartPosition       = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text                = "Filtered Data";
     this.Load               += new System.EventHandler(this.Form1_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.chartControl1  = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.panel1         = new System.Windows.Forms.Panel();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label1         = new System.Windows.Forms.Label();
     this.checkBox1      = new System.Windows.Forms.CheckBox();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.SuspendLayout();
     //
     // chartControl1
     //
     this.chartControl1.ChartArea.CursorLocation  = new System.Drawing.Point(0, 0);
     this.chartControl1.ChartArea.CursorReDraw    = false;
     this.chartControl1.ChartArea.XAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartArea.YAxesLayoutMode = Syncfusion.Windows.Forms.Chart.ChartAxesLayoutMode.SideBySide;
     this.chartControl1.ChartAreaMargins          = new Syncfusion.Windows.Forms.Chart.ChartMargins(10, 10, 20, 10);
     this.chartControl1.ChartInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(209)))), ((int)(((byte)(226))))), System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(232)))), ((int)(((byte)(243))))));
     this.chartControl1.DataSourceName            = "";
     this.chartControl1.IsWindowLess = false;
     //
     //
     //
     this.chartControl1.Legend.Font           = new System.Drawing.Font("Verdana", 10F);
     this.chartControl1.Legend.Location       = new System.Drawing.Point(569, 75);
     this.chartControl1.Localize              = null;
     this.chartControl1.Location              = new System.Drawing.Point(0, 0);
     this.chartControl1.Name                  = "chartControl1";
     this.chartControl1.PrimaryXAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryXAxis.Margin   = true;
     this.chartControl1.PrimaryXAxis.Title    = "Time";
     this.chartControl1.PrimaryYAxis.Crossing = double.NaN;
     this.chartControl1.PrimaryYAxis.Margin   = true;
     this.chartControl1.PrimaryYAxis.Title    = "Network Load";
     this.chartControl1.Size                  = new System.Drawing.Size(700, 590);
     this.chartControl1.TabIndex              = 0;
     this.chartControl1.Text                  = "Peak Average Network Load";
     //
     //
     //
     this.chartControl1.Title.Name = "Def_title";
     this.chartControl1.Title.Text = "Peak Average Network Load";
     this.chartControl1.Titles.Add(this.chartControl1.Title);
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.panel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.panel1.Controls.Add(this.numericUpDown1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Font     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(698, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(260, 581);
     this.panel1.TabIndex = 1;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // numericUpDown1
     //
     this.numericUpDown1.BackColor   = System.Drawing.Color.White;
     this.numericUpDown1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.numericUpDown1.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numericUpDown1.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.numericUpDown1.Increment   = new decimal(new int[] {
         200,
         0,
         0,
         0
     });
     this.numericUpDown1.Location = new System.Drawing.Point(50, 96);
     this.numericUpDown1.Maximum  = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numericUpDown1.Minimum = new decimal(new int[] {
         200,
         0,
         0,
         0
     });
     this.numericUpDown1.Name     = "numericUpDown1";
     this.numericUpDown1.ReadOnly = true;
     this.numericUpDown1.Size     = new System.Drawing.Size(170, 29);
     this.numericUpDown1.TabIndex = 2;
     this.numericUpDown1.Value    = new decimal(new int[] {
         400,
         0,
         0,
         0
     });
     this.dprovider.timer1.Interval    = (int)this.numericUpDown1.Value;
     this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.label1.Location  = new System.Drawing.Point(46, 63);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(112, 28);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Select Timer Interval";
     //
     // checkBox1
     //
     this.checkBox1.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox1.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(66)))), ((int)(((byte)(66)))), ((int)(((byte)(66)))));
     this.checkBox1.Location        = new System.Drawing.Point(50, 30);
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(140, 24);
     this.checkBox1.TabIndex        = 0;
     this.checkBox1.Text            = "Enable Styles";
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(954, 581);
     this.Controls.Add(this.chartControl1);
     this.Controls.Add(this.panel1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize   = new System.Drawing.Size(608, 430);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Custom Data Binding Model";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle9  = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle10 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle11 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridBaseStyle gridBaseStyle12 = new Syncfusion.Windows.Forms.Grid.GridBaseStyle();
     Syncfusion.Windows.Forms.Grid.GridCellInfo  gridCellInfo4   = new Syncfusion.Windows.Forms.Grid.GridCellInfo();
     this.gridControl1 = new Syncfusion.Windows.Forms.Grid.GridControl();
     this.panel1       = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.DpiAware = true;
     this.gridControl1.AlphaBlendSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(94)))), ((int)(((byte)(171)))), ((int)(((byte)(222)))));
     this.gridControl1.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)));
     gridBaseStyle9.Name = "Header";
     gridBaseStyle9.StyleInfo.Borders.Bottom    = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle9.StyleInfo.Borders.Left      = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle9.StyleInfo.Borders.Right     = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle9.StyleInfo.Borders.Top       = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.None);
     gridBaseStyle9.StyleInfo.CellType          = "Header";
     gridBaseStyle9.StyleInfo.Font.Bold         = true;
     gridBaseStyle9.StyleInfo.Interior          = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(199)))), ((int)(((byte)(184))))), System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(234)))), ((int)(((byte)(216))))));
     gridBaseStyle9.StyleInfo.VerticalAlignment = Syncfusion.Windows.Forms.Grid.GridVerticalAlignment.Middle;
     gridBaseStyle10.Name = "Standard";
     gridBaseStyle10.StyleInfo.Font.Facename = "Tahoma";
     gridBaseStyle10.StyleInfo.Interior      = new Syncfusion.Drawing.BrushInfo(System.Drawing.SystemColors.Window);
     gridBaseStyle11.Name = "Column Header";
     gridBaseStyle11.StyleInfo.BaseStyle           = "Header";
     gridBaseStyle11.StyleInfo.HorizontalAlignment = Syncfusion.Windows.Forms.Grid.GridHorizontalAlignment.Center;
     gridBaseStyle12.Name = "Row Header";
     gridBaseStyle12.StyleInfo.BaseStyle           = "Header";
     gridBaseStyle12.StyleInfo.HorizontalAlignment = Syncfusion.Windows.Forms.Grid.GridHorizontalAlignment.Left;
     gridBaseStyle12.StyleInfo.Interior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Horizontal, System.Drawing.Color.FromArgb(((int)(((byte)(203)))), ((int)(((byte)(199)))), ((int)(((byte)(184))))), System.Drawing.Color.FromArgb(((int)(((byte)(238)))), ((int)(((byte)(234)))), ((int)(((byte)(216))))));
     this.gridControl1.BaseStylesMap.AddRange(new Syncfusion.Windows.Forms.Grid.GridBaseStyle[] {
         gridBaseStyle9,
         gridBaseStyle10,
         gridBaseStyle11,
         gridBaseStyle12
     });
     this.gridControl1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gridControl1.ColCount    = 7;
     this.gridControl1.ColWidthEntries.AddRange(new Syncfusion.Windows.Forms.Grid.GridColWidth[] {
         new Syncfusion.Windows.Forms.Grid.GridColWidth(0, 35)
     });
     this.gridControl1.DefaultGridBorderStyle = Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid;
     this.gridControl1.Font                 = new System.Drawing.Font("Segoe UI", 8.5F);
     this.gridControl1.ForeColor            = System.Drawing.Color.MidnightBlue;
     gridCellInfo4.Col                      = -1;
     gridCellInfo4.Row                      = -1;
     gridCellInfo4.StyleInfo.Borders.Bottom = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     gridCellInfo4.StyleInfo.Borders.Right  = new Syncfusion.Windows.Forms.Grid.GridBorder(Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid, System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(234)))), ((int)(((byte)(234))))), Syncfusion.Windows.Forms.Grid.GridBorderWeight.ExtraThin);
     gridCellInfo4.StyleInfo.Font.Bold      = false;
     gridCellInfo4.StyleInfo.Font.Facename  = "Segoe UI";
     gridCellInfo4.StyleInfo.Font.Italic    = false;
     gridCellInfo4.StyleInfo.Font.Size      = 8.5F;
     gridCellInfo4.StyleInfo.Font.Strikeout = false;
     gridCellInfo4.StyleInfo.Font.Underline = false;
     gridCellInfo4.StyleInfo.Font.Unit      = System.Drawing.GraphicsUnit.Point;
     gridCellInfo4.StyleInfo.Interior       = new Syncfusion.Drawing.BrushInfo(System.Drawing.Color.White);
     gridCellInfo4.StyleInfo.TextColor      = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
     this.gridControl1.GridCells.AddRange(new Syncfusion.Windows.Forms.Grid.GridCellInfo[] {
         gridCellInfo4
     });
     this.gridControl1.GridOfficeScrollBars = Syncfusion.Windows.Forms.OfficeScrollBars.Metro;
     this.gridControl1.GridVisualStyles     = Syncfusion.Windows.Forms.GridVisualStyles.Metro;
     this.gridControl1.DefaultRowHeight     = (int)DpiAware.LogicalToDeviceUnits(20.0f);
     this.gridControl1.DefaultColWidth      = (int)DpiAware.LogicalToDeviceUnits(70.0f);
     this.gridControl1.Location             = new System.Drawing.Point(10, 12);
     this.gridControl1.MetroScrollBars      = true;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Properties.BackgroundColor       = System.Drawing.Color.White;
     this.gridControl1.Properties.ForceImmediateRepaint = false;
     this.gridControl1.Properties.GridLineColor         = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(239)))), ((int)(((byte)(255)))));
     this.gridControl1.Properties.MarkColHeader         = false;
     this.gridControl1.Properties.MarkRowHeader         = false;
     this.gridControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gridControl1.RowCount    = 20;
     this.gridControl1.RowHeightEntries.AddRange(new Syncfusion.Windows.Forms.Grid.GridRowHeight[] {
         new Syncfusion.Windows.Forms.Grid.GridRowHeight(0, 21)
     });
     this.gridControl1.SerializeCellsBehavior = Syncfusion.Windows.Forms.Grid.GridSerializeCellsBehavior.SerializeIntoCode;
     this.gridControl1.Size               = new System.Drawing.Size(996, 629);
     this.gridControl1.SmartSizeBox       = false;
     this.gridControl1.TabIndex           = 1;
     this.gridControl1.ThemesEnabled      = true;
     this.gridControl1.DpiAware           = true;
     this.gridControl1.VerticalThumbTrack = true;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1012, 653);
     this.panel1.TabIndex = 2;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1012, 653);
     this.Controls.Add(this.panel1);
     this.MinimumSize = new System.Drawing.Size(430, 300);
     this.Name        = "Form1";
     this.Text        = "Getting Started";
     this.Load       += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(WizardForm));
     this.panel1            = new System.Windows.Forms.Panel();
     this._backButton       = new System.Windows.Forms.Button();
     this._nextButton       = new System.Windows.Forms.Button();
     this._cancelButton     = new System.Windows.Forms.Button();
     this._btnHelp          = new System.Windows.Forms.Button();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this._pictureBox       = new System.Windows.Forms.PictureBox();
     this._optionsPanel     = new System.Windows.Forms.Panel();
     this._panePanel        = new System.Windows.Forms.Panel();
     this._paneContentPanel = new JetBrains.Omea.GUIControls.CustomStylePanel();
     this._paneControlPanel = new JetBrains.Omea.GUIControls.CustomStylePanel();
     this.groupBox2         = new System.Windows.Forms.GroupBox();
     this._headerLabel      = new System.Windows.Forms.Label();
     this.splitter1         = new System.Windows.Forms.Splitter();
     this._listPanel        = new JetBrains.Omea.GUIControls.CustomStylePanel();
     this._explanatoryLabel = new System.Windows.Forms.Label();
     this._welcomeLabel     = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this._optionsPanel.SuspendLayout();
     this._panePanel.SuspendLayout();
     this._paneContentPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this._backButton);
     this.panel1.Controls.Add(this._nextButton);
     this.panel1.Controls.Add(this._cancelButton);
     this.panel1.Controls.Add(this._btnHelp);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this.panel1.Location = new System.Drawing.Point(0, 398);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(552, 48);
     this.panel1.TabIndex = 1;
     //
     // _backButton
     //
     this._backButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._backButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._backButton.Location  = new System.Drawing.Point(216, 12);
     this._backButton.Name      = "_backButton";
     this._backButton.TabIndex  = 0;
     this._backButton.Text      = "< &Back";
     this._backButton.Click    += new System.EventHandler(this._backButton_Click);
     //
     // _nextButton
     //
     this._nextButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._nextButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._nextButton.Location  = new System.Drawing.Point(296, 12);
     this._nextButton.Name      = "_nextButton";
     this._nextButton.TabIndex  = 1;
     this._nextButton.Text      = "&Next >";
     this._nextButton.Click    += new System.EventHandler(this._nextButton_Click);
     //
     // _cancelButton
     //
     this._cancelButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._cancelButton.Location  = new System.Drawing.Point(384, 12);
     this._cancelButton.Name      = "_cancelButton";
     this._cancelButton.TabIndex  = 2;
     this._cancelButton.Text      = "Cancel";
     this._cancelButton.Click    += new System.EventHandler(this._cancelButton_Click);
     //
     // _btnHelp
     //
     this._btnHelp.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._btnHelp.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._btnHelp.Location  = new System.Drawing.Point(468, 12);
     this._btnHelp.Name      = "_btnHelp";
     this._btnHelp.TabIndex  = 2;
     this._btnHelp.Text      = "Help";
     this._btnHelp.Click    += new System.EventHandler(this._btnHelp_Click);
     //
     // groupBox1
     //
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.groupBox1.Location = new System.Drawing.Point(0, 394);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(552, 4);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     //
     // _pictureBox
     //
     this._pictureBox.BackColor = System.Drawing.SystemColors.Window;
     this._pictureBox.Dock      = System.Windows.Forms.DockStyle.Left;
     this._pictureBox.Image     = Image.FromStream(Assembly.GetExecutingAssembly().GetManifestResourceStream("GUIControls.Icons.WizardReader.png"));
     this._pictureBox.Location  = new System.Drawing.Point(0, 0);
     this._pictureBox.Name      = "_pictureBox";
     this._pictureBox.Size      = new System.Drawing.Size(168, 394);
     this._pictureBox.TabIndex  = 3;
     this._pictureBox.TabStop   = false;
     //
     // _optionsPanel
     //
     this._optionsPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this._optionsPanel.Controls.Add(this._panePanel);
     this._optionsPanel.Controls.Add(this._explanatoryLabel);
     this._optionsPanel.Controls.Add(this._welcomeLabel);
     this._optionsPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._optionsPanel.Location = new System.Drawing.Point(168, 0);
     this._optionsPanel.Name     = "_optionsPanel";
     this._optionsPanel.Size     = new System.Drawing.Size(384, 394);
     this._optionsPanel.TabIndex = 4;
     //
     // _panePanel
     //
     this._panePanel.BackColor = System.Drawing.SystemColors.Control;
     this._panePanel.Controls.Add(this._paneContentPanel);
     this._panePanel.Controls.Add(this.splitter1);
     this._panePanel.Controls.Add(this._listPanel);
     this._panePanel.Location = new System.Drawing.Point(16, 240);
     this._panePanel.Name     = "_panePanel";
     this._panePanel.Size     = new System.Drawing.Size(328, 136);
     this._panePanel.TabIndex = 2;
     //
     // _paneContentPanel
     //
     this._paneContentPanel.Controls.Add(this._paneControlPanel);
     this._paneContentPanel.Controls.Add(this.groupBox2);
     this._paneContentPanel.Controls.Add(this._headerLabel);
     this._paneContentPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._paneContentPanel.Location = new System.Drawing.Point(176, 0);
     this._paneContentPanel.Name     = "_paneContentPanel";
     this._paneContentPanel.Size     = new System.Drawing.Size(152, 136);
     this._paneContentPanel.TabIndex = 2;
     this._paneContentPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this._paneContentPanel_Paint);
     //
     // _paneControlPanel
     //
     this._paneControlPanel.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._paneControlPanel.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this._paneControlPanel.Location = new System.Drawing.Point(8, 60);
     this._paneControlPanel.Name     = "_paneControlPanel";
     this._paneControlPanel.Size     = new System.Drawing.Size(136, 68);
     this._paneControlPanel.TabIndex = 6;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Location = new System.Drawing.Point(2, 52);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(166, 4);
     this.groupBox2.TabIndex = 5;
     this.groupBox2.TabStop  = false;
     //
     // _headerLabel
     //
     this._headerLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this._headerLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this._headerLabel.Location  = new System.Drawing.Point(2, 0);
     this._headerLabel.Name      = "_headerLabel";
     this._headerLabel.Size      = new System.Drawing.Size(166, 48);
     this._headerLabel.TabIndex  = 4;
     this._headerLabel.Text      = "Header";
     this._headerLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // splitter1
     //
     this.splitter1.BackColor = System.Drawing.SystemColors.ControlLight;
     this.splitter1.Location  = new System.Drawing.Point(172, 0);
     this.splitter1.Name      = "splitter1";
     this.splitter1.Size      = new System.Drawing.Size(4, 136);
     this.splitter1.TabIndex  = 1;
     this.splitter1.TabStop   = false;
     //
     // _listPanel
     //
     this._listPanel.Dock     = System.Windows.Forms.DockStyle.Left;
     this._listPanel.Location = new System.Drawing.Point(0, 0);
     this._listPanel.Name     = "_listPanel";
     this._listPanel.Size     = new System.Drawing.Size(172, 136);
     this._listPanel.TabIndex = 0;
     this._listPanel.Resize  += new System.EventHandler(this._listPanel_Resize);
     this._listPanel.Paint   += new System.Windows.Forms.PaintEventHandler(this._listPanel_Paint);
     //
     // _explanatoryLabel
     //
     this._explanatoryLabel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._explanatoryLabel.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this._explanatoryLabel.Location  = new System.Drawing.Point(20, 152);
     this._explanatoryLabel.Name      = "_explanatoryLabel";
     this._explanatoryLabel.Size      = new System.Drawing.Size(320, 72);
     this._explanatoryLabel.TabIndex  = 1;
     this._explanatoryLabel.Text      = "This wizard helps you to configure what you want";
     //
     // _welcomeLabel
     //
     this._welcomeLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(204)));
     this._welcomeLabel.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(87)), ((System.Byte)(77)), ((System.Byte)(162)));
     this._welcomeLabel.Location  = new System.Drawing.Point(20, 80);
     this._welcomeLabel.Name      = "_welcomeLabel";
     this._welcomeLabel.Size      = new System.Drawing.Size(320, 48);
     this._welcomeLabel.TabIndex  = 0;
     this._welcomeLabel.Text      = "Welcome to Omea Wizard";
     //
     // WizardForm
     //
     this.AcceptButton      = this._nextButton;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this._cancelButton;
     this.ClientSize        = new System.Drawing.Size(552, 446);
     this.ControlBox        = false;
     this.Controls.Add(this._optionsPanel);
     this.Controls.Add(this._pictureBox);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.panel1);
     this.MinimumSize    = new System.Drawing.Size(560, 500);
     this.Name           = "WizardForm";
     this.ShowInTaskbar  = true;
     this.Text           = "WizardFrom";
     this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.WizardFrom_HelpRequested);
     this.panel1.ResumeLayout(false);
     this._optionsPanel.ResumeLayout(false);
     this._panePanel.ResumeLayout(false);
     this._paneContentPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 52
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(Form1));
     this.htmluiControl1 = new Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl();
     this.panel1         = new System.Windows.Forms.Panel();
     this.panel2         = new System.Windows.Forms.Panel();
     this.panel3         = new System.Windows.Forms.Panel();
     this.label2         = new System.Windows.Forms.Label();
     this.button1        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.button2        = new Syncfusion.Windows.Forms.ButtonAdv();
     this.checkBox1      = new Syncfusion.Windows.Forms.Tools.CheckBoxAdv();
     this.gradientPanel1 = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).BeginInit();
     this.gradientPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // htmluiControl1
     //
     this.htmluiControl1.AutoScroll                    = true;
     this.htmluiControl1.AutoScrollMinSize             = new System.Drawing.Size(315, 316);
     this.htmluiControl1.BackColor                     = System.Drawing.Color.White;
     this.htmluiControl1.DefaultFormat.BackgroundColor = System.Drawing.SystemColors.Control;
     this.htmluiControl1.DefaultFormat.ForeColor       = System.Drawing.SystemColors.ControlText;
     this.htmluiControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.htmluiControl1.Location      = new System.Drawing.Point(0, 0);
     this.htmluiControl1.Name          = "htmluiControl1";
     this.htmluiControl1.ShowTitle     = false;
     this.htmluiControl1.Size          = new System.Drawing.Size(332, 331);
     this.htmluiControl1.TabIndex      = 0;
     this.htmluiControl1.Text          = resources.GetString("htmluiControl1.Text");
     this.htmluiControl1.LoadFinished += new System.EventHandler(this.htmluiControl1_LoadFinished);
     this.htmluiControl1.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.htmluiControl1_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor   = System.Drawing.Color.White;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(10, 10);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(198, 333);
     this.panel1.TabIndex = 1;
     this.panel1.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.LightGray;
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Location = new System.Drawing.Point(8, 24);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(120, 120);
     this.panel2.TabIndex = 3;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.White;
     this.panel3.Controls.Add(this.label2);
     this.panel3.Controls.Add(this.button1);
     this.panel3.Controls.Add(this.button2);
     this.panel3.Location = new System.Drawing.Point(2, 2);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(116, 116);
     this.panel3.TabIndex = 5;
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.Font      = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location  = new System.Drawing.Point(-2, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(120, 24);
     this.label2.TabIndex  = 6;
     this.label2.Text      = "Print Document";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // button1
     //
     this.button1.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button1.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.button1.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font       = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button1.ForeColor  = System.Drawing.Color.White;
     this.button1.Location   = new System.Drawing.Point(6, 38);
     this.button1.Name       = "button1";
     this.button1.Size       = new System.Drawing.Size(104, 28);
     this.button1.TabIndex   = 4;
     this.button1.Text       = "Print";
     this.button1.Click     += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.button2.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
     this.button2.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Font       = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button2.ForeColor  = System.Drawing.Color.White;
     this.button2.Location   = new System.Drawing.Point(6, 72);
     this.button2.Name       = "button2";
     this.button2.Size       = new System.Drawing.Size(104, 32);
     this.button2.TabIndex   = 5;
     this.button2.Text       = "Print Preview";
     this.button2.Click     += new System.EventHandler(this.button2_Click);
     //
     // checkBox1
     //
     this.checkBox1.Checked            = true;
     this.checkBox1.CheckState         = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.DrawFocusRectangle = false;
     this.checkBox1.Font            = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBox1.ForeColor       = System.Drawing.Color.Black;
     this.checkBox1.Location        = new System.Drawing.Point(16, 176);
     this.checkBox1.MetroColor      = System.Drawing.Color.Gray;
     this.checkBox1.Name            = "checkBox1";
     this.checkBox1.Size            = new System.Drawing.Size(112, 64);
     this.checkBox1.Style           = Syncfusion.Windows.Forms.Tools.CheckBoxAdvStyle.Metro;
     this.checkBox1.TabIndex        = 6;
     this.checkBox1.Text            = "Enable \'Ctrl+P\' shortcut for printing";
     this.checkBox1.ThemesEnabled   = false;
     this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // gradientPanel1
     //
     this.gradientPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gradientPanel1.Controls.Add(this.htmluiControl1);
     this.gradientPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gradientPanel1.Location = new System.Drawing.Point(208, 10);
     this.gradientPanel1.Name     = "gradientPanel1";
     this.gradientPanel1.Size     = new System.Drawing.Size(334, 333);
     this.gradientPanel1.TabIndex = 2;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 15);
     this.BorderColor       = System.Drawing.Color.FromArgb(((int)(((byte)(27)))), ((int)(((byte)(161)))), ((int)(((byte)(226)))));
     this.CaptionAlign      = System.Windows.Forms.HorizontalAlignment.Center;
     this.ClientSize        = new System.Drawing.Size(552, 353);
     this.Controls.Add(this.gradientPanel1);
     this.Controls.Add(this.panel1);
     this.DropShadow       = true;
     this.Font             = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon             = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IconAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.IconTextRelation = System.Windows.Forms.LeftRightAlignment.Left;
     this.MetroColor       = System.Drawing.Color.White;
     this.MinimumSize      = new System.Drawing.Size(564, 389);
     this.Name             = "Form1";
     this.Padding          = new System.Windows.Forms.Padding(10);
     this.StartPosition    = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text             = "Export Demo";
     this.WindowState      = System.Windows.Forms.FormWindowState.Maximized;
     this.Load            += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gradientPanel1)).EndInit();
     this.gradientPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 39);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 18);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 15);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 12);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 8);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 4.5);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 3.2000000476837158);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 2);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 1);
     this.chart1                     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.labelSampleComment         = new System.Windows.Forms.Label();
     this.comboBoxCollectedThreshold = new System.Windows.Forms.ComboBox();
     this.textBoxCollectedLabel      = new System.Windows.Forms.TextBox();
     this.label6                     = new System.Windows.Forms.Label();
     this.label5                     = new System.Windows.Forms.Label();
     this.comboBoxCollectedColor     = new System.Windows.Forms.ComboBox();
     this.label4                     = new System.Windows.Forms.Label();
     this.checkBoxCollectPieSlices   = new System.Windows.Forms.CheckBox();
     this.checkBoxShowExploded       = new System.Windows.Forms.CheckBox();
     this.comboBoxChartType          = new System.Windows.Forms.ComboBox();
     this.label1                     = new System.Windows.Forms.Label();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.textBoxCollectedLegend     = new System.Windows.Forms.TextBox();
     this.label2                     = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // chart1
     //
     this.chart1.BackColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(211)))), ((int)(((byte)(223)))), ((int)(((byte)(240)))));
     this.chart1.BackGradientStyle           = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.chart1.BorderlineColor             = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     this.chart1.BorderlineDashStyle         = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.chart1.BorderlineWidth             = 2;
     this.chart1.BorderSkin.SkinStyle        = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.IsClustered      = true;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.PointGapDepth    = 900;
     chartArea1.Area3DStyle.Rotation         = 162;
     chartArea1.Area3DStyle.WallWidth        = 25;
     chartArea1.AxisX.LabelStyle.Font        = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisX.LineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorGrid.Enabled      = false;
     chartArea1.AxisX.MajorGrid.LineColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorTickMark.Enabled  = false;
     chartArea1.AxisX2.MajorGrid.Enabled     = false;
     chartArea1.AxisX2.MajorTickMark.Enabled = false;
     chartArea1.AxisY.LabelStyle.Font        = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorGrid.Enabled      = false;
     chartArea1.AxisY.MajorGrid.LineColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorTickMark.Enabled  = false;
     chartArea1.AxisY2.MajorGrid.Enabled     = false;
     chartArea1.AxisY2.MajorTickMark.Enabled = false;
     chartArea1.BackColor          = System.Drawing.Color.Transparent;
     chartArea1.BackGradientStyle  = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea1.BackSecondaryColor = System.Drawing.Color.Transparent;
     chartArea1.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.Name        = "Area1";
     chartArea1.ShadowColor = System.Drawing.Color.Transparent;
     this.chart1.ChartAreas.Add(chartArea1);
     this.chart1.IsSoftShadows = false;
     legend1.BackColor         = System.Drawing.Color.Transparent;
     legend1.Font = new System.Drawing.Font("Trebuchet MS", 8F, System.Drawing.FontStyle.Bold);
     legend1.IsEquallySpacedItems = true;
     legend1.IsTextAutoFit        = false;
     legend1.Name = "Default";
     this.chart1.Legends.Add(legend1);
     this.chart1.Location     = new System.Drawing.Point(16, 61);
     this.chart1.Name         = "chart1";
     series1.BorderColor      = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     series1.ChartArea        = "Area1";
     series1.ChartType        = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
     series1.Color            = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(65)))), ((int)(((byte)(140)))), ((int)(((byte)(240)))));
     series1.CustomProperties = "DoughnutRadius=25, PieDrawingStyle=Concave, CollectedLabel=Other, MinimumRelative" +
                                "PieSize=20";
     series1.Font                   = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     series1.Label                  = "#PERCENT{P1}";
     series1.Legend                 = "Default";
     series1.MarkerStyle            = System.Windows.Forms.DataVisualization.Charting.MarkerStyle.Circle;
     series1.Name                   = "Series1";
     dataPoint1.CustomProperties    = "OriginalPointIndex=0";
     dataPoint1.IsValueShownAsLabel = false;
     dataPoint1.LegendText          = "RUS";
     dataPoint2.CustomProperties    = "OriginalPointIndex=1";
     dataPoint2.IsValueShownAsLabel = false;
     dataPoint2.LegendText          = "CAN";
     dataPoint3.CustomProperties    = "OriginalPointIndex=2";
     dataPoint3.IsValueShownAsLabel = false;
     dataPoint3.LegendText          = "USA";
     dataPoint4.CustomProperties    = "OriginalPointIndex=3";
     dataPoint4.LegendText          = "PRC";
     dataPoint5.CustomProperties    = "OriginalPointIndex=5";
     dataPoint5.LegendText          = "DEN";
     dataPoint6.LegendText          = "AUS";
     dataPoint7.CustomProperties    = "OriginalPointIndex=4";
     dataPoint7.LegendText          = "IND";
     dataPoint8.LegendText          = "ARG";
     dataPoint9.LegendText          = "FRA";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.Points.Add(dataPoint5);
     series1.Points.Add(dataPoint6);
     series1.Points.Add(dataPoint7);
     series1.Points.Add(dataPoint8);
     series1.Points.Add(dataPoint9);
     series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     this.chart1.Series.Add(series1);
     this.chart1.Size     = new System.Drawing.Size(412, 296);
     this.chart1.TabIndex = 1;
     //
     // labelSampleComment
     //
     this.labelSampleComment.Font     = new System.Drawing.Font("Verdana", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelSampleComment.Location = new System.Drawing.Point(16, 8);
     this.labelSampleComment.Name     = "labelSampleComment";
     this.labelSampleComment.Size     = new System.Drawing.Size(702, 45);
     this.labelSampleComment.TabIndex = 0;
     this.labelSampleComment.Text     = "This sample demonstrates how to group many small segments of a pie or doughnut ch" +
                                        "art into one collected slice to improve chart readability.";
     this.labelSampleComment.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboBoxCollectedThreshold
     //
     this.comboBoxCollectedThreshold.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxCollectedThreshold.Font          = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxCollectedThreshold.ItemHeight    = 14;
     this.comboBoxCollectedThreshold.Items.AddRange(new object[] {
         "5",
         "8",
         "12",
         "15"
     });
     this.comboBoxCollectedThreshold.Location              = new System.Drawing.Point(184, 40);
     this.comboBoxCollectedThreshold.Name                  = "comboBoxCollectedThreshold";
     this.comboBoxCollectedThreshold.Size                  = new System.Drawing.Size(104, 22);
     this.comboBoxCollectedThreshold.TabIndex              = 2;
     this.comboBoxCollectedThreshold.SelectedIndexChanged += new System.EventHandler(this.comboBoxCollectedThreshold_SelectedIndexChanged);
     //
     // textBoxCollectedLabel
     //
     this.textBoxCollectedLabel.Font         = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxCollectedLabel.Location     = new System.Drawing.Point(184, 104);
     this.textBoxCollectedLabel.MaxLength    = 12;
     this.textBoxCollectedLabel.Name         = "textBoxCollectedLabel";
     this.textBoxCollectedLabel.Size         = new System.Drawing.Size(104, 22);
     this.textBoxCollectedLabel.TabIndex     = 4;
     this.textBoxCollectedLabel.TextChanged += new System.EventHandler(this.textBoxCollectedLabel_TextChanged);
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.Color.White;
     this.label6.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(35, 104);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(144, 23);
     this.label6.TabIndex  = 4;
     this.label6.Text      = "Collected &Label:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.Color.White;
     this.label5.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(35, 72);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(144, 23);
     this.label5.TabIndex  = 3;
     this.label5.Text      = "Collected &Color:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboBoxCollectedColor
     //
     this.comboBoxCollectedColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxCollectedColor.Font          = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxCollectedColor.ItemHeight    = 14;
     this.comboBoxCollectedColor.Items.AddRange(new object[] {
         "Green",
         "Gold",
         "Gray",
         "Magenta"
     });
     this.comboBoxCollectedColor.Location              = new System.Drawing.Point(184, 72);
     this.comboBoxCollectedColor.Name                  = "comboBoxCollectedColor";
     this.comboBoxCollectedColor.Size                  = new System.Drawing.Size(104, 22);
     this.comboBoxCollectedColor.TabIndex              = 3;
     this.comboBoxCollectedColor.SelectedIndexChanged += new System.EventHandler(this.comboBoxCollectedColor_SelectedIndexChanged);
     //
     // label4
     //
     this.label4.BackColor = System.Drawing.Color.White;
     this.label4.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location  = new System.Drawing.Point(4, 40);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(176, 23);
     this.label4.TabIndex  = 2;
     this.label4.Text      = "Collected &Threshold (in %):";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // checkBoxCollectPieSlices
     //
     this.checkBoxCollectPieSlices.BackColor  = System.Drawing.Color.White;
     this.checkBoxCollectPieSlices.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxCollectPieSlices.Font       = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBoxCollectPieSlices.Location   = new System.Drawing.Point(38, 8);
     this.checkBoxCollectPieSlices.Name       = "checkBoxCollectPieSlices";
     this.checkBoxCollectPieSlices.Size       = new System.Drawing.Size(160, 24);
     this.checkBoxCollectPieSlices.TabIndex   = 1;
     this.checkBoxCollectPieSlices.Text       = "Collect &Pie Slices:     ";
     this.checkBoxCollectPieSlices.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxCollectPieSlices.UseVisualStyleBackColor = false;
     this.checkBoxCollectPieSlices.CheckedChanged         += new System.EventHandler(this.checkBoxCollectPieSlices_CheckedChanged);
     //
     // checkBoxShowExploded
     //
     this.checkBoxShowExploded.BackColor  = System.Drawing.Color.White;
     this.checkBoxShowExploded.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxShowExploded.Font       = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBoxShowExploded.Location   = new System.Drawing.Point(62, 165);
     this.checkBoxShowExploded.Name       = "checkBoxShowExploded";
     this.checkBoxShowExploded.Size       = new System.Drawing.Size(136, 24);
     this.checkBoxShowExploded.TabIndex   = 6;
     this.checkBoxShowExploded.Text       = "&Show Exploded: ";
     this.checkBoxShowExploded.TextAlign  = System.Drawing.ContentAlignment.MiddleRight;
     this.checkBoxShowExploded.UseVisualStyleBackColor = false;
     this.checkBoxShowExploded.CheckedChanged         += new System.EventHandler(this.checkBoxcollectSmallSegments_CheckedChanged);
     //
     // comboBoxChartType
     //
     this.comboBoxChartType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxChartType.Font          = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxChartType.ItemHeight    = 14;
     this.comboBoxChartType.Items.AddRange(new object[] {
         "Pie",
         "Doughnut"
     });
     this.comboBoxChartType.Location              = new System.Drawing.Point(184, 195);
     this.comboBoxChartType.Name                  = "comboBoxChartType";
     this.comboBoxChartType.Size                  = new System.Drawing.Size(104, 22);
     this.comboBoxChartType.TabIndex              = 7;
     this.comboBoxChartType.SelectedIndexChanged += new System.EventHandler(this.comboBoxChartType_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(99, 194);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(80, 23);
     this.label1.TabIndex  = 7;
     this.label1.Text      = "Chart &Type:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.Add(this.textBoxCollectedLegend);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.comboBoxCollectedThreshold);
     this.panel1.Controls.Add(this.textBoxCollectedLabel);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.comboBoxCollectedColor);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.checkBoxCollectPieSlices);
     this.panel1.Controls.Add(this.checkBoxShowExploded);
     this.panel1.Controls.Add(this.comboBoxChartType);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Font     = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panel1.Location = new System.Drawing.Point(432, 69);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 288);
     this.panel1.TabIndex = 0;
     //
     // textBoxCollectedLegend
     //
     this.textBoxCollectedLegend.Font         = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxCollectedLegend.Location     = new System.Drawing.Point(184, 136);
     this.textBoxCollectedLegend.MaxLength    = 12;
     this.textBoxCollectedLegend.Name         = "textBoxCollectedLegend";
     this.textBoxCollectedLegend.Size         = new System.Drawing.Size(104, 22);
     this.textBoxCollectedLegend.TabIndex     = 5;
     this.textBoxCollectedLegend.TextChanged += new System.EventHandler(this.textBoxCollectedLegend_TextChanged);
     //
     // label2
     //
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.Font      = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(27, 136);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(152, 23);
     this.label2.TabIndex  = 5;
     this.label2.Text      = "Collected &Legend Text:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // PieCollected
     //
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.labelSampleComment);
     this.Controls.Add(this.chart1);
     this.Font  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name  = "PieCollected";
     this.Size  = new System.Drawing.Size(728, 368);
     this.Load += new System.EventHandler(this.PieChartType_Load);
     ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1  = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
     System.Windows.Forms.DataVisualization.Charting.Legend    legend1     = new System.Windows.Forms.DataVisualization.Charting.Legend();
     System.Windows.Forms.DataVisualization.Charting.Series    series1     = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint1  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 600);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint2  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 400);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint3  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 200);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint4  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 560);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint5  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 300);
     System.Windows.Forms.DataVisualization.Charting.Series    series2     = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint6  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 550);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint7  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 580);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint8  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 300);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint9  = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 425);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint10 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 400);
     System.Windows.Forms.DataVisualization.Charting.Series    series3     = new System.Windows.Forms.DataVisualization.Charting.Series();
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint11 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 500);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint12 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 500);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint13 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 350);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint14 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 300);
     System.Windows.Forms.DataVisualization.Charting.DataPoint dataPoint15 = new System.Windows.Forms.DataVisualization.Charting.DataPoint(0, 520);
     System.Windows.Forms.DataVisualization.Charting.Title     title1      = new System.Windows.Forms.DataVisualization.Charting.Title();
     System.ComponentModel.ComponentResourceManager            resources   = new System.ComponentModel.ComponentResourceManager(typeof(LegendCustomPosition));
     this.label9     = new System.Windows.Forms.Label();
     this.Chart1     = new System.Windows.Forms.DataVisualization.Charting.Chart();
     this.panel1     = new System.Windows.Forms.Panel();
     this.HeightEdit = new System.Windows.Forms.NumericUpDown();
     this.WidthEdit  = new System.Windows.Forms.NumericUpDown();
     this.YEdit      = new System.Windows.Forms.NumericUpDown();
     this.XEdit      = new System.Windows.Forms.NumericUpDown();
     this.label5     = new System.Windows.Forms.Label();
     this.label4     = 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();
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.HeightEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.WidthEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.YEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.XEdit)).BeginInit();
     this.SuspendLayout();
     //
     // label9
     //
     this.label9.Font     = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(16, 8);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(702, 40);
     this.label9.TabIndex = 0;
     this.label9.Text     = "This sample demonstrates how to position the legend by setting the coordinates of" +
                            " its width and height, relative to the top left corner. ";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // Chart1
     //
     this.Chart1.BackColor                   = System.Drawing.Color.WhiteSmoke;
     this.Chart1.BackGradientStyle           = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     this.Chart1.BackSecondaryColor          = System.Drawing.Color.White;
     this.Chart1.BorderlineColor             = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     this.Chart1.BorderlineDashStyle         = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
     this.Chart1.BorderlineWidth             = 2;
     this.Chart1.BorderSkin.SkinStyle        = System.Windows.Forms.DataVisualization.Charting.BorderSkinStyle.Emboss;
     chartArea1.Area3DStyle.Inclination      = 15;
     chartArea1.Area3DStyle.IsClustered      = true;
     chartArea1.Area3DStyle.IsRightAngleAxes = false;
     chartArea1.Area3DStyle.Perspective      = 10;
     chartArea1.Area3DStyle.Rotation         = 10;
     chartArea1.Area3DStyle.WallWidth        = 0;
     chartArea1.AxisX.LabelStyle.Font        = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisX.LineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisX.MajorGrid.LineColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.IsLabelAutoFit         = false;
     chartArea1.AxisY.LabelStyle.Font        = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     chartArea1.AxisY.LineColor              = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.AxisY.MajorGrid.LineColor    = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.BackColor          = System.Drawing.Color.Gainsboro;
     chartArea1.BackGradientStyle  = System.Windows.Forms.DataVisualization.Charting.GradientStyle.TopBottom;
     chartArea1.BackSecondaryColor = System.Drawing.Color.White;
     chartArea1.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     chartArea1.Name            = "Default";
     chartArea1.Position.Auto   = false;
     chartArea1.Position.Height = 62.58395F;
     chartArea1.Position.Width  = 88.77716F;
     chartArea1.Position.X      = 5.089137F;
     chartArea1.Position.Y      = 18.3307F;
     chartArea1.ShadowColor     = System.Drawing.Color.Transparent;
     this.Chart1.ChartAreas.Add(chartArea1);
     legend1.BackColor       = System.Drawing.Color.Transparent;
     legend1.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(5)))), ((int)(((byte)(100)))), ((int)(((byte)(146)))));
     legend1.Font            = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Bold);
     legend1.IsTextAutoFit   = false;
     legend1.LegendStyle     = System.Windows.Forms.DataVisualization.Charting.LegendStyle.Row;
     legend1.Name            = "Default";
     legend1.Position.Auto   = false;
     legend1.Position.Height = 9.511945F;
     legend1.Position.Width  = 59F;
     legend1.Position.X      = 6.966655F;
     legend1.Position.Y      = 82.79218F;
     this.Chart1.Legends.Add(legend1);
     this.Chart1.Location = new System.Drawing.Point(16, 56);
     this.Chart1.Name     = "Chart1";
     series1.ChartArea    = "Default";
     series1.Legend       = "Default";
     series1.Name         = "Default";
     series1.Points.Add(dataPoint1);
     series1.Points.Add(dataPoint2);
     series1.Points.Add(dataPoint3);
     series1.Points.Add(dataPoint4);
     series1.Points.Add(dataPoint5);
     series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
     series2.ChartArea  = "Default";
     series2.Legend     = "Default";
     series2.Name       = "Series2";
     series2.Points.Add(dataPoint6);
     series2.Points.Add(dataPoint7);
     series2.Points.Add(dataPoint8);
     series2.Points.Add(dataPoint9);
     series2.Points.Add(dataPoint10);
     series3.ChartArea = "Default";
     series3.Legend    = "Default";
     series3.Name      = "Series3";
     series3.Points.Add(dataPoint11);
     series3.Points.Add(dataPoint12);
     series3.Points.Add(dataPoint13);
     series3.Points.Add(dataPoint14);
     series3.Points.Add(dataPoint15);
     this.Chart1.Series.Add(series1);
     this.Chart1.Series.Add(series2);
     this.Chart1.Series.Add(series3);
     this.Chart1.Size     = new System.Drawing.Size(412, 296);
     this.Chart1.TabIndex = 1;
     title1.Font          = new System.Drawing.Font("Trebuchet MS", 14.25F, System.Drawing.FontStyle.Bold);
     title1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(59)))), ((int)(((byte)(105)))));
     title1.Name          = "Title1";
     title1.ShadowColor   = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     title1.ShadowOffset  = 3;
     title1.Text          = "Legend Positioning";
     this.Chart1.Titles.Add(title1);
     this.Chart1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Chart1_MouseDown);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.HeightEdit);
     this.panel1.Controls.Add(this.WidthEdit);
     this.panel1.Controls.Add(this.YEdit);
     this.panel1.Controls.Add(this.XEdit);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Location = new System.Drawing.Point(432, 56);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 296);
     this.panel1.TabIndex = 2;
     //
     // HeightEdit
     //
     this.HeightEdit.Location = new System.Drawing.Point(168, 104);
     this.HeightEdit.Name     = "HeightEdit";
     this.HeightEdit.Size     = new System.Drawing.Size(80, 22);
     this.HeightEdit.TabIndex = 7;
     this.HeightEdit.Value    = new decimal(new int[] {
         9,
         0,
         0,
         0
     });
     this.HeightEdit.ValueChanged += new System.EventHandler(this.Controls_ValueChanged);
     //
     // WidthEdit
     //
     this.WidthEdit.Location = new System.Drawing.Point(168, 72);
     this.WidthEdit.Name     = "WidthEdit";
     this.WidthEdit.Size     = new System.Drawing.Size(80, 22);
     this.WidthEdit.TabIndex = 5;
     this.WidthEdit.Value    = new decimal(new int[] {
         21,
         0,
         0,
         0
     });
     this.WidthEdit.ValueChanged += new System.EventHandler(this.Controls_ValueChanged);
     //
     // YEdit
     //
     this.YEdit.Location = new System.Drawing.Point(168, 40);
     this.YEdit.Name     = "YEdit";
     this.YEdit.Size     = new System.Drawing.Size(80, 22);
     this.YEdit.TabIndex = 3;
     this.YEdit.Value    = new decimal(new int[] {
         50,
         0,
         0,
         0
     });
     this.YEdit.ValueChanged += new System.EventHandler(this.Controls_ValueChanged);
     //
     // XEdit
     //
     this.XEdit.Location = new System.Drawing.Point(168, 8);
     this.XEdit.Name     = "XEdit";
     this.XEdit.Size     = new System.Drawing.Size(80, 22);
     this.XEdit.TabIndex = 1;
     this.XEdit.Value    = new decimal(new int[] {
         15,
         0,
         0,
         0
     });
     this.XEdit.ValueChanged += new System.EventHandler(this.Controls_ValueChanged);
     //
     // label5
     //
     this.label5.Location  = new System.Drawing.Point(16, 107);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(148, 16);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "&Height:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location  = new System.Drawing.Point(16, 75);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(148, 16);
     this.label4.TabIndex  = 4;
     this.label4.Text      = "&Width:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     this.label3.Location  = new System.Drawing.Point(16, 43);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(148, 16);
     this.label3.TabIndex  = 2;
     this.label3.Text      = "&Y:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(16, 11);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(148, 16);
     this.label2.TabIndex  = 0;
     this.label2.Text      = "&X:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(16, 360);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(712, 64);
     this.label1.TabIndex  = 3;
     this.label1.Text      = resources.GetString("label1.Text");
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // LegendCustomPosition
     //
     this.Controls.Add(this.label1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Chart1);
     this.Controls.Add(this.label9);
     this.Font  = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name  = "LegendCustomPosition";
     this.Size  = new System.Drawing.Size(728, 480);
     this.Load += new System.EventHandler(this.LegendCustomPosition_Load);
     ((System.ComponentModel.ISupportInitialize)(this.Chart1)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.HeightEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.WidthEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.YEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.XEdit)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(TimePicker));
     this.m_oBtnShowTimeSelector = new System.Windows.Forms.Button();
     this.m_oLnkHours            = new System.Windows.Forms.LinkLabel();
     this.m_oLnkMinutes          = new System.Windows.Forms.LinkLabel();
     this.m_oLblSeparator        = new System.Windows.Forms.Label();
     this.m_oLnkAMPM             = new System.Windows.Forms.LinkLabel();
     this.m_oPnlBackground       = new System.Windows.Forms.Panel();
     this.m_oChkEnable           = new System.Windows.Forms.CheckBox();
     this.m_oPnlBackground.SuspendLayout();
     this.SuspendLayout();
     //
     // m_oBtnShowTimeSelector
     //
     this.m_oBtnShowTimeSelector.Anchor   = System.Windows.Forms.AnchorStyles.Right;
     this.m_oBtnShowTimeSelector.Image    = ((System.Drawing.Bitmap)(resources.GetObject("m_oBtnShowTimeSelector.Image")));
     this.m_oBtnShowTimeSelector.Location = new System.Drawing.Point(114, 1);
     this.m_oBtnShowTimeSelector.Name     = "m_oBtnShowTimeSelector";
     this.m_oBtnShowTimeSelector.Size     = new System.Drawing.Size(18, 17);
     this.m_oBtnShowTimeSelector.TabIndex = 4;
     this.m_oBtnShowTimeSelector.Click   += new System.EventHandler(this.m_oBtnShowTimeSelector_Click);
     //
     // m_oLnkHours
     //
     this.m_oLnkHours.ActiveLinkColor   = System.Drawing.Color.Black;
     this.m_oLnkHours.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     this.m_oLnkHours.BackColor         = System.Drawing.Color.White;
     this.m_oLnkHours.DisabledLinkColor = System.Drawing.Color.Black;
     this.m_oLnkHours.LinkArea          = new System.Windows.Forms.LinkArea(0, 0);
     this.m_oLnkHours.LinkBehavior      = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.m_oLnkHours.LinkColor         = System.Drawing.Color.Black;
     this.m_oLnkHours.Location          = new System.Drawing.Point(29, 3);
     this.m_oLnkHours.Name             = "m_oLnkHours";
     this.m_oLnkHours.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.m_oLnkHours.Size             = new System.Drawing.Size(22, 14);
     this.m_oLnkHours.TabIndex         = 1;
     this.m_oLnkHours.Text             = "HH";
     this.m_oLnkHours.VisitedLinkColor = System.Drawing.Color.Black;
     this.m_oLnkHours.Click           += new System.EventHandler(this.m_oLnkHours_Click);
     //
     // m_oLnkMinutes
     //
     this.m_oLnkMinutes.ActiveLinkColor   = System.Drawing.Color.Black;
     this.m_oLnkMinutes.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     this.m_oLnkMinutes.BackColor         = System.Drawing.Color.White;
     this.m_oLnkMinutes.DisabledLinkColor = System.Drawing.Color.Black;
     this.m_oLnkMinutes.LinkArea          = new System.Windows.Forms.LinkArea(0, 0);
     this.m_oLnkMinutes.LinkBehavior      = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.m_oLnkMinutes.LinkColor         = System.Drawing.Color.Black;
     this.m_oLnkMinutes.Location          = new System.Drawing.Point(52, 3);
     this.m_oLnkMinutes.Name             = "m_oLnkMinutes";
     this.m_oLnkMinutes.RightToLeft      = System.Windows.Forms.RightToLeft.Yes;
     this.m_oLnkMinutes.Size             = new System.Drawing.Size(22, 14);
     this.m_oLnkMinutes.TabIndex         = 2;
     this.m_oLnkMinutes.Text             = "MM";
     this.m_oLnkMinutes.VisitedLinkColor = System.Drawing.Color.Black;
     this.m_oLnkMinutes.Click           += new System.EventHandler(this.m_oLnkMinutes_Click);
     //
     // m_oLblSeparator
     //
     this.m_oLblSeparator.Anchor      = System.Windows.Forms.AnchorStyles.Left;
     this.m_oLblSeparator.BackColor   = System.Drawing.Color.White;
     this.m_oLblSeparator.Location    = new System.Drawing.Point(51, 2);
     this.m_oLblSeparator.Name        = "m_oLblSeparator";
     this.m_oLblSeparator.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_oLblSeparator.Size        = new System.Drawing.Size(4, 14);
     this.m_oLblSeparator.TabIndex    = 9;
     this.m_oLblSeparator.Text        = ":";
     //
     // m_oLnkAMPM
     //
     this.m_oLnkAMPM.ActiveLinkColor   = System.Drawing.Color.Black;
     this.m_oLnkAMPM.Anchor            = System.Windows.Forms.AnchorStyles.Left;
     this.m_oLnkAMPM.BackColor         = System.Drawing.Color.White;
     this.m_oLnkAMPM.DisabledLinkColor = System.Drawing.Color.Black;
     this.m_oLnkAMPM.LinkArea          = new System.Windows.Forms.LinkArea(0, 0);
     this.m_oLnkAMPM.LinkBehavior      = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.m_oLnkAMPM.LinkColor         = System.Drawing.Color.Black;
     this.m_oLnkAMPM.Location          = new System.Drawing.Point(89, 3);
     this.m_oLnkAMPM.Name             = "m_oLnkAMPM";
     this.m_oLnkAMPM.Size             = new System.Drawing.Size(24, 14);
     this.m_oLnkAMPM.TabIndex         = 3;
     this.m_oLnkAMPM.Text             = "AM";
     this.m_oLnkAMPM.Visible          = false;
     this.m_oLnkAMPM.VisitedLinkColor = System.Drawing.Color.Black;
     this.m_oLnkAMPM.Click           += new System.EventHandler(this.m_oLnkAMPM_Click);
     //
     // m_oPnlBackground
     //
     this.m_oPnlBackground.Anchor      = (System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right);
     this.m_oPnlBackground.BackColor   = System.Drawing.Color.White;
     this.m_oPnlBackground.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.m_oPnlBackground.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_oChkEnable
     });
     this.m_oPnlBackground.Location = new System.Drawing.Point(0, -1);
     this.m_oPnlBackground.Name     = "m_oPnlBackground";
     this.m_oPnlBackground.Size     = new System.Drawing.Size(134, 20);
     this.m_oPnlBackground.TabIndex = 100;
     //
     // m_oChkEnable
     //
     this.m_oChkEnable.Location        = new System.Drawing.Point(5, 0);
     this.m_oChkEnable.Name            = "m_oChkEnable";
     this.m_oChkEnable.Size            = new System.Drawing.Size(14, 18);
     this.m_oChkEnable.TabIndex        = 0;
     this.m_oChkEnable.Text            = "checkBox1";
     this.m_oChkEnable.CheckedChanged += new System.EventHandler(this.m_oChkEnable_CheckedChanged);
     //
     // TimePicker
     //
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.m_oBtnShowTimeSelector,
         this.m_oLblSeparator,
         this.m_oLnkAMPM,
         this.m_oLnkMinutes,
         this.m_oLnkHours,
         this.m_oPnlBackground
     });
     this.Name = "TimePicker";
     this.Size = new System.Drawing.Size(134, 22);
     this.m_oPnlBackground.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 56
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.gridControl1          = new Syncfusion.Windows.Forms.Grid.GridControl();
     this.statsLabel            = new System.Windows.Forms.Label();
     this.gridCellIndexerButton = new Syncfusion.Windows.Forms.ButtonAdv();
     this.populateValuesbutton  = new Syncfusion.Windows.Forms.ButtonAdv();
     this.virtualButton         = new Syncfusion.Windows.Forms.ButtonAdv();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.applyButton = new Syncfusion.Windows.Forms.ButtonAdv();
     this.colNumeric  = new System.Windows.Forms.NumericUpDown();
     this.rowNumeric  = new System.Windows.Forms.NumericUpDown();
     this.panel1      = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.colNumeric)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rowNumeric)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // gridControl1
     //
     this.gridControl1.DpiAware = true;
     this.gridControl1.ActivateCurrentCellBehavior = Syncfusion.Windows.Forms.Grid.GridCellActivateAction.DblClickOnCell;
     this.gridControl1.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.gridControl1.BackColor              = System.Drawing.Color.White;
     this.gridControl1.BorderStyle            = System.Windows.Forms.BorderStyle.FixedSingle;
     this.gridControl1.DefaultGridBorderStyle = Syncfusion.Windows.Forms.Grid.GridBorderStyle.Solid;
     this.gridControl1.DefaultRowHeight       = (int)DpiAware.LogicalToDeviceUnits(18.0f);
     this.gridControl1.DefaultColWidth        = (int)DpiAware.LogicalToDeviceUnits(70.0f);
     this.gridControl1.ForeColor              = System.Drawing.Color.White;
     this.gridControl1.Location      = new System.Drawing.Point(23, 3);
     this.gridControl1.Name          = "gridControl1";
     this.gridControl1.RowCount      = 1000;
     this.gridControl1.Size          = new System.Drawing.Size(518, 345);
     this.gridControl1.SmartSizeBox  = false;
     this.gridControl1.TabIndex      = 0;
     this.gridControl1.Text          = "grid";
     this.gridControl1.ThemesEnabled = true;
     //
     // statsLabel
     //
     this.statsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.statsLabel.BackColor   = System.Drawing.Color.White;
     this.statsLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.statsLabel.FlatStyle   = System.Windows.Forms.FlatStyle.System;
     this.statsLabel.Font        = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.statsLabel.Location    = new System.Drawing.Point(559, 268);
     this.statsLabel.Name        = "statsLabel";
     this.statsLabel.Size        = new System.Drawing.Size(144, 80);
     this.statsLabel.TabIndex    = 0;
     this.statsLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // gridCellIndexerButton
     //
     this.gridCellIndexerButton.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.gridCellIndexerButton.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.gridCellIndexerButton.FlatStyle         = FlatStyle.Flat;
     this.gridCellIndexerButton.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.gridCellIndexerButton.BeforeTouchSize   = new System.Drawing.Size(120, 23);
     this.gridCellIndexerButton.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.gridCellIndexerButton.Font              = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridCellIndexerButton.ForeColor         = System.Drawing.Color.White;
     this.gridCellIndexerButton.IsBackStageButton = false;
     this.gridCellIndexerButton.Location          = new System.Drawing.Point(570, 139);
     this.gridCellIndexerButton.Name              = "gridCellIndexerButton";
     this.gridCellIndexerButton.Size              = new System.Drawing.Size(120, 23);
     this.gridCellIndexerButton.TabIndex          = 4;
     this.gridCellIndexerButton.Text              = "Grid Cell Indexer";
     this.gridCellIndexerButton.Click            += new System.EventHandler(this.gridCellIndexerButton_Click);
     //
     // populateValuesbutton
     //
     this.populateValuesbutton.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.populateValuesbutton.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.populateValuesbutton.FlatStyle         = FlatStyle.Flat;
     this.populateValuesbutton.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.populateValuesbutton.BeforeTouchSize   = new System.Drawing.Size(120, 23);
     this.populateValuesbutton.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.populateValuesbutton.Font              = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.populateValuesbutton.ForeColor         = System.Drawing.Color.White;
     this.populateValuesbutton.IsBackStageButton = false;
     this.populateValuesbutton.Location          = new System.Drawing.Point(570, 182);
     this.populateValuesbutton.Name              = "populateValuesbutton";
     this.populateValuesbutton.Size              = new System.Drawing.Size(120, 23);
     this.populateValuesbutton.TabIndex          = 5;
     this.populateValuesbutton.Text              = "PopulateValues ";
     this.populateValuesbutton.Click            += new System.EventHandler(this.populateValuesbutton_Click);
     //
     // virtualButton
     //
     this.virtualButton.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.virtualButton.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.virtualButton.FlatStyle         = FlatStyle.Flat;
     this.virtualButton.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.virtualButton.BeforeTouchSize   = new System.Drawing.Size(120, 23);
     this.virtualButton.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.virtualButton.Font              = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.virtualButton.ForeColor         = System.Drawing.Color.White;
     this.virtualButton.IsBackStageButton = false;
     this.virtualButton.Location          = new System.Drawing.Point(570, 226);
     this.virtualButton.Name              = "virtualButton";
     this.virtualButton.Size              = new System.Drawing.Size(120, 23);
     this.virtualButton.TabIndex          = 6;
     this.virtualButton.Text              = "Virtual Grid";
     this.virtualButton.Click            += new System.EventHandler(this.virtualButton_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.applyButton);
     this.groupBox1.Controls.Add(this.colNumeric);
     this.groupBox1.Controls.Add(this.rowNumeric);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(559, 0);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(144, 116);
     this.groupBox1.TabIndex  = 1;
     this.groupBox1.TabStop   = false;
     //
     // label2
     //
     this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label2.Location  = new System.Drawing.Point(8, 42);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(48, 20);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "Columns";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label1
     //
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Location  = new System.Drawing.Point(8, 20);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(32, 20);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Rows";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // applyButton
     //
     this.applyButton.Appearance        = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
     this.applyButton.FlatStyle         = FlatStyle.Flat;
     this.applyButton.BackColor         = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
     this.applyButton.BeforeTouchSize   = new System.Drawing.Size(128, 24);
     this.applyButton.BorderStyleAdv    = Syncfusion.Windows.Forms.ButtonAdvBorderStyle.RaisedInner;
     this.applyButton.Font              = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.applyButton.ForeColor         = System.Drawing.Color.White;
     this.applyButton.IsBackStageButton = false;
     this.applyButton.Location          = new System.Drawing.Point(8, 72);
     this.applyButton.Name              = "applyButton";
     this.applyButton.Size              = new System.Drawing.Size(128, 24);
     this.applyButton.TabIndex          = 3;
     this.applyButton.Text              = "Change Data";
     this.applyButton.Click            += new System.EventHandler(this.applyButton_Click);
     //
     // colNumeric
     //
     this.colNumeric.BackColor   = System.Drawing.Color.White;
     this.colNumeric.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.colNumeric.Increment   = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.colNumeric.Location = new System.Drawing.Point(80, 42);
     this.colNumeric.Maximum  = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.colNumeric.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.colNumeric.Name     = "colNumeric";
     this.colNumeric.Size     = new System.Drawing.Size(56, 20);
     this.colNumeric.TabIndex = 2;
     this.colNumeric.Value    = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.colNumeric.ValueChanged += new System.EventHandler(this.Numeric_ValueChanged);
     //
     // rowNumeric
     //
     this.rowNumeric.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.rowNumeric.Increment   = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.rowNumeric.Location = new System.Drawing.Point(80, 16);
     this.rowNumeric.Maximum  = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.rowNumeric.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.rowNumeric.Name     = "rowNumeric";
     this.rowNumeric.Size     = new System.Drawing.Size(56, 20);
     this.rowNumeric.TabIndex = 1;
     this.rowNumeric.Value    = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.rowNumeric.ValueChanged += new System.EventHandler(this.Numeric_ValueChanged);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.virtualButton);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.populateValuesbutton);
     this.panel1.Controls.Add(this.statsLabel);
     this.panel1.Controls.Add(this.gridCellIndexerButton);
     this.panel1.Controls.Add(this.gridControl1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(718, 365);
     this.panel1.TabIndex = 6;
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(718, 365);
     this.Controls.Add(this.panel1);
     this.MinimumSize = new System.Drawing.Size(300, 400);
     this.Name        = "Form1";
     this.Text        = "Grid Population";
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.colNumeric)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rowNumeric)).EndInit();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 57
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.pnlTreeview        = new System.Windows.Forms.Panel();
     this.treServers         = new System.Windows.Forms.TreeView();
     this.splitter1          = new System.Windows.Forms.Splitter();
     this.txtInput           = new System.Windows.Forms.TextBox();
     this.txtOutput          = new System.Windows.Forms.TextBox();
     this.PlayerTab          = new System.Windows.Forms.TabPage();
     this.label2             = new System.Windows.Forms.Label();
     this.txtCredits         = new System.Windows.Forms.TextBox();
     this.btnGetInfo         = new System.Windows.Forms.Button();
     this.label1             = new System.Windows.Forms.Label();
     this.txtOID             = new System.Windows.Forms.TextBox();
     this.lblPlayerName      = new System.Windows.Forms.Label();
     this.txtPlayerName      = new System.Windows.Forms.TextBox();
     this.tmrRead            = new System.Windows.Forms.Timer(this.components);
     this.label3             = new System.Windows.Forms.Label();
     this.txtLots            = new System.Windows.Forms.TextBox();
     this.tabMain            = new System.Windows.Forms.TabControl();
     this.PlayerTabs         = new System.Windows.Forms.TabPage();
     this.PlayerTab2         = new SwgCsTool.PlayerTab();
     this.tabAdmin1          = new System.Windows.Forms.TabPage();
     this.AdministrationTab1 = new SwgCsTool.AdministrationTab();
     this.tabPage1           = new System.Windows.Forms.TabPage();
     this.ItemMovementTab1   = new SwgCsTool.ItemMovementTab();
     this.StructuresTab      = new System.Windows.Forms.TabPage();
     this.StructuresListTab  = new SwgCsTool.StructuresListTab();
     this.PlayerTab1         = new SwgCsTool.PlayerTab();
     this.tabAdmin2          = new SwgCsTool.AdministrationTab();
     this.pnlTreeview.SuspendLayout();
     this.tabMain.SuspendLayout();
     this.PlayerTabs.SuspendLayout();
     this.tabAdmin1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.StructuresTab.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlTreeview
     //
     this.pnlTreeview.Controls.Add(this.treServers);
     this.pnlTreeview.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pnlTreeview.Location = new System.Drawing.Point(0, 0);
     this.pnlTreeview.Name     = "pnlTreeview";
     this.pnlTreeview.Size     = new System.Drawing.Size(144, 558);
     this.pnlTreeview.TabIndex = 0;
     //
     // treServers
     //
     this.treServers.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.treServers.CheckBoxes  = true;
     this.treServers.Location    = new System.Drawing.Point(8, 8);
     this.treServers.Name        = "treServers";
     this.treServers.Size        = new System.Drawing.Size(136, 544);
     this.treServers.TabIndex    = 0;
     this.treServers.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.treServers_AfterCheck);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(144, 0);
     this.splitter1.Name     = "splitter1";
     this.splitter1.Size     = new System.Drawing.Size(3, 558);
     this.splitter1.TabIndex = 1;
     this.splitter1.TabStop  = false;
     //
     // txtInput
     //
     this.txtInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.txtInput.Location  = new System.Drawing.Point(152, 536);
     this.txtInput.Name      = "txtInput";
     this.txtInput.Size      = new System.Drawing.Size(672, 20);
     this.txtInput.TabIndex  = 2;
     this.txtInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtInput_KeyPress);
     //
     // txtOutput
     //
     this.txtOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.txtOutput.Location   = new System.Drawing.Point(152, 456);
     this.txtOutput.Multiline  = true;
     this.txtOutput.Name       = "txtOutput";
     this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtOutput.Size       = new System.Drawing.Size(672, 80);
     this.txtOutput.TabIndex   = 3;
     //
     // PlayerTab
     //
     this.PlayerTab.Location = new System.Drawing.Point(0, 0);
     this.PlayerTab.Name     = "PlayerTab";
     this.PlayerTab.Size     = new System.Drawing.Size(200, 100);
     this.PlayerTab.TabIndex = 0;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 0;
     //
     // txtCredits
     //
     this.txtCredits.Location = new System.Drawing.Point(0, 0);
     this.txtCredits.Name     = "txtCredits";
     this.txtCredits.Size     = new System.Drawing.Size(100, 20);
     this.txtCredits.TabIndex = 0;
     //
     // btnGetInfo
     //
     this.btnGetInfo.Location = new System.Drawing.Point(0, 0);
     this.btnGetInfo.Name     = "btnGetInfo";
     this.btnGetInfo.Size     = new System.Drawing.Size(75, 23);
     this.btnGetInfo.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(0, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(100, 23);
     this.label1.TabIndex = 0;
     //
     // txtOID
     //
     this.txtOID.Location = new System.Drawing.Point(0, 0);
     this.txtOID.Name     = "txtOID";
     this.txtOID.Size     = new System.Drawing.Size(100, 20);
     this.txtOID.TabIndex = 0;
     //
     // lblPlayerName
     //
     this.lblPlayerName.Location = new System.Drawing.Point(0, 0);
     this.lblPlayerName.Name     = "lblPlayerName";
     this.lblPlayerName.Size     = new System.Drawing.Size(100, 23);
     this.lblPlayerName.TabIndex = 0;
     //
     // txtPlayerName
     //
     this.txtPlayerName.Location = new System.Drawing.Point(0, 0);
     this.txtPlayerName.Name     = "txtPlayerName";
     this.txtPlayerName.Size     = new System.Drawing.Size(100, 20);
     this.txtPlayerName.TabIndex = 0;
     //
     // tmrRead
     //
     this.tmrRead.Enabled = true;
     this.tmrRead.Tick   += new System.EventHandler(this.tmrRead_Tick);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(0, 0);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(100, 23);
     this.label3.TabIndex = 0;
     //
     // txtLots
     //
     this.txtLots.Location = new System.Drawing.Point(0, 0);
     this.txtLots.Name     = "txtLots";
     this.txtLots.Size     = new System.Drawing.Size(100, 20);
     this.txtLots.TabIndex = 0;
     //
     // tabMain
     //
     this.tabMain.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.tabMain.Controls.Add(this.PlayerTabs);
     this.tabMain.Controls.Add(this.tabAdmin1);
     this.tabMain.Controls.Add(this.tabPage1);
     this.tabMain.Controls.Add(this.StructuresTab);
     this.tabMain.Location      = new System.Drawing.Point(152, 8);
     this.tabMain.Name          = "tabMain";
     this.tabMain.SelectedIndex = 0;
     this.tabMain.Size          = new System.Drawing.Size(672, 440);
     this.tabMain.TabIndex      = 4;
     //
     // PlayerTabs
     //
     this.PlayerTabs.Controls.Add(this.PlayerTab2);
     this.PlayerTabs.Location = new System.Drawing.Point(4, 22);
     this.PlayerTabs.Name     = "PlayerTabs";
     this.PlayerTabs.Size     = new System.Drawing.Size(664, 414);
     this.PlayerTabs.TabIndex = 0;
     this.PlayerTabs.Text     = "PC Info";
     this.PlayerTabs.UseVisualStyleBackColor = true;
     //
     // PlayerTab2
     //
     this.PlayerTab2.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.PlayerTab2.Location = new System.Drawing.Point(0, 0);
     this.PlayerTab2.Name     = "PlayerTab2";
     this.PlayerTab2.Size     = new System.Drawing.Size(664, 416);
     this.PlayerTab2.TabIndex = 0;
     //
     // tabAdmin1
     //
     this.tabAdmin1.Controls.Add(this.AdministrationTab1);
     this.tabAdmin1.Location = new System.Drawing.Point(4, 22);
     this.tabAdmin1.Name     = "tabAdmin1";
     this.tabAdmin1.Size     = new System.Drawing.Size(664, 414);
     this.tabAdmin1.TabIndex = 1;
     this.tabAdmin1.Text     = "Administration";
     this.tabAdmin1.UseVisualStyleBackColor = true;
     //
     // AdministrationTab1
     //
     this.AdministrationTab1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.AdministrationTab1.Location = new System.Drawing.Point(0, 0);
     this.AdministrationTab1.Name     = "AdministrationTab1";
     this.AdministrationTab1.Size     = new System.Drawing.Size(664, 414);
     this.AdministrationTab1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.ItemMovementTab1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Size     = new System.Drawing.Size(664, 414);
     this.tabPage1.TabIndex = 2;
     this.tabPage1.Text     = "Item Movement";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // ItemMovementTab1
     //
     this.ItemMovementTab1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.ItemMovementTab1.Location = new System.Drawing.Point(0, 0);
     this.ItemMovementTab1.Name     = "ItemMovementTab1";
     this.ItemMovementTab1.Size     = new System.Drawing.Size(664, 414);
     this.ItemMovementTab1.TabIndex = 0;
     //
     // StructuresTab
     //
     this.StructuresTab.Controls.Add(this.StructuresListTab);
     this.StructuresTab.Location = new System.Drawing.Point(4, 22);
     this.StructuresTab.Name     = "StructuresTab";
     this.StructuresTab.Padding  = new System.Windows.Forms.Padding(3);
     this.StructuresTab.Size     = new System.Drawing.Size(664, 414);
     this.StructuresTab.TabIndex = 3;
     this.StructuresTab.Text     = "Structures";
     this.StructuresTab.UseVisualStyleBackColor = true;
     //
     // StructuresListTab
     //
     this.StructuresListTab.AutoSize     = true;
     this.StructuresListTab.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.StructuresListTab.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.StructuresListTab.Location     = new System.Drawing.Point(3, 3);
     this.StructuresListTab.Name         = "StructuresListTab";
     this.StructuresListTab.Size         = new System.Drawing.Size(658, 408);
     this.StructuresListTab.TabIndex     = 0;
     //
     // PlayerTab1
     //
     this.PlayerTab1.Location = new System.Drawing.Point(0, 0);
     this.PlayerTab1.Name     = "PlayerTab1";
     this.PlayerTab1.Size     = new System.Drawing.Size(400, 312);
     this.PlayerTab1.TabIndex = 0;
     //
     // tabAdmin2
     //
     this.tabAdmin2.Location = new System.Drawing.Point(4, 22);
     this.tabAdmin2.Name     = "tabAdmin2";
     this.tabAdmin2.Size     = new System.Drawing.Size(664, 414);
     this.tabAdmin2.TabIndex = 1;
     //
     // MainForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(832, 558);
     this.Controls.Add(this.tabMain);
     this.Controls.Add(this.txtOutput);
     this.Controls.Add(this.txtInput);
     this.Controls.Add(this.splitter1);
     this.Controls.Add(this.pnlTreeview);
     this.Name  = "MainForm";
     this.Text  = "SWG CS Tool";
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.pnlTreeview.ResumeLayout(false);
     this.tabMain.ResumeLayout(false);
     this.PlayerTabs.ResumeLayout(false);
     this.tabAdmin1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.StructuresTab.ResumeLayout(false);
     this.StructuresTab.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 58
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Splash));
     this.lblStatus        = new System.Windows.Forms.LabelTS();
     this.lblTimeRemaining = new System.Windows.Forms.LabelTS();
     this.pnlStatus        = new System.Windows.Forms.Panel();
     this.timer1           = new System.Windows.Forms.Timer(this.components);
     this.SuspendLayout();
     //
     // lblStatus
     //
     this.lblStatus.BackColor = System.Drawing.Color.Transparent;
     this.lblStatus.ForeColor = System.Drawing.Color.White;
     this.lblStatus.Location  = new System.Drawing.Point(0, 230);
     this.lblStatus.Name      = "lblStatus";
     this.lblStatus.Size      = new System.Drawing.Size(400, 16);
     this.lblStatus.TabIndex  = 0;
     this.lblStatus.Text      = "Status";
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lblTimeRemaining
     //
     this.lblTimeRemaining.BackColor = System.Drawing.Color.Transparent;
     this.lblTimeRemaining.ForeColor = System.Drawing.Color.White;
     this.lblTimeRemaining.Location  = new System.Drawing.Point(296, 232);
     this.lblTimeRemaining.Name      = "lblTimeRemaining";
     this.lblTimeRemaining.Size      = new System.Drawing.Size(100, 16);
     this.lblTimeRemaining.TabIndex  = 1;
     this.lblTimeRemaining.Text      = "Time";
     //
     // pnlStatus
     //
     this.pnlStatus.BackColor = System.Drawing.Color.Transparent;
     this.pnlStatus.Location  = new System.Drawing.Point(50, 190);
     this.pnlStatus.Name      = "pnlStatus";
     this.pnlStatus.Size      = new System.Drawing.Size(300, 24);
     this.pnlStatus.TabIndex  = 2;
     this.pnlStatus.Paint    += new System.Windows.Forms.PaintEventHandler(this.pnlStatus_Paint);
     //
     // timer1
     //
     this.timer1.Enabled = true;
     this.timer1.Tick   += new System.EventHandler(this.timer1_Tick);
     //
     // Splash
     //
     this.AutoScale         = false;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackgroundImage   = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize        = new System.Drawing.Size(400, 250);
     this.Controls.Add(this.pnlStatus);
     this.Controls.Add(this.lblTimeRemaining);
     this.Controls.Add(this.lblStatus);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "Splash";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Splash";
     this.ResumeLayout(false);
 }
Exemplo n.º 59
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_usernameTextbox    = new System.Windows.Forms.TextBox();
     this.m_userNameLabel      = new System.Windows.Forms.Label();
     this.m_messageTextbox     = new System.Windows.Forms.TextBox();
     this.m_messageLabel       = new System.Windows.Forms.Label();
     this.m_messages           = new System.Windows.Forms.ListBox();
     this.m_userNamePanel      = new System.Windows.Forms.Panel();
     this.m_constatus          = new System.Windows.Forms.Label();
     this.m_statusLabel        = new System.Windows.Forms.Label();
     this.m_disconnectbutton   = new System.Windows.Forms.Button();
     this.m_connectButton      = new System.Windows.Forms.Button();
     this.m_sendMsgPanel       = new System.Windows.Forms.Panel();
     this.m_sendMsgButton      = new System.Windows.Forms.Button();
     this.m_sendMsgAsyncButton = new System.Windows.Forms.Button();
     this.m_userNamePanel.SuspendLayout();
     this.m_sendMsgPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // m_usernameTextbox
     //
     this.m_usernameTextbox.Location  = new System.Drawing.Point(120, 16);
     this.m_usernameTextbox.MaxLength = 50;
     this.m_usernameTextbox.Name      = "m_usernameTextbox";
     this.m_usernameTextbox.Size      = new System.Drawing.Size(408, 20);
     this.m_usernameTextbox.TabIndex  = 0;
     this.m_usernameTextbox.Text      = "";
     this.m_usernameTextbox.WordWrap  = false;
     //
     // m_userNameLabel
     //
     this.m_userNameLabel.Location = new System.Drawing.Point(8, 16);
     this.m_userNameLabel.Name     = "m_userNameLabel";
     this.m_userNameLabel.Size     = new System.Drawing.Size(100, 16);
     this.m_userNameLabel.TabIndex = 1;
     this.m_userNameLabel.Text     = "User name:";
     //
     // m_messageTextbox
     //
     this.m_messageTextbox.Location = new System.Drawing.Point(16, 48);
     this.m_messageTextbox.Name     = "m_messageTextbox";
     this.m_messageTextbox.Size     = new System.Drawing.Size(520, 20);
     this.m_messageTextbox.TabIndex = 2;
     this.m_messageTextbox.Text     = "";
     //
     // m_messageLabel
     //
     this.m_messageLabel.Location = new System.Drawing.Point(16, 8);
     this.m_messageLabel.Name     = "m_messageLabel";
     this.m_messageLabel.TabIndex = 3;
     this.m_messageLabel.Text     = "message to send:";
     //
     // m_messages
     //
     this.m_messages.Location = new System.Drawing.Point(8, 248);
     this.m_messages.Name     = "m_messages";
     this.m_messages.Size     = new System.Drawing.Size(536, 355);
     this.m_messages.TabIndex = 4;
     this.m_messages.TabStop  = false;
     //
     // m_userNamePanel
     //
     this.m_userNamePanel.Controls.Add(this.m_constatus);
     this.m_userNamePanel.Controls.Add(this.m_statusLabel);
     this.m_userNamePanel.Controls.Add(this.m_disconnectbutton);
     this.m_userNamePanel.Controls.Add(this.m_connectButton);
     this.m_userNamePanel.Controls.Add(this.m_userNameLabel);
     this.m_userNamePanel.Controls.Add(this.m_usernameTextbox);
     this.m_userNamePanel.Location = new System.Drawing.Point(8, 16);
     this.m_userNamePanel.Name     = "m_userNamePanel";
     this.m_userNamePanel.Size     = new System.Drawing.Size(544, 88);
     this.m_userNamePanel.TabIndex = 5;
     //
     // m_constatus
     //
     this.m_constatus.Location = new System.Drawing.Point(296, 56);
     this.m_constatus.Name     = "m_constatus";
     this.m_constatus.TabIndex = 5;
     this.m_constatus.Text     = NOT_CONNECTED_INFO;
     //
     // m_statusLabel
     //
     this.m_statusLabel.Location = new System.Drawing.Point(232, 56);
     this.m_statusLabel.Name     = "m_statusLabel";
     this.m_statusLabel.Size     = new System.Drawing.Size(48, 23);
     this.m_statusLabel.TabIndex = 4;
     this.m_statusLabel.Text     = "Status:";
     //
     // m_disconnectbutton
     //
     this.m_disconnectbutton.Location = new System.Drawing.Point(112, 56);
     this.m_disconnectbutton.Name     = "m_disconnectbutton";
     this.m_disconnectbutton.TabIndex = 3;
     this.m_disconnectbutton.Text     = "Disconnect";
     this.m_disconnectbutton.Click   += new System.EventHandler(this.m_disconnectbutton_Click);
     //
     // m_connectButton
     //
     this.m_connectButton.Location = new System.Drawing.Point(16, 56);
     this.m_connectButton.Name     = "m_connectButton";
     this.m_connectButton.TabIndex = 2;
     this.m_connectButton.Text     = "Connect";
     this.m_connectButton.Click   += new System.EventHandler(this.m_connectButton_Click);
     //
     // m_sendMsgPanel
     //
     this.m_sendMsgPanel.Controls.Add(this.m_sendMsgButton);
     this.m_sendMsgPanel.Controls.Add(this.m_sendMsgAsyncButton);
     this.m_sendMsgPanel.Controls.Add(this.m_messageLabel);
     this.m_sendMsgPanel.Controls.Add(this.m_messageTextbox);
     this.m_sendMsgPanel.Location = new System.Drawing.Point(8, 120);
     this.m_sendMsgPanel.Name     = "m_sendMsgPanel";
     this.m_sendMsgPanel.Size     = new System.Drawing.Size(544, 112);
     this.m_sendMsgPanel.TabIndex = 6;
     //
     // m_sendMsgButton
     //
     this.m_sendMsgButton.Location = new System.Drawing.Point(16, 80);
     this.m_sendMsgButton.Name     = "m_sendMsgButton";
     this.m_sendMsgButton.Size     = new System.Drawing.Size(96, 23);
     this.m_sendMsgButton.TabIndex = 4;
     this.m_sendMsgButton.Text     = "Send message";
     this.m_sendMsgButton.Click   += new System.EventHandler(this.m_sendMsgButton_Click);
     //
     // m_sendMsgAsyncButton
     //
     this.m_sendMsgAsyncButton.Location = new System.Drawing.Point(120, 80);
     this.m_sendMsgAsyncButton.Name     = "m_sendMsgAsyncButton";
     this.m_sendMsgAsyncButton.Size     = new System.Drawing.Size(96, 23);
     this.m_sendMsgAsyncButton.TabIndex = 7;
     this.m_sendMsgAsyncButton.Text     = "Send msg async";
     this.m_sendMsgAsyncButton.Click   += new System.EventHandler(this.m_sendMsgAsyncButton_Click);
     //
     // Chatform
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(560, 613);
     this.Controls.Add(this.m_sendMsgPanel);
     this.Controls.Add(this.m_userNamePanel);
     this.Controls.Add(this.m_messages);
     this.Name     = "Chatform";
     this.Text     = "chatclient";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.Chatform_Closing);
     this.m_userNamePanel.ResumeLayout(false);
     this.m_sendMsgPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 60
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.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Node2");
     System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Node1", new System.Windows.Forms.TreeNode[] {
         treeNode1
     });
     System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
         treeNode2
     });
     this.panel1          = new System.Windows.Forms.Panel();
     this.projectLabel    = new System.Windows.Forms.Label();
     this.projectName     = new System.Windows.Forms.TextBox();
     this.label1          = new System.Windows.Forms.Label();
     this.textBox1        = new System.Windows.Forms.TextBox();
     this.panel2          = new System.Windows.Forms.Panel();
     this.errorLabel      = new System.Windows.Forms.Label();
     this.cancelBtn       = new System.Windows.Forms.Button();
     this.selectBtn       = new System.Windows.Forms.Button();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.label2          = new System.Windows.Forms.Label();
     this.projectTypeList = new System.Windows.Forms.CheckedListBox();
     this.treeView1       = new System.Windows.Forms.TreeView();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.projectLabel);
     this.panel1.Controls.Add(this.projectName);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(6, 6);
     this.panel1.Name     = "panel1";
     this.panel1.Padding  = new System.Windows.Forms.Padding(10);
     this.panel1.Size     = new System.Drawing.Size(835, 83);
     this.panel1.TabIndex = 0;
     //
     // projectLabel
     //
     this.projectLabel.Location = new System.Drawing.Point(13, 13);
     this.projectLabel.Name     = "projectLabel";
     this.projectLabel.Size     = new System.Drawing.Size(104, 26);
     this.projectLabel.TabIndex = 3;
     this.projectLabel.Text     = "Project Name";
     //
     // projectName
     //
     this.projectName.Location = new System.Drawing.Point(123, 13);
     this.projectName.Name     = "projectName";
     this.projectName.Size     = new System.Drawing.Size(425, 22);
     this.projectName.TabIndex = 2;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(13, 47);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(104, 26);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Full Path";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(123, 47);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(425, 22);
     this.textBox1.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.AutoScroll = true;
     this.panel2.Controls.Add(this.errorLabel);
     this.panel2.Controls.Add(this.cancelBtn);
     this.panel2.Controls.Add(this.selectBtn);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(6, 268);
     this.panel2.Name     = "panel2";
     this.panel2.Padding  = new System.Windows.Forms.Padding(10);
     this.panel2.Size     = new System.Drawing.Size(835, 55);
     this.panel2.TabIndex = 1;
     //
     // errorLabel
     //
     this.errorLabel.AutoSize  = true;
     this.errorLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.errorLabel.ForeColor = System.Drawing.Color.Red;
     this.errorLabel.Location  = new System.Drawing.Point(14, 14);
     this.errorLabel.Name      = "errorLabel";
     this.errorLabel.Size      = new System.Drawing.Size(0, 17);
     this.errorLabel.TabIndex  = 4;
     //
     // cancelBtn
     //
     this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelBtn.Dock         = System.Windows.Forms.DockStyle.Right;
     this.cancelBtn.Location     = new System.Drawing.Point(735, 10);
     this.cancelBtn.Name         = "cancelBtn";
     this.cancelBtn.Size         = new System.Drawing.Size(90, 35);
     this.cancelBtn.TabIndex     = 3;
     this.cancelBtn.Text         = "Cancel";
     this.cancelBtn.Click       += new System.EventHandler(this.cancelBtn_Click);
     //
     // selectBtn
     //
     this.selectBtn.Location = new System.Drawing.Point(624, 10);
     this.selectBtn.Name     = "selectBtn";
     this.selectBtn.Size     = new System.Drawing.Size(90, 35);
     this.selectBtn.TabIndex = 2;
     this.selectBtn.Text     = "Select";
     this.selectBtn.Click   += new System.EventHandler(this.selectBtn_Click);
     //
     // 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;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(6, 89);
     this.splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.label2);
     this.splitContainer1.Panel1.Controls.Add(this.projectTypeList);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.treeView1);
     this.splitContainer1.Size             = new System.Drawing.Size(835, 179);
     this.splitContainer1.SplitterDistance = 278;
     this.splitContainer1.TabIndex         = 1;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(116, 24);
     this.label2.TabIndex = 1;
     this.label2.Text     = "Project Type";
     //
     // projectTypeList
     //
     this.projectTypeList.BackColor         = System.Drawing.SystemColors.MenuBar;
     this.projectTypeList.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this.projectTypeList.CheckOnClick      = true;
     this.projectTypeList.Font              = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.projectTypeList.FormattingEnabled = true;
     this.projectTypeList.Items.AddRange(new object[] {
         "Form Designer",
         "Database Designer",
         "Workflow Designer"
     });
     this.projectTypeList.Location         = new System.Drawing.Point(4, 27);
     this.projectTypeList.Name             = "projectTypeList";
     this.projectTypeList.Size             = new System.Drawing.Size(271, 132);
     this.projectTypeList.TabIndex         = 0;
     this.projectTypeList.ThreeDCheckBoxes = true;
     //
     // treeView1
     //
     this.treeView1.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList  = this.imageList1;
     this.treeView1.ImeMode    = System.Windows.Forms.ImeMode.NoControl;
     this.treeView1.Location   = new System.Drawing.Point(0, 0);
     this.treeView1.Name       = "treeView1";
     treeNode1.Name            = "";
     treeNode1.Text            = "Node2";
     treeNode2.Name            = "";
     treeNode2.Text            = "Node1";
     treeNode3.Name            = "";
     treeNode3.Text            = "Node0";
     this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode3
     });
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size          = new System.Drawing.Size(553, 179);
     this.treeView1.TabIndex      = 0;
     this.treeView1.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeView1_BeforeExpand);
     this.treeView1.BeforeSelect += new System.Windows.Forms.TreeViewCancelEventHandler(this.treeView1_BeforeSelect);
     //
     // FolderSelect
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(847, 329);
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(276, 346);
     this.Name          = "FolderSelect";
     this.Padding       = new System.Windows.Forms.Padding(6);
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.Text          = "Select Project";
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }