Esempio n. 1
1
 // создает элементы
 public void InitPictures()
 {
     box = new PictureBox[width, height];
     int bw, bh;
     bw = panel.Width / width;
     bh = panel.Height / height;
     if (bw < bh)
         bh = bw;
     else
         bw = bh;
     box = new PictureBox[width, height];
     panel.Controls.Clear();
     for (int x = 0; x < width; x++)
         for (int y = 0; y < height; y++)
         {
             PictureBox picture = new PictureBox();
             picture.BackColor = System.Drawing.Color.Transparent;
             picture.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
             picture.Location = new System.Drawing.Point(x * (bw - 1), y * (bh - 1));
             picture.Size = new System.Drawing.Size(bw, bh);
             picture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
             picture.MouseClick += new System.Windows.Forms.MouseEventHandler(Picture_MouseClick);
             picture.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(Picture_MouseDorbleClick);
             picture.Tag = new Place(x, y);
             panel.Controls.Add(picture);
             box[x, y] = picture;
         }
 }
 /// <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(Splash));
         this.pictureBox1 = new System.Windows.Forms.PictureBox();
         this.timer1 = new System.Windows.Forms.Timer(this.components);
         this.SuspendLayout();
         //
         // pictureBox1
         //
         this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
         this.pictureBox1.Image = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
         this.pictureBox1.Name = "pictureBox1";
         this.pictureBox1.Size = new System.Drawing.Size(632, 416);
         this.pictureBox1.TabIndex = 0;
         this.pictureBox1.TabStop = false;
         //
         // Splash
         //
         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
         this.ClientSize = new System.Drawing.Size(632, 416);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                       this.pictureBox1});
         this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
         this.Name = "Splash";
         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
         this.Text = "Splash";
         this.ResumeLayout(false);
 }
Esempio n. 3
1
 public void Set(int index)
 {
     indexx = index;
     pictureBox1.ImageLocation = Data.Entries[index].ImageURL;
     label1.Text = Data.Entries[index].Name;
     pictureBox1.Load();
     int tmp = Data.Entries[index].Difficulty;
     while (tmp != 0)
     {
         PictureBox p = new PictureBox();
         p.ImageLocation = "http://i.imgur.com/0hzGJrP.png";
         p.SizeMode = PictureBoxSizeMode.CenterImage;
         p.Anchor = AnchorStyles.None;
         Size size = new Size();
         size.Height = 10;
         size.Width = 8;
         p.Size = size;
         flowLayoutPanel1.Controls.Add(p);
         tmp--;
     }
     if (Data.Entries[index].Enabled)
     {
         panel1.BackColor = System.Drawing.SystemColors.ActiveCaption;
     }
     else
     {
         panel1.BackColor = System.Drawing.SystemColors.ControlLightLight;
     }
 }
Esempio n. 4
1
 public void DisplayPicture(Bitmap img, PictureBox picBox)
 {
     picBox.Invoke(new EventHandler(delegate
     {
         picBox.Image = img;
     }));
 }
Esempio n. 5
1
        void client_DownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e)
        {
            if (e.Cancelled || e.Error != null)
            {
                return;
            }

            int width = 200;
            int height = 200;

            if (e.UserState != null)
            {
                FlickrNet.Photo photo = (FlickrNet.Photo)e.UserState;

                width = photo.SmallWidth.HasValue ? photo.SmallWidth.Value : width;
                height = photo.SmallHeight.HasValue ? photo.SmallHeight.Value : height;
            }

            byte[] imageData = e.Result;
            PictureBox pictureBox = new PictureBox();
            pictureBox.SizeMode = PictureBoxSizeMode.StretchImage;
            pictureBox.Size = new Size(width, height);

            using (MemoryStream stream = new MemoryStream(imageData))
            {
                pictureBox.Image = Image.FromStream(stream);
            }

            progressBar1.PerformStep();

            flowLayoutPanel1.Controls.Add(pictureBox);
        }
        //�ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡι��캯��
        public VerifyPictureMaker(int width, int height, PictureBox target)
        {
            m_obPic = new Bitmap(width, height, PixelFormat.Format24bppRgb);
            Graphics g = Graphics.FromImage(m_obPic);
            g.Clear(Color.White);
            if (target != null)
            {
                target.Width = width;
                target.Height = height;
                target.Image = m_obPic;
            }
            //�ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡα�������
            for (int i = 0; i < 25; i++)
            {
                int x1 = m_obRandom.Next(m_obPic.Width);
                int x2 = m_obRandom.Next(m_obPic.Width);
                int y1 = m_obRandom.Next(m_obPic.Height);
                int y2 = m_obRandom.Next(m_obPic.Height);
                g.DrawLine(new Pen(Color.Silver), x1, y1, x2, y2);
            }
            //�ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ��ַ�����
            Font font = new Font("Arial", 12, (FontStyle.Bold | FontStyle.Italic));

            string code = getVerifyCode(5);
            LinearGradientBrush brush
                = new LinearGradientBrush(new Rectangle(0, 0, m_obPic.Width, m_obPic.Height), Color.Blue, Color.DarkRed, 1.2f, true);
            g.DrawString(code, font, brush, 2, 0);
            //�ΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡΡ�ǰ������
            for (int i = 0; i < 100; i++)
            {
                int x = m_obRandom.Next(m_obPic.Width);
                int y = m_obRandom.Next(m_obPic.Height);
                m_obPic.SetPixel(x, y, Color.FromArgb(m_obRandom.Next()));
            }
        }
Esempio n. 7
1
        /// <summary>
        /// Initializes the view.
        /// </summary>
        /// <param name="width">The width.</param>
        /// <param name="height">The height.</param>
        public void InitializeView(int width, int height)
        {
            draggedPictureBox = new PictureBox();
            draggedPictureBox.Size = new System.Drawing.Size(PICTURE_BOX_SIZE, PICTURE_BOX_SIZE);
            draggedPictureBox.BackColor = Color.Transparent;
            draggedPictureBox.Visible = false;
            pnlDraw.Controls.Add(draggedPictureBox);
            pictureBoxes = new PictureBox[height][];
            for (int y = 0; y < height; y++)
            {
                pictureBoxes[y] = new PictureBox[width];
                for (int x = 0; x < width; x++)
                {
                    pictureBoxes[y][x] = new PictureBox();
                    pictureBoxes[y][x].SetBounds(x * PICTURE_BOX_SIZE, y * PICTURE_BOX_SIZE, PICTURE_BOX_SIZE, PICTURE_BOX_SIZE);
                    pictureBoxes[y][x].BackgroundImageLayout = ImageLayout.Center;
                    pictureBoxes[y][x].SizeMode = PictureBoxSizeMode.CenterImage;

                    PictureBox objectBox = new PictureBox();
                    objectBox.Parent = pictureBoxes[y][x];
                    objectBox.BackColor = Color.Transparent;
                    objectBox.Size = new System.Drawing.Size(32, 32);
                    objectBox.SizeMode = PictureBoxSizeMode.CenterImage;
                    objectBox.Location = new System.Drawing.Point((pictureBoxes[y][x].Size.Width - objectBox.Size.Width) / 2, (pictureBoxes[y][x].Size.Height - objectBox.Size.Height) / 2);
                    pictureBoxes[y][x].Controls.Add(objectBox);

                    pnlDraw.Controls.Add(pictureBoxes[y][x]);
                }
            }
            pnlDraw.AutoScroll = true;
        }
Esempio n. 8
1
        public VideoRender(PictureBox view)
        {
            this.view = view;
			this.bufferContext = BufferedGraphicsManager.Current;
            this.foreground = new SolidBrush(Color.ForestGreen);
            this.background = new SolidBrush(Color.Black);
        }
 public RadarHandler(PictureBox _radarPictureBox)
 {
     radarPictureBox = _radarPictureBox;
     radar = new Radar(radarPictureBox.Width);
     StaticRadarItems = new SquareRadarItem[3];
     for (int i = 0; i < 3; i++)
     {
         StaticRadarItems[i] = new SquareRadarItem(i, 8, 0, 0);
     }
     StaticRadarItems[2].Azimuth = 45;
     StaticRadarItems[0].Azimuth = 315;
     DynamicRadarItems = new CircleRadarItem[9];
     for (int i = 0; i < 9; i++)
     {
         DynamicRadarItems[i] = new CircleRadarItem(i + 5, 8, 0, 0);
     }
     DynamicRadarItems[0].Azimuth = 360 - 90;
     DynamicRadarItems[1].Azimuth = 360 - 67;
     DynamicRadarItems[2].Azimuth = 360 - 45;
     DynamicRadarItems[3].Azimuth = 360 - 22;
     DynamicRadarItems[4].Azimuth = 0;
     DynamicRadarItems[5].Azimuth = 22;
     DynamicRadarItems[6].Azimuth = 45;
     DynamicRadarItems[7].Azimuth = 67;
     DynamicRadarItems[8].Azimuth = 90;
     RearRadarItem = new TriangleRadarItem(4, 8, 180, 0);
     radar.ImageUpdate += new ImageUpdateHandler(_radar_ImageUpdate);
     radar.DrawScanInterval = 60;
     radar.DrawScanLine = true;
 }
Esempio n. 10
1
        public static void AddSkyboxByDirectory(string dir)
        {
            SRTSkybox skybox = new SRTSkybox();
            skybox.Name = Path.GetFileName(dir);

            IEnumerator<string> fileNameEnumerator = Directory.EnumerateFiles(dir, "*up.vmt").GetEnumerator();
            fileNameEnumerator.MoveNext();
            skybox.FileName = fileNameEnumerator.Current.Substring(0, fileNameEnumerator.Current.Length - 6);
            fileNameEnumerator.Dispose();

            string previewFileName = dir + "\\preview.png";

            if (File.Exists(previewFileName))
                skybox.PreviewImage = Image.FromFile(previewFileName);
            else if (File.Exists(vtfcmdPath))
                skybox.PreviewImage = GenerateSkyboxPreview(skybox, previewFileName);
            else if (File.Exists(previewFileName + ".old"))
                skybox.PreviewImage = Image.FromFile(previewFileName + ".old");
            else
                skybox.PreviewImage = GenerateDefaultSkyboxPreview(skybox, previewFileName + ".old");

            Skyboxes.Add(skybox);

            PictureBox pictureBox = new PictureBox();
            pictureBox.Size = new Size(600, 150);
            pictureBox.Image = skybox.PreviewImage;
            pictureBox.Margin = new Padding(0);
            pictureBox.Tag = skybox;
            pictureBox.Click += SkyboxForm.PictureBox_Click;

            SkyboxForm.FlowLayoutPanel.Controls.Add(pictureBox);
        }
Esempio n. 11
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";
 }
Esempio n. 12
1
        private void Form1_Load(object sender, EventArgs e)
        {
            picboxes = new System.Windows.Forms.PictureBox[64];

            int px = 0, py=0;

            for (int i = 0; i < 64; ++i)
            {
                picboxes[i] = new System.Windows.Forms.PictureBox();
                picboxes[i].Width = 32;
                picboxes[i].Height = 32;
                picboxes[i].Left = px;
                picboxes[i].Top = py;

                picboxes[i].Click += new System.EventHandler(PicBoxClick);
                panel1.Controls.Add(picboxes[i]);

                px += 40;
                if (px >= 40 * 8)
                {
                    px = 0;
                    py += 40;
                }
            }

            colorize();
        }
Esempio n. 13
1
 /// <summary>
 /// Creates a new control instance.
 /// </summary>
 public NotificationPanel()
 {
     this.progressBar = new ProgressBar();
     this.labelProgress = new Label();
     this.pictureProgress = new PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureProgress)).BeginInit();
     this.SuspendLayout();
     // progressBar
     this.progressBar.Location = new Point(62, 40);
     this.progressBar.Size = new Size(730, 16);
     this.progressBar.TabIndex = 1;
     this.progressBar.Visible = false;
     // labelProgress
     this.labelProgress.Location = new Point(62, 8);
     this.labelProgress.Size = new Size(730, 29);
     this.labelProgress.TabIndex = 0;
     this.labelProgress.TextAlign = ContentAlignment.MiddleLeft;
     // pictureProgress
     this.pictureProgress.Location = new Point(8, 8);
     this.pictureProgress.Size = new Size(48, 48);
     this.pictureProgress.TabIndex = 3;
     this.pictureProgress.TabStop = false;
     // Control.
     this.AutoScaleDimensions = new SizeF(6F, 13F);
     this.AutoScaleMode = AutoScaleMode.Font;
     this.Controls.Add(this.progressBar);
     this.Controls.Add(this.labelProgress);
     this.Controls.Add(this.pictureProgress);
     this.MaximumSize = new Size(0, 64);
     this.MinimumSize = new Size(0, 64);
     this.Size = new Size(800, 64);
     ((System.ComponentModel.ISupportInitialize)(this.pictureProgress)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 14
0
        public static void InitializeButton(PictureBox pb, Bitmap normal, Bitmap highlight, Bitmap down, bool willChangeImages)
        {
            Int32 myTick = ticks++;
            pb.Image = normal;

            if (willChangeImages)
                pb.Tag = myTick;
            pb.MouseHover += delegate(object sender, EventArgs e)
            {
                if (pb.Tag is Int32 && (int)pb.Tag != myTick) return;
                pb.Image = highlight;
            };
            pb.MouseLeave += delegate(object sender, EventArgs e)
            {
                if (pb.Tag is Int32 && (int)pb.Tag != myTick) return;
                pb.Image = normal;
            };
            pb.MouseDown += delegate(object sender, MouseEventArgs e)
            {
                if (pb.Tag is Int32 && (int)pb.Tag != myTick) return;
                pb.Image = down;
            };
            pb.MouseUp += delegate(object sender, MouseEventArgs e)
            {
                if (pb.Tag is Int32 && (int)pb.Tag != myTick) return;
                pb.Image = highlight;
            };
        }
Esempio n. 15
0
		public osd_screen (int num, OSD aosd)
		{
			number=num;
			osd=aosd;
			
			num+=1;
			
			this.tabPage = new System.Windows.Forms.TabPage();		
			this.panelItems=new Panel[64];
			this.panelItems_default = new Panel[64];
			this.LIST_items=new System.Windows.Forms.TreeView();
			this.rbtSortCategory = new System.Windows.Forms.RadioButton();
            this.rbtSortAlphabetic = new System.Windows.Forms.RadioButton();
			this.groupBox = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.NUM_Y = new System.Windows.Forms.NumericUpDown();
            this.NUM_X = new System.Windows.Forms.NumericUpDown();
			this.pictureBox = new System.Windows.Forms.PictureBox();
			this.chkSign = new System.Windows.Forms.CheckBox();
			
			this.tabPage.SuspendLayout();
			this.groupBox.SuspendLayout();
			this.pictureBox.SuspendLayout();
		}
Esempio n. 16
0
 private void InitializeComponent()
 {
     this.picture = new System.Windows.Forms.PictureBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.list = new System.Windows.Forms.ListBox();
     ((System.ComponentModel.ISupportInitialize)(this.picture)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // picture
     //
     this.picture.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.picture.Dock = System.Windows.Forms.DockStyle.Fill;
     this.picture.Location = new System.Drawing.Point(0, 0);
     this.picture.Name = "picture";
     this.picture.Size = new System.Drawing.Size(811, 689);
     this.picture.TabIndex = 0;
     this.picture.TabStop = false;
     //
     // splitContainer1
     //
     this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.list);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.picture);
     this.splitContainer1.Size = new System.Drawing.Size(969, 693);
     this.splitContainer1.SplitterDistance = 150;
     this.splitContainer1.TabIndex = 2;
     //
     // list
     //
     this.list.Dock = System.Windows.Forms.DockStyle.Fill;
     this.list.FormattingEnabled = true;
     this.list.Location = new System.Drawing.Point(0, 0);
     this.list.Name = "list";
     this.list.Size = new System.Drawing.Size(146, 680);
     this.list.TabIndex = 0;
     this.list.SelectedIndexChanged += new System.EventHandler(this.list_SelectedIndexChanged);
     //
     // GdiForm
     //
     this.ClientSize = new System.Drawing.Size(969, 693);
     this.Controls.Add(this.splitContainer1);
     this.Name = "GdiForm";
     ((System.ComponentModel.ISupportInitialize)(this.picture)).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 17
0
        public Form1()
        {
            InitializeComponent();

            int x = 0, y = 0, width = 248, height = 250;

            PictureBox[,] pics = new PictureBox[5, 5];

            for (int i = 0; i < 5; i++)
            {
                for (int l = 0; l < 5; l++)
                {
                    pics[i, l] = new PictureBox();
                    pics[i, l].Left = x;
                    pics[i, l].Top = y;
                    pics[i, l].Width = width;
                    pics[i, l].Height = height;
                    pics[i, l].BackgroundImage = Image.FromFile("boll.png");
                    pics[i,l].Click += pxBlomma;

                    this.Controls.Add(pics[i, l]);

                    x += width;

                }
                y += height;
                x = 0;
            }
        }
Esempio n. 18
0
        /*
         * Click-Event des ChooseImageButtons
         */
        private void buttonImageBrowse_Click(object sender, EventArgs e)
        {
            if (openFileDialog == null)
                openFileDialog = new OpenFileDialog();
            if(openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                image = CreateBitmapImage(Image.FromFile(openFileDialog.FileName));
                textboxImagePath.Text = openFileDialog.FileName;
                if (picBoxWhole == null)
                {
                    picBoxWhole = new PictureBox();
                    picBoxWhole.Height  =   PuzzleBox.Height;
                    picBoxWhole.Width   =   PuzzleBox.Width;
                    PuzzleBox.Controls.Add(picBoxWhole);
                }

                splitImagesToPicBoxes();
                clearBox(picBoxes[15]);
                TurnCounter = 0;
                TurnCounterUpdate();
                if (game != null)
                {
                    fitPTtoItems();
                }
            }
        }
Esempio n. 19
0
        public void setZoomedImage(PictureBox reader, int delta, int X, int Y)
        {
            int pixelTranslationNum = NUM_OF_ZOOM_PIXELS * (CurrentZoomFactor + delta / 120);
            int newZoomWidth = ThisPicWidth + 30 * pixelTranslationNum;
            int newZoomHeight = ThisPicHeight + 30 *pixelTranslationNum;

            if(reader.Image != null &&
                newZoomWidth >= ThisPicWidth &&
                newZoomHeight >= ThisPicHeight) {

                CurrentZoomFactor += delta / 120;

                Bitmap newMap = new Bitmap(newZoomWidth,
                                           newZoomHeight,
                                           PixelFormat.Format24bppRgb);
                Graphics tempGraphics = Graphics.FromImage(newMap);

                tempGraphics.DrawImage(ThisPic,
                                       new Rectangle(new Point(0,0),
                                                     new Size(newZoomWidth,newZoomHeight)),

                                       new Rectangle(new Point(pixelTranslationNum,
                                                               pixelTranslationNum),
                                                     new Size(ThisPicWidth - 2*pixelTranslationNum ,
                                                              ThisPicHeight - 2*pixelTranslationNum)),
                                                              GraphicsUnit.Pixel);
                tempGraphics.Dispose();

                Image oldPic = reader.Image;
                if (oldPic != ThisPic) {
                    oldPic.Dispose();
                }
                reader.Image = newMap;
            }
        }
 public static void ShowImage(Bitmap bitmap)
 {
     var form = new Form { ClientSize = bitmap.Size };
      var pb = new PictureBox { Image = bitmap, SizeMode = PictureBoxSizeMode.AutoSize };
      form.Controls.Add(pb);
      form.Show();
 }
Esempio n. 21
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.canvas = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.canvas)).BeginInit();
            this.SuspendLayout();
            // 
            // canvas
            // 
            this.canvas.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.canvas.Location = new System.Drawing.Point(0, 0);
            this.canvas.Name = "canvas";
            this.canvas.Size = new System.Drawing.Size(624, 441);
            this.canvas.TabIndex = 0;
            this.canvas.TabStop = false;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Black;
            this.ClientSize = new System.Drawing.Size(624, 441);
            this.Controls.Add(this.canvas);
            this.Name = "MainForm";
            this.Text = "OpenMario";
            ((System.ComponentModel.ISupportInitialize)(this.canvas)).EndInit();
            this.ResumeLayout(false);

        }
Esempio n. 22
0
        public SkinManager(string filePath, PictureBox pictureBox)
        {
            _pictureBox = pictureBox;

            // Brushes
            _brushPerType = new Dictionary<ComponentType, Brush>
            {
                {ComponentType.Key, new SolidBrush(Color.FromArgb(Alpha, Color.Blue))},
                {ComponentType.Screen, new SolidBrush(Color.FromArgb(Alpha, Color.Red))},
                {ComponentType.Maximized, new SolidBrush(Color.FromArgb(Alpha, Color.Green))}
            };

            // Path
            SkinPath = filePath;

            _undo = new UndoRedoManager<Skin>(10);
            _skin = new Skin(SkinPath);
            _undo.SaveState(_skin);
            _undo.UndoRedoStateChanged += (o, args) => OnComponentsChanged();

            _pictureBox.Size = new Size(_skin.SkinSize.Width * 3, _skin.SkinSize.Height * 3);

            // PictureBox events
            pictureBox.Paint += (o, args) => Paint(args.Graphics);
            pictureBox.MouseDown += pictureBox_MouseDown;
            pictureBox.MouseUp += pictureBox_MouseUp;
            pictureBox.MouseLeave += pictureBox_MouseLeave;
            pictureBox.MouseMove += pictureBox_MouseMove;
        }
Esempio n. 23
0
 private void DisplayImage()
 {
     PictureBox pictureBox1 = new PictureBox();
     pictureBox1.Location = new Point();
     this.Controls.Add(pictureBox1);
     //pictureBox1.Load("Path to a image to display");
 }
Esempio n. 24
0
 private void Run(WebCameraControl wc, PictureBox pb1, PictureBox pb2)
 {
     while(true)
     {
         myEvent(wc, pb1, pb2);
     }
 }
        /// <summary>
        /// ChessBoardStatic
        /// </summary>
        /// <param name="aChessBoardBox"></param>
        /// <returns></returns>
        public ChessBoard(ChessBoardImageGenerator aChessBoardImageGenerator, PictureBox aPictureBox)
        {
            chessBoardImageGenerator = aChessBoardImageGenerator;

            if (aPictureBox.Handle == null)
            {
                throw new Exception("Bad PictureBox");
            }

            chessBoardBox = aPictureBox;

            squareList = new ArrayList();
            whitePieceList = new ArrayList();
            blackPieceList = new ArrayList();

            chessPieceFactory = new ChessPieceFactory();
            squareFactory = new ChessSquareFactory();
            squareLocator = new ChessSquareLocator();

            chessBoardInitializer = new ChessBoardInitializer(this,
                squareList, whitePieceList, blackPieceList, squareFactory, chessPieceFactory, squareLocator);

            chessBoardInitializer.Initialize();
            chessBoardBox.Paint += new PaintEventHandler(paint);

            chessLocationCalculatorFactory = new ChessLocationCalculatorFactory(this);
        }
Esempio n. 26
0
        public string AbrirGuardarImg(string LlaveImg, PictureBox Contenedor, string Ruta)
        {
            if (!(Contenedor.Image == null)) Contenedor.Image.Dispose();

            String Archivo = "";
            string NombreArchivo = "";

            var fdAttach = new OpenFileDialog();
            fdAttach.Filter = "Imagen|*.jpg;*.jpeg;*.gif;*.png;*.bmp;";
            //fdAttach.Filter = "Tipos de archivo|*.doc?;*.xls?;*.ppt?;*.pps?;*.pdf;*.txt;*.jpg;*.jpeg;*.gif;*.png;*.bmp;";
            fdAttach.Title = "Ruta del archivo a importar";
            if (fdAttach.ShowDialog() == DialogResult.OK)
                //if (fdAttach.ShowDialog(Principal.Instance) == DialogResult.OK)
                Archivo = fdAttach.FileName;
            fdAttach.Dispose();

            if (Archivo != "")
            {
                Bitmap Img;
                // string Ruta = RutaGlobal; //GlobalClass.ConfiguracionGlobal.pathImagenes;
                Ruta = Ruta + "\\(" + LlaveImg + ").jpg";
                var Cuadro = new System.Drawing.Size(130, 100);
                Img = (Bitmap)resizeImage(Image.FromFile(Archivo, true), Cuadro);
                saveJpeg(Ruta, Img, 150);
                NombreArchivo = fdAttach.FileName;
                NombreArchivo = NombreArchivo.Substring(NombreArchivo.LastIndexOf("\\") + 1).ToLower();
            }

            return NombreArchivo;
        }
Esempio n. 27
0
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            erasePanel();

            string selectedCategory = comboBox1.SelectedItem.ToString();
            List<Picture> otherUsersPicturesByCategory = ClientService.getPicturesByCategory(selectedCategory);
            otherUsersPicturesByCategory = otherUsersPicturesByCategory.FindAll(x => x.getOwner() !=  ClientService.getLoggedUsername());

            foreach (Picture userPicture in otherUsersPicturesByCategory)
            {
                PictureBox clonedpicturebox = new PictureBox();
                clonedpicturebox.Size = standardPictureSize;
                clonedpicturebox.Image = userPicture.getImage();
                clonedpicturebox.Location = new Point((column * clonedpicturebox.Width) + 20, (row * clonedpicturebox.Height) + 20);
                clonedpicturebox.DoubleClick += (someSender,model) => showPictureDetails(sender,userPicture);

                mainPanel.Controls.Add(clonedpicturebox);

                if (column >= maxColumn)
                {
                    column = 0;
                    row++;
                }
                else { column++; }
            }
        }
Esempio n. 28
0
        // freeze the form
        public void Freeze()
        {
            // Remember we have frozen the form once more
            // Do nothing if it was already frozen
            if (++FreezeCount > 1)
                return;

            Rectangle rect = form.ClientRectangle;
            if (rect.IsEmpty || form.WindowState == FormWindowState.Minimized)
                return;

            Point topLeft = form.PointToScreen(new Point(rect.Left, rect.Top));

            // Create a PictureBox that resizes with its contents
            pictureBox = new PictureBox();
            pictureBox.SizeMode = PictureBoxSizeMode.AutoSize;

            // create a bitmap as large as the form's client area and with same color depth
            using (Graphics frmGraphics = form.CreateGraphics()) {
                Bitmap bitmap = new Bitmap(rect.Width, rect.Height, frmGraphics);
                hBitmap = bitmap.GetHbitmap();
                pictureBox.Image = Image.FromHbitmap(hBitmap);
            }

            // copy the screen contents, from the form's client area to the hidden bitmap
            using (Graphics picGraphics = Graphics.FromImage(pictureBox.Image)) {
                picGraphics.CopyFromScreen(topLeft, Point.Empty, rect.Size, CopyPixelOperation.SourceCopy);
            }

            // Display the bitmap in the picture box, and show the picture box in front of all other controls
            form.Controls.Add(pictureBox);
            pictureBox.BringToFront();
        }
Esempio n. 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelCaption = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.pictureBox = new System.Windows.Forms.PictureBox();
     this.SuspendLayout();
     //
     // labelCaption
     //
     this.labelCaption.Location = new System.Drawing.Point(96, 16);
     this.labelCaption.Name = "labelCaption";
     this.labelCaption.Size = new System.Drawing.Size(256, 32);
     this.labelCaption.TabIndex = 0;
     this.labelCaption.Text = "HakInstaller {0} - Installs custom content in NWN modules";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(96, 56);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(256, 16);
     this.label2.TabIndex = 0;
     this.label2.Text = "(C) 2004 Bleedingedge (Mark Sironi)";
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button1.Location = new System.Drawing.Point(16, 88);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(72, 24);
     this.button1.TabIndex = 5;
     this.button1.Text = "&OK";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // pictureBox
     //
     this.pictureBox.Location = new System.Drawing.Point(24, 16);
     this.pictureBox.Name = "pictureBox";
     this.pictureBox.Size = new System.Drawing.Size(32, 32);
     this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox.TabIndex = 6;
     this.pictureBox.TabStop = false;
     //
     // AboutForm
     //
     this.AcceptButton = this.button1;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(360, 128);
     this.ControlBox = false;
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.labelCaption);
     this.Controls.Add(this.label2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "AboutForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "About ";
     this.ResumeLayout(false);
 }
        public static void DisplayImage(byte[,] ImageMatrix, PictureBox PicBox)
        {
            // Create Image:
            //==============
            int Height = ImageMatrix.GetLength(0);
            int Width = ImageMatrix.GetLength(1);

            Bitmap ImageBMP = new Bitmap(Width, Height, PixelFormat.Format24bppRgb);

            unsafe
            {
                BitmapData bmd = ImageBMP.LockBits(new Rectangle(0, 0, Width, Height), ImageLockMode.ReadWrite, ImageBMP.PixelFormat);
                int nWidth = 0;
                nWidth = Width * 3;
                int nOffset = bmd.Stride - nWidth;
                byte* p = (byte*)bmd.Scan0;
                for (int i = 0; i < Height; i++)
                {
                    for (int j = 0; j < Width; j++)
                    {
                        p[0] = p[1] = p[2] = ImageMatrix[i, j];
                        p += 3;
                    }

                    p += nOffset;
                }
                ImageBMP.UnlockBits(bmd);
            }
            PicBox.SizeMode = PictureBoxSizeMode.Zoom;
            PicBox.Image = ImageBMP;
        }
Esempio 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.htmluiControl1       = new Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl();
            this.contextMenu1         = new System.Windows.Forms.ContextMenuStrip();
            this.menuItem9            = new System.Windows.Forms.ToolStripMenuItem();
            this.panel1               = new System.Windows.Forms.Panel();
            this.panel8               = new System.Windows.Forms.Panel();
            this.button6              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.button1              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.textBox1             = new System.Windows.Forms.TextBox();
            this.button5              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.button4              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.button3              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.button2              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.panel2               = new System.Windows.Forms.Panel();
            this.panel6               = new System.Windows.Forms.Panel();
            this.button7              = new Syncfusion.Windows.Forms.ButtonAdv();
            this.imageList1           = new System.Windows.Forms.ImageList(this.components);
            this.panel7               = new System.Windows.Forms.Panel();
            this.pictureBox2          = new System.Windows.Forms.PictureBox();
            this.panel4               = new System.Windows.Forms.Panel();
            this.panel5               = new System.Windows.Forms.Panel();
            this.pictureBox1          = new System.Windows.Forms.PictureBox();
            this.panel3               = new System.Windows.Forms.Panel();
            this.toolTip1             = new System.Windows.Forms.ToolTip(this.components);
            this.saveFileDialog1      = new System.Windows.Forms.SaveFileDialog();
            this.openFileDialog1      = new System.Windows.Forms.OpenFileDialog();
            this.mainFrameBarManager1 = new Syncfusion.Windows.Forms.Tools.XPMenus.MainFrameBarManager(this);
            this.bar1           = new Syncfusion.Windows.Forms.Tools.XPMenus.Bar(this.mainFrameBarManager1, "HTMLUIChat");
            this.parentBarItem1 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
            this.barItem1       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem2       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem3       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem4       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.parentBarItem2 = new Syncfusion.Windows.Forms.Tools.XPMenus.ParentBarItem();
            this.barItem5       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            this.barItem6       = new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem();
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).BeginInit();
            this.panel1.SuspendLayout();
            this.panel8.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel6.SuspendLayout();
            this.panel7.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.panel4.SuspendLayout();
            this.panel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.panel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).BeginInit();
            this.SuspendLayout();
            //
            // htmluiControl1
            //
            this.htmluiControl1.AutoScroll                    = true;
            this.htmluiControl1.AutoScrollMinSize             = new System.Drawing.Size(376, 277);
            this.htmluiControl1.ContextMenuStrip              = this.contextMenu1;
            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(393, 292);
            this.htmluiControl1.TabIndex  = 0;
            this.htmluiControl1.Text      = resources.GetString("htmluiControl1.Text");
            this.toolTip1.SetToolTip(this.htmluiControl1, "HTMLUI Control");
            this.htmluiControl1.LoadFinished += new System.EventHandler(this.htmluiControl1_LoadFinished);
            //
            // contextMenu1
            //
            this.contextMenu1.Items.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
                this.menuItem9
            });
            //
            // menuItem9
            //
            this.menuItem9.MergeIndex = 0;
            this.menuItem9.Text       = "Copy";
            this.menuItem9.Click     += new System.EventHandler(this.menuItem9_Click);
            //
            // panel1
            //
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.panel1.BackColor   = System.Drawing.Color.White;
            this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel1.Controls.Add(this.panel8);
            this.panel1.Controls.Add(this.button5);
            this.panel1.Controls.Add(this.button4);
            this.panel1.Controls.Add(this.button3);
            this.panel1.Controls.Add(this.button2);
            this.panel1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.panel1.Location  = new System.Drawing.Point(7, 338);
            this.panel1.Name      = "panel1";
            this.panel1.Size      = new System.Drawing.Size(395, 129);
            this.panel1.TabIndex  = 1;
            //
            // panel8
            //
            this.panel8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
            this.panel8.BackColor   = System.Drawing.Color.White;
            this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel8.Controls.Add(this.button6);
            this.panel8.Controls.Add(this.button1);
            this.panel8.Controls.Add(this.textBox1);
            this.panel8.Location = new System.Drawing.Point(8, 38);
            this.panel8.Name     = "panel8";
            this.panel8.Size     = new System.Drawing.Size(369, 81);
            this.panel8.TabIndex = 6;
            //
            // button6
            //
            this.button6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
            this.button6.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
            this.button6.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.button6.FlatStyle  = System.Windows.Forms.FlatStyle.System;
            this.button6.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button6.ForeColor  = System.Drawing.SystemColors.ControlText;
            this.button6.Image      = ((System.Drawing.Image)(resources.GetObject("button6.Image")));
            this.button6.Location   = new System.Drawing.Point(311, 55);
            this.button6.Name       = "button6";
            this.button6.Size       = new System.Drawing.Size(48, 20);
            this.button6.TabIndex   = 2;
            this.button6.Text       = "Search";
            this.toolTip1.SetToolTip(this.button6, "Search for text");
            this.button6.UseVisualStyleBackColor = false;
            this.button6.Click += new System.EventHandler(this.button6_Click);
            //
            // button1
            //
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
            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.Enabled    = false;
            this.button1.FlatStyle  = System.Windows.Forms.FlatStyle.System;
            this.button1.Font       = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button1.ForeColor  = System.Drawing.SystemColors.ControlText;
            this.button1.Image      = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
            this.button1.Location   = new System.Drawing.Point(311, 8);
            this.button1.Name       = "button1";
            this.button1.Size       = new System.Drawing.Size(48, 39);
            this.button1.TabIndex   = 1;
            this.button1.Text       = "Send";
            this.toolTip1.SetToolTip(this.button1, "Send Message");
            this.button1.UseVisualStyleBackColor = false;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // textBox1
            //
            this.textBox1.BorderStyle  = System.Windows.Forms.BorderStyle.None;
            this.textBox1.Dock         = System.Windows.Forms.DockStyle.Left;
            this.textBox1.Font         = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(177)));
            this.textBox1.Location     = new System.Drawing.Point(0, 0);
            this.textBox1.Multiline    = true;
            this.textBox1.Name         = "textBox1";
            this.textBox1.Size         = new System.Drawing.Size(256, 79);
            this.textBox1.TabIndex     = 0;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            this.textBox1.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
            //
            // button5
            //
            this.button5.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.button5.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
            this.button5.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.button5.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
            this.button5.Image      = ((System.Drawing.Image)(resources.GetObject("button5.Image")));
            this.button5.Location   = new System.Drawing.Point(152, 6);
            this.button5.Name       = "button5";
            this.button5.Size       = new System.Drawing.Size(32, 24);
            this.button5.TabIndex   = 5;
            this.toolTip1.SetToolTip(this.button5, "Cry");
            this.button5.UseVisualStyleBackColor = false;
            this.button5.Click += new System.EventHandler(this.button5_Click);
            //
            // button4
            //
            this.button4.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.button4.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
            this.button4.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.button4.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
            this.button4.Image      = ((System.Drawing.Image)(resources.GetObject("button4.Image")));
            this.button4.Location   = new System.Drawing.Point(104, 6);
            this.button4.Name       = "button4";
            this.button4.Size       = new System.Drawing.Size(32, 24);
            this.button4.TabIndex   = 4;
            this.toolTip1.SetToolTip(this.button4, "bye");
            this.button4.UseVisualStyleBackColor = false;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            //
            // button3
            //
            this.button3.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.button3.Appearance = Syncfusion.Windows.Forms.ButtonAppearance.Metro;
            this.button3.BackColor  = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(158)))), ((int)(((byte)(218)))));
            this.button3.FlatStyle  = System.Windows.Forms.FlatStyle.Popup;
            this.button3.Image      = ((System.Drawing.Image)(resources.GetObject("button3.Image")));
            this.button3.Location   = new System.Drawing.Point(56, 6);
            this.button3.Name       = "button3";
            this.button3.Size       = new System.Drawing.Size(32, 24);
            this.button3.TabIndex   = 3;
            this.toolTip1.SetToolTip(this.button3, "broad smile");
            this.button3.UseVisualStyleBackColor = false;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            //
            // button2
            //
            this.button2.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            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.Popup;
            this.button2.Image      = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
            this.button2.Location   = new System.Drawing.Point(8, 6);
            this.button2.Name       = "button2";
            this.button2.Size       = new System.Drawing.Size(32, 24);
            this.button2.TabIndex   = 2;
            this.toolTip1.SetToolTip(this.button2, "smile");
            this.button2.UseVisualStyleBackColor = false;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            //
            // panel2
            //
            this.panel2.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(229)))), ((int)(((byte)(245)))));
            this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
            this.panel2.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel2.Controls.Add(this.panel6);
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Dock     = System.Windows.Forms.DockStyle.Right;
            this.panel2.ImeMode  = System.Windows.Forms.ImeMode.Off;
            this.panel2.Location = new System.Drawing.Point(405, 39);
            this.panel2.Name     = "panel2";
            this.panel2.Size     = new System.Drawing.Size(128, 426);
            this.panel2.TabIndex = 2;
            //
            // panel6
            //
            this.panel6.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.panel6.BackColor = System.Drawing.Color.AliceBlue;
            this.panel6.Controls.Add(this.button7);
            this.panel6.Controls.Add(this.panel7);
            this.panel6.Location = new System.Drawing.Point(6, 290);
            this.panel6.Name     = "panel6";
            this.panel6.Size     = new System.Drawing.Size(112, 120);
            this.panel6.TabIndex = 1;
            //
            // button7
            //
            this.button7.BackColor  = System.Drawing.Color.AliceBlue;
            this.button7.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
            this.button7.Font       = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button7.ForeColor  = System.Drawing.Color.AliceBlue;
            this.button7.ImageIndex = 5;
            this.button7.ImageList  = this.imageList1;
            this.button7.Location   = new System.Drawing.Point(72, 104);
            this.button7.Name       = "button7";
            this.button7.Size       = new System.Drawing.Size(32, 15);
            this.button7.TabIndex   = 1;
            this.button7.Text       = "...";
            this.button7.TextAlign  = System.Drawing.ContentAlignment.BottomCenter;
            this.toolTip1.SetToolTip(this.button7, "Change the display picture");
            this.button7.UseVisualStyleBackColor = false;
            this.button7.Click += new System.EventHandler(this.button7_Click);
            //
            // imageList1
            //
            this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "");
            this.imageList1.Images.SetKeyName(1, "");
            this.imageList1.Images.SetKeyName(2, "");
            this.imageList1.Images.SetKeyName(3, "");
            this.imageList1.Images.SetKeyName(4, "");
            this.imageList1.Images.SetKeyName(5, "");
            //
            // panel7
            //
            this.panel7.BackColor = System.Drawing.Color.White;
            this.panel7.Controls.Add(this.pictureBox2);
            this.panel7.ForeColor = System.Drawing.Color.Honeydew;
            this.panel7.Location  = new System.Drawing.Point(8, 8);
            this.panel7.Name      = "panel7";
            this.panel7.Size      = new System.Drawing.Size(96, 96);
            this.panel7.TabIndex  = 0;
            //
            // pictureBox2
            //
            this.pictureBox2.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox2.Location = new System.Drawing.Point(0, 0);
            this.pictureBox2.Name     = "pictureBox2";
            this.pictureBox2.Size     = new System.Drawing.Size(96, 96);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 0;
            this.pictureBox2.TabStop  = false;
            //
            // panel4
            //
            this.panel4.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.panel4.BackColor = System.Drawing.Color.AliceBlue;
            this.panel4.Controls.Add(this.panel5);
            this.panel4.Location = new System.Drawing.Point(6, 16);
            this.panel4.Name     = "panel4";
            this.panel4.Size     = new System.Drawing.Size(112, 120);
            this.panel4.TabIndex = 0;
            //
            // panel5
            //
            this.panel5.BackColor = System.Drawing.Color.White;
            this.panel5.Controls.Add(this.pictureBox1);
            this.panel5.ForeColor = System.Drawing.Color.Honeydew;
            this.panel5.Location  = new System.Drawing.Point(8, 8);
            this.panel5.Name      = "panel5";
            this.panel5.Size      = new System.Drawing.Size(96, 96);
            this.panel5.TabIndex  = 0;
            //
            // pictureBox1
            //
            this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name     = "pictureBox1";
            this.pictureBox1.Size     = new System.Drawing.Size(96, 96);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop  = false;
            //
            // panel3
            //
            this.panel3.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.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel3.Controls.Add(this.htmluiControl1);
            this.panel3.Location = new System.Drawing.Point(7, 39);
            this.panel3.Name     = "panel3";
            this.panel3.Size     = new System.Drawing.Size(395, 294);
            this.panel3.TabIndex = 3;
            //
            // saveFileDialog1
            //
            this.saveFileDialog1.FileName = "Conversation1";
            this.saveFileDialog1.Title    = "Save the conversation";
            //
            // openFileDialog1
            //
            this.openFileDialog1.CheckFileExists  = false;
            this.openFileDialog1.CheckPathExists  = false;
            this.openFileDialog1.RestoreDirectory = true;
            //
            // mainFrameBarManager1
            //
#if !NETCORE
            this.mainFrameBarManager1.BarPositionInfo = ((System.IO.MemoryStream)(resources.GetObject("mainFrameBarManager1.BarPositionInfo")));
#endif
            this.mainFrameBarManager1.Bars.Add(this.bar1);
            this.mainFrameBarManager1.Categories.Add("File");
            this.mainFrameBarManager1.Categories.Add("Option");
            this.mainFrameBarManager1.CurrentBaseFormType = "Syncfusion.Windows.Forms.MetroForm";
            this.mainFrameBarManager1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mainFrameBarManager1.Form = this;
            this.mainFrameBarManager1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1,
                this.barItem1,
                this.barItem2,
                this.barItem3,
                this.barItem4,
                this.barItem5,
                this.barItem6,
                this.parentBarItem2
            });
            this.mainFrameBarManager1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
            this.mainFrameBarManager1.ResetCustomization = false;
            this.mainFrameBarManager1.Style = Syncfusion.Windows.Forms.VisualStyle.Metro;
            //
            // bar1
            //
            this.bar1.BarName = "HTMLUIChat";
            this.bar1.Caption = "HTMLUIChat";
            this.bar1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.parentBarItem1,
                this.parentBarItem2
            });
            this.bar1.Manager = this.mainFrameBarManager1;
            //
            // parentBarItem1
            //
            this.parentBarItem1.BarName       = "parentBarItem1";
            this.parentBarItem1.CategoryIndex = 0;
            this.parentBarItem1.ID            = "File";
            this.parentBarItem1.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.barItem1,
                this.barItem2,
                this.barItem3,
                this.barItem4
            });
            this.parentBarItem1.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
            this.parentBarItem1.ShowToolTipInPopUp = false;
            this.parentBarItem1.SizeToFit          = true;
            this.parentBarItem1.Text = "File";
            //
            // barItem1
            //
            this.barItem1.BarName            = "barItem1";
            this.barItem1.CategoryIndex      = 0;
            this.barItem1.ID                 = "New Chat Window";
            this.barItem1.ShowToolTipInPopUp = false;
            this.barItem1.SizeToFit          = true;
            this.barItem1.Text               = "New Chat Window";
            this.barItem1.Click             += new System.EventHandler(this.menuItem2_Click);
            //
            // barItem2
            //
            this.barItem2.BarName            = "barItem2";
            this.barItem2.CategoryIndex      = 0;
            this.barItem2.ID                 = "Save this conversation";
            this.barItem2.ShowToolTipInPopUp = false;
            this.barItem2.SizeToFit          = true;
            this.barItem2.Text               = "Save this conversation";
            this.barItem2.Click             += new System.EventHandler(this.menuItem3_Click);
            //
            // barItem3
            //
            this.barItem3.BarName            = "barItem3";
            this.barItem3.CategoryIndex      = 0;
            this.barItem3.ID                 = "Open old conversation";
            this.barItem3.ShowToolTipInPopUp = false;
            this.barItem3.SizeToFit          = true;
            this.barItem3.Text               = "Open old conversation";
            this.barItem3.Click             += new System.EventHandler(this.menuItem4_Click);
            //
            // barItem4
            //
            this.barItem4.BarName            = "barItem4";
            this.barItem4.CategoryIndex      = 0;
            this.barItem4.ID                 = "Exit";
            this.barItem4.ShowToolTipInPopUp = false;
            this.barItem4.SizeToFit          = true;
            this.barItem4.Text               = "Exit";
            this.barItem4.Click             += new System.EventHandler(this.menuItem5_Click);
            //
            // parentBarItem2
            //
            this.parentBarItem2.BarName       = "parentBarItem2";
            this.parentBarItem2.CategoryIndex = 1;
            this.parentBarItem2.ID            = "Options";
            this.parentBarItem2.Items.AddRange(new Syncfusion.Windows.Forms.Tools.XPMenus.BarItem[] {
                this.barItem5,
                this.barItem6
            });
            this.parentBarItem2.MetroColor         = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(110)))), ((int)(((byte)(218)))));
            this.parentBarItem2.ShowToolTipInPopUp = false;
            this.parentBarItem2.SizeToFit          = true;
            this.parentBarItem2.Text = "Options";
            //
            // barItem5
            //
            this.barItem5.BarName            = "barItem5";
            this.barItem5.CategoryIndex      = 1;
            this.barItem5.ID                 = "Change display picture";
            this.barItem5.ShowToolTipInPopUp = false;
            this.barItem5.SizeToFit          = true;
            this.barItem5.Text               = "Change display picture";
            this.barItem5.Click             += new System.EventHandler(this.menuItem7_Click);
            //
            // barItem6
            //
            this.barItem6.BarName            = "barItem6";
            this.barItem6.CategoryIndex      = 1;
            this.barItem6.ID                 = "ChangeBackGround";
            this.barItem6.ShowToolTipInPopUp = false;
            this.barItem6.SizeToFit          = true;
            this.barItem6.Text               = "ChangeBackGround";
            this.barItem6.Click             += new System.EventHandler(this.menuItem8_Click);
            //
            // Form1
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.BackColor         = System.Drawing.Color.White;
            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(543, 475);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.panel2);
            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(555, 511);
            this.Name             = "Form1";
            this.Padding          = new System.Windows.Forms.Padding(10);
            this.StartPosition    = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text             = "HTMLUI Chat";
            this.Load            += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.htmluiControl1)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel8.ResumeLayout(false);
            this.panel8.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.panel6.ResumeLayout(false);
            this.panel7.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.panel4.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.panel3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.mainFrameBarManager1)).EndInit();
            this.ResumeLayout(false);
        }
Esempio n. 32
0
 /// <summary>
 /// 디자이너 지원에 필요한 메서드입니다.
 /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
 /// </summary>
 private void InitializeComponent()
 {
     this.plotter1    = new DataPlotter.Plotter();
     this.plotter3    = new DataPlotter.Plotter();
     this.plotter2    = new DataPlotter.Plotter();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.SuspendLayout();
     //
     // plotter1
     //
     this.plotter1.BorderBottom = 50;
     this.plotter1.BorderLeft   = 50;
     this.plotter1.BorderRight  = 30;
     this.plotter1.BorderTop    = 30;
     this.plotter1.ColorAxis    = System.Drawing.Color.Black;
     this.plotter1.ColorBg      = System.Drawing.Color.White;
     this.plotter1.ColorDraw    = System.Drawing.Color.DarkBlue;
     this.plotter1.ColorGrid    = System.Drawing.Color.LightGray;
     this.plotter1.Dock         = System.Windows.Forms.DockStyle.Left;
     this.plotter1.DrawMode     = DataPlotter.Plotter.DrawModeType.Line;
     this.plotter1.FontAxis     = new System.Drawing.Font("Arial", 8F);
     this.plotter1.FontLabel    = new System.Drawing.Font("굴림", 9F);
     this.plotter1.FontTitle    = new System.Drawing.Font("굴림", 9F);
     this.plotter1.Interval     = 0;
     this.plotter1.IsOctave     = false;
     this.plotter1.Location     = new System.Drawing.Point(0, 0);
     this.plotter1.MarkerSize   = 4;
     this.plotter1.MarkerType   = DataPlotter.Plotter.MarkerModeType.None;
     this.plotter1.Name         = "plotter1";
     this.plotter1.PenWidth     = 1;
     this.plotter1.ShowGrid     = true;
     this.plotter1.ShowLegend   = false;
     this.plotter1.Size         = new System.Drawing.Size(326, 378);
     this.plotter1.TabIndex     = 23;
     this.plotter1.Title        = "Absorption Coefficient (Rigid Backing)";
     this.plotter1.TitleColor   = System.Drawing.Color.Black;
     this.plotter1.XAxisMode    = DataPlotter.Plotter.XAxisModeType.Linear;
     this.plotter1.XGrid        = 10;
     this.plotter1.XLabel       = "X Axis";
     this.plotter1.XLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter1.XRangeEnd    = 100;
     this.plotter1.XRangeStart  = 0;
     this.plotter1.YAxisMode    = DataPlotter.Plotter.YAxisModeType.Linear;
     this.plotter1.YGrid        = 10;
     this.plotter1.YLabel       = "Y Axis";
     this.plotter1.YLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter1.YRangeEnd    = 100;
     this.plotter1.YRangeStart  = 0;
     this.plotter1.ZAxisMode    = DataPlotter.Plotter.ZAxisModeType.Linear;
     this.plotter1.ZLabel       = "Z Axis";
     this.plotter1.ZLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter1.ZRangeEnd    = 100;
     this.plotter1.ZRangeStart  = 0;
     //
     // plotter3
     //
     this.plotter3.BorderBottom = 50;
     this.plotter3.BorderLeft   = 50;
     this.plotter3.BorderRight  = 30;
     this.plotter3.BorderTop    = 30;
     this.plotter3.ColorAxis    = System.Drawing.Color.Black;
     this.plotter3.ColorBg      = System.Drawing.Color.White;
     this.plotter3.ColorDraw    = System.Drawing.Color.DarkBlue;
     this.plotter3.ColorGrid    = System.Drawing.Color.LightGray;
     this.plotter3.Dock         = System.Windows.Forms.DockStyle.Right;
     this.plotter3.DrawMode     = DataPlotter.Plotter.DrawModeType.Line;
     this.plotter3.FontAxis     = new System.Drawing.Font("Arial", 8F);
     this.plotter3.FontLabel    = new System.Drawing.Font("굴림", 9F);
     this.plotter3.FontTitle    = new System.Drawing.Font("굴림", 9F);
     this.plotter3.Interval     = 0;
     this.plotter3.IsOctave     = false;
     this.plotter3.Location     = new System.Drawing.Point(684, 0);
     this.plotter3.MarkerSize   = 4;
     this.plotter3.MarkerType   = DataPlotter.Plotter.MarkerModeType.None;
     this.plotter3.Name         = "plotter3";
     this.plotter3.PenWidth     = 1;
     this.plotter3.ShowGrid     = true;
     this.plotter3.ShowLegend   = false;
     this.plotter3.Size         = new System.Drawing.Size(326, 378);
     this.plotter3.TabIndex     = 24;
     this.plotter3.Title        = "Transmission Loss";
     this.plotter3.TitleColor   = System.Drawing.Color.Black;
     this.plotter3.XAxisMode    = DataPlotter.Plotter.XAxisModeType.Linear;
     this.plotter3.XGrid        = 10;
     this.plotter3.XLabel       = "X Axis";
     this.plotter3.XLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter3.XRangeEnd    = 100;
     this.plotter3.XRangeStart  = 0;
     this.plotter3.YAxisMode    = DataPlotter.Plotter.YAxisModeType.Linear;
     this.plotter3.YGrid        = 10;
     this.plotter3.YLabel       = "Y Axis";
     this.plotter3.YLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter3.YRangeEnd    = 100;
     this.plotter3.YRangeStart  = 0;
     this.plotter3.ZAxisMode    = DataPlotter.Plotter.ZAxisModeType.Linear;
     this.plotter3.ZLabel       = "Z Axis";
     this.plotter3.ZLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter3.ZRangeEnd    = 100;
     this.plotter3.ZRangeStart  = 0;
     //
     // plotter2
     //
     this.plotter2.BorderBottom = 50;
     this.plotter2.BorderLeft   = 50;
     this.plotter2.BorderRight  = 30;
     this.plotter2.BorderTop    = 30;
     this.plotter2.ColorAxis    = System.Drawing.Color.Black;
     this.plotter2.ColorBg      = System.Drawing.Color.White;
     this.plotter2.ColorDraw    = System.Drawing.Color.DarkBlue;
     this.plotter2.ColorGrid    = System.Drawing.Color.LightGray;
     this.plotter2.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.plotter2.DrawMode     = DataPlotter.Plotter.DrawModeType.Line;
     this.plotter2.FontAxis     = new System.Drawing.Font("Arial", 8F);
     this.plotter2.FontLabel    = new System.Drawing.Font("굴림", 9F);
     this.plotter2.FontTitle    = new System.Drawing.Font("굴림", 9F);
     this.plotter2.Interval     = 0;
     this.plotter2.IsOctave     = false;
     this.plotter2.Location     = new System.Drawing.Point(336, 0);
     this.plotter2.MarkerSize   = 4;
     this.plotter2.MarkerType   = DataPlotter.Plotter.MarkerModeType.None;
     this.plotter2.Name         = "plotter2";
     this.plotter2.PenWidth     = 1;
     this.plotter2.ShowGrid     = true;
     this.plotter2.ShowLegend   = false;
     this.plotter2.Size         = new System.Drawing.Size(338, 378);
     this.plotter2.TabIndex     = 25;
     this.plotter2.Title        = "Absorption Coefficient (anechoic termination)";
     this.plotter2.TitleColor   = System.Drawing.Color.Black;
     this.plotter2.XAxisMode    = DataPlotter.Plotter.XAxisModeType.Linear;
     this.plotter2.XGrid        = 10;
     this.plotter2.XLabel       = "X Axis";
     this.plotter2.XLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter2.XRangeEnd    = 100;
     this.plotter2.XRangeStart  = 0;
     this.plotter2.YAxisMode    = DataPlotter.Plotter.YAxisModeType.Linear;
     this.plotter2.YGrid        = 10;
     this.plotter2.YLabel       = "Y Axis";
     this.plotter2.YLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter2.YRangeEnd    = 100;
     this.plotter2.YRangeStart  = 0;
     this.plotter2.ZAxisMode    = DataPlotter.Plotter.ZAxisModeType.Linear;
     this.plotter2.ZLabel       = "Z Axis";
     this.plotter2.ZLabelColor  = System.Drawing.Color.DarkBlue;
     this.plotter2.ZRangeEnd    = 100;
     this.plotter2.ZRangeStart  = 0;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.pictureBox1.Location = new System.Drawing.Point(326, 0);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(10, 378);
     this.pictureBox1.TabIndex = 26;
     this.pictureBox1.TabStop  = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pictureBox2.Location = new System.Drawing.Point(674, 0);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(10, 378);
     this.pictureBox2.TabIndex = 27;
     this.pictureBox2.TabStop  = false;
     //
     // dgMultyGraph
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(1010, 378);
     this.Controls.Add(this.plotter2);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.plotter3);
     this.Controls.Add(this.plotter1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "dgMultyGraph";
     this.Text            = "Graph Compare";
     this.Load           += new System.EventHandler(this.dgMultyGraph_Load);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TrustManagerMoreInformation));
     this.tableLayoutPanel        = new System.Windows.Forms.TableLayoutPanel();
     this.pictureBoxPublisher     = new System.Windows.Forms.PictureBox();
     this.pictureBoxMachineAccess = new System.Windows.Forms.PictureBox();
     this.pictureBoxInstallation  = new System.Windows.Forms.PictureBox();
     this.pictureBoxLocation      = new System.Windows.Forms.PictureBox();
     this.lblPublisher            = new System.Windows.Forms.Label();
     this.lblPublisherContent     = new System.Windows.Forms.Label();
     this.lblMachineAccess        = new System.Windows.Forms.Label();
     this.lblMachineAccessContent = new System.Windows.Forms.Label();
     this.lblInstallation         = new System.Windows.Forms.Label();
     this.lblInstallationContent  = new System.Windows.Forms.Label();
     this.lblLocation             = new System.Windows.Forms.Label();
     this.lblLocationContent      = new System.Windows.Forms.Label();
     this.btnClose = new System.Windows.Forms.Button();
     this.tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPublisher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxMachineAccess)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxInstallation)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLocation)).BeginInit();
     this.SuspendLayout();
     //
     // tableLayoutPanel
     //
     resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel");
     this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 389F));
     this.tableLayoutPanel.Controls.Add(this.pictureBoxPublisher, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.pictureBoxMachineAccess, 0, 2);
     this.tableLayoutPanel.Controls.Add(this.pictureBoxInstallation, 0, 4);
     this.tableLayoutPanel.Controls.Add(this.pictureBoxLocation, 0, 6);
     this.tableLayoutPanel.Controls.Add(this.lblPublisher, 1, 0);
     this.tableLayoutPanel.Controls.Add(this.lblPublisherContent, 1, 1);
     this.tableLayoutPanel.Controls.Add(this.lblMachineAccess, 1, 2);
     this.tableLayoutPanel.Controls.Add(this.lblMachineAccessContent, 1, 3);
     this.tableLayoutPanel.Controls.Add(this.lblInstallation, 1, 4);
     this.tableLayoutPanel.Controls.Add(this.lblInstallationContent, 1, 5);
     this.tableLayoutPanel.Controls.Add(this.lblLocation, 1, 6);
     this.tableLayoutPanel.Controls.Add(this.lblLocationContent, 1, 7);
     this.tableLayoutPanel.Controls.Add(this.btnClose, 1, 8);
     this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(12);
     this.tableLayoutPanel.Name   = "tableLayoutPanel";
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
     //
     // pictureBoxPublisher
     //
     resources.ApplyResources(this.pictureBoxPublisher, "pictureBoxPublisher");
     this.pictureBoxPublisher.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0);
     this.pictureBoxPublisher.Name   = "pictureBoxPublisher";
     this.tableLayoutPanel.SetRowSpan(this.pictureBoxPublisher, 2);
     this.pictureBoxPublisher.TabStop = false;
     //
     // pictureBoxMachineAccess
     //
     resources.ApplyResources(this.pictureBoxMachineAccess, "pictureBoxMachineAccess");
     this.pictureBoxMachineAccess.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0);
     this.pictureBoxMachineAccess.Name   = "pictureBoxMachineAccess";
     this.tableLayoutPanel.SetRowSpan(this.pictureBoxMachineAccess, 2);
     this.pictureBoxMachineAccess.TabStop = false;
     //
     // pictureBoxInstallation
     //
     resources.ApplyResources(this.pictureBoxInstallation, "pictureBoxInstallation");
     this.pictureBoxInstallation.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0);
     this.pictureBoxInstallation.Name   = "pictureBoxInstallation";
     this.tableLayoutPanel.SetRowSpan(this.pictureBoxInstallation, 2);
     this.pictureBoxInstallation.TabStop = false;
     //
     // pictureBoxLocation
     //
     resources.ApplyResources(this.pictureBoxLocation, "pictureBoxLocation");
     this.pictureBoxLocation.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0);
     this.pictureBoxLocation.Name   = "pictureBoxLocation";
     this.tableLayoutPanel.SetRowSpan(this.pictureBoxLocation, 2);
     this.pictureBoxLocation.TabStop = false;
     //
     // lblPublisher
     //
     resources.ApplyResources(this.lblPublisher, "lblPublisher");
     this.lblPublisher.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
     this.lblPublisher.Name   = "lblPublisher";
     //
     // lblPublisherContent
     //
     resources.ApplyResources(this.lblPublisherContent, "lblPublisherContent");
     this.lblPublisherContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10);
     this.lblPublisherContent.Name   = "lblPublisherContent";
     //
     // lblMachineAccess
     //
     resources.ApplyResources(this.lblMachineAccess, "lblMachineAccess");
     this.lblMachineAccess.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0);
     this.lblMachineAccess.Name   = "lblMachineAccess";
     //
     // lblMachineAccessContent
     //
     resources.ApplyResources(this.lblMachineAccessContent, "lblMachineAccessContent");
     this.lblMachineAccessContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10);
     this.lblMachineAccessContent.Name   = "lblMachineAccessContent";
     //
     // lblInstallation
     //
     resources.ApplyResources(this.lblInstallation, "lblInstallation");
     this.lblInstallation.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0);
     this.lblInstallation.Name   = "lblInstallation";
     //
     // lblInstallationContent
     //
     resources.ApplyResources(this.lblInstallationContent, "lblInstallationContent");
     this.lblInstallationContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10);
     this.lblInstallationContent.Name   = "lblInstallationContent";
     //
     // lblLocation
     //
     resources.ApplyResources(this.lblLocation, "lblLocation");
     this.lblLocation.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0);
     this.lblLocation.Name   = "lblLocation";
     //
     // lblLocationContent
     //
     resources.ApplyResources(this.lblLocationContent, "lblLocationContent");
     this.lblLocationContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10);
     this.lblLocationContent.Name   = "lblLocationContent";
     //
     // btnClose
     //
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.Margin       = new System.Windows.Forms.Padding(0, 10, 0, 0);
     this.btnClose.MinimumSize  = new System.Drawing.Size(75, 23);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Padding      = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.tableLayoutPanel.SetColumnSpan(this.btnClose, 2);
     //
     // TrustManagerMoreInformation
     //
     this.AcceptButton = this.btnClose;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode  = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.CancelButton  = this.btnClose;
     this.Controls.Add(this.tableLayoutPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TrustManagerMoreInformation";
     this.tableLayoutPanel.ResumeLayout(false);
     this.tableLayoutPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPublisher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxMachineAccess)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxInstallation)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLocation)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio 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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(WorldMap));
     this.tBar   = new System.Windows.Forms.ToolBar();
     this.bBig   = new System.Windows.Forms.ToolBarButton();
     this.bMap0  = new System.Windows.Forms.ToolBarButton();
     this.bMap1  = new System.Windows.Forms.ToolBarButton();
     this.bMap2  = new System.Windows.Forms.ToolBarButton();
     this.bMap3  = new System.Windows.Forms.ToolBarButton();
     this.bClose = new System.Windows.Forms.ToolBarButton();
     this.Img    = new System.Windows.Forms.PictureBox();
     this.bMap4  = new System.Windows.Forms.ToolBarButton();
     this.SuspendLayout();
     //
     // tBar
     //
     this.tBar.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.tBar.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.bBig,
         this.bMap0,
         this.bMap1,
         this.bMap2,
         this.bMap3,
         this.bMap4,
         this.bClose
     });
     this.tBar.ButtonSize     = new System.Drawing.Size(58, 18);
     this.tBar.DropDownArrows = true;
     this.tBar.Location       = new System.Drawing.Point(0, 0);
     this.tBar.Name           = "tBar";
     this.tBar.ShowToolTips   = true;
     this.tBar.Size           = new System.Drawing.Size(736, 29);
     this.tBar.TabIndex       = 0;
     this.tBar.Wrappable      = false;
     this.tBar.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tBar_ButtonClick);
     //
     // bBig
     //
     this.bBig.Style = System.Windows.Forms.ToolBarButtonStyle.ToggleButton;
     this.bBig.Text  = "World.Big";
     //
     // bClose
     //
     this.bClose.Text = "Common.Exit";
     //
     // Img
     //
     this.Img.Location   = new System.Drawing.Point(0, 26);
     this.Img.Name       = "Img";
     this.Img.Size       = new System.Drawing.Size(736, 448);
     this.Img.TabIndex   = 1;
     this.Img.TabStop    = false;
     this.Img.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Img_MouseDown);
     //
     // WorldMap
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(736, 479);
     this.Controls.Add(this.Img);
     this.Controls.Add(this.tBar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "WorldMap";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "World.WorldMap";
     this.Load           += new System.EventHandler(this.WorldMap_Load);
     this.ResumeLayout(false);
 }
Esempio 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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserLogin));
     this.btnCancel    = new System.Windows.Forms.Button();
     this.btnLogin     = new System.Windows.Forms.Button();
     this.txtPwd       = new System.Windows.Forms.TextBox();
     this.lblPwd       = new System.Windows.Forms.Label();
     this.txtUser      = new System.Windows.Forms.TextBox();
     this.lblUser      = new System.Windows.Forms.Label();
     this.groupBox1    = new System.Windows.Forms.GroupBox();
     this.groupBox2    = new System.Windows.Forms.GroupBox();
     this.pictureBox2  = new System.Windows.Forms.PictureBox();
     this.label1       = new System.Windows.Forms.Label();
     this.lblSqlServer = new System.Windows.Forms.LinkLabel();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location  = new System.Drawing.Point(264, 152);
     this.btnCancel.Name      = "btnCancel";
     this.btnCancel.Size      = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex  = 3;
     this.btnCancel.Text      = "Cancel";
     this.btnCancel.Click    += new System.EventHandler(this.btnCancel_Click);
     //
     // btnLogin
     //
     this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnLogin.Location  = new System.Drawing.Point(184, 152);
     this.btnLogin.Name      = "btnLogin";
     this.btnLogin.Size      = new System.Drawing.Size(75, 23);
     this.btnLogin.TabIndex  = 2;
     this.btnLogin.Text      = "Login";
     this.btnLogin.Click    += new System.EventHandler(this.btnLogin_Click);
     //
     // txtPwd
     //
     this.txtPwd.Location     = new System.Drawing.Point(180, 96);
     this.txtPwd.MaxLength    = 15;
     this.txtPwd.Name         = "txtPwd";
     this.txtPwd.PasswordChar = '*';
     this.txtPwd.Size         = new System.Drawing.Size(156, 21);
     this.txtPwd.TabIndex     = 1;
     this.txtPwd.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtPwd_KeyDown);
     //
     // lblPwd
     //
     this.lblPwd.AutoSize  = true;
     this.lblPwd.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblPwd.Location  = new System.Drawing.Point(116, 98);
     this.lblPwd.Name      = "lblPwd";
     this.lblPwd.Size      = new System.Drawing.Size(53, 13);
     this.lblPwd.TabIndex  = 13;
     this.lblPwd.Text      = "Password";
     //
     // txtUser
     //
     this.txtUser.Location  = new System.Drawing.Point(180, 72);
     this.txtUser.MaxLength = 15;
     this.txtUser.Name      = "txtUser";
     this.txtUser.Size      = new System.Drawing.Size(156, 21);
     this.txtUser.TabIndex  = 0;
     //
     // lblUser
     //
     this.lblUser.AutoSize  = true;
     this.lblUser.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblUser.Location  = new System.Drawing.Point(116, 74);
     this.lblUser.Name      = "lblUser";
     this.lblUser.Size      = new System.Drawing.Size(29, 13);
     this.lblUser.TabIndex  = 11;
     this.lblUser.Text      = "User";
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Location  = new System.Drawing.Point(112, 131);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(224, 2);
     this.groupBox1.TabIndex  = 15;
     this.groupBox1.TabStop   = false;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.SystemColors.Control;
     this.groupBox2.Location  = new System.Drawing.Point(112, 56);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(224, 2);
     this.groupBox2.TabIndex  = 16;
     this.groupBox2.TabStop   = false;
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(16, 56);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(80, 72);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 17;
     this.pictureBox2.TabStop  = false;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Font      = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(112, 17);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(128, 22);
     this.label1.TabIndex  = 18;
     this.label1.Text      = "SCHEDULER";
     //
     // lblSqlServer
     //
     this.lblSqlServer.AutoSize     = true;
     this.lblSqlServer.Location     = new System.Drawing.Point(16, 155);
     this.lblSqlServer.Name         = "lblSqlServer";
     this.lblSqlServer.Size         = new System.Drawing.Size(129, 13);
     this.lblSqlServer.TabIndex     = 20;
     this.lblSqlServer.TabStop      = true;
     this.lblSqlServer.Text         = "SQL Server Configuration";
     this.lblSqlServer.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblSqlServer_LinkClicked);
     //
     // frmUserLogin
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(362, 192);
     this.Controls.Add(this.lblSqlServer);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtPwd);
     this.Controls.Add(this.lblPwd);
     this.Controls.Add(this.txtUser);
     this.Controls.Add(this.lblUser);
     this.Controls.Add(this.pictureBox2);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnLogin);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmUserLogin";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Logon...";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmUserLogin_KeyDown);
     this.Load           += new System.EventHandler(this.frmUserLogin_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio 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.groupBox1   = new System.Windows.Forms.GroupBox();
     this.label7      = new System.Windows.Forms.Label();
     this.cmdF6       = new System.Windows.Forms.Button();
     this.label3      = new System.Windows.Forms.Label();
     this.txtContact  = new System.Windows.Forms.TextBox();
     this.label2      = new System.Windows.Forms.Label();
     this.cboType     = new System.Windows.Forms.ComboBox();
     this.lblRemarks  = new System.Windows.Forms.Label();
     this.txtRemarks  = new System.Windows.Forms.TextBox();
     this.lblCurrency = new System.Windows.Forms.Label();
     this.txtAmount   = new System.Windows.Forms.TextBox();
     this.label5      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.imgIcon     = new System.Windows.Forms.PictureBox();
     this.label15     = new System.Windows.Forms.Label();
     this.label8      = new System.Windows.Forms.Label();
     this.cmdCancel   = new System.Windows.Forms.Button();
     this.cmdEnter    = new System.Windows.Forms.Button();
     this.label6      = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgIcon)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.White;
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.cmdF6);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.txtContact);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.cboType);
     this.groupBox1.Controls.Add(this.lblRemarks);
     this.groupBox1.Controls.Add(this.txtRemarks);
     this.groupBox1.Controls.Add(this.lblCurrency);
     this.groupBox1.Controls.Add(this.txtAmount);
     this.groupBox1.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.Color.Blue;
     this.groupBox1.Location  = new System.Drawing.Point(9, 67);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(1013, 205);
     this.groupBox1.TabIndex  = 0;
     this.groupBox1.TabStop   = false;
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.MediumBlue;
     this.label7.Location  = new System.Drawing.Point(736, 41);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(106, 13);
     this.label7.TabIndex  = 6;
     this.label7.Text      = "Select Customer. ";
     //
     // cmdF6
     //
     this.cmdF6.AutoSize = true;
     this.cmdF6.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.cmdF6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdF6.Font      = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdF6.ForeColor = System.Drawing.Color.White;
     this.cmdF6.Location  = new System.Drawing.Point(658, 15);
     this.cmdF6.Name      = "cmdF6";
     this.cmdF6.Size      = new System.Drawing.Size(78, 62);
     this.cmdF6.TabIndex  = 0;
     this.cmdF6.Text      = "F6";
     this.cmdF6.UseVisualStyleBackColor = true;
     this.cmdF6.Click += new System.EventHandler(this.cmdF6_Click);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.MediumBlue;
     this.label3.Location  = new System.Drawing.Point(117, 13);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(97, 13);
     this.label3.TabIndex  = 4;
     this.label3.Text      = "Customer Name";
     //
     // txtContact
     //
     this.txtContact.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtContact.Font        = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtContact.Location    = new System.Drawing.Point(120, 31);
     this.txtContact.MaxLength   = 255;
     this.txtContact.Multiline   = true;
     this.txtContact.Name        = "txtContact";
     this.txtContact.ReadOnly    = true;
     this.txtContact.Size        = new System.Drawing.Size(536, 37);
     this.txtContact.TabIndex    = 5;
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.MediumBlue;
     this.label2.Location  = new System.Drawing.Point(457, 82);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(168, 13);
     this.label2.TabIndex  = 8;
     this.label2.Text      = "Select type of accountability";
     //
     // cboType
     //
     this.cboType.CausesValidation = false;
     this.cboType.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboType.Font             = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboType.Items.AddRange(new object[] {
         "CASH",
         "CHEQUES",
         "CREDIT CARDS"
     });
     this.cboType.Location = new System.Drawing.Point(460, 100);
     this.cboType.Name     = "cboType";
     this.cboType.Size     = new System.Drawing.Size(200, 31);
     this.cboType.TabIndex = 2;
     //
     // lblRemarks
     //
     this.lblRemarks.AutoSize  = true;
     this.lblRemarks.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRemarks.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblRemarks.Location  = new System.Drawing.Point(117, 142);
     this.lblRemarks.Name      = "lblRemarks";
     this.lblRemarks.Size      = new System.Drawing.Size(267, 13);
     this.lblRemarks.TabIndex  = 9;
     this.lblRemarks.Text      = "Add an optional 255 character remarks below.";
     //
     // txtRemarks
     //
     this.txtRemarks.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtRemarks.Font        = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtRemarks.Location    = new System.Drawing.Point(120, 160);
     this.txtRemarks.MaxLength   = 255;
     this.txtRemarks.Multiline   = true;
     this.txtRemarks.Name        = "txtRemarks";
     this.txtRemarks.Size        = new System.Drawing.Size(536, 37);
     this.txtRemarks.TabIndex    = 3;
     this.txtRemarks.GotFocus   += new System.EventHandler(this.txtRemarks_GotFocus);
     //
     // lblCurrency
     //
     this.lblCurrency.AutoSize  = true;
     this.lblCurrency.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblCurrency.ForeColor = System.Drawing.Color.MediumBlue;
     this.lblCurrency.Location  = new System.Drawing.Point(117, 82);
     this.lblCurrency.Name      = "lblCurrency";
     this.lblCurrency.Size      = new System.Drawing.Size(87, 13);
     this.lblCurrency.TabIndex  = 7;
     this.lblCurrency.Text      = "Amount (PHP)";
     //
     // txtAmount
     //
     this.txtAmount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtAmount.Font        = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAmount.Location    = new System.Drawing.Point(120, 100);
     this.txtAmount.MaxLength   = 16;
     this.txtAmount.Name        = "txtAmount";
     this.txtAmount.Size        = new System.Drawing.Size(200, 30);
     this.txtAmount.TabIndex    = 1;
     this.txtAmount.Text        = "0.00";
     this.txtAmount.TextAlign   = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtAmount.GotFocus   += new System.EventHandler(this.txtAmount_GotFocus);
     this.txtAmount.KeyPress   += new System.Windows.Forms.KeyPressEventHandler(this.txtAmount_KeyPress);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Red;
     this.label5.Location  = new System.Drawing.Point(764, 41);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(20, 13);
     this.label5.TabIndex  = 6;
     this.label5.Text      = "F2";
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(67, 22);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(187, 13);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Deposit amount from customer.";
     //
     // imgIcon
     //
     this.imgIcon.BackColor = System.Drawing.Color.Blue;
     this.imgIcon.Location  = new System.Drawing.Point(9, 5);
     this.imgIcon.Name      = "imgIcon";
     this.imgIcon.Size      = new System.Drawing.Size(49, 49);
     this.imgIcon.TabIndex  = 81;
     this.imgIcon.TabStop   = false;
     //
     // label15
     //
     this.label15.AutoSize  = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.Red;
     this.label15.Location  = new System.Drawing.Point(757, 15);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(33, 13);
     this.label15.TabIndex  = 4;
     this.label15.Text      = "Enter";
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.ForeColor = System.Drawing.Color.LightSlateGray;
     this.label8.Location  = new System.Drawing.Point(789, 15);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(172, 13);
     this.label8.TabIndex  = 5;
     this.label8.Text      = "Press Enter to resume Transaction";
     //
     // cmdCancel
     //
     this.cmdCancel.AutoSize = true;
     this.cmdCancel.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.cmdCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdCancel.Font      = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdCancel.ForeColor = System.Drawing.Color.White;
     this.cmdCancel.Location  = new System.Drawing.Point(765, 618);
     this.cmdCancel.Name      = "cmdCancel";
     this.cmdCancel.Size      = new System.Drawing.Size(106, 83);
     this.cmdCancel.TabIndex  = 2;
     this.cmdCancel.Text      = "CANCEL";
     this.cmdCancel.UseVisualStyleBackColor = true;
     this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdEnter
     //
     this.cmdEnter.AutoSize = true;
     this.cmdEnter.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.cmdEnter.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdEnter.Font      = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdEnter.ForeColor = System.Drawing.Color.White;
     this.cmdEnter.Location  = new System.Drawing.Point(877, 618);
     this.cmdEnter.Name      = "cmdEnter";
     this.cmdEnter.Size      = new System.Drawing.Size(106, 83);
     this.cmdEnter.TabIndex  = 1;
     this.cmdEnter.Text      = "ENTER";
     this.cmdEnter.UseVisualStyleBackColor = true;
     this.cmdEnter.Click += new System.EventHandler(this.cmdEnter_Click);
     //
     // label6
     //
     this.label6.AutoSize  = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.MediumBlue;
     this.label6.Location  = new System.Drawing.Point(789, 41);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(115, 13);
     this.label6.TabIndex  = 7;
     this.label6.Text      = "Add new customer.";
     //
     // DepositWnd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(1022, 766);
     this.ControlBox        = false;
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.cmdEnter);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.imgIcon);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label8);
     this.Font            = new System.Drawing.Font("Tahoma", 8F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.KeyPreview      = true;
     this.Name            = "DepositWnd";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load           += new System.EventHandler(this.DepositWnd_Load);
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.DepositWnd_KeyDown);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.imgIcon)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components  = new System.ComponentModel.Container();
     this.DataGrid    = new System.Windows.Forms.DataGrid();
     this.ImageList1  = new System.Windows.Forms.ImageList(this.components);
     this.Label1      = new System.Windows.Forms.Label();
     this.Label2      = new System.Windows.Forms.Label();
     this.PictureBox1 = new System.Windows.Forms.PictureBox();
     this.GroupBox1   = new Signature.Windows.Forms.GroupBox();
     this.txtSearch   = new System.Windows.Forms.TextBox();
     this.btnClose    = new System.Windows.Forms.Button();
     this.Label23     = new System.Windows.Forms.Label();
     this.lstView     = new System.Windows.Forms.ListView();
     this.pbar        = new System.Windows.Forms.ProgressBar();
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
     this.GroupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // DataGrid
     //
     this.DataGrid.AlternatingBackColor = System.Drawing.SystemColors.ScrollBar;
     this.DataGrid.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.DataGrid.DataMember        = "";
     this.DataGrid.HeaderForeColor   = System.Drawing.SystemColors.ControlText;
     this.DataGrid.Location          = new System.Drawing.Point(7, 136);
     this.DataGrid.Name              = "DataGrid";
     this.DataGrid.ParentRowsVisible = false;
     this.DataGrid.ReadOnly          = true;
     this.DataGrid.RowHeadersVisible = false;
     this.DataGrid.Size              = new System.Drawing.Size(608, 296);
     this.DataGrid.TabIndex          = 81;
     this.DataGrid.DoubleClick      += new System.EventHandler(this.DataGrid_DoubleClick);
     this.DataGrid.MouseUp          += new System.Windows.Forms.MouseEventHandler(this.DataGrid_MouseUp);
     this.DataGrid.KeyPress         += new System.Windows.Forms.KeyPressEventHandler(this.DataGrid_KeyPress);
     this.DataGrid.KeyUp            += new System.Windows.Forms.KeyEventHandler(this.DataGrid_KeyUp);
     //
     // ImageList1
     //
     this.ImageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.ImageList1.ImageSize        = new System.Drawing.Size(15, 15);
     this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // Label1
     //
     this.Label1.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.Label1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.Label1.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.Label1.Location  = new System.Drawing.Point(0, 62);
     this.Label1.Name      = "Label1";
     this.Label1.Size      = new System.Drawing.Size(620, 6);
     this.Label1.TabIndex  = 79;
     //
     // Label2
     //
     this.Label2.BackColor = System.Drawing.SystemColors.Control;
     this.Label2.Dock      = System.Windows.Forms.DockStyle.Top;
     this.Label2.Font      = new System.Drawing.Font("Haettenschweiler", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.Label2.Location  = new System.Drawing.Point(0, 0);
     this.Label2.Name      = "Label2";
     this.Label2.Size      = new System.Drawing.Size(620, 52);
     this.Label2.TabIndex  = 80;
     this.Label2.Text      = "           Batch List ";
     this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // PictureBox1
     //
     this.PictureBox1.Location = new System.Drawing.Point(3, 12);
     this.PictureBox1.Name     = "PictureBox1";
     this.PictureBox1.Size     = new System.Drawing.Size(32, 24);
     this.PictureBox1.TabIndex = 76;
     this.PictureBox1.TabStop  = false;
     //
     // GroupBox1
     //
     this.GroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.GroupBox1.Controls.Add(this.txtSearch);
     this.GroupBox1.Controls.Add(this.btnClose);
     this.GroupBox1.Location = new System.Drawing.Point(8, 72);
     this.GroupBox1.Name     = "GroupBox1";
     this.GroupBox1.Size     = new System.Drawing.Size(604, 42);
     this.GroupBox1.TabIndex = 77;
     this.GroupBox1.TabStop  = false;
     //
     // txtSearch
     //
     this.txtSearch.Font         = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtSearch.Location     = new System.Drawing.Point(8, 11);
     this.txtSearch.Name         = "txtSearch";
     this.txtSearch.Size         = new System.Drawing.Size(160, 21);
     this.txtSearch.TabIndex     = 61;
     this.txtSearch.TextChanged += new System.EventHandler(this.txtSearch_TextChanged_1);
     //
     // btnClose
     //
     this.btnClose.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.btnClose.FlatStyle  = System.Windows.Forms.FlatStyle.Flat;
     this.btnClose.Font       = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClose.ForeColor  = System.Drawing.Color.DimGray;
     this.btnClose.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnClose.Location   = new System.Drawing.Point(540, 12);
     this.btnClose.Name       = "btnClose";
     this.btnClose.Size       = new System.Drawing.Size(48, 24);
     this.btnClose.TabIndex   = 67;
     this.btnClose.Tag        = "";
     this.btnClose.Text       = "Close";
     this.btnClose.Click     += new System.EventHandler(this.btnClose_Click);
     //
     // Label23
     //
     this.Label23.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.Label23.Dock      = System.Windows.Forms.DockStyle.Top;
     this.Label23.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label23.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.Label23.Location  = new System.Drawing.Point(0, 52);
     this.Label23.Name      = "Label23";
     this.Label23.Size      = new System.Drawing.Size(620, 10);
     this.Label23.TabIndex  = 75;
     this.Label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lstView
     //
     this.lstView.Anchor         = System.Windows.Forms.AnchorStyles.None;
     this.lstView.Font           = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lstView.FullRowSelect  = true;
     this.lstView.GridLines      = true;
     this.lstView.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.lstView.HideSelection  = false;
     this.lstView.LargeImageList = this.ImageList1;
     this.lstView.Location       = new System.Drawing.Point(-46, 440);
     this.lstView.MultiSelect    = false;
     this.lstView.Name           = "lstView";
     this.lstView.Size           = new System.Drawing.Size(122, 24);
     this.lstView.SmallImageList = this.ImageList1;
     this.lstView.TabIndex       = 74;
     this.lstView.UseCompatibleStateImageBehavior = false;
     //
     // pbar
     //
     this.pbar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.pbar.Location = new System.Drawing.Point(8, 118);
     this.pbar.Name     = "pbar";
     this.pbar.Size     = new System.Drawing.Size(604, 8);
     this.pbar.TabIndex = 78;
     //
     // frmViewScannedImages
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(620, 438);
     this.Controls.Add(this.DataGrid);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.PictureBox1);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.Label23);
     this.Controls.Add(this.pbar);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.lstView);
     this.Name          = "frmViewScannedImages";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "BatchView";
     this.Load         += new System.EventHandler(this.frmViewTeacher_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio 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(MyMessageBox));
     this.yes         = new System.Windows.Forms.Button();
     this.no          = new System.Windows.Forms.Button();
     this.message     = new System.Windows.Forms.Label();
     this.messageIcon = new System.Windows.Forms.PictureBox();
     this.ok          = new System.Windows.Forms.Button();
     this.details     = new System.Windows.Forms.Button();
     this.detailsBox  = new System.Windows.Forms.TextBox();
     this.cancel      = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // yes
     //
     this.yes.AccessibleDescription = resources.GetString("yes.AccessibleDescription");
     this.yes.AccessibleName        = resources.GetString("yes.AccessibleName");
     this.yes.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("yes.Anchor")));
     this.yes.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("yes.BackgroundImage")));
     this.yes.DialogResult    = System.Windows.Forms.DialogResult.Yes;
     this.yes.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("yes.Dock")));
     this.yes.Enabled         = ((bool)(resources.GetObject("yes.Enabled")));
     this.yes.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("yes.FlatStyle")));
     this.yes.Font            = ((System.Drawing.Font)(resources.GetObject("yes.Font")));
     this.yes.Image           = ((System.Drawing.Image)(resources.GetObject("yes.Image")));
     this.yes.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("yes.ImageAlign")));
     this.yes.ImageIndex      = ((int)(resources.GetObject("yes.ImageIndex")));
     this.yes.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("yes.ImeMode")));
     this.yes.Location        = ((System.Drawing.Point)(resources.GetObject("yes.Location")));
     this.yes.Name            = "yes";
     this.yes.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("yes.RightToLeft")));
     this.yes.Size            = ((System.Drawing.Size)(resources.GetObject("yes.Size")));
     this.yes.TabIndex        = ((int)(resources.GetObject("yes.TabIndex")));
     this.yes.Text            = resources.GetString("yes.Text");
     this.yes.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("yes.TextAlign")));
     this.yes.Visible         = ((bool)(resources.GetObject("yes.Visible")));
     //
     // no
     //
     this.no.AccessibleDescription = resources.GetString("no.AccessibleDescription");
     this.no.AccessibleName        = resources.GetString("no.AccessibleName");
     this.no.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("no.Anchor")));
     this.no.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("no.BackgroundImage")));
     this.no.DialogResult    = System.Windows.Forms.DialogResult.No;
     this.no.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("no.Dock")));
     this.no.Enabled         = ((bool)(resources.GetObject("no.Enabled")));
     this.no.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("no.FlatStyle")));
     this.no.Font            = ((System.Drawing.Font)(resources.GetObject("no.Font")));
     this.no.Image           = ((System.Drawing.Image)(resources.GetObject("no.Image")));
     this.no.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("no.ImageAlign")));
     this.no.ImageIndex      = ((int)(resources.GetObject("no.ImageIndex")));
     this.no.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("no.ImeMode")));
     this.no.Location        = ((System.Drawing.Point)(resources.GetObject("no.Location")));
     this.no.Name            = "no";
     this.no.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("no.RightToLeft")));
     this.no.Size            = ((System.Drawing.Size)(resources.GetObject("no.Size")));
     this.no.TabIndex        = ((int)(resources.GetObject("no.TabIndex")));
     this.no.Text            = resources.GetString("no.Text");
     this.no.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("no.TextAlign")));
     this.no.Visible         = ((bool)(resources.GetObject("no.Visible")));
     //
     // message
     //
     this.message.AccessibleDescription = resources.GetString("message.AccessibleDescription");
     this.message.AccessibleName        = resources.GetString("message.AccessibleName");
     this.message.Anchor      = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("message.Anchor")));
     this.message.AutoSize    = ((bool)(resources.GetObject("message.AutoSize")));
     this.message.Dock        = ((System.Windows.Forms.DockStyle)(resources.GetObject("message.Dock")));
     this.message.Enabled     = ((bool)(resources.GetObject("message.Enabled")));
     this.message.Font        = ((System.Drawing.Font)(resources.GetObject("message.Font")));
     this.message.Image       = ((System.Drawing.Image)(resources.GetObject("message.Image")));
     this.message.ImageAlign  = ((System.Drawing.ContentAlignment)(resources.GetObject("message.ImageAlign")));
     this.message.ImageIndex  = ((int)(resources.GetObject("message.ImageIndex")));
     this.message.ImeMode     = ((System.Windows.Forms.ImeMode)(resources.GetObject("message.ImeMode")));
     this.message.Location    = ((System.Drawing.Point)(resources.GetObject("message.Location")));
     this.message.Name        = "message";
     this.message.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetObject("message.RightToLeft")));
     this.message.Size        = ((System.Drawing.Size)(resources.GetObject("message.Size")));
     this.message.TabIndex    = ((int)(resources.GetObject("message.TabIndex")));
     this.message.Text        = resources.GetString("message.Text");
     this.message.TextAlign   = ((System.Drawing.ContentAlignment)(resources.GetObject("message.TextAlign")));
     this.message.Visible     = ((bool)(resources.GetObject("message.Visible")));
     //
     // messageIcon
     //
     this.messageIcon.AccessibleDescription = resources.GetString("messageIcon.AccessibleDescription");
     this.messageIcon.AccessibleName        = resources.GetString("messageIcon.AccessibleName");
     this.messageIcon.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("messageIcon.Anchor")));
     this.messageIcon.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("messageIcon.BackgroundImage")));
     this.messageIcon.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("messageIcon.Dock")));
     this.messageIcon.Enabled         = ((bool)(resources.GetObject("messageIcon.Enabled")));
     this.messageIcon.Font            = ((System.Drawing.Font)(resources.GetObject("messageIcon.Font")));
     this.messageIcon.Image           = ((System.Drawing.Image)(resources.GetObject("messageIcon.Image")));
     this.messageIcon.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("messageIcon.ImeMode")));
     this.messageIcon.Location        = ((System.Drawing.Point)(resources.GetObject("messageIcon.Location")));
     this.messageIcon.Name            = "messageIcon";
     this.messageIcon.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("messageIcon.RightToLeft")));
     this.messageIcon.Size            = ((System.Drawing.Size)(resources.GetObject("messageIcon.Size")));
     this.messageIcon.SizeMode        = ((System.Windows.Forms.PictureBoxSizeMode)(resources.GetObject("messageIcon.SizeMode")));
     this.messageIcon.TabIndex        = ((int)(resources.GetObject("messageIcon.TabIndex")));
     this.messageIcon.TabStop         = false;
     this.messageIcon.Text            = resources.GetString("messageIcon.Text");
     this.messageIcon.Visible         = ((bool)(resources.GetObject("messageIcon.Visible")));
     //
     // ok
     //
     this.ok.AccessibleDescription = resources.GetString("ok.AccessibleDescription");
     this.ok.AccessibleName        = resources.GetString("ok.AccessibleName");
     this.ok.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("ok.Anchor")));
     this.ok.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ok.BackgroundImage")));
     this.ok.DialogResult    = System.Windows.Forms.DialogResult.OK;
     this.ok.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("ok.Dock")));
     this.ok.Enabled         = ((bool)(resources.GetObject("ok.Enabled")));
     this.ok.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("ok.FlatStyle")));
     this.ok.Font            = ((System.Drawing.Font)(resources.GetObject("ok.Font")));
     this.ok.Image           = ((System.Drawing.Image)(resources.GetObject("ok.Image")));
     this.ok.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("ok.ImageAlign")));
     this.ok.ImageIndex      = ((int)(resources.GetObject("ok.ImageIndex")));
     this.ok.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("ok.ImeMode")));
     this.ok.Location        = ((System.Drawing.Point)(resources.GetObject("ok.Location")));
     this.ok.Name            = "ok";
     this.ok.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("ok.RightToLeft")));
     this.ok.Size            = ((System.Drawing.Size)(resources.GetObject("ok.Size")));
     this.ok.TabIndex        = ((int)(resources.GetObject("ok.TabIndex")));
     this.ok.Text            = resources.GetString("ok.Text");
     this.ok.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("ok.TextAlign")));
     this.ok.Visible         = ((bool)(resources.GetObject("ok.Visible")));
     //
     // details
     //
     this.details.AccessibleDescription = resources.GetString("details.AccessibleDescription");
     this.details.AccessibleName        = resources.GetString("details.AccessibleName");
     this.details.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("details.Anchor")));
     this.details.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("details.BackgroundImage")));
     this.details.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("details.Dock")));
     this.details.Enabled         = ((bool)(resources.GetObject("details.Enabled")));
     this.details.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("details.FlatStyle")));
     this.details.Font            = ((System.Drawing.Font)(resources.GetObject("details.Font")));
     this.details.Image           = ((System.Drawing.Image)(resources.GetObject("details.Image")));
     this.details.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("details.ImageAlign")));
     this.details.ImageIndex      = ((int)(resources.GetObject("details.ImageIndex")));
     this.details.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("details.ImeMode")));
     this.details.Location        = ((System.Drawing.Point)(resources.GetObject("details.Location")));
     this.details.Name            = "details";
     this.details.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("details.RightToLeft")));
     this.details.Size            = ((System.Drawing.Size)(resources.GetObject("details.Size")));
     this.details.TabIndex        = ((int)(resources.GetObject("details.TabIndex")));
     this.details.Text            = resources.GetString("details.Text");
     this.details.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("details.TextAlign")));
     this.details.Visible         = ((bool)(resources.GetObject("details.Visible")));
     this.details.Click          += new System.EventHandler(this.details_Click);
     //
     // detailsBox
     //
     this.detailsBox.AccessibleDescription = resources.GetString("detailsBox.AccessibleDescription");
     this.detailsBox.AccessibleName        = resources.GetString("detailsBox.AccessibleName");
     this.detailsBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("detailsBox.Anchor")));
     this.detailsBox.AutoSize        = ((bool)(resources.GetObject("detailsBox.AutoSize")));
     this.detailsBox.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("detailsBox.BackgroundImage")));
     this.detailsBox.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("detailsBox.Dock")));
     this.detailsBox.Enabled         = ((bool)(resources.GetObject("detailsBox.Enabled")));
     this.detailsBox.Font            = ((System.Drawing.Font)(resources.GetObject("detailsBox.Font")));
     this.detailsBox.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("detailsBox.ImeMode")));
     this.detailsBox.Location        = ((System.Drawing.Point)(resources.GetObject("detailsBox.Location")));
     this.detailsBox.MaxLength       = ((int)(resources.GetObject("detailsBox.MaxLength")));
     this.detailsBox.Multiline       = ((bool)(resources.GetObject("detailsBox.Multiline")));
     this.detailsBox.Name            = "detailsBox";
     this.detailsBox.PasswordChar    = ((char)(resources.GetObject("detailsBox.PasswordChar")));
     this.detailsBox.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("detailsBox.RightToLeft")));
     this.detailsBox.ScrollBars      = ((System.Windows.Forms.ScrollBars)(resources.GetObject("detailsBox.ScrollBars")));
     this.detailsBox.Size            = ((System.Drawing.Size)(resources.GetObject("detailsBox.Size")));
     this.detailsBox.TabIndex        = ((int)(resources.GetObject("detailsBox.TabIndex")));
     this.detailsBox.Text            = resources.GetString("detailsBox.Text");
     this.detailsBox.TextAlign       = ((System.Windows.Forms.HorizontalAlignment)(resources.GetObject("detailsBox.TextAlign")));
     this.detailsBox.Visible         = ((bool)(resources.GetObject("detailsBox.Visible")));
     this.detailsBox.WordWrap        = ((bool)(resources.GetObject("detailsBox.WordWrap")));
     //
     // cancel
     //
     this.cancel.AccessibleDescription = resources.GetString("cancel.AccessibleDescription");
     this.cancel.AccessibleName        = resources.GetString("cancel.AccessibleName");
     this.cancel.Anchor          = ((System.Windows.Forms.AnchorStyles)(resources.GetObject("cancel.Anchor")));
     this.cancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("cancel.BackgroundImage")));
     this.cancel.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.cancel.Dock            = ((System.Windows.Forms.DockStyle)(resources.GetObject("cancel.Dock")));
     this.cancel.Enabled         = ((bool)(resources.GetObject("cancel.Enabled")));
     this.cancel.FlatStyle       = ((System.Windows.Forms.FlatStyle)(resources.GetObject("cancel.FlatStyle")));
     this.cancel.Font            = ((System.Drawing.Font)(resources.GetObject("cancel.Font")));
     this.cancel.Image           = ((System.Drawing.Image)(resources.GetObject("cancel.Image")));
     this.cancel.ImageAlign      = ((System.Drawing.ContentAlignment)(resources.GetObject("cancel.ImageAlign")));
     this.cancel.ImageIndex      = ((int)(resources.GetObject("cancel.ImageIndex")));
     this.cancel.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("cancel.ImeMode")));
     this.cancel.Location        = ((System.Drawing.Point)(resources.GetObject("cancel.Location")));
     this.cancel.Name            = "cancel";
     this.cancel.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("cancel.RightToLeft")));
     this.cancel.Size            = ((System.Drawing.Size)(resources.GetObject("cancel.Size")));
     this.cancel.TabIndex        = ((int)(resources.GetObject("cancel.TabIndex")));
     this.cancel.Text            = resources.GetString("cancel.Text");
     this.cancel.TextAlign       = ((System.Drawing.ContentAlignment)(resources.GetObject("cancel.TextAlign")));
     this.cancel.Visible         = ((bool)(resources.GetObject("cancel.Visible")));
     //
     // MyMessageBox
     //
     this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
     this.AccessibleName        = resources.GetString("$this.AccessibleName");
     this.AutoScaleBaseSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScaleBaseSize")));
     this.AutoScroll            = ((bool)(resources.GetObject("$this.AutoScroll")));
     this.AutoScrollMargin      = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMargin")));
     this.AutoScrollMinSize     = ((System.Drawing.Size)(resources.GetObject("$this.AutoScrollMinSize")));
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.ClientSize            = ((System.Drawing.Size)(resources.GetObject("$this.ClientSize")));
     this.Controls.Add(this.cancel);
     this.Controls.Add(this.detailsBox);
     this.Controls.Add(this.details);
     this.Controls.Add(this.ok);
     this.Controls.Add(this.messageIcon);
     this.Controls.Add(this.message);
     this.Controls.Add(this.no);
     this.Controls.Add(this.yes);
     this.Enabled         = ((bool)(resources.GetObject("$this.Enabled")));
     this.Font            = ((System.Drawing.Font)(resources.GetObject("$this.Font")));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.ImeMode         = ((System.Windows.Forms.ImeMode)(resources.GetObject("$this.ImeMode")));
     this.Location        = ((System.Drawing.Point)(resources.GetObject("$this.Location")));
     this.MaximizeBox     = false;
     this.MaximumSize     = ((System.Drawing.Size)(resources.GetObject("$this.MaximumSize")));
     this.MinimizeBox     = false;
     this.MinimumSize     = ((System.Drawing.Size)(resources.GetObject("$this.MinimumSize")));
     this.Name            = "MyMessageBox";
     this.RightToLeft     = ((System.Windows.Forms.RightToLeft)(resources.GetObject("$this.RightToLeft")));
     this.ShowInTaskbar   = false;
     this.StartPosition   = ((System.Windows.Forms.FormStartPosition)(resources.GetObject("$this.StartPosition")));
     this.Text            = resources.GetString("$this.Text");
     this.Load           += new System.EventHandler(this.MyMessageBox_Load);
     this.Activated      += new System.EventHandler(this.MyMessageBox_Activated);
     this.Paint          += new System.Windows.Forms.PaintEventHandler(this.MyMessageBox_Paint);
     this.ResumeLayout(false);
 }
Esempio 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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmDMPhieucd));
     this.panel1      = new System.Windows.Forms.Panel();
     this.lbTitle     = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label15     = new System.Windows.Forms.Label();
     this.panel2      = new System.Windows.Forms.Panel();
     this.lbRefresh   = new System.Windows.Forms.Label();
     this.txtTen      = new System.Windows.Forms.TextBox();
     this.txtTim      = new System.Windows.Forms.TextBox();
     this.panel4      = new System.Windows.Forms.Panel();
     this.butMoi      = new System.Windows.Forms.Button();
     this.butLuu      = new System.Windows.Forms.Button();
     this.butSua      = new System.Windows.Forms.Button();
     this.butHuy      = new System.Windows.Forms.Button();
     this.butBoqua    = new System.Windows.Forms.Button();
     this.butInchiphi = new System.Windows.Forms.Button();
     this.butKetthuc  = new System.Windows.Forms.Button();
     this.DataGrid1   = new System.Windows.Forms.DataGrid();
     this.label10     = new System.Windows.Forms.Label();
     this.toolTip1    = new System.Windows.Forms.ToolTip(this.components);
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor   = System.Drawing.Color.SteelBlue;
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.lbTitle,
         this.pictureBox1
     });
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panel1.DockPadding.Bottom = 1;
     this.panel1.DockPadding.Left   = 1;
     this.panel1.DockPadding.Right  = 1;
     this.panel1.DockPadding.Top    = 1;
     this.panel1.ForeColor          = System.Drawing.Color.White;
     this.panel1.Location           = new System.Drawing.Point(3, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(700, 49);
     this.panel1.TabIndex = 16;
     //
     // lbTitle
     //
     this.lbTitle.BackColor = System.Drawing.Color.SteelBlue;
     this.lbTitle.Dock      = System.Windows.Forms.DockStyle.Left;
     this.lbTitle.Font      = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lbTitle.ForeColor = System.Drawing.Color.White;
     this.lbTitle.Location  = new System.Drawing.Point(71, 1);
     this.lbTitle.Name      = "lbTitle";
     this.lbTitle.Size      = new System.Drawing.Size(393, 45);
     this.lbTitle.TabIndex  = 15;
     this.lbTitle.Text      = " KHAI BÁO DANH MỤC PHIẾU CHỈ ĐỊNH";
     this.lbTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Dock        = System.Windows.Forms.DockStyle.Left;
     this.pictureBox1.Image       = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location    = new System.Drawing.Point(1, 1);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(70, 45);
     this.pictureBox1.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex    = 63;
     this.pictureBox1.TabStop     = false;
     //
     // label15
     //
     this.label15.Dock     = System.Windows.Forms.DockStyle.Top;
     this.label15.Location = new System.Drawing.Point(3, 52);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(700, 3);
     this.label15.TabIndex = 18;
     //
     // panel2
     //
     this.panel2.BackColor   = System.Drawing.Color.FromArgb(((System.Byte)(239)), ((System.Byte)(239)), ((System.Byte)(239)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.txtTim,
         this.lbRefresh,
         this.txtTen,
         this.panel4,
         this.DataGrid1,
         this.label10
     });
     this.panel2.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panel2.DockPadding.All = 3;
     this.panel2.ForeColor       = System.Drawing.Color.Navy;
     this.panel2.Location        = new System.Drawing.Point(3, 55);
     this.panel2.Name            = "panel2";
     this.panel2.Size            = new System.Drawing.Size(700, 373);
     this.panel2.TabIndex        = 19;
     this.panel2.Paint          += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
     //
     // lbRefresh
     //
     this.lbRefresh.Anchor    = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lbRefresh.BackColor = System.Drawing.SystemColors.Control;
     this.lbRefresh.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.lbRefresh.Image     = ((System.Drawing.Bitmap)(resources.GetObject("lbRefresh.Image")));
     this.lbRefresh.Location  = new System.Drawing.Point(674, 6);
     this.lbRefresh.Name      = "lbRefresh";
     this.lbRefresh.Size      = new System.Drawing.Size(17, 18);
     this.lbRefresh.TabIndex  = 192;
     this.toolTip1.SetToolTip(this.lbRefresh, "Lấy số liệu");
     this.lbRefresh.Click += new System.EventHandler(this.lbRefresh_Click);
     //
     // txtTen
     //
     this.txtTen.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.txtTen.BackColor = System.Drawing.Color.White;
     this.txtTen.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtTen.Location  = new System.Drawing.Point(59, 306);
     this.txtTen.MaxLength = 100;
     this.txtTen.Name      = "txtTen";
     this.txtTen.Size      = new System.Drawing.Size(560, 21);
     this.txtTen.TabIndex  = 0;
     this.txtTen.Tag       = "";
     this.txtTen.Text      = "";
     this.txtTen.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtTen_KeyDown);
     //
     // txtTim
     //
     this.txtTim.Anchor       = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.txtTim.BackColor    = System.Drawing.Color.White;
     this.txtTim.Font         = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtTim.Location     = new System.Drawing.Point(622, 306);
     this.txtTim.MaxLength    = 100;
     this.txtTim.Name         = "txtTim";
     this.txtTim.Size         = new System.Drawing.Size(72, 21);
     this.txtTim.TabIndex     = 2;
     this.txtTim.TabStop      = false;
     this.txtTim.Tag          = "";
     this.txtTim.Text         = "Tìm kiếm";
     this.txtTim.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtTim.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.txtTim_KeyDown);
     this.txtTim.TextChanged += new System.EventHandler(this.txtTim_TextChanged);
     this.txtTim.Leave       += new System.EventHandler(this.txtTim_Leave);
     this.txtTim.Enter       += new System.EventHandler(this.txtTim_Enter);
     //
     // panel4
     //
     this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                           | System.Windows.Forms.AnchorStyles.Right);
     this.panel4.BackColor   = System.Drawing.Color.SteelBlue;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.butMoi,
         this.butLuu,
         this.butSua,
         this.butHuy,
         this.butBoqua,
         this.butInchiphi,
         this.butKetthuc
     });
     this.panel4.DockPadding.Bottom = 3;
     this.panel4.DockPadding.Left   = 3;
     this.panel4.DockPadding.Right  = 3;
     this.panel4.DockPadding.Top    = 4;
     this.panel4.Location           = new System.Drawing.Point(3, 331);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(692, 37);
     this.panel4.TabIndex = 150;
     //
     // butMoi
     //
     this.butMoi.BackColor  = System.Drawing.SystemColors.Control;
     this.butMoi.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butMoi.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butMoi.ForeColor  = System.Drawing.Color.Navy;
     this.butMoi.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butMoi.Image")));
     this.butMoi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butMoi.Location   = new System.Drawing.Point(5, 4);
     this.butMoi.Name       = "butMoi";
     this.butMoi.Size       = new System.Drawing.Size(64, 28);
     this.butMoi.TabIndex   = 0;
     this.butMoi.Text       = "     Mới";
     this.butMoi.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butMoi.Click     += new System.EventHandler(this.butMoi_Click);
     //
     // butLuu
     //
     this.butLuu.BackColor  = System.Drawing.SystemColors.Control;
     this.butLuu.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butLuu.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butLuu.ForeColor  = System.Drawing.Color.Navy;
     this.butLuu.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butLuu.Image")));
     this.butLuu.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLuu.Location   = new System.Drawing.Point(70, 4);
     this.butLuu.Name       = "butLuu";
     this.butLuu.Size       = new System.Drawing.Size(64, 28);
     this.butLuu.TabIndex   = 1;
     this.butLuu.Text       = "      Lưu";
     this.butLuu.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butLuu.Click     += new System.EventHandler(this.butLuu_Click);
     //
     // butSua
     //
     this.butSua.BackColor  = System.Drawing.SystemColors.Control;
     this.butSua.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butSua.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butSua.ForeColor  = System.Drawing.Color.Navy;
     this.butSua.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butSua.Image")));
     this.butSua.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSua.Location   = new System.Drawing.Point(135, 4);
     this.butSua.Name       = "butSua";
     this.butSua.Size       = new System.Drawing.Size(64, 28);
     this.butSua.TabIndex   = 2;
     this.butSua.Text       = "      Sữa";
     this.butSua.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butSua.Click     += new System.EventHandler(this.butSua_Click);
     //
     // butHuy
     //
     this.butHuy.BackColor  = System.Drawing.SystemColors.Control;
     this.butHuy.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butHuy.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butHuy.ForeColor  = System.Drawing.Color.Navy;
     this.butHuy.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butHuy.Image")));
     this.butHuy.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butHuy.Location   = new System.Drawing.Point(200, 4);
     this.butHuy.Name       = "butHuy";
     this.butHuy.Size       = new System.Drawing.Size(64, 28);
     this.butHuy.TabIndex   = 3;
     this.butHuy.Text       = "      Xoá";
     this.butHuy.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butHuy.Click     += new System.EventHandler(this.butHuy_Click);
     //
     // butBoqua
     //
     this.butBoqua.BackColor  = System.Drawing.SystemColors.Control;
     this.butBoqua.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butBoqua.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butBoqua.ForeColor  = System.Drawing.Color.Navy;
     this.butBoqua.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butBoqua.Image")));
     this.butBoqua.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butBoqua.Location   = new System.Drawing.Point(265, 4);
     this.butBoqua.Name       = "butBoqua";
     this.butBoqua.Size       = new System.Drawing.Size(80, 28);
     this.butBoqua.TabIndex   = 4;
     this.butBoqua.Text       = "      Bỏ qua";
     this.butBoqua.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butBoqua.Click     += new System.EventHandler(this.butBoqua_Click);
     //
     // butInchiphi
     //
     this.butInchiphi.BackColor  = System.Drawing.SystemColors.Control;
     this.butInchiphi.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butInchiphi.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butInchiphi.ForeColor  = System.Drawing.Color.Navy;
     this.butInchiphi.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butInchiphi.Image")));
     this.butInchiphi.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butInchiphi.Location   = new System.Drawing.Point(346, 4);
     this.butInchiphi.Name       = "butInchiphi";
     this.butInchiphi.Size       = new System.Drawing.Size(64, 28);
     this.butInchiphi.TabIndex   = 5;
     this.butInchiphi.Text       = "        In";
     this.butInchiphi.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butInchiphi.Click     += new System.EventHandler(this.butInchiphi_Click);
     //
     // butKetthuc
     //
     this.butKetthuc.BackColor  = System.Drawing.SystemColors.Control;
     this.butKetthuc.Cursor     = System.Windows.Forms.Cursors.Hand;
     this.butKetthuc.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.butKetthuc.ForeColor  = System.Drawing.Color.Navy;
     this.butKetthuc.Image      = ((System.Drawing.Bitmap)(resources.GetObject("butKetthuc.Image")));
     this.butKetthuc.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.butKetthuc.Location   = new System.Drawing.Point(411, 4);
     this.butKetthuc.Name       = "butKetthuc";
     this.butKetthuc.Size       = new System.Drawing.Size(86, 28);
     this.butKetthuc.TabIndex   = 6;
     this.butKetthuc.Text       = "        Kết thúc";
     this.butKetthuc.TextAlign  = System.Drawing.ContentAlignment.MiddleLeft;
     this.butKetthuc.Click     += new System.EventHandler(this.butKetthuc_Click);
     //
     // DataGrid1
     //
     this.DataGrid1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                               | System.Windows.Forms.AnchorStyles.Left)
                              | System.Windows.Forms.AnchorStyles.Right);
     this.DataGrid1.BackColor           = System.Drawing.Color.White;
     this.DataGrid1.BackgroundColor     = System.Drawing.Color.White;
     this.DataGrid1.CaptionBackColor    = System.Drawing.SystemColors.Control;
     this.DataGrid1.CaptionFont         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.DataGrid1.CaptionForeColor    = System.Drawing.Color.Navy;
     this.DataGrid1.CaptionText         = "Máy xét nghiệm";
     this.DataGrid1.DataMember          = "";
     this.DataGrid1.ForeColor           = System.Drawing.Color.Navy;
     this.DataGrid1.HeaderForeColor     = System.Drawing.SystemColors.ControlText;
     this.DataGrid1.Location            = new System.Drawing.Point(4, 4);
     this.DataGrid1.Name                = "DataGrid1";
     this.DataGrid1.RowHeaderWidth      = 16;
     this.DataGrid1.SelectionBackColor  = System.Drawing.Color.SteelBlue;
     this.DataGrid1.SelectionForeColor  = System.Drawing.Color.White;
     this.DataGrid1.Size                = new System.Drawing.Size(690, 299);
     this.DataGrid1.TabIndex            = 0;
     this.DataGrid1.TabStop             = false;
     this.DataGrid1.SizeChanged        += new System.EventHandler(this.DataGrid1_SizeChanged);
     this.DataGrid1.CurrentCellChanged += new System.EventHandler(this.DataGrid1_CurrentCellChanged);
     //
     // label10
     //
     this.label10.Anchor    = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.label10.Location  = new System.Drawing.Point(-5, 306);
     this.label10.Name      = "label10";
     this.label10.Size      = new System.Drawing.Size(64, 20);
     this.label10.TabIndex  = 147;
     this.label10.Text      = "Tên report:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // frmDMPhieucd
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.FromArgb(((System.Byte)(128)), ((System.Byte)(128)), ((System.Byte)(255)));
     this.ClientSize        = new System.Drawing.Size(706, 431);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.panel2,
         this.label15,
         this.panel1
     });
     this.DockPadding.All = 3;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview      = true;
     this.Name            = "frmDMPhieucd";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Phiếu chỉ định";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.frmDMPhieucd_KeyDown);
     this.SizeChanged    += new System.EventHandler(this.frmDMPhieucd_SizeChanged);
     this.Load           += new System.EventHandler(this.frmDMPhieucd_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DataGrid1)).EndInit();
     this.ResumeLayout(false);
 }
 // Drawing
 public abstract void DrawPictureBox(Graphics dc, Rectangle clip, PictureBox pb);
Esempio n. 41
0
        public ThreadExceptionDialog(Exception t)
        {
            string str;
            string message;

            Button[] buttonArray;
            this.pictureBox     = new PictureBox();
            this.message        = new Label();
            this.continueButton = new Button();
            this.quitButton     = new Button();
            this.detailsButton  = new Button();
            this.helpButton     = new Button();
            this.details        = new TextBox();
            bool             flag      = false;
            WarningException exception = t as WarningException;

            if (exception != null)
            {
                str     = "ExDlgWarningText";
                message = exception.Message;
                if (exception.HelpUrl == null)
                {
                    buttonArray = new Button[] { this.continueButton };
                }
                else
                {
                    buttonArray = new Button[] { this.continueButton, this.helpButton };
                }
            }
            else
            {
                message = t.Message;
                flag    = true;
                if (Application.AllowQuit)
                {
                    if (t is SecurityException)
                    {
                        str = "ExDlgSecurityErrorText";
                    }
                    else
                    {
                        str = "ExDlgErrorText";
                    }
                    buttonArray = new Button[] { this.detailsButton, this.continueButton, this.quitButton };
                }
                else
                {
                    if (t is SecurityException)
                    {
                        str = "ExDlgSecurityContinueErrorText";
                    }
                    else
                    {
                        str = "ExDlgContinueErrorText";
                    }
                    buttonArray = new Button[] { this.detailsButton, this.continueButton };
                }
            }
            if (message.Length == 0)
            {
                message = t.GetType().Name;
            }
            if (t is SecurityException)
            {
                message = System.Windows.Forms.SR.GetString(str, new object[] { t.GetType().Name, Trim(message) });
            }
            else
            {
                message = System.Windows.Forms.SR.GetString(str, new object[] { Trim(message) });
            }
            StringBuilder builder = new StringBuilder();
            string        str3    = "\r\n";
            string        str4    = System.Windows.Forms.SR.GetString("ExDlgMsgSeperator");
            string        format  = System.Windows.Forms.SR.GetString("ExDlgMsgSectionSeperator");

            if (Application.CustomThreadExceptionHandlerAttached)
            {
                builder.Append(System.Windows.Forms.SR.GetString("ExDlgMsgHeaderNonSwitchable"));
            }
            else
            {
                builder.Append(System.Windows.Forms.SR.GetString("ExDlgMsgHeaderSwitchable"));
            }
            builder.Append(string.Format(CultureInfo.CurrentCulture, format, new object[] { System.Windows.Forms.SR.GetString("ExDlgMsgExceptionSection") }));
            builder.Append(t.ToString());
            builder.Append(str3);
            builder.Append(str3);
            builder.Append(string.Format(CultureInfo.CurrentCulture, format, new object[] { System.Windows.Forms.SR.GetString("ExDlgMsgLoadedAssembliesSection") }));
            new FileIOPermission(PermissionState.Unrestricted).Assert();
            try
            {
                foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
                {
                    AssemblyName name        = assembly.GetName();
                    string       fileVersion = System.Windows.Forms.SR.GetString("NotAvailable");
                    try
                    {
                        if ((name.EscapedCodeBase != null) && (name.EscapedCodeBase.Length > 0))
                        {
                            Uri uri = new Uri(name.EscapedCodeBase);
                            if (uri.Scheme == "file")
                            {
                                fileVersion = FileVersionInfo.GetVersionInfo(System.Windows.Forms.NativeMethods.GetLocalPath(name.EscapedCodeBase)).FileVersion;
                            }
                        }
                    }
                    catch (FileNotFoundException)
                    {
                    }
                    builder.Append(System.Windows.Forms.SR.GetString("ExDlgMsgLoadedAssembliesEntry", new object[] { name.Name, name.Version, fileVersion, name.EscapedCodeBase }));
                    builder.Append(str4);
                }
            }
            finally
            {
                CodeAccessPermission.RevertAssert();
            }
            builder.Append(string.Format(CultureInfo.CurrentCulture, format, new object[] { System.Windows.Forms.SR.GetString("ExDlgMsgJITDebuggingSection") }));
            if (Application.CustomThreadExceptionHandlerAttached)
            {
                builder.Append(System.Windows.Forms.SR.GetString("ExDlgMsgFooterNonSwitchable"));
            }
            else
            {
                builder.Append(System.Windows.Forms.SR.GetString("ExDlgMsgFooterSwitchable"));
            }
            builder.Append(str3);
            builder.Append(str3);
            string   str7     = builder.ToString();
            Graphics graphics = this.message.CreateGraphicsInternal();
            Size     size     = Size.Ceiling(graphics.MeasureString(message, this.Font, 0x164));

            size.Height += 4;
            graphics.Dispose();
            if (size.Width < 180)
            {
                size.Width = 180;
            }
            if (size.Height > 0x145)
            {
                size.Height = 0x145;
            }
            int width = size.Width + 0x54;
            int y     = Math.Max(size.Height, 40) + 0x1a;

            System.Windows.Forms.IntSecurity.GetParent.Assert();
            try
            {
                Form activeForm = Form.ActiveForm;
                if ((activeForm == null) || (activeForm.Text.Length == 0))
                {
                    this.Text = System.Windows.Forms.SR.GetString("ExDlgCaption");
                }
                else
                {
                    this.Text = System.Windows.Forms.SR.GetString("ExDlgCaption2", new object[] { activeForm.Text });
                }
            }
            finally
            {
                CodeAccessPermission.RevertAssert();
            }
            base.AcceptButton        = this.continueButton;
            base.CancelButton        = this.continueButton;
            base.FormBorderStyle     = FormBorderStyle.FixedDialog;
            base.MaximizeBox         = false;
            base.MinimizeBox         = false;
            base.StartPosition       = FormStartPosition.CenterScreen;
            base.Icon                = null;
            base.ClientSize          = new Size(width, y + 0x1f);
            base.TopMost             = true;
            this.pictureBox.Location = new Point(0, 0);
            this.pictureBox.Size     = new Size(0x40, 0x40);
            this.pictureBox.SizeMode = PictureBoxSizeMode.CenterImage;
            if (t is SecurityException)
            {
                this.pictureBox.Image = SystemIcons.Information.ToBitmap();
            }
            else
            {
                this.pictureBox.Image = SystemIcons.Error.ToBitmap();
            }
            base.Controls.Add(this.pictureBox);
            this.message.SetBounds(0x40, 8 + ((40 - Math.Min(size.Height, 40)) / 2), size.Width, size.Height);
            this.message.Text = message;
            base.Controls.Add(this.message);
            this.continueButton.Text         = System.Windows.Forms.SR.GetString("ExDlgContinue");
            this.continueButton.FlatStyle    = FlatStyle.Standard;
            this.continueButton.DialogResult = DialogResult.Cancel;
            this.quitButton.Text             = System.Windows.Forms.SR.GetString("ExDlgQuit");
            this.quitButton.FlatStyle        = FlatStyle.Standard;
            this.quitButton.DialogResult     = DialogResult.Abort;
            this.helpButton.Text             = System.Windows.Forms.SR.GetString("ExDlgHelp");
            this.helpButton.FlatStyle        = FlatStyle.Standard;
            this.helpButton.DialogResult     = DialogResult.Yes;
            this.detailsButton.Text          = System.Windows.Forms.SR.GetString("ExDlgShowDetails");
            this.detailsButton.FlatStyle     = FlatStyle.Standard;
            this.detailsButton.Click        += new EventHandler(this.DetailsClick);
            Button detailsButton = null;
            int    num3          = 0;

            if (flag)
            {
                detailsButton    = this.detailsButton;
                this.expandImage = new Bitmap(base.GetType(), "down.bmp");
                this.expandImage.MakeTransparent();
                this.collapseImage = new Bitmap(base.GetType(), "up.bmp");
                this.collapseImage.MakeTransparent();
                detailsButton.SetBounds(8, y, 100, 0x17);
                detailsButton.Image      = this.expandImage;
                detailsButton.ImageAlign = ContentAlignment.MiddleLeft;
                base.Controls.Add(detailsButton);
                num3 = 1;
            }
            int x = (width - 8) - (((buttonArray.Length - num3) * 0x69) - 5);

            for (int i = num3; i < buttonArray.Length; i++)
            {
                detailsButton = buttonArray[i];
                detailsButton.SetBounds(x, y, 100, 0x17);
                base.Controls.Add(detailsButton);
                x += 0x69;
            }
            this.details.Text          = str7;
            this.details.ScrollBars    = ScrollBars.Both;
            this.details.Multiline     = true;
            this.details.ReadOnly      = true;
            this.details.WordWrap      = false;
            this.details.TabStop       = false;
            this.details.AcceptsReturn = false;
            this.details.SetBounds(8, y + 0x1f, width - 0x10, 0x9a);
            base.Controls.Add(this.details);
        }
Esempio n. 42
0
 private void InitializeComponent()
 {
     this.PictureBox1      = new System.Windows.Forms.PictureBox();
     this.lblErrorHeading  = new System.Windows.Forms.Label();
     this.ErrorBox         = new System.Windows.Forms.RichTextBox();
     this.lblScopeHeading  = new System.Windows.Forms.Label();
     this.ScopeBox         = new System.Windows.Forms.RichTextBox();
     this.lblActionHeading = new System.Windows.Forms.Label();
     this.ActionBox        = new System.Windows.Forms.RichTextBox();
     this.lblMoreHeading   = new System.Windows.Forms.Label();
     this.btn1             = new System.Windows.Forms.Button();
     this.btn2             = new System.Windows.Forms.Button();
     this.btn3             = new System.Windows.Forms.Button();
     this.txtMore          = new System.Windows.Forms.TextBox();
     this.btnMore          = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // PictureBox1
     //
     this.PictureBox1.Location     = new System.Drawing.Point(8, 8);
     this.PictureBox1.Name         = "PictureBox1";
     this.PictureBox1.Size         = new System.Drawing.Size(32, 32);
     this.PictureBox1.TabIndex     = 0;
     this.PictureBox1.TabStop      = false;
     this.lblErrorHeading.AutoSize = true;
     this.lblErrorHeading.Font     = new System.Drawing.Font("Tahoma", 8, FontStyle.Regular);
     this.lblErrorHeading.Location = new System.Drawing.Point(48, 4);
     this.lblErrorHeading.Name     = "lblErrorHeading";
     this.lblErrorHeading.Size     = new System.Drawing.Size(91, 16);
     this.lblErrorHeading.TabIndex = 0;
     this.lblErrorHeading.Text     = "What happened";
     this.ErrorBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.ErrorBox.BackColor        = System.Drawing.SystemColors.Control;
     this.ErrorBox.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.ErrorBox.CausesValidation = false;
     this.ErrorBox.Location         = new System.Drawing.Point(48, 24);
     this.ErrorBox.Name             = "ErrorBox";
     this.ErrorBox.ReadOnly         = true;
     this.ErrorBox.ScrollBars       = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.ErrorBox.Size             = new System.Drawing.Size(416, 64);
     this.ErrorBox.TabIndex         = 1;
     this.ErrorBox.Text             = "(error message)";
     this.lblScopeHeading.AutoSize  = true;
     this.lblScopeHeading.Font      = new System.Drawing.Font("Tahoma", 8, FontStyle.Regular);
     this.lblScopeHeading.Location  = new System.Drawing.Point(8, 92);
     this.lblScopeHeading.Name      = "lblScopeHeading";
     this.lblScopeHeading.Size      = new System.Drawing.Size(134, 16);
     this.lblScopeHeading.TabIndex  = 2;
     this.lblScopeHeading.Text      = "How this will affect you";
     this.ScopeBox.Anchor           = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.ScopeBox.BackColor        = System.Drawing.SystemColors.Control;
     this.ScopeBox.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.ScopeBox.CausesValidation = false;
     this.ScopeBox.Location         = new System.Drawing.Point(24, 112);
     this.ScopeBox.Name             = "ScopeBox";
     this.ScopeBox.ReadOnly         = true;
     this.ScopeBox.ScrollBars       = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.ScopeBox.Size             = new System.Drawing.Size(440, 64);
     this.ScopeBox.TabIndex         = 3;
     this.ScopeBox.Text             = "(scope)";
     this.lblActionHeading.AutoSize = true;
     this.lblActionHeading.Font     = new System.Drawing.Font("Tahoma", 8, FontStyle.Regular);
     this.lblActionHeading.Location = new System.Drawing.Point(8, 180);
     this.lblActionHeading.Name     = "lblActionHeading";
     this.lblActionHeading.Size     = new System.Drawing.Size(143, 16);
     this.lblActionHeading.TabIndex = 4;
     this.lblActionHeading.Text     = "What you can do about it";
     this.ActionBox.Anchor          = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                            | System.Windows.Forms.AnchorStyles.Right)));
     this.ActionBox.BackColor        = System.Drawing.SystemColors.Control;
     this.ActionBox.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.ActionBox.CausesValidation = false;
     this.ActionBox.Location         = new System.Drawing.Point(24, 200);
     this.ActionBox.Name             = "ActionBox";
     this.ActionBox.ReadOnly         = true;
     this.ActionBox.ScrollBars       = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.ActionBox.Size             = new System.Drawing.Size(440, 92);
     this.ActionBox.TabIndex         = 5;
     this.ActionBox.Text             = "(action)";
     this.lblMoreHeading.AutoSize    = true;
     this.lblMoreHeading.Font        = new System.Drawing.Font("Tahoma", 8, FontStyle.Regular);
     this.lblMoreHeading.Location    = new System.Drawing.Point(8, 300);
     this.lblMoreHeading.Name        = "lblMoreHeading";
     this.lblMoreHeading.TabIndex    = 6;
     this.lblMoreHeading.Text        = "More information";
     this.btn1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btn1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btn1.Location     = new System.Drawing.Point(220, 544);
     this.btn1.Name         = "btn1";
     this.btn1.TabIndex     = 9;
     this.btn1.Text         = "Button1";
     this.btn2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btn2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btn2.Location     = new System.Drawing.Point(304, 544);
     this.btn2.Name         = "btn2";
     this.btn2.TabIndex     = 10;
     this.btn2.Text         = "Button2";
     this.btn3.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btn3.Location     = new System.Drawing.Point(388, 544);
     this.btn3.Name         = "btn3";
     this.btn3.TabIndex     = 11;
     this.btn3.Text         = "Button3";
     this.txtMore.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.txtMore.CausesValidation = false;
     this.txtMore.Font             = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.txtMore.Location         = new System.Drawing.Point(8, 324);
     this.txtMore.Multiline        = true;
     this.txtMore.Name             = "txtMore";
     this.txtMore.ReadOnly         = true;
     this.txtMore.ScrollBars       = System.Windows.Forms.ScrollBars.Vertical;
     this.txtMore.Size             = new System.Drawing.Size(456, 212);
     this.txtMore.TabIndex         = 8;
     this.txtMore.Text             = "(detailed information, such as exception details)";
     this.btnMore.Location         = new System.Drawing.Point(112, 296);
     this.btnMore.Name             = "btnMore";
     this.btnMore.Size             = new System.Drawing.Size(28, 24);
     this.btnMore.TabIndex         = 7;
     this.btnMore.Text             = ">>";
     this.AutoScaleBaseSize        = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(472, 573);
     this.Controls.Add(this.btnMore);
     this.Controls.Add(this.txtMore);
     this.Controls.Add(this.btn3);
     this.Controls.Add(this.btn2);
     this.Controls.Add(this.btn1);
     this.Controls.Add(this.lblMoreHeading);
     this.Controls.Add(this.lblActionHeading);
     this.Controls.Add(this.lblScopeHeading);
     this.Controls.Add(this.lblErrorHeading);
     this.Controls.Add(this.ActionBox);
     this.Controls.Add(this.ScopeBox);
     this.Controls.Add(this.ErrorBox);
     this.Controls.Add(this.PictureBox1);
     this.MinimizeBox   = false;
     this.Name          = "ExceptionDialog";
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "(app) has encountered a problem";
     this.TopMost       = true;
     this.ResumeLayout(false);
 }
Esempio 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(frmMain));
     this.statusBar1           = new System.Windows.Forms.StatusBar();
     this.statusBarPanel1      = new System.Windows.Forms.StatusBarPanel();
     this.statusBarPanel2      = new System.Windows.Forms.StatusBarPanel();
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.lstFileList          = new System.Windows.Forms.CheckedListBox();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.button9              = new System.Windows.Forms.Button();
     this.button8              = new System.Windows.Forms.Button();
     this.button7              = new System.Windows.Forms.Button();
     this.button6              = new System.Windows.Forms.Button();
     this.button5              = new System.Windows.Forms.Button();
     this.button4              = new System.Windows.Forms.Button();
     this.button3              = new System.Windows.Forms.Button();
     this.button2              = new System.Windows.Forms.Button();
     this.button1              = new System.Windows.Forms.Button();
     this.cmbImageType         = new System.Windows.Forms.ComboBox();
     this.label3               = new System.Windows.Forms.Label();
     this.cmdBrowse1           = new System.Windows.Forms.Button();
     this.txtWorkingFolder     = new System.Windows.Forms.TextBox();
     this.label1               = new System.Windows.Forms.Label();
     this.chkPreview           = new System.Windows.Forms.CheckBox();
     this.picSource            = new System.Windows.Forms.PictureBox();
     this.cmdMake              = new System.Windows.Forms.Button();
     this.progressBar1         = new System.Windows.Forms.ProgressBar();
     this.cmdBrowse3           = new System.Windows.Forms.Button();
     this.txtOutputFolder      = new System.Windows.Forms.TextBox();
     this.chkSameOutputFolder  = new System.Windows.Forms.CheckBox();
     this.txtSuffix            = new System.Windows.Forms.TextBox();
     this.lblSuffix2           = new System.Windows.Forms.Label();
     this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
     this.openFileDialog1      = new System.Windows.Forms.OpenFileDialog();
     this.lblSuffix1           = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picSource)).BeginInit();
     this.SuspendLayout();
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 464);
     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(792, 18);
     this.statusBar1.TabIndex   = 0;
     this.statusBar1.Text       = "statusBar1";
     //
     // statusBarPanel1
     //
     this.statusBarPanel1.Name = "statusBarPanel1";
     this.statusBarPanel1.Text = "Ready";
     //
     // statusBarPanel2
     //
     this.statusBarPanel2.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
     this.statusBarPanel2.Name     = "statusBarPanel2";
     this.statusBarPanel2.Width    = 675;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lstFileList);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.cmbImageType);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.cmdBrowse1);
     this.groupBox1.Controls.Add(this.txtWorkingFolder);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.chkPreview);
     this.groupBox1.Location = new System.Drawing.Point(4, 2);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(410, 458);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop  = false;
     //
     // lstFileList
     //
     this.lstFileList.Location              = new System.Drawing.Point(8, 76);
     this.lstFileList.Name                  = "lstFileList";
     this.lstFileList.Size                  = new System.Drawing.Size(396, 169);
     this.lstFileList.TabIndex              = 4;
     this.lstFileList.SelectedIndexChanged += new System.EventHandler(this.lstFileList_SelectedIndexChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.button9);
     this.groupBox2.Controls.Add(this.button8);
     this.groupBox2.Controls.Add(this.button7);
     this.groupBox2.Controls.Add(this.button6);
     this.groupBox2.Controls.Add(this.button5);
     this.groupBox2.Controls.Add(this.button4);
     this.groupBox2.Controls.Add(this.button3);
     this.groupBox2.Controls.Add(this.button2);
     this.groupBox2.Controls.Add(this.button1);
     this.groupBox2.Location = new System.Drawing.Point(6, 252);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(400, 200);
     this.groupBox2.TabIndex = 11;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Znak wodny";
     //
     // button9
     //
     this.button9.Location = new System.Drawing.Point(269, 131);
     this.button9.Name     = "button9";
     this.button9.Size     = new System.Drawing.Size(125, 50);
     this.button9.TabIndex = 8;
     this.button9.Text     = "9";
     this.button9.UseVisualStyleBackColor = true;
     this.button9.Click += new System.EventHandler(this.button9_Click);
     //
     // button8
     //
     this.button8.Location = new System.Drawing.Point(138, 131);
     this.button8.Name     = "button8";
     this.button8.Size     = new System.Drawing.Size(125, 50);
     this.button8.TabIndex = 7;
     this.button8.Text     = "8";
     this.button8.UseVisualStyleBackColor = true;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // button7
     //
     this.button7.Location = new System.Drawing.Point(7, 131);
     this.button7.Name     = "button7";
     this.button7.Size     = new System.Drawing.Size(125, 50);
     this.button7.TabIndex = 6;
     this.button7.Text     = "7";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // button6
     //
     this.button6.Location = new System.Drawing.Point(269, 73);
     this.button6.Name     = "button6";
     this.button6.Size     = new System.Drawing.Size(125, 50);
     this.button6.TabIndex = 5;
     this.button6.Text     = "6";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(138, 73);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(125, 50);
     this.button5.TabIndex = 4;
     this.button5.Text     = "5";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(7, 73);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(125, 50);
     this.button4.TabIndex = 3;
     this.button4.Text     = "4";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(269, 16);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(125, 50);
     this.button3.TabIndex = 2;
     this.button3.Text     = "3";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(138, 16);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(125, 50);
     this.button2.TabIndex = 1;
     this.button2.Text     = "2";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(7, 16);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(125, 50);
     this.button1.TabIndex = 0;
     this.button1.Text     = "1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // cmbImageType
     //
     this.cmbImageType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbImageType.Items.AddRange(new object[] {
         "Wszystkie",
         "JPEG Images (*.JPG, *.JPEG, *.PNG)",
         "Windows Bitmap Images (*.bmp)"
     });
     this.cmbImageType.Location              = new System.Drawing.Point(104, 46);
     this.cmbImageType.Name                  = "cmbImageType";
     this.cmbImageType.Size                  = new System.Drawing.Size(176, 21);
     this.cmbImageType.TabIndex              = 2;
     this.cmbImageType.SelectedIndexChanged += new System.EventHandler(this.cmbImageType_SelectedIndexChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(10, 50);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(82, 14);
     this.label3.TabIndex = 6;
     this.label3.Text     = "Typ ";
     //
     // cmdBrowse1
     //
     this.cmdBrowse1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cmdBrowse1.Location  = new System.Drawing.Point(382, 20);
     this.cmdBrowse1.Name      = "cmdBrowse1";
     this.cmdBrowse1.Size      = new System.Drawing.Size(22, 20);
     this.cmdBrowse1.TabIndex  = 1;
     this.cmdBrowse1.Text      = "...";
     this.cmdBrowse1.Click    += new System.EventHandler(this.cmdBrowse1_Click);
     //
     // txtWorkingFolder
     //
     this.txtWorkingFolder.Location = new System.Drawing.Point(104, 20);
     this.txtWorkingFolder.Name     = "txtWorkingFolder";
     this.txtWorkingFolder.Size     = new System.Drawing.Size(274, 20);
     this.txtWorkingFolder.TabIndex = 0;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 24);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(94, 14);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Katalog";
     //
     // chkPreview
     //
     this.chkPreview.Checked         = true;
     this.chkPreview.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.chkPreview.Location        = new System.Drawing.Point(284, 48);
     this.chkPreview.Name            = "chkPreview";
     this.chkPreview.Size            = new System.Drawing.Size(120, 20);
     this.chkPreview.TabIndex        = 3;
     this.chkPreview.Text            = "&Podgl¹d";
     this.chkPreview.CheckedChanged += new System.EventHandler(this.chkPreview_CheckedChanged);
     //
     // picSource
     //
     this.picSource.Location = new System.Drawing.Point(418, 6);
     this.picSource.Name     = "picSource";
     this.picSource.Size     = new System.Drawing.Size(370, 228);
     this.picSource.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.picSource.TabIndex = 2;
     this.picSource.TabStop  = false;
     //
     // cmdMake
     //
     this.cmdMake.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cmdMake.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdMake.Location  = new System.Drawing.Point(416, 353);
     this.cmdMake.Name      = "cmdMake";
     this.cmdMake.Size      = new System.Drawing.Size(370, 32);
     this.cmdMake.TabIndex  = 12;
     this.cmdMake.Text      = "START";
     this.cmdMake.Click    += new System.EventHandler(this.cmdMake_Click);
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(416, 238);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(372, 22);
     this.progressBar1.TabIndex = 14;
     //
     // cmdBrowse3
     //
     this.cmdBrowse3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cmdBrowse3.Location  = new System.Drawing.Point(766, 313);
     this.cmdBrowse3.Name      = "cmdBrowse3";
     this.cmdBrowse3.Size      = new System.Drawing.Size(22, 20);
     this.cmdBrowse3.TabIndex  = 11;
     this.cmdBrowse3.Text      = "...";
     this.cmdBrowse3.Click    += new System.EventHandler(this.cmdBrowse3_Click);
     //
     // txtOutputFolder
     //
     this.txtOutputFolder.Location = new System.Drawing.Point(418, 313);
     this.txtOutputFolder.Name     = "txtOutputFolder";
     this.txtOutputFolder.Size     = new System.Drawing.Size(342, 20);
     this.txtOutputFolder.TabIndex = 10;
     //
     // chkSameOutputFolder
     //
     this.chkSameOutputFolder.BackColor  = System.Drawing.SystemColors.Control;
     this.chkSameOutputFolder.Checked    = true;
     this.chkSameOutputFolder.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSameOutputFolder.Location   = new System.Drawing.Point(420, 270);
     this.chkSameOutputFolder.Name       = "chkSameOutputFolder";
     this.chkSameOutputFolder.Size       = new System.Drawing.Size(366, 17);
     this.chkSameOutputFolder.TabIndex   = 9;
     this.chkSameOutputFolder.Text       = "Katalog wyjœciowy taki sam jak wejsciowy ";
     this.chkSameOutputFolder.UseVisualStyleBackColor = false;
     this.chkSameOutputFolder.CheckedChanged         += new System.EventHandler(this.chkSameOutputFolder_CheckedChanged);
     //
     // txtSuffix
     //
     this.txtSuffix.Location  = new System.Drawing.Point(489, 287);
     this.txtSuffix.MaxLength = 15;
     this.txtSuffix.Name      = "txtSuffix";
     this.txtSuffix.Size      = new System.Drawing.Size(54, 20);
     this.txtSuffix.TabIndex  = 19;
     this.txtSuffix.Text      = "_final";
     //
     // lblSuffix2
     //
     this.lblSuffix2.Location = new System.Drawing.Point(549, 290);
     this.lblSuffix2.Name     = "lblSuffix2";
     this.lblSuffix2.Size     = new System.Drawing.Size(82, 16);
     this.lblSuffix2.TabIndex = 20;
     this.lblSuffix2.Text     = "po nazwie pliku";
     //
     // lblSuffix1
     //
     this.lblSuffix1.Location = new System.Drawing.Point(417, 290);
     this.lblSuffix1.Name     = "lblSuffix1";
     this.lblSuffix1.Size     = new System.Drawing.Size(66, 16);
     this.lblSuffix1.TabIndex = 22;
     this.lblSuffix1.Text     = "dodaj suffix";
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(792, 482);
     this.Controls.Add(this.lblSuffix1);
     this.Controls.Add(this.lblSuffix2);
     this.Controls.Add(this.txtSuffix);
     this.Controls.Add(this.chkSameOutputFolder);
     this.Controls.Add(this.txtOutputFolder);
     this.Controls.Add(this.cmdBrowse3);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.picSource);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.statusBar1);
     this.Controls.Add(this.cmdMake);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "frmMain";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Watermar My Image v1.0";
     this.Closed         += new System.EventHandler(this.frmMain_Closed);
     this.Load           += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picSource)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.SelFont        = new System.Windows.Forms.Button();
     this.ExportBitmap   = new System.Windows.Forms.Button();
     this.label1         = new System.Windows.Forms.Label();
     this.CharBox        = new System.Windows.Forms.PictureBox();
     this.PrevSym        = new System.Windows.Forms.Button();
     this.NextSym        = new System.Windows.Forms.Button();
     this.BorderSize     = new System.Windows.Forms.NumericUpDown();
     this.FontName       = new System.Windows.Forms.Label();
     this.FontSize       = new System.Windows.Forms.Label();
     this.CharIdx        = new System.Windows.Forms.Label();
     this.DoAntialias    = new System.Windows.Forms.CheckBox();
     this.ImportBitmap   = new System.Windows.Forms.Button();
     this.ImportProgress = new System.Windows.Forms.ProgressBar();
     ((System.ComponentModel.ISupportInitialize)(this.BorderSize)).BeginInit();
     this.SuspendLayout();
     //
     // SelFont
     //
     this.SelFont.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.SelFont.Location  = new System.Drawing.Point(10, 207);
     this.SelFont.Name      = "SelFont";
     this.SelFont.Size      = new System.Drawing.Size(177, 19);
     this.SelFont.TabIndex  = 0;
     this.SelFont.Text      = "Select Font...";
     this.SelFont.Click    += new System.EventHandler(this.SelFont_Click);
     //
     // ExportBitmap
     //
     this.ExportBitmap.Enabled   = false;
     this.ExportBitmap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ExportBitmap.Location  = new System.Drawing.Point(10, 234);
     this.ExportBitmap.Name      = "ExportBitmap";
     this.ExportBitmap.Size      = new System.Drawing.Size(177, 20);
     this.ExportBitmap.TabIndex  = 1;
     this.ExportBitmap.Text      = "Export Bitmap...";
     this.ExportBitmap.Click    += new System.EventHandler(this.ExportBitmap_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 175);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(79, 16);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Border:";
     //
     // CharBox
     //
     this.CharBox.BackColor   = System.Drawing.Color.Black;
     this.CharBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.CharBox.Location    = new System.Drawing.Point(10, 6);
     this.CharBox.Name        = "CharBox";
     this.CharBox.Size        = new System.Drawing.Size(177, 138);
     this.CharBox.TabIndex    = 4;
     this.CharBox.TabStop     = false;
     this.CharBox.Paint      += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
     //
     // PrevSym
     //
     this.PrevSym.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.PrevSym.Location  = new System.Drawing.Point(10, 148);
     this.PrevSym.Name      = "PrevSym";
     this.PrevSym.Size      = new System.Drawing.Size(70, 18);
     this.PrevSym.TabIndex  = 5;
     this.PrevSym.Text      = "<";
     this.PrevSym.Click    += new System.EventHandler(this.PrevSym_Click);
     //
     // NextSym
     //
     this.NextSym.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.NextSym.Location  = new System.Drawing.Point(117, 148);
     this.NextSym.Name      = "NextSym";
     this.NextSym.Size      = new System.Drawing.Size(70, 18);
     this.NextSym.TabIndex  = 6;
     this.NextSym.Text      = ">";
     this.NextSym.Click    += new System.EventHandler(this.NextSym_Click);
     //
     // BorderSize
     //
     this.BorderSize.BackColor     = System.Drawing.Color.FromArgb(((System.Byte)(255)), ((System.Byte)(224)), ((System.Byte)(192)));
     this.BorderSize.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.BorderSize.Location      = new System.Drawing.Point(52, 167);
     this.BorderSize.Name          = "BorderSize";
     this.BorderSize.Size          = new System.Drawing.Size(37, 20);
     this.BorderSize.TabIndex      = 7;
     this.BorderSize.ValueChanged += new System.EventHandler(this.BorderSize_ValueChanged);
     //
     // FontName
     //
     this.FontName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.FontName.Location    = new System.Drawing.Point(10, 190);
     this.FontName.Name        = "FontName";
     this.FontName.Size        = new System.Drawing.Size(117, 16);
     this.FontName.TabIndex    = 8;
     //
     // FontSize
     //
     this.FontSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.FontSize.Location    = new System.Drawing.Point(131, 190);
     this.FontSize.Name        = "FontSize";
     this.FontSize.Size        = new System.Drawing.Size(56, 16);
     this.FontSize.TabIndex    = 9;
     //
     // CharIdx
     //
     this.CharIdx.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.CharIdx.Location    = new System.Drawing.Point(83, 148);
     this.CharIdx.Name        = "CharIdx";
     this.CharIdx.Size        = new System.Drawing.Size(31, 18);
     this.CharIdx.TabIndex    = 10;
     //
     // DoAntialias
     //
     this.DoAntialias.BackColor       = System.Drawing.Color.Transparent;
     this.DoAntialias.FlatStyle       = System.Windows.Forms.FlatStyle.Flat;
     this.DoAntialias.Location        = new System.Drawing.Point(131, 173);
     this.DoAntialias.Name            = "DoAntialias";
     this.DoAntialias.Size            = new System.Drawing.Size(64, 16);
     this.DoAntialias.TabIndex        = 11;
     this.DoAntialias.Text            = "Antialias";
     this.DoAntialias.CheckedChanged += new System.EventHandler(this.DoAntialias_CheckedChanged);
     //
     // ImportBitmap
     //
     this.ImportBitmap.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.ImportBitmap.Location  = new System.Drawing.Point(10, 256);
     this.ImportBitmap.Name      = "ImportBitmap";
     this.ImportBitmap.Size      = new System.Drawing.Size(177, 20);
     this.ImportBitmap.TabIndex  = 12;
     this.ImportBitmap.Text      = "Import Bitmap...";
     this.ImportBitmap.Click    += new System.EventHandler(this.ImportBitmap_Click);
     //
     // ImportProgress
     //
     this.ImportProgress.Location = new System.Drawing.Point(12, 258);
     this.ImportProgress.Name     = "ImportProgress";
     this.ImportProgress.Size     = new System.Drawing.Size(173, 16);
     this.ImportProgress.TabIndex = 13;
     this.ImportProgress.Visible  = false;
     //
     // CreateFont
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(194, 278);
     this.Controls.Add(this.ImportProgress);
     this.Controls.Add(this.ImportBitmap);
     this.Controls.Add(this.DoAntialias);
     this.Controls.Add(this.CharIdx);
     this.Controls.Add(this.FontSize);
     this.Controls.Add(this.FontName);
     this.Controls.Add(this.BorderSize);
     this.Controls.Add(this.NextSym);
     this.Controls.Add(this.PrevSym);
     this.Controls.Add(this.CharBox);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.ExportBitmap);
     this.Controls.Add(this.SelFont);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "CreateFont";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "CreateFont";
     this.TopMost         = true;
     this.Closed         += new System.EventHandler(this.CreateFont_Closed);
     ((System.ComponentModel.ISupportInitialize)(this.BorderSize)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 45
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsDialog));
     this.m_customBtn              = new System.Windows.Forms.Button();
     this.m_fitToCurve             = new System.Windows.Forms.CheckBox();
     this.inkPicture               = new Microsoft.Ink.InkPicture();
     this.m_ballRadio              = new System.Windows.Forms.RadioButton();
     this.m_rectangleRadio         = new System.Windows.Forms.RadioButton();
     this.m_antialias              = new System.Windows.Forms.CheckBox();
     this.m_clearBtn               = new System.Windows.Forms.Button();
     this.groupBox3                = new System.Windows.Forms.GroupBox();
     this.groupBox4                = new System.Windows.Forms.GroupBox();
     this.groupBox5                = new System.Windows.Forms.GroupBox();
     this.m_transparencyBar        = new System.Windows.Forms.TrackBar();
     this.m_cancelBtn              = new System.Windows.Forms.Button();
     this.m_okBtn                  = new System.Windows.Forms.Button();
     this.pictureBox4              = new System.Windows.Forms.PictureBox();
     this.iconTip                  = new System.Windows.Forms.PictureBox();
     this.iconTransparency         = new System.Windows.Forms.PictureBox();
     this.label5                   = new System.Windows.Forms.Label();
     this.label1                   = new System.Windows.Forms.Label();
     this.m_transpLabel            = new System.Windows.Forms.Label();
     this.m_smoothLabel            = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.panel1                   = new System.Windows.Forms.Panel();
     this.m_pressureCheck          = new System.Windows.Forms.CheckBox();
     this.m_heightUpDown           = new System.Windows.Forms.NumericUpDown();
     this.label6                   = new System.Windows.Forms.Label();
     this.label7                   = new System.Windows.Forms.Label();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.pictureBox5              = new System.Windows.Forms.PictureBox();
     this.label8                   = new System.Windows.Forms.Label();
     this.m_widthUpDown            = new System.Windows.Forms.NumericUpDown();
     this.iconColor                = new System.Windows.Forms.PictureBox();
     this.m_colorBox               = new MSR.LST.Controls.InkToolBarControls.ColorComboBox();
     this.m_optimizeForHighlighter = new System.Windows.Forms.CheckBox();
     this.label2                   = new System.Windows.Forms.Label();
     this.label4                   = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.inkPicture)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconTip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconTransparency)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconColor)).BeginInit();
     this.SuspendLayout();
     //
     // m_customBtn
     //
     this.m_customBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_customBtn.Location  = new System.Drawing.Point(317, 12);
     this.m_customBtn.Name      = "m_customBtn";
     this.m_customBtn.Size      = new System.Drawing.Size(90, 25);
     this.m_customBtn.TabIndex  = 1;
     this.m_customBtn.Text      = "Custom...";
     this.m_customBtn.Click    += new System.EventHandler(this.CustomBtn_Click);
     //
     // m_fitToCurve
     //
     this.m_fitToCurve.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_fitToCurve.Location        = new System.Drawing.Point(163, 306);
     this.m_fitToCurve.Name            = "m_fitToCurve";
     this.m_fitToCurve.Size            = new System.Drawing.Size(96, 26);
     this.m_fitToCurve.TabIndex        = 10;
     this.m_fitToCurve.Text            = "Fit to curve";
     this.m_fitToCurve.CheckedChanged += new System.EventHandler(this.FitToCurve_CheckedChanged);
     //
     // inkPicture
     //
     this.inkPicture.Anchor      = System.Windows.Forms.AnchorStyles.None;
     this.inkPicture.BackColor   = System.Drawing.SystemColors.Window;
     this.inkPicture.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.inkPicture.Location    = new System.Drawing.Point(-51, 41);
     this.inkPicture.MarginX     = -2147483648;
     this.inkPicture.MarginY     = -2147483648;
     this.inkPicture.Name        = "inkPicture";
     this.inkPicture.Size        = new System.Drawing.Size(283, 271);
     this.inkPicture.TabIndex    = 7;
     this.inkPicture.Stroke     += new Microsoft.Ink.InkCollectorStrokeEventHandler(this.OnInkPicture_Stroke);
     //
     // m_ballRadio
     //
     this.m_ballRadio.Checked         = true;
     this.m_ballRadio.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_ballRadio.Location        = new System.Drawing.Point(163, 142);
     this.m_ballRadio.Name            = "m_ballRadio";
     this.m_ballRadio.Size            = new System.Drawing.Size(87, 26);
     this.m_ballRadio.TabIndex        = 4;
     this.m_ballRadio.TabStop         = true;
     this.m_ballRadio.Text            = "Ball";
     this.m_ballRadio.CheckedChanged += new System.EventHandler(this.RoundRadio_CheckedChanged);
     //
     // m_rectangleRadio
     //
     this.m_rectangleRadio.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_rectangleRadio.Location        = new System.Drawing.Point(163, 164);
     this.m_rectangleRadio.Name            = "m_rectangleRadio";
     this.m_rectangleRadio.Size            = new System.Drawing.Size(87, 26);
     this.m_rectangleRadio.TabIndex        = 5;
     this.m_rectangleRadio.TabStop         = true;
     this.m_rectangleRadio.Text            = "Rectangle";
     this.m_rectangleRadio.CheckedChanged += new System.EventHandler(this.RectangleRadio_CheckedChanged);
     //
     // m_antialias
     //
     this.m_antialias.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_antialias.Location        = new System.Drawing.Point(163, 282);
     this.m_antialias.Name            = "m_antialias";
     this.m_antialias.Size            = new System.Drawing.Size(96, 26);
     this.m_antialias.TabIndex        = 9;
     this.m_antialias.Text            = "Antialiased";
     this.m_antialias.CheckedChanged += new System.EventHandler(this.Antialias_CheckedChanged);
     //
     // m_clearBtn
     //
     this.m_clearBtn.BackColor = System.Drawing.SystemColors.ControlDark;
     this.m_clearBtn.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.m_clearBtn.Location  = new System.Drawing.Point(203, 9);
     this.m_clearBtn.Name      = "m_clearBtn";
     this.m_clearBtn.Size      = new System.Drawing.Size(90, 24);
     this.m_clearBtn.TabIndex  = 0;
     this.m_clearBtn.Text      = "Clear";
     this.m_clearBtn.UseVisualStyleBackColor = false;
     this.m_clearBtn.Click += new System.EventHandler(this.ClearBtn_Click);
     //
     // groupBox3
     //
     this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox3.Location  = new System.Drawing.Point(8, 267);
     this.groupBox3.Name      = "groupBox3";
     this.groupBox3.Size      = new System.Drawing.Size(407, 9);
     this.groupBox3.TabIndex  = 51;
     this.groupBox3.TabStop   = false;
     //
     // groupBox4
     //
     this.groupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox4.Location  = new System.Drawing.Point(8, 127);
     this.groupBox4.Name      = "groupBox4";
     this.groupBox4.Size      = new System.Drawing.Size(407, 9);
     this.groupBox4.TabIndex  = 52;
     this.groupBox4.TabStop   = false;
     //
     // groupBox5
     //
     this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.groupBox5.Location  = new System.Drawing.Point(8, 42);
     this.groupBox5.Name      = "groupBox5";
     this.groupBox5.Size      = new System.Drawing.Size(407, 9);
     this.groupBox5.TabIndex  = 53;
     this.groupBox5.TabStop   = false;
     //
     // m_transparencyBar
     //
     this.m_transparencyBar.BackColor     = System.Drawing.SystemColors.Control;
     this.m_transparencyBar.LargeChange   = 10;
     this.m_transparencyBar.Location      = new System.Drawing.Point(151, 81);
     this.m_transparencyBar.Maximum       = 100;
     this.m_transparencyBar.Name          = "m_transparencyBar";
     this.m_transparencyBar.Size          = new System.Drawing.Size(163, 45);
     this.m_transparencyBar.TabIndex      = 3;
     this.m_transparencyBar.TickStyle     = System.Windows.Forms.TickStyle.Both;
     this.m_transparencyBar.ValueChanged += new System.EventHandler(this.TransparencyBar_ValueChanged);
     //
     // m_cancelBtn
     //
     this.m_cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_cancelBtn.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.m_cancelBtn.Location     = new System.Drawing.Point(644, 336);
     this.m_cancelBtn.Name         = "m_cancelBtn";
     this.m_cancelBtn.Size         = new System.Drawing.Size(87, 25);
     this.m_cancelBtn.TabIndex     = 12;
     this.m_cancelBtn.Text         = "&Cancel";
     //
     // m_okBtn
     //
     this.m_okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.m_okBtn.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.m_okBtn.Location     = new System.Drawing.Point(545, 336);
     this.m_okBtn.Name         = "m_okBtn";
     this.m_okBtn.Size         = new System.Drawing.Size(90, 25);
     this.m_okBtn.TabIndex     = 13;
     this.m_okBtn.Text         = "&OK";
     //
     // pictureBox4
     //
     this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox4.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location  = new System.Drawing.Point(19, 294);
     this.pictureBox4.Name      = "pictureBox4";
     this.pictureBox4.Size      = new System.Drawing.Size(29, 26);
     this.pictureBox4.TabIndex  = 47;
     this.pictureBox4.TabStop   = false;
     //
     // iconTip
     //
     this.iconTip.BackColor       = System.Drawing.Color.Transparent;
     this.iconTip.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("iconTip.BackgroundImage")));
     this.iconTip.Location        = new System.Drawing.Point(19, 151);
     this.iconTip.Name            = "iconTip";
     this.iconTip.Size            = new System.Drawing.Size(29, 26);
     this.iconTip.TabIndex        = 48;
     this.iconTip.TabStop         = false;
     //
     // iconTransparency
     //
     this.iconTransparency.BackColor = System.Drawing.Color.Transparent;
     this.iconTransparency.Image     = ((System.Drawing.Image)(resources.GetObject("iconTransparency.Image")));
     this.iconTransparency.Location  = new System.Drawing.Point(19, 92);
     this.iconTransparency.Name      = "iconTransparency";
     this.iconTransparency.Size      = new System.Drawing.Size(29, 25);
     this.iconTransparency.TabIndex  = 50;
     this.iconTransparency.TabStop   = false;
     //
     // label5
     //
     this.label5.BackColor = System.Drawing.SystemColors.Control;
     this.label5.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location  = new System.Drawing.Point(58, 152);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(96, 25);
     this.label5.TabIndex  = 45;
     this.label5.Text      = "Tip :";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.SystemColors.Control;
     this.label1.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location  = new System.Drawing.Point(58, 12);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(105, 25);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Color :";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_transpLabel
     //
     this.m_transpLabel.BackColor = System.Drawing.SystemColors.Control;
     this.m_transpLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_transpLabel.Location  = new System.Drawing.Point(58, 93);
     this.m_transpLabel.Name      = "m_transpLabel";
     this.m_transpLabel.Size      = new System.Drawing.Size(96, 24);
     this.m_transpLabel.TabIndex  = 55;
     this.m_transpLabel.Text      = "Transparency :";
     this.m_transpLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_smoothLabel
     //
     this.m_smoothLabel.BackColor = System.Drawing.SystemColors.Control;
     this.m_smoothLabel.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_smoothLabel.Location  = new System.Drawing.Point(58, 294);
     this.m_smoothLabel.Name      = "m_smoothLabel";
     this.m_smoothLabel.Size      = new System.Drawing.Size(96, 25);
     this.m_smoothLabel.TabIndex  = 49;
     this.m_smoothLabel.Text      = "Smoothness :";
     this.m_smoothLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.BackColor = System.Drawing.SystemColors.ControlDark;
     this.label3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location  = new System.Drawing.Point(10, 16);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(183, 25);
     this.label3.TabIndex  = 8;
     this.label3.Text      = "Test";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.ControlDark;
     this.panel1.Controls.Add(this.m_clearBtn);
     this.panel1.Controls.Add(this.inkPicture);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Location = new System.Drawing.Point(428, 8);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(180, 320);
     this.panel1.TabIndex = 11;
     //
     // m_pressureCheck
     //
     this.m_pressureCheck.Checked         = true;
     this.m_pressureCheck.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.m_pressureCheck.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_pressureCheck.Location        = new System.Drawing.Point(278, 151);
     this.m_pressureCheck.Name            = "m_pressureCheck";
     this.m_pressureCheck.Size            = new System.Drawing.Size(125, 26);
     this.m_pressureCheck.TabIndex        = 6;
     this.m_pressureCheck.Text            = "Ignore pressure";
     this.m_pressureCheck.CheckedChanged += new System.EventHandler(this.PressureCheck_CheckedChanged);
     //
     // m_heightUpDown
     //
     this.m_heightUpDown.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_heightUpDown.DecimalPlaces = 1;
     this.m_heightUpDown.Increment     = new decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_heightUpDown.Location = new System.Drawing.Point(226, 209);
     this.m_heightUpDown.Maximum  = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_heightUpDown.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_heightUpDown.Name      = "m_heightUpDown";
     this.m_heightUpDown.Size      = new System.Drawing.Size(58, 21);
     this.m_heightUpDown.TabIndex  = 7;
     this.m_heightUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_heightUpDown.Value     = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_heightUpDown.ValueChanged += new System.EventHandler(this.HeightUpDown_ValueChanged);
     this.m_heightUpDown.Leave        += new System.EventHandler(this.UpDown_Leave);
     //
     // label6
     //
     this.label6.Location  = new System.Drawing.Point(163, 208);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(53, 25);
     this.label6.TabIndex  = 44;
     this.label6.Text      = "Height";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label7
     //
     this.label7.Location  = new System.Drawing.Point(163, 238);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(53, 25);
     this.label7.TabIndex  = 43;
     this.label7.Text      = "Width";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(8, 188);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(407, 9);
     this.groupBox1.TabIndex = 42;
     this.groupBox1.TabStop  = false;
     //
     // pictureBox5
     //
     this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox5.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
     this.pictureBox5.Location  = new System.Drawing.Point(19, 221);
     this.pictureBox5.Name      = "pictureBox5";
     this.pictureBox5.Size      = new System.Drawing.Size(29, 26);
     this.pictureBox5.TabIndex  = 41;
     this.pictureBox5.TabStop   = false;
     //
     // label8
     //
     this.label8.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location  = new System.Drawing.Point(58, 221);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(96, 25);
     this.label8.TabIndex  = 40;
     this.label8.Text      = "Size :";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_widthUpDown
     //
     this.m_widthUpDown.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_widthUpDown.DecimalPlaces = 1;
     this.m_widthUpDown.Increment     = new decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_widthUpDown.Location = new System.Drawing.Point(226, 239);
     this.m_widthUpDown.Maximum  = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_widthUpDown.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         65536
     });
     this.m_widthUpDown.Name      = "m_widthUpDown";
     this.m_widthUpDown.Size      = new System.Drawing.Size(58, 21);
     this.m_widthUpDown.TabIndex  = 8;
     this.m_widthUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.m_widthUpDown.Value     = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.m_widthUpDown.ValueChanged += new System.EventHandler(this.WidthUpDown_ValueChanged);
     this.m_widthUpDown.Leave        += new System.EventHandler(this.UpDown_Leave);
     //
     // iconColor
     //
     this.iconColor.BackColor = System.Drawing.Color.Transparent;
     this.iconColor.Image     = ((System.Drawing.Image)(resources.GetObject("iconColor.Image")));
     this.iconColor.Location  = new System.Drawing.Point(19, 11);
     this.iconColor.Name      = "iconColor";
     this.iconColor.Size      = new System.Drawing.Size(29, 26);
     this.iconColor.TabIndex  = 38;
     this.iconColor.TabStop   = false;
     //
     // m_colorBox
     //
     this.m_colorBox.BackColor     = System.Drawing.SystemColors.Window;
     this.m_colorBox.Location      = new System.Drawing.Point(163, 13);
     this.m_colorBox.Name          = "m_colorBox";
     this.m_colorBox.Size          = new System.Drawing.Size(148, 23);
     this.m_colorBox.TabIndex      = 0;
     this.m_colorBox.ColorChanged += new System.EventHandler(this.ColorCombo_ColorChanged);
     //
     // m_optimizeForHighlighter
     //
     this.m_optimizeForHighlighter.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.m_optimizeForHighlighter.Location        = new System.Drawing.Point(163, 54);
     this.m_optimizeForHighlighter.Name            = "m_optimizeForHighlighter";
     this.m_optimizeForHighlighter.Size            = new System.Drawing.Size(217, 26);
     this.m_optimizeForHighlighter.TabIndex        = 2;
     this.m_optimizeForHighlighter.Text            = "Optimize for highlighting text";
     this.m_optimizeForHighlighter.CheckedChanged += new System.EventHandler(this.OnOptimizeForHighlighter_CheckedChanged);
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(289, 211);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(129, 14);
     this.label2.TabIndex  = 56;
     this.label2.Text      = "mm";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(289, 241);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(129, 14);
     this.label4.TabIndex = 57;
     this.label4.Text     = "mm";
     //
     // SettingsDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.CancelButton      = this.m_cancelBtn;
     this.ClientSize        = new System.Drawing.Size(616, 342);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.m_optimizeForHighlighter);
     this.Controls.Add(this.m_colorBox);
     this.Controls.Add(this.iconColor);
     this.Controls.Add(this.m_transpLabel);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.pictureBox5);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.m_widthUpDown);
     this.Controls.Add(this.m_heightUpDown);
     this.Controls.Add(this.m_pressureCheck);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.iconTip);
     this.Controls.Add(this.m_smoothLabel);
     this.Controls.Add(this.iconTransparency);
     this.Controls.Add(this.m_transparencyBar);
     this.Controls.Add(this.m_fitToCurve);
     this.Controls.Add(this.m_antialias);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.m_customBtn);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.m_rectangleRadio);
     this.Controls.Add(this.m_ballRadio);
     this.Controls.Add(this.m_cancelBtn);
     this.Controls.Add(this.m_okBtn);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SettingsDialog";
     this.ShowInTaskbar   = false;
     this.Text            = "Ink Settings";
     this.Load           += new System.EventHandler(this.Settings_Load);
     ((System.ComponentModel.ISupportInitialize)(this.inkPicture)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_transparencyBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconTip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconTransparency)).EndInit();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.m_heightUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_widthUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.iconColor)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio 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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.label1      = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.button1     = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this.label1.Location  = new System.Drawing.Point(-2, 104);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(378, 51);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "Click the button to view an PDF document generated by Essential PDF.  Please note" +
                             " that Adobe Reader or its equivalent is required to view the resultant document." +
                             "";
     //
     // pictureBox1
     //
     this.pictureBox1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pictureBox1.Image    = System.Drawing.Image.FromFile(GetFullTemplatePath("pdf_header.png", true));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(376, 91);
     this.pictureBox1.TabIndex = 24;
     this.pictureBox1.TabStop  = false;
     //
     // button1
     //
     this.button1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.BackColor = System.Drawing.Color.Transparent;
     this.button1.FlatAppearance.BorderColor        = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.button1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(224)))), ((int)(((byte)(192)))));
     this.button1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     //
     this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.button1.Location   = new System.Drawing.Point(289, 154);
     this.button1.Name       = "button1";
     this.button1.Size       = new System.Drawing.Size(75, 23);
     this.button1.TabIndex   = 0;
     this.button1.Text       = "PDF";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // Form1
     //
     //this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor  = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(376, 197);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = System.Drawing.Icon.ExtractAssociatedIcon(GetFullTemplatePath("syncfusion.ico", true));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Form1";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Page Settings";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components         = new System.ComponentModel.Container();
     this.cancelButton       = new System.Windows.Forms.Button();
     this.okButton           = new System.Windows.Forms.Button();
     this.previewBox         = new System.Windows.Forms.PictureBox();
     this.projectListView    = new System.Windows.Forms.ListView();
     this.columnHeader1      = new System.Windows.Forms.ColumnHeader();
     this.imageList          = new System.Windows.Forms.ImageList(this.components);
     this.locationTextBox    = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.descriptionLabel   = new System.Windows.Forms.Label();
     this.browseButton       = new System.Windows.Forms.Button();
     this.label2             = new System.Windows.Forms.Label();
     this.nameTextBox        = new System.Windows.Forms.TextBox();
     this.createDirectoryBox = new System.Windows.Forms.CheckBox();
     this.statusBar          = new System.Windows.Forms.StatusBar();
     this.label3             = new System.Windows.Forms.Label();
     this.packageTextBox     = new System.Windows.Forms.TextBox();
     ((System.ComponentModel.ISupportInitialize)(this.previewBox)).BeginInit();
     this.SuspendLayout();
     //
     // cancelButton
     //
     this.cancelButton.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.cancelButton.Location     = new System.Drawing.Point(573, 388);
     this.cancelButton.Name         = "cancelButton";
     this.cancelButton.Size         = new System.Drawing.Size(90, 23);
     this.cancelButton.TabIndex     = 11;
     this.cancelButton.Text         = "&Cancel";
     //
     // okButton
     //
     this.okButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.okButton.Enabled   = false;
     this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.okButton.Location  = new System.Drawing.Point(475, 388);
     this.okButton.Name      = "okButton";
     this.okButton.Size      = new System.Drawing.Size(90, 23);
     this.okButton.TabIndex  = 10;
     this.okButton.Text      = "&OK";
     this.okButton.Click    += new System.EventHandler(this.okButton_Click);
     //
     // previewBox
     //
     this.previewBox.Anchor      = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right)));
     this.previewBox.BackColor   = System.Drawing.Color.White;
     this.previewBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.previewBox.Location    = new System.Drawing.Point(469, 12);
     this.previewBox.Name        = "previewBox";
     this.previewBox.Size        = new System.Drawing.Size(192, 246);
     this.previewBox.TabIndex    = 5;
     this.previewBox.TabStop     = false;
     //
     // projectListView
     //
     this.projectListView.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.projectListView.BackColor   = System.Drawing.SystemColors.Window;
     this.projectListView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.projectListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1 });
     this.projectListView.HeaderStyle    = System.Windows.Forms.ColumnHeaderStyle.None;
     this.projectListView.HideSelection  = false;
     this.projectListView.LargeImageList = this.imageList;
     this.projectListView.Location       = new System.Drawing.Point(11, 12);
     this.projectListView.MultiSelect    = false;
     this.projectListView.Name           = "projectListView";
     this.projectListView.Size           = new System.Drawing.Size(459, 246);
     this.projectListView.SmallImageList = this.imageList;
     this.projectListView.TabIndex       = 0;
     this.projectListView.TileSize       = new System.Drawing.Size(170, 22);
     this.projectListView.UseCompatibleStateImageBehavior = false;
     this.projectListView.View = System.Windows.Forms.View.Tile;
     this.projectListView.SelectedIndexChanged += new System.EventHandler(this.projectListView_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Width = 183;
     //
     // imageList
     //
     this.imageList.ColorDepth       = System.Windows.Forms.ColorDepth.Depth32Bit;
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     //
     // locationTextBox
     //
     this.locationTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.locationTextBox.Location     = new System.Drawing.Point(77, 328);
     this.locationTextBox.Name         = "locationTextBox";
     this.locationTextBox.Size         = new System.Drawing.Size(485, 21);
     this.locationTextBox.TabIndex     = 5;
     this.locationTextBox.Text         = "C:\\Documents and Settings\\Nick\\My Documents";
     this.locationTextBox.TextChanged += new System.EventHandler(this.locationTextBox_TextChanged);
     //
     // label1
     //
     this.label1.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label1.Location  = new System.Drawing.Point(13, 330);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(68, 16);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "&Location:";
     this.label1.AutoSize  = true;
     //
     // descriptionLabel
     //
     this.descriptionLabel.Anchor      = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.descriptionLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.descriptionLabel.Location    = new System.Drawing.Point(11, 265);
     this.descriptionLabel.Name        = "descriptionLabel";
     this.descriptionLabel.Size        = new System.Drawing.Size(650, 21);
     this.descriptionLabel.TabIndex    = 1;
     this.descriptionLabel.Text        = "Project description";
     this.descriptionLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // browseButton
     //
     this.browseButton.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.browseButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.browseButton.Location  = new System.Drawing.Point(573, 326);
     this.browseButton.Name      = "browseButton";
     this.browseButton.Size      = new System.Drawing.Size(90, 23);
     this.browseButton.TabIndex  = 6;
     this.browseButton.Text      = "&Browse...";
     this.browseButton.Click    += new System.EventHandler(this.browseButton_Click);
     //
     // label2
     //
     this.label2.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label2.Location  = new System.Drawing.Point(13, 299);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(68, 16);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "&Name:";
     this.label2.AutoSize  = true;
     //
     // nameTextBox
     //
     this.nameTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.nameTextBox.Location     = new System.Drawing.Point(77, 297);
     this.nameTextBox.Name         = "nameTextBox";
     this.nameTextBox.Size         = new System.Drawing.Size(585, 21);
     this.nameTextBox.TabIndex     = 3;
     this.nameTextBox.Text         = "New Project";
     this.nameTextBox.TextChanged += new System.EventHandler(this.nameTextBox_TextChanged);
     //
     // createDirectoryBox
     //
     this.createDirectoryBox.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.createDirectoryBox.FlatStyle       = System.Windows.Forms.FlatStyle.System;
     this.createDirectoryBox.Location        = new System.Drawing.Point(78, 389);
     this.createDirectoryBox.Name            = "createDirectoryBox";
     this.createDirectoryBox.Size            = new System.Drawing.Size(249, 16);
     this.createDirectoryBox.TabIndex        = 9;
     this.createDirectoryBox.Text            = " Create &directory for project";
     this.createDirectoryBox.CheckedChanged += new System.EventHandler(this.createDirectoryBox_CheckedChanged);
     //
     // statusBar
     //
     this.statusBar.Location = new System.Drawing.Point(0, 423);
     this.statusBar.Name     = "statusBar";
     this.statusBar.Size     = new System.Drawing.Size(673, 21);
     this.statusBar.TabIndex = 9;
     this.statusBar.Text     = "  Will create:  C:\\Documents and Settings\\Nick\\My Documents\\New Project.fdp";
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.Location = new System.Drawing.Point(10, 361);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(71, 15);
     this.label3.TabIndex = 7;
     this.label3.Text     = "&Package:";
     this.label3.AutoSize = true;
     //
     // packageTextBox
     //
     this.packageTextBox.Anchor       = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right)));
     this.packageTextBox.Location     = new System.Drawing.Point(77, 359);
     this.packageTextBox.Name         = "packageTextBox";
     this.packageTextBox.Size         = new System.Drawing.Size(585, 21);
     this.packageTextBox.TabIndex     = 8;
     this.packageTextBox.TextChanged += new System.EventHandler(this.textPackage_TextChanged);
     //
     // NewProjectDialog
     //
     this.AcceptButton        = this.okButton;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.cancelButton;
     this.ClientSize          = new System.Drawing.Size(673, 444);
     this.Controls.Add(this.projectListView);
     this.Controls.Add(this.packageTextBox);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.previewBox);
     this.Controls.Add(this.statusBar);
     this.Controls.Add(this.nameTextBox);
     this.Controls.Add(this.locationTextBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.browseButton);
     this.Controls.Add(this.descriptionLabel);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.createDirectoryBox);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.okButton);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "NewProjectDialog";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "New Project";
     ((System.ComponentModel.ISupportInitialize)(this.previewBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio 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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Header));
     this.pnlDockPadding = new System.Windows.Forms.Panel();
     this.lblDescription = new System.Windows.Forms.Label();
     this.lblTitle       = new System.Windows.Forms.Label();
     this.picIcon        = new System.Windows.Forms.PictureBox();
     this.pnl3dDark      = new System.Windows.Forms.Panel();
     this.pnl3dBright    = new System.Windows.Forms.Panel();
     this.pnlDockPadding.SuspendLayout();
     this.SuspendLayout();
     //
     // pnlDockPadding
     //
     this.pnlDockPadding.BackColor = System.Drawing.SystemColors.Window;
     this.pnlDockPadding.Controls.Add(this.lblDescription);
     this.pnlDockPadding.Controls.Add(this.lblTitle);
     this.pnlDockPadding.Controls.Add(this.picIcon);
     this.pnlDockPadding.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlDockPadding.DockPadding.Bottom = 4;
     this.pnlDockPadding.DockPadding.Left   = 8;
     this.pnlDockPadding.DockPadding.Right  = 4;
     this.pnlDockPadding.DockPadding.Top    = 6;
     this.pnlDockPadding.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.pnlDockPadding.Location = new System.Drawing.Point(0, 0);
     this.pnlDockPadding.Name     = "pnlDockPadding";
     this.pnlDockPadding.Size     = new System.Drawing.Size(324, 64);
     this.pnlDockPadding.TabIndex = 6;
     //
     // lblDescription
     //
     this.lblDescription.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.lblDescription.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblDescription.Location  = new System.Drawing.Point(8, 22);
     this.lblDescription.Name      = "lblDescription";
     this.lblDescription.Size      = new System.Drawing.Size(260, 38);
     this.lblDescription.TabIndex  = 5;
     this.lblDescription.Text      = "Description";
     //
     // lblTitle
     //
     this.lblTitle.Dock      = System.Windows.Forms.DockStyle.Top;
     this.lblTitle.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblTitle.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblTitle.Location  = new System.Drawing.Point(8, 6);
     this.lblTitle.Name      = "lblTitle";
     this.lblTitle.Size      = new System.Drawing.Size(260, 16);
     this.lblTitle.TabIndex  = 4;
     this.lblTitle.Text      = "Title";
     //
     // picIcon
     //
     this.picIcon.Dock     = System.Windows.Forms.DockStyle.Right;
     this.picIcon.Image    = ((System.Drawing.Image)(resources.GetObject("picIcon.Image")));
     this.picIcon.Location = new System.Drawing.Point(268, 6);
     this.picIcon.Name     = "picIcon";
     this.picIcon.Size     = new System.Drawing.Size(52, 54);
     this.picIcon.TabIndex = 3;
     this.picIcon.TabStop  = false;
     //
     // pnl3dDark
     //
     this.pnl3dDark.BackColor = System.Drawing.SystemColors.ControlDark;
     this.pnl3dDark.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnl3dDark.Location  = new System.Drawing.Point(0, 62);
     this.pnl3dDark.Name      = "pnl3dDark";
     this.pnl3dDark.Size      = new System.Drawing.Size(324, 1);
     this.pnl3dDark.TabIndex  = 7;
     //
     // pnl3dBright
     //
     this.pnl3dBright.BackColor = System.Drawing.Color.White;
     this.pnl3dBright.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnl3dBright.Location  = new System.Drawing.Point(0, 63);
     this.pnl3dBright.Name      = "pnl3dBright";
     this.pnl3dBright.Size      = new System.Drawing.Size(324, 1);
     this.pnl3dBright.TabIndex  = 8;
     //
     // Header
     //
     this.BackColor        = System.Drawing.SystemColors.Control;
     this.CausesValidation = false;
     this.Controls.Add(this.pnl3dDark);
     this.Controls.Add(this.pnl3dBright);
     this.Controls.Add(this.pnlDockPadding);
     this.Name         = "Header";
     this.Size         = new System.Drawing.Size(324, 64);
     this.SizeChanged += new System.EventHandler(this.Header_SizeChanged);
     this.pnlDockPadding.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(formhome));
     this.LABELHEAD    = new System.Windows.Forms.Label();
     this.PictureBox1  = new System.Windows.Forms.PictureBox();
     this.BTNCHPASS    = new System.Windows.Forms.Button();
     this.BTNNEWUSER   = new System.Windows.Forms.Button();
     this.BTNRESETCODE = new System.Windows.Forms.Button();
     this.BTNRESETPASS = new System.Windows.Forms.Button();
     this.BTNFORM3     = new System.Windows.Forms.Button();
     this.BTNUSERADMIN = new System.Windows.Forms.Button();
     this.BTNFORM2     = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(PictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // LABELHEAD
     //
     this.LABELHEAD.Font      = new System.Drawing.Font("Algerian", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.LABELHEAD.ForeColor = System.Drawing.Color.Navy;
     this.LABELHEAD.Location  = new System.Drawing.Point(67, 33);
     this.LABELHEAD.Name      = "LABELHEAD";
     this.LABELHEAD.Size      = new System.Drawing.Size(262, 23);
     this.LABELHEAD.TabIndex  = 0;
     this.LABELHEAD.Text      = "PERMISSION CONTROL SAMPLE";
     //
     // PictureBox1
     //
     this.PictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("PictureBox1.Image")));
     this.PictureBox1.Location = new System.Drawing.Point(139, 59);
     this.PictureBox1.Name     = "PictureBox1";
     this.PictureBox1.Size     = new System.Drawing.Size(100, 50);
     this.PictureBox1.TabIndex = 1;
     this.PictureBox1.TabStop  = false;
     //
     // BTNCHPASS
     //
     this.BTNCHPASS.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNCHPASS.ForeColor = System.Drawing.Color.Navy;
     this.BTNCHPASS.Location  = new System.Drawing.Point(248, 146);
     this.BTNCHPASS.Name      = "BTNCHPASS";
     this.BTNCHPASS.Size      = new System.Drawing.Size(209, 26);
     this.BTNCHPASS.TabIndex  = 2;
     this.BTNCHPASS.Text      = "CHANGE PASSWORD";
     this.BTNCHPASS.UseVisualStyleBackColor = true;
     this.BTNCHPASS.Click += new System.EventHandler(this.Click_d96b4b6a);
     //
     // BTNNEWUSER
     //
     this.BTNNEWUSER.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNNEWUSER.ForeColor = System.Drawing.Color.Navy;
     this.BTNNEWUSER.Location  = new System.Drawing.Point(12, 202);
     this.BTNNEWUSER.Name      = "BTNNEWUSER";
     this.BTNNEWUSER.Size      = new System.Drawing.Size(209, 26);
     this.BTNNEWUSER.TabIndex  = 2;
     this.BTNNEWUSER.Text      = "CREATE NEW USER";
     this.BTNNEWUSER.UseVisualStyleBackColor = true;
     this.BTNNEWUSER.Click += new System.EventHandler(this.Click_55a639eb);
     //
     // BTNRESETCODE
     //
     this.BTNRESETCODE.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNRESETCODE.ForeColor = System.Drawing.Color.Navy;
     this.BTNRESETCODE.Location  = new System.Drawing.Point(248, 202);
     this.BTNRESETCODE.Name      = "BTNRESETCODE";
     this.BTNRESETCODE.Size      = new System.Drawing.Size(209, 26);
     this.BTNRESETCODE.TabIndex  = 2;
     this.BTNRESETCODE.Text      = "CREATE RESET CODE";
     this.BTNRESETCODE.UseVisualStyleBackColor = true;
     this.BTNRESETCODE.Click += new System.EventHandler(this.Click_13a67931);
     //
     // BTNRESETPASS
     //
     this.BTNRESETPASS.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNRESETPASS.ForeColor = System.Drawing.Color.Navy;
     this.BTNRESETPASS.Location  = new System.Drawing.Point(139, 324);
     this.BTNRESETPASS.Name      = "BTNRESETPASS";
     this.BTNRESETPASS.Size      = new System.Drawing.Size(209, 26);
     this.BTNRESETPASS.TabIndex  = 2;
     this.BTNRESETPASS.Text      = "RESET PASSWORD";
     this.BTNRESETPASS.UseVisualStyleBackColor = true;
     this.BTNRESETPASS.Click += new System.EventHandler(this.Click_dd09f754);
     //
     // BTNFORM3
     //
     this.BTNFORM3.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNFORM3.ForeColor = System.Drawing.Color.Navy;
     this.BTNFORM3.Location  = new System.Drawing.Point(248, 268);
     this.BTNFORM3.Name      = "BTNFORM3";
     this.BTNFORM3.Size      = new System.Drawing.Size(209, 26);
     this.BTNFORM3.TabIndex  = 2;
     this.BTNFORM3.Text      = "FORM3";
     this.BTNFORM3.UseVisualStyleBackColor = true;
     this.BTNFORM3.Click += new System.EventHandler(this.Click_ec00f670);
     //
     // BTNUSERADMIN
     //
     this.BTNUSERADMIN.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNUSERADMIN.ForeColor = System.Drawing.Color.Navy;
     this.BTNUSERADMIN.Location  = new System.Drawing.Point(12, 146);
     this.BTNUSERADMIN.Name      = "BTNUSERADMIN";
     this.BTNUSERADMIN.Size      = new System.Drawing.Size(209, 26);
     this.BTNUSERADMIN.TabIndex  = 2;
     this.BTNUSERADMIN.Text      = "USER LOGIN";
     this.BTNUSERADMIN.UseVisualStyleBackColor = true;
     this.BTNUSERADMIN.Click += new System.EventHandler(this.Click_2c6d928e);
     //
     // BTNFORM2
     //
     this.BTNFORM2.Font      = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold);
     this.BTNFORM2.ForeColor = System.Drawing.Color.Navy;
     this.BTNFORM2.Location  = new System.Drawing.Point(12, 268);
     this.BTNFORM2.Name      = "BTNFORM2";
     this.BTNFORM2.Size      = new System.Drawing.Size(209, 26);
     this.BTNFORM2.TabIndex  = 3;
     this.BTNFORM2.Text      = "FORM2";
     this.BTNFORM2.UseVisualStyleBackColor = true;
     this.BTNFORM2.Click += new System.EventHandler(this.Click_60c7cd57);
     //
     // formhome
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.ClientSize          = new System.Drawing.Size(469, 387);
     this.Controls.Add(this.LABELHEAD);
     this.Controls.Add(this.PictureBox1);
     this.Controls.Add(this.BTNCHPASS);
     this.Controls.Add(this.BTNNEWUSER);
     this.Controls.Add(this.BTNRESETCODE);
     this.Controls.Add(this.BTNRESETPASS);
     this.Controls.Add(this.BTNFORM3);
     this.Controls.Add(this.BTNUSERADMIN);
     this.Controls.Add(this.BTNFORM2);
     this.DrawingLayerList = ((Limnor.Drawing2D.DrawingLayerHeaderList)(resources.GetObject("$this.DrawingLayerList")));
     this.Name             = "formhome";
     this.Text             = "Main form";
     ((System.ComponentModel.ISupportInitialize)(PictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 50
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UpdateDialog));
     this.kryptonPanel1     = new Krypton.Toolkit.KryptonPanel();
     this.pictureBoxIcon    = new System.Windows.Forms.PictureBox();
     this.labelReleaseNotes = new Krypton.Toolkit.KryptonLabel();
     this.labelDescription  = new Krypton.Toolkit.KryptonLabel();
     this.labelUpdate       = new Krypton.Toolkit.KryptonLabel();
     this.webBrowser        = new System.Windows.Forms.WebBrowser();
     this.kbtnUpdate        = new Krypton.Toolkit.KryptonButton();
     this.kbtnSkip          = new Krypton.Toolkit.KryptonButton();
     this.kbtnRemindLater   = new Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.pictureBoxIcon);
     this.kryptonPanel1.Controls.Add(this.labelReleaseNotes);
     this.kryptonPanel1.Controls.Add(this.labelDescription);
     this.kryptonPanel1.Controls.Add(this.labelUpdate);
     this.kryptonPanel1.Controls.Add(this.webBrowser);
     this.kryptonPanel1.Controls.Add(this.kbtnUpdate);
     this.kryptonPanel1.Controls.Add(this.kbtnSkip);
     this.kryptonPanel1.Controls.Add(this.kbtnRemindLater);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(643, 612);
     this.kryptonPanel1.TabIndex = 0;
     //
     // pictureBoxIcon
     //
     this.pictureBoxIcon.BackColor    = System.Drawing.Color.Transparent;
     this.pictureBoxIcon.Image        = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.update;
     this.pictureBoxIcon.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.pictureBoxIcon.InitialImage = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.update;
     this.pictureBoxIcon.Location     = new System.Drawing.Point(11, 13);
     this.pictureBoxIcon.Name         = "pictureBoxIcon";
     this.pictureBoxIcon.Size         = new System.Drawing.Size(70, 66);
     this.pictureBoxIcon.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBoxIcon.TabIndex     = 16;
     this.pictureBoxIcon.TabStop      = false;
     //
     // labelReleaseNotes
     //
     this.labelReleaseNotes.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.labelReleaseNotes.Location = new System.Drawing.Point(90, 89);
     this.labelReleaseNotes.Name     = "labelReleaseNotes";
     this.labelReleaseNotes.Size     = new System.Drawing.Size(103, 21);
     this.labelReleaseNotes.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold);
     this.labelReleaseNotes.TabIndex    = 15;
     this.labelReleaseNotes.Values.Text = "Release Notes:";
     //
     // labelDescription
     //
     this.labelDescription.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.labelDescription.Location    = new System.Drawing.Point(90, 49);
     this.labelDescription.MaximumSize = new System.Drawing.Size(550, 0);
     this.labelDescription.Name        = "labelDescription";
     this.labelDescription.Size        = new System.Drawing.Size(499, 20);
     this.labelDescription.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.labelDescription.TabIndex    = 14;
     this.labelDescription.Values.Text = "{0} {1} is now available. You have version {2} installed. Would you like to downl" +
                                         "oad it now?";
     //
     // labelUpdate
     //
     this.labelUpdate.ImeMode     = System.Windows.Forms.ImeMode.NoControl;
     this.labelUpdate.Location    = new System.Drawing.Point(90, 13);
     this.labelUpdate.MaximumSize = new System.Drawing.Size(550, 0);
     this.labelUpdate.Name        = "labelUpdate";
     this.labelUpdate.Size        = new System.Drawing.Size(231, 23);
     this.labelUpdate.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 10.5F, System.Drawing.FontStyle.Bold);
     this.labelUpdate.TabIndex    = 13;
     this.labelUpdate.Values.Text = "A new version of {0} is available!";
     //
     // webBrowser
     //
     this.webBrowser.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.webBrowser.Location               = new System.Drawing.Point(93, 119);
     this.webBrowser.Margin                 = new System.Windows.Forms.Padding(2);
     this.webBrowser.MinimumSize            = new System.Drawing.Size(23, 23);
     this.webBrowser.Name                   = "webBrowser";
     this.webBrowser.ScriptErrorsSuppressed = true;
     this.webBrowser.Size                   = new System.Drawing.Size(538, 432);
     this.webBrowser.TabIndex               = 9;
     //
     // kbtnUpdate
     //
     this.kbtnUpdate.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnUpdate.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.kbtnUpdate.Location = new System.Drawing.Point(478, 572);
     this.kbtnUpdate.Margin   = new System.Windows.Forms.Padding(2);
     this.kbtnUpdate.Name     = "kbtnUpdate";
     this.kbtnUpdate.Size     = new System.Drawing.Size(153, 28);
     this.kbtnUpdate.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.kbtnUpdate.TabIndex     = 11;
     this.kbtnUpdate.Values.Image = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.download;
     this.kbtnUpdate.Values.Text  = "Update";
     this.kbtnUpdate.Click       += new System.EventHandler(this.kbtnUpdate_Click);
     //
     // kbtnSkip
     //
     this.kbtnSkip.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.kbtnSkip.DialogResult = System.Windows.Forms.DialogResult.Abort;
     this.kbtnSkip.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.kbtnSkip.Location     = new System.Drawing.Point(94, 572);
     this.kbtnSkip.Margin       = new System.Windows.Forms.Padding(2);
     this.kbtnSkip.Name         = "kbtnSkip";
     this.kbtnSkip.Size         = new System.Drawing.Size(153, 28);
     this.kbtnSkip.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.kbtnSkip.TabIndex     = 10;
     this.kbtnSkip.Values.Image = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.hand_point;
     this.kbtnSkip.Values.Text  = "Skip this version";
     this.kbtnSkip.Click       += new System.EventHandler(this.kbtnSkip_Click);
     //
     // kbtnRemindLater
     //
     this.kbtnRemindLater.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnRemindLater.ImeMode  = System.Windows.Forms.ImeMode.NoControl;
     this.kbtnRemindLater.Location = new System.Drawing.Point(321, 572);
     this.kbtnRemindLater.Margin   = new System.Windows.Forms.Padding(2);
     this.kbtnRemindLater.Name     = "kbtnRemindLater";
     this.kbtnRemindLater.Size     = new System.Drawing.Size(153, 28);
     this.kbtnRemindLater.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.kbtnRemindLater.TabIndex     = 12;
     this.kbtnRemindLater.Values.Image = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.clock_go;
     this.kbtnRemindLater.Values.Text  = "Remind &me later";
     this.kbtnRemindLater.Click       += new System.EventHandler(this.kbtnRemindLater_Click);
     //
     // UpdateDialog
     //
     this.AcceptButton = this.kbtnUpdate;
     this.ClientSize   = new System.Drawing.Size(643, 612);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "UpdateDialog";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "{0} {1} is available!";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.UpdateDialog_FormClosing);
     this.Load           += new System.EventHandler(this.UpdateDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxIcon)).EndInit();
     this.ResumeLayout(false);
 }
Esempio 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(ImageBar));
     this.imageBar1    = new Steema.TeeChart.Styles.ImageBar();
     this.label1       = new System.Windows.Forms.Label();
     this.pictureBox1  = new System.Windows.Forms.PictureBox();
     this.checkBox1    = new System.Windows.Forms.CheckBox();
     this.checkBox2    = new System.Windows.Forms.CheckBox();
     this.buttonColor1 = new Steema.TeeChart.ButtonColor();
     this.gridBand1    = new Steema.TeeChart.Tools.GridBand();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Name = "textBox1";
     this.textBox1.Text = "The Image Bar series displays bar points filled with a custom image.\r\nThe image c" +
                          "an be \"tiled\" or \"stretched\".";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.buttonColor1);
     this.panel1.Controls.Add(this.checkBox2);
     this.panel1.Controls.Add(this.checkBox1);
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Name = "panel1";
     //
     // tChart1
     //
     //
     // tChart1.Aspect
     //
     this.tChart1.Aspect.SmoothingMode     = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
     this.tChart1.Aspect.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
     //
     // tChart1.Header
     //
     this.tChart1.Header.Lines = new string[] {
         "Image Bar Series"
     };
     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)));
     this.tChart1.Series.Add(this.imageBar1);
     this.tChart1.Tools.Add(this.gridBand1);
     //
     // tChart1.Walls
     //
     //
     // tChart1.Walls.Bottom
     //
     //
     // tChart1.Walls.Bottom.Pen
     //
     this.tChart1.Walls.Bottom.Pen.Visible = false;
     this.tChart1.Walls.Bottom.Size        = 3;
     //
     // tChart1.Walls.Left
     //
     //
     // tChart1.Walls.Left.Pen
     //
     this.tChart1.Walls.Left.Pen.Visible = false;
     this.tChart1.Walls.Left.Size        = 3;
     //
     // imageBar1
     //
     //
     // imageBar1.Brush
     //
     this.imageBar1.Brush.Color = System.Drawing.Color.Red;
     this.imageBar1.Image       = ((System.Drawing.Image)(resources.GetObject("imageBar1.Image")));
     this.imageBar1.ImageTiled  = false;
     //
     // imageBar1.Marks
     //
     //
     // imageBar1.Marks.Symbol
     //
     //
     // imageBar1.Marks.Symbol.Shadow
     //
     this.imageBar1.Marks.Symbol.Shadow.Height  = 1;
     this.imageBar1.Marks.Symbol.Shadow.Visible = true;
     this.imageBar1.Marks.Symbol.Shadow.Width   = 1;
     this.imageBar1.Title = "imageBar1";
     //
     // imageBar1.XValues
     //
     this.imageBar1.XValues.DataMember = "X";
     this.imageBar1.XValues.Order      = Steema.TeeChart.Styles.ValueListOrder.Ascending;
     //
     // imageBar1.YValues
     //
     this.imageBar1.YValues.DataMember = "Bar";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(46, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Image:";
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(56, 8);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(32, 24);
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop  = false;
     this.pictureBox1.Click   += new System.EventHandler(this.pictureBox1_Click);
     //
     // checkBox1
     //
     this.checkBox1.Checked    = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location   = new System.Drawing.Point(104, 8);
     this.checkBox1.Name       = "checkBox1";
     this.checkBox1.Size       = new System.Drawing.Size(56, 24);
     this.checkBox1.TabIndex   = 2;
     this.checkBox1.Text       = "Tiled";
     this.checkBox1.Click     += new System.EventHandler(this.checkBox1_Click);
     //
     // checkBox2
     //
     this.checkBox2.Location = new System.Drawing.Point(166, 9);
     this.checkBox2.Name     = "checkBox2";
     this.checkBox2.Size     = new System.Drawing.Size(80, 24);
     this.checkBox2.TabIndex = 3;
     this.checkBox2.Text     = "Color Each";
     this.checkBox2.Click   += new System.EventHandler(this.checkBox2_Click);
     //
     // buttonColor1
     //
     this.buttonColor1.Color    = System.Drawing.Color.Empty;
     this.buttonColor1.Location = new System.Drawing.Point(280, 8);
     this.buttonColor1.Name     = "buttonColor1";
     this.buttonColor1.Size     = new System.Drawing.Size(72, 23);
     this.buttonColor1.TabIndex = 4;
     this.buttonColor1.Text     = "Color...";
     this.buttonColor1.Click   += new System.EventHandler(this.buttonColor1_Click);
     //
     // gridBand1
     //
     this.gridBand1.Axis = this.tChart1.Axes.Left;
     //
     // gridBand1.Band1
     //
     this.gridBand1.Band1.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
     //
     // gridBand1.Band2
     //
     this.gridBand1.Band2.Color = System.Drawing.Color.FromArgb(((System.Byte)(127)), ((System.Byte)(255)), ((System.Byte)(255)), ((System.Byte)(255)));
     //
     // ImageBar
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(440, 317);
     this.Name = "ImageBar";
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio 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()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));

            this.pbTerrain   = new System.Windows.Forms.PictureBox();
            this.btnStep     = new System.Windows.Forms.Button();
            this.btnRun      = new System.Windows.Forms.Button();
            this.txtInterval = new System.Windows.Forms.TextBox();
            this.cbLasers    = new System.Windows.Forms.CheckBox();
            this.groupBox1   = new System.Windows.Forms.GroupBox();
            this.txtRight    = new System.Windows.Forms.Label();
            this.txtLeft     = new System.Windows.Forms.Label();
            this.txtFront    = new System.Windows.Forms.Label();
            this.lbl         = new System.Windows.Forms.Label();
            this.label2      = new System.Windows.Forms.Label();
            this.label1      = new System.Windows.Forms.Label();
            this.groupBox2   = new System.Windows.Forms.GroupBox();
            this.label3      = new System.Windows.Forms.Label();
            this.txtAngle    = new System.Windows.Forms.Label();
            this.gbComandos  = new System.Windows.Forms.GroupBox();
            this.cbTrajeto   = new System.Windows.Forms.CheckBox();
            this.btnReset    = new System.Windows.Forms.Button();
            this.label4      = new System.Windows.Forms.Label();
            this.pbRobot     = new System.Windows.Forms.PictureBox();
            this.groupBox3   = new System.Windows.Forms.GroupBox();
            this.label5      = new System.Windows.Forms.Label();
            this.aboutButton = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.pbTerrain)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.gbComandos.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbRobot)).BeginInit();
            this.groupBox3.SuspendLayout();
            this.SuspendLayout();
            //
            // pbTerrain
            //
            this.pbTerrain.BackColor    = System.Drawing.SystemColors.ControlText;
            this.pbTerrain.ErrorImage   = null;
            this.pbTerrain.Image        = ((System.Drawing.Image)(resources.GetObject("pbTerrain.Image")));
            this.pbTerrain.InitialImage = null;
            this.pbTerrain.Location     = new System.Drawing.Point(160, 8);
            this.pbTerrain.Name         = "pbTerrain";
            this.pbTerrain.Size         = new System.Drawing.Size(500, 500);
            this.pbTerrain.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pbTerrain.TabIndex     = 10;
            this.pbTerrain.TabStop      = false;
            this.pbTerrain.MouseMove   += new System.Windows.Forms.MouseEventHandler(this.pbTerrain_MouseMove);
            this.pbTerrain.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.pbTerrain_MouseDown);
            //
            // btnStep
            //
            this.btnStep.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnStep.Location  = new System.Drawing.Point(6, 109);
            this.btnStep.Name      = "btnStep";
            this.btnStep.Size      = new System.Drawing.Size(75, 23);
            this.btnStep.TabIndex  = 14;
            this.btnStep.Text      = "&One Step";
            this.btnStep.Click    += new System.EventHandler(this.button3_Click);
            //
            // btnRun
            //
            this.btnRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnRun.Location  = new System.Drawing.Point(6, 138);
            this.btnRun.Name      = "btnRun";
            this.btnRun.Size      = new System.Drawing.Size(75, 23);
            this.btnRun.TabIndex  = 15;
            this.btnRun.Text      = "&Run";
            this.btnRun.Click    += new System.EventHandler(this.btnRun_Click);
            //
            // txtInterval
            //
            this.txtInterval.Location  = new System.Drawing.Point(6, 83);
            this.txtInterval.Name      = "txtInterval";
            this.txtInterval.Size      = new System.Drawing.Size(72, 20);
            this.txtInterval.TabIndex  = 16;
            this.txtInterval.Text      = "10";
            this.txtInterval.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // cbLasers
            //
            this.cbLasers.Checked    = true;
            this.cbLasers.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbLasers.Location   = new System.Drawing.Point(8, 40);
            this.cbLasers.Name       = "cbLasers";
            this.cbLasers.Size       = new System.Drawing.Size(120, 24);
            this.cbLasers.TabIndex   = 17;
            this.cbLasers.Text       = "&Show Beams";
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.txtRight);
            this.groupBox1.Controls.Add(this.txtLeft);
            this.groupBox1.Controls.Add(this.txtFront);
            this.groupBox1.Controls.Add(this.lbl);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Location = new System.Drawing.Point(8, 8);
            this.groupBox1.Name     = "groupBox1";
            this.groupBox1.Size     = new System.Drawing.Size(144, 72);
            this.groupBox1.TabIndex = 24;
            this.groupBox1.TabStop  = false;
            this.groupBox1.Text     = "Sensor readings::";
            //
            // txtRight
            //
            this.txtRight.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
            this.txtRight.Location    = new System.Drawing.Point(104, 48);
            this.txtRight.Name        = "txtRight";
            this.txtRight.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.txtRight.Size        = new System.Drawing.Size(32, 16);
            this.txtRight.TabIndex    = 29;
            this.txtRight.Text        = "0";
            this.txtRight.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtLeft
            //
            this.txtLeft.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
            this.txtLeft.Location    = new System.Drawing.Point(104, 32);
            this.txtLeft.Name        = "txtLeft";
            this.txtLeft.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.txtLeft.Size        = new System.Drawing.Size(32, 16);
            this.txtLeft.TabIndex    = 28;
            this.txtLeft.Text        = "0";
            this.txtLeft.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtFront
            //
            this.txtFront.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
            this.txtFront.Location    = new System.Drawing.Point(104, 16);
            this.txtFront.Name        = "txtFront";
            this.txtFront.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.txtFront.Size        = new System.Drawing.Size(32, 16);
            this.txtFront.TabIndex    = 27;
            this.txtFront.Text        = "0";
            this.txtFront.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // lbl
            //
            this.lbl.Location = new System.Drawing.Point(8, 48);
            this.lbl.Name     = "lbl";
            this.lbl.Size     = new System.Drawing.Size(100, 16);
            this.lbl.TabIndex = 26;
            this.lbl.Text     = "Right (pixels):";
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(8, 32);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(100, 16);
            this.label2.TabIndex = 25;
            this.label2.Text     = "Left (pixels):";
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(8, 16);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(88, 16);
            this.label1.TabIndex = 24;
            this.label1.Text     = "Frontal (pixels):";
            //
            // groupBox2
            //
            this.groupBox2.Controls.Add(this.label3);
            this.groupBox2.Controls.Add(this.txtAngle);
            this.groupBox2.Location = new System.Drawing.Point(8, 88);
            this.groupBox2.Name     = "groupBox2";
            this.groupBox2.Size     = new System.Drawing.Size(144, 40);
            this.groupBox2.TabIndex = 25;
            this.groupBox2.TabStop  = false;
            this.groupBox2.Text     = "Output:";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(8, 16);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(88, 16);
            this.label3.TabIndex = 10;
            this.label3.Text     = "Angle (degrees):";
            //
            // txtAngle
            //
            this.txtAngle.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
            this.txtAngle.Location  = new System.Drawing.Point(96, 16);
            this.txtAngle.Name      = "txtAngle";
            this.txtAngle.Size      = new System.Drawing.Size(40, 16);
            this.txtAngle.TabIndex  = 29;
            this.txtAngle.Text      = "0,00";
            this.txtAngle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // gbComandos
            //
            this.gbComandos.Controls.Add(this.cbTrajeto);
            this.gbComandos.Controls.Add(this.btnReset);
            this.gbComandos.Controls.Add(this.label4);
            this.gbComandos.Controls.Add(this.btnStep);
            this.gbComandos.Controls.Add(this.cbLasers);
            this.gbComandos.Controls.Add(this.btnRun);
            this.gbComandos.Controls.Add(this.txtInterval);
            this.gbComandos.Location = new System.Drawing.Point(8, 136);
            this.gbComandos.Name     = "gbComandos";
            this.gbComandos.Size     = new System.Drawing.Size(144, 200);
            this.gbComandos.TabIndex = 26;
            this.gbComandos.TabStop  = false;
            this.gbComandos.Text     = "Tools:";
            //
            // cbTrajeto
            //
            this.cbTrajeto.Location = new System.Drawing.Point(8, 16);
            this.cbTrajeto.Name     = "cbTrajeto";
            this.cbTrajeto.Size     = new System.Drawing.Size(120, 24);
            this.cbTrajeto.TabIndex = 19;
            this.cbTrajeto.Text     = "&Track Path";
            //
            // btnReset
            //
            this.btnReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnReset.Location  = new System.Drawing.Point(6, 167);
            this.btnReset.Name      = "btnReset";
            this.btnReset.Size      = new System.Drawing.Size(75, 23);
            this.btnReset.TabIndex  = 0;
            this.btnReset.Text      = "Rest&art";
            this.btnReset.Click    += new System.EventHandler(this.btnReset_Click);
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(6, 67);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(125, 13);
            this.label4.TabIndex = 18;
            this.label4.Text     = "Move Interval (ms):";
            //
            // pbRobot
            //
            this.pbRobot.BackColor = System.Drawing.Color.Transparent;
            this.pbRobot.Image     = ((System.Drawing.Image)(resources.GetObject("pbRobot.Image")));
            this.pbRobot.Location  = new System.Drawing.Point(216, 472);
            this.pbRobot.Name      = "pbRobot";
            this.pbRobot.Size      = new System.Drawing.Size(10, 10);
            this.pbRobot.TabIndex  = 11;
            this.pbRobot.TabStop   = false;
            //
            // groupBox3
            //
            this.groupBox3.Controls.Add(this.label5);
            this.groupBox3.Location = new System.Drawing.Point(8, 342);
            this.groupBox3.Name     = "groupBox3";
            this.groupBox3.Size     = new System.Drawing.Size(144, 119);
            this.groupBox3.TabIndex = 27;
            this.groupBox3.TabStop  = false;
            this.groupBox3.Text     = "Hints:";
            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(8, 16);
            this.label5.Name     = "label5";
            this.label5.Size     = new System.Drawing.Size(125, 88);
            this.label5.TabIndex = 10;
            this.label5.Text     = "Left click the image to draw passages (white), right click the image to draw wall" +
                                   "s (black).";
            //
            // aboutButton
            //
            this.aboutButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.aboutButton.Location  = new System.Drawing.Point(41, 473);
            this.aboutButton.Name      = "aboutButton";
            this.aboutButton.Size      = new System.Drawing.Size(75, 23);
            this.aboutButton.TabIndex  = 28;
            this.aboutButton.Text      = "About";
            this.aboutButton.UseVisualStyleBackColor = true;
            this.aboutButton.Click += new System.EventHandler(this.aboutButton_Click);
            //
            // MainForm
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(664, 513);
            this.Controls.Add(this.aboutButton);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.gbComandos);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.pbRobot);
            this.Controls.Add(this.pbTerrain);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox     = false;
            this.Name            = "MainForm";
            this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text            = "Fuzzy Auto Guided Vehicle Sample";
            ((System.ComponentModel.ISupportInitialize)(this.pbTerrain)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.gbComandos.ResumeLayout(false);
            this.gbComandos.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbRobot)).EndInit();
            this.groupBox3.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Esempio n. 53
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FORMLibrarySetup));
     this.picLOGO            = new System.Windows.Forms.PictureBox();
     this.lblHeader          = new System.Windows.Forms.Label();
     this.picHeader          = new System.Windows.Forms.PictureBox();
     this.label1             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.txtInstitutionName = new System.Windows.Forms.TextBox();
     this.txtContactName     = new System.Windows.Forms.TextBox();
     this.txtStreetAddress   = new System.Windows.Forms.TextBox();
     this.label3             = new System.Windows.Forms.Label();
     this.txtCity            = new System.Windows.Forms.TextBox();
     this.label4             = new System.Windows.Forms.Label();
     this.txtProvince        = new System.Windows.Forms.TextBox();
     this.label5             = new System.Windows.Forms.Label();
     this.txtZipCode         = new System.Windows.Forms.TextBox();
     this.label6             = new System.Windows.Forms.Label();
     this.bttnZipCode        = new System.Windows.Forms.Button();
     this.txtPhoneNumber     = new System.Windows.Forms.TextBox();
     this.label7             = new System.Windows.Forms.Label();
     this.txtFaxNumber       = new System.Windows.Forms.TextBox();
     this.label8             = new System.Windows.Forms.Label();
     this.txtEmailAdd        = new System.Windows.Forms.TextBox();
     this.label9             = new System.Windows.Forms.Label();
     this.txtWebsite         = new System.Windows.Forms.TextBox();
     this.label10            = new System.Windows.Forms.Label();
     this.bttnEmailAdd       = new System.Windows.Forms.Button();
     this.bttnWebsite        = new System.Windows.Forms.Button();
     this.ctrlSeparator1     = new LibrarySystem.ctrlSeparator();
     this.bttnCancel         = new System.Windows.Forms.Button();
     this.bttnSave           = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // picLOGO
     //
     this.picLOGO.Image    = ((System.Drawing.Image)(resources.GetObject("picLOGO.Image")));
     this.picLOGO.Location = new System.Drawing.Point(16, 0);
     this.picLOGO.Name     = "picLOGO";
     this.picLOGO.Size     = new System.Drawing.Size(24, 24);
     this.picLOGO.TabIndex = 16;
     this.picLOGO.TabStop  = false;
     //
     // lblHeader
     //
     this.lblHeader.AutoSize  = true;
     this.lblHeader.BackColor = System.Drawing.Color.Transparent;
     this.lblHeader.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.lblHeader.Font      = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblHeader.ForeColor = System.Drawing.Color.White;
     this.lblHeader.Location  = new System.Drawing.Point(40, 4);
     this.lblHeader.Name      = "lblHeader";
     this.lblHeader.Size      = new System.Drawing.Size(118, 22);
     this.lblHeader.TabIndex  = 15;
     this.lblHeader.Text      = "Library Profile";
     //
     // picHeader
     //
     this.picHeader.BackColor = System.Drawing.Color.Transparent;
     this.picHeader.Dock      = System.Windows.Forms.DockStyle.Top;
     this.picHeader.Location  = new System.Drawing.Point(0, 0);
     this.picHeader.Name      = "picHeader";
     this.picHeader.Size      = new System.Drawing.Size(354, 30);
     this.picHeader.TabIndex  = 14;
     this.picHeader.TabStop   = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label1.Location = new System.Drawing.Point(8, 48);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(92, 17);
     this.label1.TabIndex = 17;
     this.label1.Text     = "&Institution Name:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label2.Location = new System.Drawing.Point(8, 82);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(79, 17);
     this.label2.TabIndex = 18;
     this.label2.Text     = "&Contact Name:";
     //
     // txtInstitutionName
     //
     this.txtInstitutionName.Location = new System.Drawing.Point(98, 46);
     this.txtInstitutionName.Name     = "txtInstitutionName";
     this.txtInstitutionName.Size     = new System.Drawing.Size(211, 21);
     this.txtInstitutionName.TabIndex = 19;
     this.txtInstitutionName.Text     = "";
     //
     // txtContactName
     //
     this.txtContactName.Location = new System.Drawing.Point(98, 80);
     this.txtContactName.Name     = "txtContactName";
     this.txtContactName.Size     = new System.Drawing.Size(211, 21);
     this.txtContactName.TabIndex = 20;
     this.txtContactName.Text     = "";
     //
     // txtStreetAddress
     //
     this.txtStreetAddress.Location = new System.Drawing.Point(98, 112);
     this.txtStreetAddress.Name     = "txtStreetAddress";
     this.txtStreetAddress.Size     = new System.Drawing.Size(251, 21);
     this.txtStreetAddress.TabIndex = 22;
     this.txtStreetAddress.Text     = "";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label3.Location = new System.Drawing.Point(8, 114);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(81, 17);
     this.label3.TabIndex = 21;
     this.label3.Text     = "&Street Address:";
     //
     // txtCity
     //
     this.txtCity.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtCity.Location  = new System.Drawing.Point(98, 144);
     this.txtCity.Name      = "txtCity";
     this.txtCity.ReadOnly  = true;
     this.txtCity.Size      = new System.Drawing.Size(211, 21);
     this.txtCity.TabIndex  = 24;
     this.txtCity.Text      = "";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label4.Location = new System.Drawing.Point(8, 144);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(59, 17);
     this.label4.TabIndex = 23;
     this.label4.Text     = "&Town/City:";
     //
     // txtProvince
     //
     this.txtProvince.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtProvince.Location  = new System.Drawing.Point(98, 176);
     this.txtProvince.Name      = "txtProvince";
     this.txtProvince.ReadOnly  = true;
     this.txtProvince.Size      = new System.Drawing.Size(211, 21);
     this.txtProvince.TabIndex  = 26;
     this.txtProvince.Text      = "";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label5.Location = new System.Drawing.Point(8, 176);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(81, 17);
     this.label5.TabIndex = 25;
     this.label5.Text     = "&Province/State:";
     //
     // txtZipCode
     //
     this.txtZipCode.BackColor = System.Drawing.Color.WhiteSmoke;
     this.txtZipCode.Location  = new System.Drawing.Point(98, 207);
     this.txtZipCode.Name      = "txtZipCode";
     this.txtZipCode.ReadOnly  = true;
     this.txtZipCode.Size      = new System.Drawing.Size(98, 21);
     this.txtZipCode.TabIndex  = 44;
     this.txtZipCode.Text      = "";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label6.Location = new System.Drawing.Point(8, 208);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(52, 17);
     this.label6.TabIndex = 27;
     this.label6.Text     = "&Zip Code:";
     //
     // bttnZipCode
     //
     this.bttnZipCode.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.bttnZipCode.Image    = ((System.Drawing.Image)(resources.GetObject("bttnZipCode.Image")));
     this.bttnZipCode.Location = new System.Drawing.Point(197, 207);
     this.bttnZipCode.Name     = "bttnZipCode";
     this.bttnZipCode.Size     = new System.Drawing.Size(21, 22);
     this.bttnZipCode.TabIndex = 29;
     this.bttnZipCode.Click   += new System.EventHandler(this.bttnZipCode_Click);
     //
     // txtPhoneNumber
     //
     this.txtPhoneNumber.Location = new System.Drawing.Point(98, 240);
     this.txtPhoneNumber.Name     = "txtPhoneNumber";
     this.txtPhoneNumber.Size     = new System.Drawing.Size(177, 21);
     this.txtPhoneNumber.TabIndex = 31;
     this.txtPhoneNumber.Text     = "";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label7.Location = new System.Drawing.Point(8, 243);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(82, 17);
     this.label7.TabIndex = 30;
     this.label7.Text     = "&Phone Number:";
     //
     // txtFaxNumber
     //
     this.txtFaxNumber.Location = new System.Drawing.Point(98, 272);
     this.txtFaxNumber.Name     = "txtFaxNumber";
     this.txtFaxNumber.Size     = new System.Drawing.Size(177, 21);
     this.txtFaxNumber.TabIndex = 33;
     this.txtFaxNumber.Text     = "";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label8.Location = new System.Drawing.Point(8, 272);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(69, 17);
     this.label8.TabIndex = 32;
     this.label8.Text     = "&Fax Number:";
     //
     // txtEmailAdd
     //
     this.txtEmailAdd.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtEmailAdd.ForeColor = System.Drawing.Color.Blue;
     this.txtEmailAdd.Location  = new System.Drawing.Point(98, 304);
     this.txtEmailAdd.Name      = "txtEmailAdd";
     this.txtEmailAdd.Size      = new System.Drawing.Size(211, 21);
     this.txtEmailAdd.TabIndex  = 35;
     this.txtEmailAdd.Text      = "";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label9.Location = new System.Drawing.Point(8, 304);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(78, 17);
     this.label9.TabIndex = 34;
     this.label9.Text     = "&Email Address:";
     //
     // txtWebsite
     //
     this.txtWebsite.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.txtWebsite.ForeColor = System.Drawing.Color.Blue;
     this.txtWebsite.Location  = new System.Drawing.Point(98, 336);
     this.txtWebsite.Name      = "txtWebsite";
     this.txtWebsite.Size      = new System.Drawing.Size(211, 21);
     this.txtWebsite.TabIndex  = 37;
     this.txtWebsite.Text      = "";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.label10.Location = new System.Drawing.Point(8, 336);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(91, 17);
     this.label10.TabIndex = 36;
     this.label10.Text     = "&Website Address:";
     //
     // bttnEmailAdd
     //
     this.bttnEmailAdd.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.bttnEmailAdd.Image    = ((System.Drawing.Image)(resources.GetObject("bttnEmailAdd.Image")));
     this.bttnEmailAdd.Location = new System.Drawing.Point(312, 303);
     this.bttnEmailAdd.Name     = "bttnEmailAdd";
     this.bttnEmailAdd.Size     = new System.Drawing.Size(21, 22);
     this.bttnEmailAdd.TabIndex = 38;
     this.bttnEmailAdd.Click   += new System.EventHandler(this.bttnEmailAdd_Click);
     //
     // bttnWebsite
     //
     this.bttnWebsite.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.bttnWebsite.Image    = ((System.Drawing.Image)(resources.GetObject("bttnWebsite.Image")));
     this.bttnWebsite.Location = new System.Drawing.Point(312, 336);
     this.bttnWebsite.Name     = "bttnWebsite";
     this.bttnWebsite.Size     = new System.Drawing.Size(21, 22);
     this.bttnWebsite.TabIndex = 43;
     this.bttnWebsite.Click   += new System.EventHandler(this.bttnWebsite_Click);
     //
     // ctrlSeparator1
     //
     this.ctrlSeparator1.Location = new System.Drawing.Point(8, 376);
     this.ctrlSeparator1.Name     = "ctrlSeparator1";
     this.ctrlSeparator1.Size     = new System.Drawing.Size(336, 2);
     this.ctrlSeparator1.TabIndex = 40;
     //
     // bttnCancel
     //
     this.bttnCancel.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.bttnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bttnCancel.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.bttnCancel.Font         = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bttnCancel.ForeColor    = System.Drawing.Color.Black;
     this.bttnCancel.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.bttnCancel.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.bttnCancel.Location     = new System.Drawing.Point(256, 388);
     this.bttnCancel.Name         = "bttnCancel";
     this.bttnCancel.Size         = new System.Drawing.Size(88, 26);
     this.bttnCancel.TabIndex     = 41;
     this.bttnCancel.Text         = "&Cancel";
     this.bttnCancel.Click       += new System.EventHandler(this.bttnCancel_Click);
     //
     // bttnSave
     //
     this.bttnSave.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.bttnSave.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bttnSave.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.bttnSave.Font         = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.bttnSave.ForeColor    = System.Drawing.Color.Black;
     this.bttnSave.ImageAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     this.bttnSave.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.bttnSave.Location     = new System.Drawing.Point(160, 388);
     this.bttnSave.Name         = "bttnSave";
     this.bttnSave.Size         = new System.Drawing.Size(88, 26);
     this.bttnSave.TabIndex     = 42;
     this.bttnSave.Text         = "&Save";
     this.bttnSave.Click       += new System.EventHandler(this.bttnSave_Click);
     //
     // FORMLibrarySetup
     //
     this.AcceptButton      = this.bttnSave;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.bttnCancel;
     this.ClientSize        = new System.Drawing.Size(354, 424);
     this.Controls.Add(this.bttnSave);
     this.Controls.Add(this.bttnCancel);
     this.Controls.Add(this.ctrlSeparator1);
     this.Controls.Add(this.bttnWebsite);
     this.Controls.Add(this.bttnEmailAdd);
     this.Controls.Add(this.txtWebsite);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.txtEmailAdd);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.txtFaxNumber);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtPhoneNumber);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.bttnZipCode);
     this.Controls.Add(this.txtZipCode);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtProvince);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtCity);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtStreetAddress);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtContactName);
     this.Controls.Add(this.txtInstitutionName);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.picLOGO);
     this.Controls.Add(this.lblHeader);
     this.Controls.Add(this.picHeader);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.Name            = "FORMLibrarySetup";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Manage Profile";
     this.Load           += new System.EventHandler(this.FORMLibrarySetup_Load);
     this.ResumeLayout(false);
 }
Esempio n. 54
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(CodeGeneratorPersistentDialog));
     this.label2             = new System.Windows.Forms.Label();
     this.pictureBoxLogo     = new System.Windows.Forms.PictureBox();
     this.buttonOK           = new System.Windows.Forms.Button();
     this.buttonCancel       = new System.Windows.Forms.Button();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.labelLanguage      = new System.Windows.Forms.Label();
     this.comboBoxLanguage   = new System.Windows.Forms.ComboBox();
     this.labelFolder        = new System.Windows.Forms.Label();
     this.buttonBrowseFolder = new System.Windows.Forms.Button();
     this.textBoxFolder      = new System.Windows.Forms.TextBox();
     this.textBoxNamespace   = new System.Windows.Forms.TextBox();
     this.label1             = new System.Windows.Forms.Label();
     this.labelSubtitle      = new System.Windows.Forms.Label();
     this.pictureBox         = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLogo)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.Font      = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location  = new System.Drawing.Point(296, 8);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(153, 23);
     this.label2.TabIndex  = 17;
     this.label2.Text      = "Code generator";
     //
     // pictureBoxLogo
     //
     this.pictureBoxLogo.BackColor = System.Drawing.Color.White;
     this.pictureBoxLogo.Location  = new System.Drawing.Point(0, 0);
     this.pictureBoxLogo.Name      = "pictureBoxLogo";
     this.pictureBoxLogo.Size      = new System.Drawing.Size(496, 76);
     this.pictureBoxLogo.TabIndex  = 16;
     this.pictureBoxLogo.TabStop   = false;
     //
     // buttonOK
     //
     this.buttonOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.buttonOK.Location  = new System.Drawing.Point(299, 213);
     this.buttonOK.Name      = "buttonOK";
     this.buttonOK.Size      = new System.Drawing.Size(64, 32);
     this.buttonOK.TabIndex  = 3;
     this.buttonOK.Text      = "&OK";
     this.buttonOK.Click    += new System.EventHandler(this.buttonOK_Click);
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.buttonCancel.Location     = new System.Drawing.Point(385, 213);
     this.buttonCancel.Name         = "buttonCancel";
     this.buttonCancel.Size         = new System.Drawing.Size(64, 32);
     this.buttonCancel.TabIndex     = 4;
     this.buttonCancel.Text         = "&Cancel";
     this.buttonCancel.Click       += new System.EventHandler(this.buttonCancel_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.labelLanguage);
     this.groupBox1.Controls.Add(this.comboBoxLanguage);
     this.groupBox1.Controls.Add(this.labelFolder);
     this.groupBox1.Controls.Add(this.buttonBrowseFolder);
     this.groupBox1.Controls.Add(this.textBoxFolder);
     this.groupBox1.Controls.Add(this.textBoxNamespace);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(-2, 72);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(460, 135);
     this.groupBox1.TabIndex = 20;
     this.groupBox1.TabStop  = false;
     //
     // labelLanguage
     //
     this.labelLanguage.AutoSize  = true;
     this.labelLanguage.Location  = new System.Drawing.Point(54, 83);
     this.labelLanguage.Name      = "labelLanguage";
     this.labelLanguage.Size      = new System.Drawing.Size(54, 13);
     this.labelLanguage.TabIndex  = 6;
     this.labelLanguage.Text      = "Language ";
     this.labelLanguage.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // comboBoxLanguage
     //
     this.comboBoxLanguage.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLanguage.FormattingEnabled = true;
     this.comboBoxLanguage.Location          = new System.Drawing.Point(114, 83);
     this.comboBoxLanguage.Name     = "comboBoxLanguage";
     this.comboBoxLanguage.Size     = new System.Drawing.Size(96, 21);
     this.comboBoxLanguage.TabIndex = 2;
     //
     // labelFolder
     //
     this.labelFolder.AutoSize  = true;
     this.labelFolder.Location  = new System.Drawing.Point(70, 51);
     this.labelFolder.Name      = "labelFolder";
     this.labelFolder.Size      = new System.Drawing.Size(32, 13);
     this.labelFolder.TabIndex  = 4;
     this.labelFolder.Text      = "Folder";
     this.labelFolder.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // buttonBrowseFolder
     //
     this.buttonBrowseFolder.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.buttonBrowseFolder.Location  = new System.Drawing.Point(410, 51);
     this.buttonBrowseFolder.Name      = "buttonBrowseFolder";
     this.buttonBrowseFolder.Size      = new System.Drawing.Size(24, 20);
     this.buttonBrowseFolder.TabIndex  = 1;
     this.buttonBrowseFolder.Text      = "...";
     this.buttonBrowseFolder.Click    += new System.EventHandler(this.buttonBrowseFolder_Click);
     //
     // textBoxFolder
     //
     this.textBoxFolder.Location = new System.Drawing.Point(114, 51);
     this.textBoxFolder.Name     = "textBoxFolder";
     this.textBoxFolder.ReadOnly = true;
     this.textBoxFolder.Size     = new System.Drawing.Size(288, 20);
     this.textBoxFolder.TabIndex = 2;
     //
     // textBoxNamespace
     //
     this.textBoxNamespace.Location = new System.Drawing.Point(114, 19);
     this.textBoxNamespace.Name     = "textBoxNamespace";
     this.textBoxNamespace.Size     = new System.Drawing.Size(320, 20);
     this.textBoxNamespace.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Location  = new System.Drawing.Point(42, 19);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(60, 13);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Namespace";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // labelSubtitle
     //
     this.labelSubtitle.AutoSize  = true;
     this.labelSubtitle.BackColor = System.Drawing.Color.White;
     this.labelSubtitle.Location  = new System.Drawing.Point(194, 40);
     this.labelSubtitle.Name      = "labelSubtitle";
     this.labelSubtitle.Size      = new System.Drawing.Size(252, 13);
     this.labelSubtitle.TabIndex  = 21;
     this.labelSubtitle.Text      = "Generates persistent objects  for the selected entities";
     //
     // pictureBox
     //
     this.pictureBox.BackColor = System.Drawing.Color.White;
     this.pictureBox.Image     = ((System.Drawing.Image)(resources.GetObject("pictureBox.Image")));
     this.pictureBox.Location  = new System.Drawing.Point(14, 6);
     this.pictureBox.Name      = "pictureBox";
     this.pictureBox.Size      = new System.Drawing.Size(70, 68);
     this.pictureBox.TabIndex  = 22;
     this.pictureBox.TabStop   = false;
     //
     // CodeGeneratorPersistentDialog
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(458, 255);
     this.Controls.Add(this.pictureBox);
     this.Controls.Add(this.labelSubtitle);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.pictureBoxLogo);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "CodeGeneratorPersistentDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Persistent Object code generator";
     this.Load           += new System.EventHandler(this.CodeGeneratorMappingsDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxLogo)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 55
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.kryptonPanel1        = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnClose            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.statusStrip1         = new System.Windows.Forms.StatusStrip();
     this.kryptonPalette1      = new ComponentFactory.Krypton.Toolkit.KryptonPalette(this.components);
     this.kryptonPanelTop      = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.labelKryptonExplorer = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pictureBoxRight      = new System.Windows.Forms.PictureBox();
     this.panel1            = new System.Windows.Forms.Panel();
     this.kryptonPanel2     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonNavigator1 = new ComponentFactory.Krypton.Navigator.KryptonNavigator();
     this.kryptonPage1      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage2      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage3      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage4      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage5      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage6      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage7      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonPage8      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTop)).BeginInit();
     this.kryptonPanelTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).BeginInit();
     this.kryptonNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage8)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnClose);
     this.kryptonPanel1.Controls.Add(this.statusStrip1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 492);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(717, 65);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnClose
     //
     this.kbtnClose.AutoSize = true;
     this.kbtnClose.Location = new System.Drawing.Point(615, 8);
     this.kbtnClose.Name     = "kbtnClose";
     this.kbtnClose.Size     = new System.Drawing.Size(90, 30);
     this.kbtnClose.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnClose.TabIndex    = 1;
     this.kbtnClose.Values.Text = "Clos&e";
     this.kbtnClose.Click      += new System.EventHandler(this.kbtnClose_Click);
     //
     // statusStrip1
     //
     this.statusStrip1.Font       = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Location   = new System.Drawing.Point(0, 43);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(717, 22);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // kryptonPalette1
     //
     this.kryptonPalette1.CustomisedKryptonPaletteFilePath = null;
     //
     // kryptonPanelTop
     //
     this.kryptonPanelTop.Controls.Add(this.labelKryptonExplorer);
     this.kryptonPanelTop.Controls.Add(this.pictureBoxRight);
     this.kryptonPanelTop.Dock           = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanelTop.Location       = new System.Drawing.Point(0, 0);
     this.kryptonPanelTop.Name           = "kryptonPanelTop";
     this.kryptonPanelTop.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlClient;
     this.kryptonPanelTop.Size           = new System.Drawing.Size(717, 90);
     this.kryptonPanelTop.TabIndex       = 2;
     //
     // labelKryptonExplorer
     //
     this.labelKryptonExplorer.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.TitleControl;
     this.labelKryptonExplorer.Location   = new System.Drawing.Point(17, 54);
     this.labelKryptonExplorer.Name       = "labelKryptonExplorer";
     this.labelKryptonExplorer.Size       = new System.Drawing.Size(460, 28);
     this.labelKryptonExplorer.StateCommon.ShortText.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelKryptonExplorer.StateCommon.ShortText.Hint = ComponentFactory.Krypton.Toolkit.PaletteTextHint.AntiAlias;
     this.labelKryptonExplorer.TabIndex         = 0;
     this.labelKryptonExplorer.Values.ExtraText = "Built for .Net 4.7";
     this.labelKryptonExplorer.Values.Text      = "Krypton Extended Toolkit 5.460";
     //
     // pictureBoxRight
     //
     this.pictureBoxRight.BackColor             = System.Drawing.SystemColors.Window;
     this.pictureBoxRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBoxRight.Dock     = System.Windows.Forms.DockStyle.Right;
     this.pictureBoxRight.Image    = global::DemoHub.Properties.Resources.KR_64__x_64_Orange;
     this.pictureBoxRight.Location = new System.Drawing.Point(610, 0);
     this.pictureBoxRight.Name     = "pictureBoxRight";
     this.pictureBoxRight.Size     = new System.Drawing.Size(107, 90);
     this.pictureBoxRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBoxRight.TabIndex = 0;
     this.pictureBoxRight.TabStop  = false;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 489);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(717, 3);
     this.panel1.TabIndex  = 3;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonNavigator1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 90);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(717, 399);
     this.kryptonPanel2.TabIndex = 4;
     //
     // kryptonNavigator1
     //
     this.kryptonNavigator1.Bar.BarOrientation        = ComponentFactory.Krypton.Toolkit.VisualOrientation.Left;
     this.kryptonNavigator1.Bar.CheckButtonStyle      = ComponentFactory.Krypton.Toolkit.ButtonStyle.LowProfile;
     this.kryptonNavigator1.Bar.ItemOrientation       = ComponentFactory.Krypton.Toolkit.ButtonOrientation.FixedTop;
     this.kryptonNavigator1.Bar.TabBorderStyle        = ComponentFactory.Krypton.Toolkit.TabBorderStyle.OneNote;
     this.kryptonNavigator1.Button.ButtonDisplayLogic = ComponentFactory.Krypton.Navigator.ButtonDisplayLogic.None;
     this.kryptonNavigator1.Button.CloseButtonDisplay = ComponentFactory.Krypton.Navigator.ButtonDisplay.Hide;
     this.kryptonNavigator1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.kryptonNavigator1.Location      = new System.Drawing.Point(0, 0);
     this.kryptonNavigator1.Name          = "kryptonNavigator1";
     this.kryptonNavigator1.NavigatorMode = ComponentFactory.Krypton.Navigator.NavigatorMode.BarCheckButtonGroupOutside;
     this.kryptonNavigator1.PageBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonNavigator1.Pages.AddRange(new ComponentFactory.Krypton.Navigator.KryptonPage[] {
         this.kryptonPage1,
         this.kryptonPage2,
         this.kryptonPage3,
         this.kryptonPage4,
         this.kryptonPage5,
         this.kryptonPage6,
         this.kryptonPage7,
         this.kryptonPage8
     });
     this.kryptonNavigator1.SelectedIndex = 7;
     this.kryptonNavigator1.Size          = new System.Drawing.Size(717, 399);
     this.kryptonNavigator1.StateCommon.Bar.BarPaddingOutside              = new System.Windows.Forms.Padding(0, 0, 0, 10);
     this.kryptonNavigator1.StateCommon.Bar.CheckButtonGap                 = 5;
     this.kryptonNavigator1.StateCommon.CheckButton.Content.Image.ImageH   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.kryptonNavigator1.StateCommon.CheckButton.Content.Image.ImageV   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kryptonNavigator1.StateCommon.CheckButton.Content.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNavigator1.TabIndex = 0;
     this.kryptonNavigator1.Text     = "kryptonNavigator1";
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(588, 397);
     this.kryptonPage1.Text           = "Core";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "b9322797412b486e88d7bf8056aa67da";
     //
     // kryptonPage2
     //
     this.kryptonPage2.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage2.Flags          = 65534;
     this.kryptonPage2.LastVisibleSet = true;
     this.kryptonPage2.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage2.Name           = "kryptonPage2";
     this.kryptonPage2.Size           = new System.Drawing.Size(588, 397);
     this.kryptonPage2.Text           = "Dialogs";
     this.kryptonPage2.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage2.UniqueName     = "419c8ea99da44619b29354043d29a999";
     //
     // kryptonPage3
     //
     this.kryptonPage3.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage3.Flags          = 65534;
     this.kryptonPage3.LastVisibleSet = true;
     this.kryptonPage3.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage3.Name           = "kryptonPage3";
     this.kryptonPage3.Size           = new System.Drawing.Size(588, 397);
     this.kryptonPage3.Text           = "Outlook Grid";
     this.kryptonPage3.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage3.UniqueName     = "29a07ed70c75409780c8cbb247c483d9";
     //
     // kryptonPage4
     //
     this.kryptonPage4.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage4.Flags          = 65534;
     this.kryptonPage4.LastVisibleSet = true;
     this.kryptonPage4.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage4.Name           = "kryptonPage4";
     this.kryptonPage4.Size           = new System.Drawing.Size(588, 397);
     this.kryptonPage4.Text           = "Wizard";
     this.kryptonPage4.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage4.UniqueName     = "21d61935efe54482972abc8ee8a3d62c";
     //
     // kryptonPage5
     //
     this.kryptonPage5.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage5.Flags          = 65534;
     this.kryptonPage5.LastVisibleSet = true;
     this.kryptonPage5.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage5.Name           = "kryptonPage5";
     this.kryptonPage5.Size           = new System.Drawing.Size(588, 397);
     this.kryptonPage5.Text           = "Toolbars";
     this.kryptonPage5.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage5.UniqueName     = "665508ede045476292cb5b6d650b24f2";
     //
     // kryptonPage6
     //
     this.kryptonPage6.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage6.Flags          = 65534;
     this.kryptonPage6.LastVisibleSet = true;
     this.kryptonPage6.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage6.Name           = "kryptonPage6";
     this.kryptonPage6.Size           = new System.Drawing.Size(574, 397);
     this.kryptonPage6.Text           = "Colour Controls";
     this.kryptonPage6.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage6.UniqueName     = "e53b1a35a58d49c0b013515a397f1d61";
     //
     // kryptonPage7
     //
     this.kryptonPage7.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage7.Flags          = 65534;
     this.kryptonPage7.LastVisibleSet = true;
     this.kryptonPage7.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage7.Name           = "kryptonPage7";
     this.kryptonPage7.Size           = new System.Drawing.Size(574, 397);
     this.kryptonPage7.Text           = "IO Components";
     this.kryptonPage7.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage7.UniqueName     = "86ccf13d73434c508a943edabc5065ed";
     //
     // kryptonPage8
     //
     this.kryptonPage8.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage8.Flags          = 65534;
     this.kryptonPage8.LastVisibleSet = true;
     this.kryptonPage8.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage8.Name           = "kryptonPage8";
     this.kryptonPage8.Size           = new System.Drawing.Size(574, 397);
     this.kryptonPage8.Text           = "Toolkit Controls";
     this.kryptonPage8.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage8.UniqueName     = "f02391499eb944a28eafec15d7a573bd";
     //
     // MainWindow
     //
     this.ClientSize = new System.Drawing.Size(717, 557);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanelTop);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MainWindow";
     this.ShowIcon        = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Krypton Extended Toolkit Demo Hub";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTop)).EndInit();
     this.kryptonPanelTop.ResumeLayout(false);
     this.kryptonPanelTop.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).EndInit();
     this.kryptonNavigator1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage8)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PaletteEditorSplash));
     this.kryptonPanel1       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klblCloseDisabled   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblCloseEnabled    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblBetaInformation = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pictureBox1         = new System.Windows.Forms.PictureBox();
     this.pbProgress          = new System.Windows.Forms.ProgressBar();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.klblCloseDisabled);
     this.kryptonPanel1.Controls.Add(this.klblCloseEnabled);
     this.kryptonPanel1.Controls.Add(this.klblBetaInformation);
     this.kryptonPanel1.Controls.Add(this.pictureBox1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1012, 577);
     this.kryptonPanel1.TabIndex = 0;
     //
     // klblCloseDisabled
     //
     this.klblCloseDisabled.Location = new System.Drawing.Point(977, 12);
     this.klblCloseDisabled.Name     = "klblCloseDisabled";
     this.klblCloseDisabled.Size     = new System.Drawing.Size(23, 26);
     this.klblCloseDisabled.StateCommon.ShortText.Color1 = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.klblCloseDisabled.StateCommon.ShortText.Color2 = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.klblCloseDisabled.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblCloseDisabled.StateCommon.ShortText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblCloseDisabled.StateCommon.ShortText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblCloseDisabled.TabIndex    = 2;
     this.klblCloseDisabled.Values.Text = "X";
     this.klblCloseDisabled.MouseEnter += new System.EventHandler(this.klblCloseDisabled_MouseEnter);
     //
     // klblCloseEnabled
     //
     this.klblCloseEnabled.Location = new System.Drawing.Point(977, 12);
     this.klblCloseEnabled.Name     = "klblCloseEnabled";
     this.klblCloseEnabled.Size     = new System.Drawing.Size(23, 26);
     this.klblCloseEnabled.StateCommon.ShortText.Color1 = System.Drawing.Color.Red;
     this.klblCloseEnabled.StateCommon.ShortText.Color2 = System.Drawing.Color.Red;
     this.klblCloseEnabled.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblCloseEnabled.StateCommon.ShortText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblCloseEnabled.StateCommon.ShortText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblCloseEnabled.TabIndex    = 3;
     this.klblCloseEnabled.Values.Text = "X";
     this.klblCloseEnabled.Click      += new System.EventHandler(this.klblCloseEnabled_Click);
     this.klblCloseEnabled.MouseLeave += new System.EventHandler(this.klblCloseEnabled_MouseLeave);
     //
     // klblBetaInformation
     //
     this.klblBetaInformation.AutoSize = false;
     this.klblBetaInformation.Location = new System.Drawing.Point(251, 522);
     this.klblBetaInformation.Name     = "klblBetaInformation";
     this.klblBetaInformation.Size     = new System.Drawing.Size(512, 25);
     this.klblBetaInformation.StateCommon.ShortText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblBetaInformation.StateCommon.ShortText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblBetaInformation.StateCommon.ShortText.TextV = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblBetaInformation.TabIndex    = 1;
     this.klblBetaInformation.Values.Text = "Palette Explorer - Beta (Build: {0})";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = global::PaletteEditor.Properties.Resources.PE_Icon_512_x_512;
     this.pictureBox1.Location  = new System.Drawing.Point(251, 3);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(512, 512);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex  = 0;
     this.pictureBox1.TabStop   = false;
     //
     // pbProgress
     //
     this.pbProgress.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.pbProgress.Location = new System.Drawing.Point(0, 554);
     this.pbProgress.Name     = "pbProgress";
     this.pbProgress.Size     = new System.Drawing.Size(1012, 23);
     this.pbProgress.TabIndex = 1;
     //
     // PaletteEditorSplash
     //
     this.ClientSize = new System.Drawing.Size(1012, 577);
     this.ControlBox = false;
     this.Controls.Add(this.pbProgress);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name            = "PaletteEditorSplash";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.PaletteEditorSplash_FormClosing);
     this.Load           += new System.EventHandler(this.PaletteEditorSplash_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio 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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmLogin));
     this.lblSSN      = new System.Windows.Forms.Label();
     this.txtSSN      = new System.Windows.Forms.TextBox();
     this.lblCampaign = new System.Windows.Forms.Label();
     this.cboCampaign = new System.Windows.Forms.ComboBox();
     this.panel1      = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lblInstruct = new System.Windows.Forms.Label();
     this.btnOK       = new System.Windows.Forms.Button();
     this.btnCancel   = new System.Windows.Forms.Button();
     this.lblStatus   = new System.Windows.Forms.Label();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblSSN
     //
     this.lblSSN.Location = new System.Drawing.Point(64, 72);
     this.lblSSN.Name     = "lblSSN";
     this.lblSSN.Size     = new System.Drawing.Size(32, 16);
     this.lblSSN.TabIndex = 0;
     this.lblSSN.Text     = "SSN:";
     //
     // txtSSN
     //
     this.txtSSN.Location     = new System.Drawing.Point(136, 72);
     this.txtSSN.MaxLength    = 9;
     this.txtSSN.Name         = "txtSSN";
     this.txtSSN.PasswordChar = '*';
     this.txtSSN.Size         = new System.Drawing.Size(176, 21);
     this.txtSSN.TabIndex     = 1;
     this.txtSSN.Text         = "";
     //
     // lblCampaign
     //
     this.lblCampaign.Location = new System.Drawing.Point(64, 104);
     this.lblCampaign.Name     = "lblCampaign";
     this.lblCampaign.Size     = new System.Drawing.Size(64, 16);
     this.lblCampaign.TabIndex = 3;
     this.lblCampaign.Text     = "Campaign:";
     //
     // cboCampaign
     //
     this.cboCampaign.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboCampaign.Location      = new System.Drawing.Point(136, 104);
     this.cboCampaign.Name          = "cboCampaign";
     this.cboCampaign.Size          = new System.Drawing.Size(176, 21);
     this.cboCampaign.TabIndex      = 4;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.pictureBox1,
         this.lblInstruct
     });
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(368, 56);
     this.panel1.TabIndex = 5;
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(184, 5);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(128, 40);
     this.pictureBox1.TabIndex = 2;
     this.pictureBox1.TabStop  = false;
     //
     // lblInstruct
     //
     this.lblInstruct.Location = new System.Drawing.Point(8, 8);
     this.lblInstruct.Name     = "lblInstruct";
     this.lblInstruct.Size     = new System.Drawing.Size(168, 32);
     this.lblInstruct.TabIndex = 1;
     this.lblInstruct.Text     = "Please enter your social security number and select a campaign.";
     //
     // btnOK
     //
     this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnOK.Location  = new System.Drawing.Point(176, 168);
     this.btnOK.Name      = "btnOK";
     this.btnOK.Size      = new System.Drawing.Size(64, 24);
     this.btnOK.TabIndex  = 6;
     this.btnOK.Text      = "&OK";
     this.btnOK.Click    += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location     = new System.Drawing.Point(248, 168);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(64, 24);
     this.btnCancel.TabIndex     = 7;
     this.btnCancel.Text         = "&Cancel";
     //
     // lblStatus
     //
     this.lblStatus.BackColor   = System.Drawing.Color.Navy;
     this.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblStatus.Font        = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.lblStatus.ForeColor   = System.Drawing.Color.White;
     this.lblStatus.Location    = new System.Drawing.Point(8, 136);
     this.lblStatus.Name        = "lblStatus";
     this.lblStatus.Size        = new System.Drawing.Size(304, 21);
     this.lblStatus.TabIndex    = 8;
     this.lblStatus.Text        = "VLoop: Login Please";
     this.lblStatus.TextAlign   = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Bitmap)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(8, 72);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(48, 48);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox2.TabIndex = 9;
     this.pictureBox2.TabStop  = false;
     //
     // frmLogin
     //
     this.AcceptButton      = this.btnOK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(322, 200);
     this.ControlBox        = false;
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.pictureBox2,
         this.lblStatus,
         this.btnCancel,
         this.btnOK,
         this.panel1,
         this.cboCampaign,
         this.lblCampaign,
         this.txtSSN,
         this.lblSSN
     });
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.HelpButton      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmLogin";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "VLoop Login";
     this.Paint          += new System.Windows.Forms.PaintEventHandler(this.frmLogin_Paint);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 58
0
 private void Diseño_Forma()
 {
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Almacen));
     groupBoxdatos              = new System.Windows.Forms.GroupBox();
     txt_Lugar                  = new System.Windows.Forms.TextBox();
     txt_Nombre                 = new System.Windows.Forms.TextBox();
     lbl_Lugar                  = new System.Windows.Forms.Label();
     lbl_Nombre                 = new System.Windows.Forms.Label();
     menuStrip1                 = new System.Windows.Forms.MenuStrip();
     archivoToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     nuevoToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     abrirToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator         = new System.Windows.Forms.ToolStripSeparator();
     guardarToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     salirToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     editarToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     eliminarToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     ayudaToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     acercadeToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     errorProvider1             = new System.Windows.Forms.ErrorProvider(components);
     pic_Almacen                = new System.Windows.Forms.PictureBox();
     groupBoxdatos.SuspendLayout();
     menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pic_Almacen)).BeginInit();
     SuspendLayout();
     pic_Logo                   = new System.Windows.Forms.PictureBox();
     components                 = new System.ComponentModel.Container();
     groupBoxdatos              = new System.Windows.Forms.GroupBox();
     txt_Lugar                  = new System.Windows.Forms.TextBox();
     txt_Nombre                 = new System.Windows.Forms.TextBox();
     lbl_Lugar                  = new System.Windows.Forms.Label();
     lbl_Nombre                 = new System.Windows.Forms.Label();
     menuStrip1                 = new System.Windows.Forms.MenuStrip();
     archivoToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     nuevoToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     abrirToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator         = new System.Windows.Forms.ToolStripSeparator();
     guardarToolStripMenuItem   = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1        = new System.Windows.Forms.ToolStripSeparator();
     salirToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     editarToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     eliminarToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     ayudaToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     acercadeToolStripMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     errorProvider1             = new System.Windows.Forms.ErrorProvider(components);
     pic_Almacen                = new System.Windows.Forms.PictureBox();
     groupBoxdatos.SuspendLayout();
     menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pic_Almacen)).BeginInit();
     SuspendLayout();
     //
     // groupBoxdatos
     //
     groupBoxdatos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     groupBoxdatos.Controls.Add(txt_Lugar);
     groupBoxdatos.Controls.Add(txt_Nombre);
     groupBoxdatos.Controls.Add(lbl_Lugar);
     groupBoxdatos.Controls.Add(lbl_Nombre);
     groupBoxdatos.Location = new System.Drawing.Point(11, 69);
     groupBoxdatos.Name     = "groupBoxdatos";
     groupBoxdatos.Size     = new System.Drawing.Size(418, 130);
     groupBoxdatos.TabIndex = 75;
     groupBoxdatos.TabStop  = false;
     groupBoxdatos.Text     = "Datos del almacen";
     //
     // txt_Lugar
     //
     txt_Lugar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                              | System.Windows.Forms.AnchorStyles.Left)));
     txt_Lugar.Location  = new System.Drawing.Point(126, 77);
     txt_Lugar.MaxLength = 100;
     txt_Lugar.Name      = "txt_Lugar";
     txt_Lugar.Size      = new System.Drawing.Size(270, 40);
     txt_Lugar.Multiline = true;
     txt_Lugar.TabIndex  = 73;
     txt_Lugar.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_Lugar_KeyPress);
     //
     // txt_Nombre
     //
     txt_Nombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                               | System.Windows.Forms.AnchorStyles.Left)));
     txt_Nombre.Location  = new System.Drawing.Point(126, 52);
     txt_Nombre.MaxLength = 25;
     txt_Nombre.Name      = "txt_Nombre";
     txt_Nombre.Size      = new System.Drawing.Size(127, 20);
     txt_Nombre.TabIndex  = 72;
     txt_Nombre.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_Nombre_KeyPress);
     //
     // lbl_Lugar
     //
     lbl_Lugar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                              | System.Windows.Forms.AnchorStyles.Left)));
     lbl_Lugar.AutoSize = true;
     lbl_Lugar.Location = new System.Drawing.Point(37, 85);
     lbl_Lugar.Name     = "lbl_Lugar";
     lbl_Lugar.Size     = new System.Drawing.Size(34, 13);
     lbl_Lugar.TabIndex = 71;
     lbl_Lugar.Text     = "Lugar";
     //
     // lbl_Nombre
     //
     lbl_Nombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                               | System.Windows.Forms.AnchorStyles.Left)));
     lbl_Nombre.AutoSize = true;
     lbl_Nombre.Location = new System.Drawing.Point(37, 56);
     lbl_Nombre.Name     = "lbl_Nombre";
     lbl_Nombre.Size     = new System.Drawing.Size(44, 13);
     lbl_Nombre.TabIndex = 69;
     lbl_Nombre.Text     = "Nombre";
     //
     // menuStrip1
     //
     menuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(186)))), ((int)(((byte)(82)))));
     menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         archivoToolStripMenuItem,
         editarToolStripMenuItem,
         ayudaToolStripMenuItem
     });
     menuStrip1.Location = new System.Drawing.Point(0, 0);
     menuStrip1.Name     = "menuStrip1";
     menuStrip1.Size     = new System.Drawing.Size(448, 24);
     menuStrip1.TabIndex = 77;
     menuStrip1.Text     = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         nuevoToolStripMenuItem,
         abrirToolStripMenuItem,
         toolStripSeparator,
         guardarToolStripMenuItem,
         toolStripSeparator1,
         salirToolStripMenuItem
     });
     archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     archivoToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
     archivoToolStripMenuItem.Text = "&Archivo";
     //
     // nuevoToolStripMenuItem
     //
     nuevoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("nuevoToolStripMenuItem.Image")));
     nuevoToolStripMenuItem.Image = global::Sistema_Shajobe.Properties.Resources.Nuevo;
     nuevoToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     nuevoToolStripMenuItem.Name         = "nuevoToolStripMenuItem";
     nuevoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     nuevoToolStripMenuItem.Size         = new System.Drawing.Size(151, 22);
     nuevoToolStripMenuItem.Text         = "&Nuevo";
     nuevoToolStripMenuItem.Click       += new System.EventHandler(nuevoToolStripMenuItem_Click);
     //
     // abrirToolStripMenuItem
     //
     abrirToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("abrirToolStripMenuItem.Image")));
     abrirToolStripMenuItem.Image = global::Sistema_Shajobe.Properties.Resources.Abrir;
     abrirToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     abrirToolStripMenuItem.Name         = "abrirToolStripMenuItem";
     abrirToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     abrirToolStripMenuItem.Size         = new System.Drawing.Size(151, 22);
     abrirToolStripMenuItem.Text         = "&Abrir";
     abrirToolStripMenuItem.Click       += new System.EventHandler(abrirToolStripMenuItem_Click);
     //
     // toolStripSeparator
     //
     toolStripSeparator.Name = "toolStripSeparator";
     toolStripSeparator.Size = new System.Drawing.Size(148, 6);
     //
     // guardarToolStripMenuItem
     //
     guardarToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("guardarToolStripMenuItem.Image")));
     guardarToolStripMenuItem.Image = global::Sistema_Shajobe.Properties.Resources.Guardar;
     guardarToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     guardarToolStripMenuItem.Name         = "guardarToolStripMenuItem";
     guardarToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     guardarToolStripMenuItem.Size         = new System.Drawing.Size(151, 22);
     guardarToolStripMenuItem.Text         = "&Guardar";
     guardarToolStripMenuItem.Click       += new System.EventHandler(guardarToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(148, 6);
     //
     // salirToolStripMenuItem
     //
     salirToolStripMenuItem.Name   = "salirToolStripMenuItem";
     salirToolStripMenuItem.Size   = new System.Drawing.Size(151, 22);
     salirToolStripMenuItem.Text   = "&Salir";
     salirToolStripMenuItem.Click += new System.EventHandler(salirToolStripMenuItem_Click);
     //
     // editarToolStripMenuItem
     //
     editarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         modificarToolStripMenuItem,
         eliminarToolStripMenuItem
     });
     editarToolStripMenuItem.Name = "editarToolStripMenuItem";
     editarToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
     editarToolStripMenuItem.Text = "&Editar";
     //
     // modificarToolStripMenuItem
     //
     modificarToolStripMenuItem.Enabled = false;
     modificarToolStripMenuItem.Image   = global::Sistema_Shajobe.Properties.Resources.Modificar;
     modificarToolStripMenuItem.Name    = "modificarToolStripMenuItem";
     modificarToolStripMenuItem.Size    = new System.Drawing.Size(117, 22);
     modificarToolStripMenuItem.Text    = "Modificar";
     modificarToolStripMenuItem.Click  += new System.EventHandler(modificarToolStripMenuItem_Click);
     //
     // eliminarToolStripMenuItem
     //
     eliminarToolStripMenuItem.Enabled = false;
     eliminarToolStripMenuItem.Image   = global::Sistema_Shajobe.Properties.Resources.Borrar;
     eliminarToolStripMenuItem.Name    = "eliminarToolStripMenuItem";
     eliminarToolStripMenuItem.Size    = new System.Drawing.Size(117, 22);
     eliminarToolStripMenuItem.Text    = "Eliminar";
     eliminarToolStripMenuItem.Visible = false;
     eliminarToolStripMenuItem.Click  += new System.EventHandler(eliminarToolStripMenuItem_Click);
     //
     // ayudaToolStripMenuItem
     //
     ayudaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         acercadeToolStripMenuItem
     });
     ayudaToolStripMenuItem.Name = "ayudaToolStripMenuItem";
     ayudaToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     ayudaToolStripMenuItem.Text = "Ay&uda";
     //
     // acercadeToolStripMenuItem
     //
     acercadeToolStripMenuItem.Name = "acercadeToolStripMenuItem";
     acercadeToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     acercadeToolStripMenuItem.Text = "&Acerca de...";
     //
     // errorProvider1
     //
     errorProvider1.ContainerControl = this;
     //
     // pic_Almacen
     //
     pic_Almacen.BackgroundImage       = global::Sistema_Shajobe.Properties.Resources.Almacen;
     pic_Almacen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     pic_Almacen.Location = new System.Drawing.Point(351, 25);
     pic_Almacen.Name     = "pic_Almacen";
     pic_Almacen.Size     = new System.Drawing.Size(85, 67);
     pic_Almacen.TabIndex = 79;
     pic_Almacen.TabStop  = false;
     //
     // pic_Logo
     //
     pic_Logo.BackgroundImage       = global::Sistema_Shajobe.Properties.Resources.Logo_Shajobe;
     pic_Logo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     pic_Logo.Location = new System.Drawing.Point(280, 200);
     pic_Logo.Name     = "pic_Logo";
     pic_Logo.Size     = new System.Drawing.Size(152, 70);
     pic_Logo.TabIndex = 13;
     pic_Logo.TabStop  = false;
     //
     // Almacen
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(448, 284);
     Controls.Add(pic_Almacen);
     Controls.Add(menuStrip1);
     Controls.Add(pic_Logo);
     Controls.Add(groupBoxdatos);
     BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(228)))), ((int)(((byte)(196)))));
     FormClosing  += new System.Windows.Forms.FormClosingEventHandler(Almacen_FormClosing);
     Icon          = global::Sistema_Shajobe.Properties.Resources.Almacen_ICO;
     MaximizeBox   = false;
     MaximumSize   = new System.Drawing.Size(454, 306);
     MinimumSize   = new System.Drawing.Size(454, 306);
     Name          = "Almacen";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text          = "Almacen";
     Load         += new System.EventHandler(Almacen_Load);
     groupBoxdatos.ResumeLayout(false);
     groupBoxdatos.PerformLayout();
     menuStrip1.ResumeLayout(false);
     menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pic_Almacen)).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Esempio 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()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Frm_foreigngroup_default));
     this.DS          = new foreigngroup_default.vistaForm();
     this.textBox2    = new System.Windows.Forms.TextBox();
     this.textBox1    = new System.Windows.Forms.TextBox();
     this.label2      = new System.Windows.Forms.Label();
     this.label1      = new System.Windows.Forms.Label();
     this.groupBox1   = new System.Windows.Forms.GroupBox();
     this.listView1   = new System.Windows.Forms.ListView();
     this.groupBox2   = new System.Windows.Forms.GroupBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.DS)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // DS
     //
     this.DS.DataSetName = "vistaForm";
     this.DS.Locale      = new System.Globalization.CultureInfo("en-US");
     //
     // textBox2
     //
     this.textBox2.Location  = new System.Drawing.Point(8, 96);
     this.textBox2.Name      = "textBox2";
     this.textBox2.Size      = new System.Drawing.Size(136, 20);
     this.textBox2.TabIndex  = 1;
     this.textBox2.Tag       = "foreigngroup.foreigngroupnumber";
     this.textBox2.Text      = "";
     this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(8, 40);
     this.textBox1.Name     = "textBox1";
     this.textBox1.Size     = new System.Drawing.Size(136, 20);
     this.textBox1.TabIndex = 0;
     this.textBox1.Tag      = "foreigngroup.start";
     this.textBox1.Text     = "";
     //
     // label2
     //
     this.label2.Location  = new System.Drawing.Point(8, 72);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(104, 16);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "Gruppo estero:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(8, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(104, 16);
     this.label1.TabIndex  = 3;
     this.label1.Text      = "Data di decorrenza:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // 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.listView1);
     this.groupBox1.Location = new System.Drawing.Point(160, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(448, 336);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Applicabilità";
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.listView1.Location              = new System.Drawing.Point(16, 24);
     this.listView1.Name                  = "listView1";
     this.listView1.Size                  = new System.Drawing.Size(424, 304);
     this.listView1.TabIndex              = 3;
     this.listView1.Tag                   = "qualificaclasse.default";
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.textBox1);
     this.groupBox2.Controls.Add(this.textBox2);
     this.groupBox2.Location = new System.Drawing.Point(8, 8);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(152, 128);
     this.groupBox2.TabIndex = 7;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Dati generali";
     //
     // pictureBox1
     //
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Image       = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location    = new System.Drawing.Point(40, 144);
     this.pictureBox1.Name        = "pictureBox1";
     this.pictureBox1.Size        = new System.Drawing.Size(64, 64);
     this.pictureBox1.TabIndex    = 8;
     this.pictureBox1.TabStop     = false;
     //
     // Frm_foreigngroup_default
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.AutoScroll        = true;
     this.ClientSize        = new System.Drawing.Size(616, 357);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name          = "Frm_foreigngroup_default";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "frmGruppoEstero";
     ((System.ComponentModel.ISupportInitialize)(this.DS)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio 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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilterForm));
     this.comboDSPMode  = new System.Windows.Forms.ComboBox();
     this.radFilter1    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter2    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter3    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter4    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter5    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter6    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter7    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter8    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter9    = new System.Windows.Forms.RadioButtonTS();
     this.radFilter10   = new System.Windows.Forms.RadioButtonTS();
     this.radFilterVar1 = new System.Windows.Forms.RadioButtonTS();
     this.radFilterVar2 = new System.Windows.Forms.RadioButtonTS();
     this.lblMode       = new System.Windows.Forms.Label();
     this.txtName       = new System.Windows.Forms.TextBox();
     this.lblName       = new System.Windows.Forms.Label();
     this.udLow         = new System.Windows.Forms.NumericUpDown();
     this.udHigh        = new System.Windows.Forms.NumericUpDown();
     this.lblLow        = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.udWidth       = new System.Windows.Forms.NumericUpDown();
     this.lblWidth      = new System.Windows.Forms.Label();
     this.picDisplay    = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.udLow)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.udHigh)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.udWidth)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).BeginInit();
     this.SuspendLayout();
     //
     // comboDSPMode
     //
     this.comboDSPMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboDSPMode.Items.AddRange(new object[] {
         "LSB",
         "USB",
         "DSB",
         "CWL",
         "CWU",
         "AM",
         "SAM",
         "DIGL",
         "DIGU"
     });
     this.comboDSPMode.Location              = new System.Drawing.Point(64, 16);
     this.comboDSPMode.Name                  = "comboDSPMode";
     this.comboDSPMode.Size                  = new System.Drawing.Size(64, 21);
     this.comboDSPMode.TabIndex              = 0;
     this.comboDSPMode.SelectedIndexChanged += new System.EventHandler(this.comboDSPMode_SelectedIndexChanged);
     //
     // radFilter1
     //
     this.radFilter1.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter1.Image           = null;
     this.radFilter1.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter1.Location        = new System.Drawing.Point(8, 48);
     this.radFilter1.Name            = "radFilter1";
     this.radFilter1.Size            = new System.Drawing.Size(48, 18);
     this.radFilter1.TabIndex        = 37;
     this.radFilter1.Text            = "6.0k";
     this.radFilter1.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter1.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter2
     //
     this.radFilter2.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter2.Image           = null;
     this.radFilter2.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter2.Location        = new System.Drawing.Point(56, 48);
     this.radFilter2.Name            = "radFilter2";
     this.radFilter2.Size            = new System.Drawing.Size(48, 18);
     this.radFilter2.TabIndex        = 39;
     this.radFilter2.Text            = "4.0k";
     this.radFilter2.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter2.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter3
     //
     this.radFilter3.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter3.Image           = null;
     this.radFilter3.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter3.Location        = new System.Drawing.Point(104, 48);
     this.radFilter3.Name            = "radFilter3";
     this.radFilter3.Size            = new System.Drawing.Size(48, 18);
     this.radFilter3.TabIndex        = 38;
     this.radFilter3.Text            = "2.6k";
     this.radFilter3.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter3.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter4
     //
     this.radFilter4.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter4.Image           = null;
     this.radFilter4.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter4.Location        = new System.Drawing.Point(8, 66);
     this.radFilter4.Name            = "radFilter4";
     this.radFilter4.Size            = new System.Drawing.Size(48, 18);
     this.radFilter4.TabIndex        = 40;
     this.radFilter4.Text            = "2.1k";
     this.radFilter4.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter4.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter5
     //
     this.radFilter5.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter5.Image           = null;
     this.radFilter5.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter5.Location        = new System.Drawing.Point(56, 66);
     this.radFilter5.Name            = "radFilter5";
     this.radFilter5.Size            = new System.Drawing.Size(48, 18);
     this.radFilter5.TabIndex        = 41;
     this.radFilter5.Text            = "1.0k";
     this.radFilter5.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter5.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter6
     //
     this.radFilter6.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter6.Image           = null;
     this.radFilter6.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter6.Location        = new System.Drawing.Point(104, 66);
     this.radFilter6.Name            = "radFilter6";
     this.radFilter6.Size            = new System.Drawing.Size(48, 18);
     this.radFilter6.TabIndex        = 42;
     this.radFilter6.Text            = "500";
     this.radFilter6.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter6.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter7
     //
     this.radFilter7.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter7.Image           = null;
     this.radFilter7.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter7.Location        = new System.Drawing.Point(8, 84);
     this.radFilter7.Name            = "radFilter7";
     this.radFilter7.Size            = new System.Drawing.Size(48, 18);
     this.radFilter7.TabIndex        = 43;
     this.radFilter7.Text            = "250";
     this.radFilter7.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter7.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter8
     //
     this.radFilter8.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter8.Image           = null;
     this.radFilter8.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter8.Location        = new System.Drawing.Point(56, 84);
     this.radFilter8.Name            = "radFilter8";
     this.radFilter8.Size            = new System.Drawing.Size(48, 18);
     this.radFilter8.TabIndex        = 44;
     this.radFilter8.Text            = "100";
     this.radFilter8.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter8.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter9
     //
     this.radFilter9.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter9.Image           = null;
     this.radFilter9.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter9.Location        = new System.Drawing.Point(104, 84);
     this.radFilter9.Name            = "radFilter9";
     this.radFilter9.Size            = new System.Drawing.Size(48, 18);
     this.radFilter9.TabIndex        = 45;
     this.radFilter9.Text            = "50";
     this.radFilter9.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter9.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilter10
     //
     this.radFilter10.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilter10.Image           = null;
     this.radFilter10.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilter10.Location        = new System.Drawing.Point(8, 102);
     this.radFilter10.Name            = "radFilter10";
     this.radFilter10.Size            = new System.Drawing.Size(48, 18);
     this.radFilter10.TabIndex        = 46;
     this.radFilter10.Text            = "25";
     this.radFilter10.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilter10.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilterVar1
     //
     this.radFilterVar1.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilterVar1.Image           = null;
     this.radFilterVar1.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilterVar1.Location        = new System.Drawing.Point(56, 102);
     this.radFilterVar1.Name            = "radFilterVar1";
     this.radFilterVar1.Size            = new System.Drawing.Size(48, 18);
     this.radFilterVar1.TabIndex        = 47;
     this.radFilterVar1.Text            = "Var 1";
     this.radFilterVar1.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilterVar1.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // radFilterVar2
     //
     this.radFilterVar2.Appearance      = System.Windows.Forms.Appearance.Button;
     this.radFilterVar2.Image           = null;
     this.radFilterVar2.ImeMode         = System.Windows.Forms.ImeMode.NoControl;
     this.radFilterVar2.Location        = new System.Drawing.Point(104, 102);
     this.radFilterVar2.Name            = "radFilterVar2";
     this.radFilterVar2.Size            = new System.Drawing.Size(48, 18);
     this.radFilterVar2.TabIndex        = 48;
     this.radFilterVar2.Text            = "Var 2";
     this.radFilterVar2.TextAlign       = System.Drawing.ContentAlignment.MiddleCenter;
     this.radFilterVar2.CheckedChanged += new System.EventHandler(this.radFilter_CheckedChanged);
     //
     // lblMode
     //
     this.lblMode.Location = new System.Drawing.Point(24, 16);
     this.lblMode.Name     = "lblMode";
     this.lblMode.Size     = new System.Drawing.Size(40, 23);
     this.lblMode.TabIndex = 49;
     this.lblMode.Text     = "Mode:";
     //
     // txtName
     //
     this.txtName.Location   = new System.Drawing.Point(72, 16);
     this.txtName.MaxLength  = 6;
     this.txtName.Name       = "txtName";
     this.txtName.Size       = new System.Drawing.Size(56, 20);
     this.txtName.TabIndex   = 50;
     this.txtName.LostFocus += new System.EventHandler(this.txtName_LostFocus);
     //
     // lblName
     //
     this.lblName.Location = new System.Drawing.Point(8, 16);
     this.lblName.Name     = "lblName";
     this.lblName.Size     = new System.Drawing.Size(48, 23);
     this.lblName.TabIndex = 51;
     this.lblName.Text     = "Name:";
     //
     // udLow
     //
     this.udLow.Location = new System.Drawing.Point(72, 64);
     this.udLow.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.udLow.Minimum = new decimal(new int[] {
         9999,
         0,
         0,
         -2147483648
     });
     this.udLow.Name          = "udLow";
     this.udLow.Size          = new System.Drawing.Size(64, 20);
     this.udLow.TabIndex      = 52;
     this.udLow.ValueChanged += new System.EventHandler(this.udLow_ValueChanged);
     this.udLow.LostFocus    += new System.EventHandler(this.udLow_LostFocus);
     //
     // udHigh
     //
     this.udHigh.Location = new System.Drawing.Point(72, 40);
     this.udHigh.Maximum  = new decimal(new int[] {
         9999,
         0,
         0,
         0
     });
     this.udHigh.Minimum = new decimal(new int[] {
         9999,
         0,
         0,
         -2147483648
     });
     this.udHigh.Name          = "udHigh";
     this.udHigh.Size          = new System.Drawing.Size(64, 20);
     this.udHigh.TabIndex      = 53;
     this.udHigh.ValueChanged += new System.EventHandler(this.udHigh_ValueChanged);
     this.udHigh.LostFocus    += new System.EventHandler(this.udHigh_LostFocus);
     //
     // lblLow
     //
     this.lblLow.Location = new System.Drawing.Point(8, 64);
     this.lblLow.Name     = "lblLow";
     this.lblLow.Size     = new System.Drawing.Size(48, 23);
     this.lblLow.TabIndex = 54;
     this.lblLow.Text     = "Low:";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 40);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(48, 23);
     this.label1.TabIndex = 55;
     this.label1.Text     = "High:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.radFilter10);
     this.groupBox1.Controls.Add(this.radFilter2);
     this.groupBox1.Controls.Add(this.radFilterVar1);
     this.groupBox1.Controls.Add(this.comboDSPMode);
     this.groupBox1.Controls.Add(this.radFilter1);
     this.groupBox1.Controls.Add(this.radFilterVar2);
     this.groupBox1.Controls.Add(this.lblMode);
     this.groupBox1.Controls.Add(this.radFilter3);
     this.groupBox1.Controls.Add(this.radFilter4);
     this.groupBox1.Controls.Add(this.radFilter5);
     this.groupBox1.Controls.Add(this.radFilter6);
     this.groupBox1.Controls.Add(this.radFilter7);
     this.groupBox1.Controls.Add(this.radFilter8);
     this.groupBox1.Controls.Add(this.radFilter9);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(160, 128);
     this.groupBox1.TabIndex = 56;
     this.groupBox1.TabStop  = false;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.udWidth);
     this.groupBox2.Controls.Add(this.lblWidth);
     this.groupBox2.Controls.Add(this.udHigh);
     this.groupBox2.Controls.Add(this.lblLow);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.txtName);
     this.groupBox2.Controls.Add(this.lblName);
     this.groupBox2.Controls.Add(this.udLow);
     this.groupBox2.Location = new System.Drawing.Point(176, 8);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(160, 128);
     this.groupBox2.TabIndex = 57;
     this.groupBox2.TabStop  = false;
     //
     // udWidth
     //
     this.udWidth.Location = new System.Drawing.Point(72, 88);
     this.udWidth.Maximum  = new decimal(new int[] {
         19998,
         0,
         0,
         0
     });
     this.udWidth.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.udWidth.Name     = "udWidth";
     this.udWidth.Size     = new System.Drawing.Size(64, 20);
     this.udWidth.TabIndex = 56;
     this.udWidth.Value    = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.udWidth.ValueChanged += new System.EventHandler(this.udWidth_ValueChanged);
     //
     // lblWidth
     //
     this.lblWidth.Location = new System.Drawing.Point(8, 88);
     this.lblWidth.Name     = "lblWidth";
     this.lblWidth.Size     = new System.Drawing.Size(64, 23);
     this.lblWidth.TabIndex = 57;
     this.lblWidth.Text     = "Width:";
     //
     // picDisplay
     //
     this.picDisplay.BackColor  = System.Drawing.SystemColors.ControlText;
     this.picDisplay.Location   = new System.Drawing.Point(8, 144);
     this.picDisplay.Name       = "picDisplay";
     this.picDisplay.Size       = new System.Drawing.Size(328, 50);
     this.picDisplay.TabIndex   = 58;
     this.picDisplay.TabStop    = false;
     this.picDisplay.Paint     += new System.Windows.Forms.PaintEventHandler(this.picDisplay_Paint);
     this.picDisplay.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseDown);
     this.picDisplay.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseMove);
     this.picDisplay.MouseUp   += new System.Windows.Forms.MouseEventHandler(this.picDisplay_MouseUp);
     //
     // FilterForm
     //
     this.ClientSize = new System.Drawing.Size(344, 206);
     this.Controls.Add(this.picDisplay);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name        = "FilterForm";
     this.Text        = "Filter Setup";
     ((System.ComponentModel.ISupportInitialize)(this.udLow)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.udHigh)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.udWidth)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).EndInit();
     this.ResumeLayout(false);
 }