Exemplo n.º 1
0
 public LauncherUpdateCheck(PictureBox statusImage, Label statusText, Label statusDescription, Label progressText, ProgressBarEx extractingProgress)
 {
     status      = statusImage;
     text        = statusText;
     description = statusDescription;
     progress    = progressText;
     progressBar = extractingProgress;
 }
Exemplo n.º 2
0
 private void ActiveProduct(ProgressBarEx bar)
 {
     foreach (ProgressBarEx productBar in this._progressBarList)
     {
         productBar.BorderPainter = PainterFactory.GetPlainBoarderPainter("UNACTIVE");
     }
     bar.BorderPainter = PainterFactory.GetPlainBoarderPainter("ACTIVE");
 }
Exemplo n.º 3
0
        private void ProductUC_Load(object sender, EventArgs e)
        {
            var tbLayoutPanel = new TableLayoutPanel();

            tbLayoutPanel                 = new System.Windows.Forms.TableLayoutPanel();
            tbLayoutPanel.Name            = "tlpProduct";
            tbLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.OutsetDouble;
            tbLayoutPanel.ColumnCount     = _seatCols;
            for (int i = 0; i < _seatCols; i++)
            {
                tbLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, (float)(100.0 / _seatCols)));
            }
            tbLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
            tbLayoutPanel.Location = new System.Drawing.Point(0, 0);

            tbLayoutPanel.RowCount = _seatRows;
            for (int i = 0; i < _seatRows; i++)
            {
                tbLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, (float)(100.0 / _seatRows)));
            }
            tbLayoutPanel.Size     = this.Parent.Size;
            tbLayoutPanel.TabIndex = 0;
            this.Controls.Add(tbLayoutPanel);

            _progressBarList = new ProgressBarEx[_productpositioncount];

            tbLayoutPanel.SuspendLayout();
            for (int i = 0; i < _productpositioncount; i++)
            {
                _progressBarList[i] = new ProgressBarEx();
                _progressBarList[i].BackgroundPainter = PainterFactory.GetProductStatePainter("EMPTY");
                _progressBarList[i].ProgressPainter   = PainterFactory.GetProgressPainter("BURNIN");
                _progressBarList[i].BorderPainter     = PainterFactory.GetPlainBoarderPainter("UNACTIVE");
                _progressBarList[i].Dock              = System.Windows.Forms.DockStyle.Fill;
                _progressBarList[i].Location          = new System.Drawing.Point(6 + (i % _seatCols) * 166, 6 + (i / _seatCols) * 124);
                _progressBarList[i].MarqueePercentage = 25;
                _progressBarList[i].MarqueeSpeed      = 30;
                _progressBarList[i].MarqueeStep       = 1;
                _progressBarList[i].Maximum           = 100;
                _progressBarList[i].Minimum           = 0;
                _progressBarList[i].Name              = "pbeProduct" + i.ToString();
                _progressBarList[i].ProgressPadding   = 0;
                _progressBarList[i].ProgressType      = ProgressODoom.ProgressType.Smooth;
                _progressBarList[i].ShowPercentage    = false;
                _progressBarList[i].Text              = (i + 1).ToString() + ": ";
                _progressBarList[i].Value             = 0;
                _progressBarList[i].MouseDown        += new System.Windows.Forms.MouseEventHandler(this.ProgressBarEx_MouseDown);
                _progressBarList[i].ContextMenuStrip  = null;
                tbLayoutPanel.Controls.Add(_progressBarList[i]);
            }
            tbLayoutPanel.ResumeLayout(false);
        }
 public EditorStatusBar(ImageList statusImageList)
 {
     imageList = statusImageList;
     Console.WriteLine("There are " + imageList.Images.Count + " images");
     // This call is required by the Windows.Forms Form Designer.
     InitializeComponent();
     imageList            = new ImageList();
     imageList.ColorDepth = ColorDepth.Depth24Bit;
     Height                     = 20;
     progressBar                = new ProgressBarEx();
     progressBar.Smooth         = true;
     progressBar.Anchor         = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right | AnchorStyles.Top)));
     progressBar.Size           = new Size(150, 16);
     progressBar.Location       = new Point(Width - 165, 2);
     progressBar.Enable3DBorder = true;
     progressBar.Border3D       = Border3DStyle.Flat;
     progressBar.BorderColor    = Color.FromKnownColor(KnownColor.ControlDark);
     Controls.Add(progressBar);
 }
Exemplo n.º 5
0
        public MpeStatusBar()
        {
            // This call is required by the Windows.Forms Form Designer.

            InitializeComponent();
            progressBar                = new ProgressBarEx();
            progressBar.Smooth         = true;
            progressBar.Anchor         = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right | AnchorStyles.Top)));
            progressBar.Size           = new Size(150, 16);
            progressBar.Location       = new Point(statusBar.Width - 165, 2);
            progressBar.Enable3DBorder = true;
            progressBar.Border3D       = Border3DStyle.Flat;
            progressBar.BorderColor    = Color.FromKnownColor(KnownColor.ControlDark);
            statusBar.Controls.Add(progressBar);
            currentLevel = MpeLogLevel.Debug;
            debugIcon.Hide();
            infoIcon.Hide();
            warnIcon.Hide();
            errorIcon.Hide();
            panelFontBrush     = new SolidBrush(Color.Black);
            panelBorderPen     = new Pen(Color.FromKnownColor(KnownColor.ControlDark), -1.0f);
            locationPanel.Text = "";
        }
Exemplo n.º 6
0
 private void PaintFirstRowUI()
 {
     for (int i = 0; i < BOARDCOLUMCOUNT; i++)
     {
         boardList[i] = new ProgressBarEx();
         boardList[i].BackgroundPainter = bgPainterDict[i];  //differ
         boardList[i].BorderPainter     = PainterFactory.GetPlainBoarderPainter("UNACTIVE");
         boardList[i].Dock              = System.Windows.Forms.DockStyle.Fill;
         boardList[i].Location          = new System.Drawing.Point(4 + BOARDCOLUMCOUNT * 54, 11);// + (i / BOARDCOLUMCOUNT) * 43);
         boardList[i].MarqueePercentage = 25;
         boardList[i].MarqueeSpeed      = 30;
         boardList[i].MarqueeStep       = 1;
         boardList[i].Maximum           = 100;
         boardList[i].Minimum           = 0;
         boardList[i].ProgressPadding   = 0;
         boardList[i].ProgressType      = ProgressODoom.ProgressType.Smooth;
         boardList[i].ShowPercentage    = false;
         boardList[i].Name              = "pbeProcessBarUC" + (BOARDCOLUMCOUNT + i).ToString();
         boardList[i].Text              = labelTextDict[i];
         boardList[i].ForeColor         = Color.Black;
         boardList[i].Font              = new Font(FontFamily.GenericSansSerif, 8);
         this.tlpProcessBar.Controls.Add(boardList[i], i, 0);
     }
 }
Exemplo n.º 7
0
        public static bool Download(List <ModInfo> mods, string gameDir, string serverKey, System.Windows.Forms.Label playProgress, ProgressBarEx progress)
        {
            ServerInfo serverInfo;

            playProgress.Text = ("Downloading mods for " + serverKey).ToUpper();
            progress.Value    = 0;

            int currentModCount = 0;

            using (var wc = new WebClient())
            {
                var data = wc.DownloadString(Self.mainserver + $"/servers/{serverKey}");
                serverInfo = JsonConvert.DeserializeObject <ServerInfo>(data);
            }

            var modsDirectory       = Path.Combine(gameDir, "MODS");
            var serverModsDirectory = Path.Combine(modsDirectory, serverKey);

            Directory.CreateDirectory(serverModsDirectory);

            foreach (var mod in mods)
            {
                int totalModsCount = mod.Files.Count;

                if (ModCache.Contains($"{serverKey}::{mod.Id}"))
                {
                    foreach (var file in mod.Files)
                    {
                        var computedHash =
                            ComputeSha256Hash(File.ReadAllBytes(Path.Combine(serverModsDirectory, file.Path)));
                        if (computedHash != file.Hash)
                        {
                            MessageBox.Show($"Hash mismatch! Expected {file.Hash}, got {computedHash}",
                                            "ModNet Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            Environment.Exit(1);
                        }
                    }

                    continue;
                }

                var url = new Uri(serverInfo.DistributionUrl + "/" + mod.Id + "/");

                using (var wc = new WebClient())
                {
                    foreach (var file in mod.Files)
                    {
                        try
                        {
                            currentModCount++;

                            playProgress.Text = ("Downloading " + serverKey + " files: " + file.Path).ToUpper();
                            progress.Value    = Convert.ToInt32(Decimal.Divide(currentModCount, totalModsCount) * 100);
                            progress.Width    = Convert.ToInt32(Decimal.Divide(currentModCount, totalModsCount) * 519);

                            System.Windows.Forms.Application.DoEvents();

                            var fileData = wc.DownloadData(url + file.Path);

                            var computedHash = ComputeSha256Hash(fileData);
                            if (computedHash != file.Hash)
                            {
                                MessageBox.Show($"Hash mismatch! Expected {file.Hash}, got {computedHash}",
                                                "ModNet Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                                Environment.Exit(1);
                            }

                            if (file.Path.Contains("/"))
                            {
                                var dirName = Path.GetDirectoryName(file.Path);
                                if (dirName != null)
                                {
                                    Directory.CreateDirectory(Path.Combine(serverModsDirectory, dirName));
                                }
                            }

                            using (var fs = File.OpenWrite(Path.Combine(serverModsDirectory, file.Path)))
                                using (var bw = new BinaryWriter(fs))
                                {
                                    bw.Write(fileData);
                                }
                        }
                        catch (Exception e)
                        {
                            MessageBox.Show(e.Message, "ModNet Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        }
                    }
                }

                ModCache.Add($"{serverKey}::{mod.Id}");
            }

            var uniqueFiles = mods.SelectMany(m => m.Files).Distinct().ToList();

            SaveModCache();

            using (var fs = new FileStream(Path.Combine(gameDir, "ModManager.dat"), FileMode.Create))
                using (var bw = new BinaryWriter(fs))
                {
                    bw.Write(uniqueFiles.Count);

                    foreach (var file in uniqueFiles)
                    {
                        var originalPath = Path.Combine(gameDir, file.Path).Replace("/", "\\").ToUpper();
                        var modPath      = Path.Combine(serverModsDirectory, file.Path).Replace("/", "\\").ToUpper();

                        bw.Write(originalPath.Length);
                        bw.Write(originalPath.ToCharArray());
                        bw.Write(modPath.Length);
                        bw.Write(modPath.ToCharArray());
                    }
                }

            return(true);
        }
Exemplo n.º 8
0
 public ProgressBarExOutput(ProgressBarEx progressBarEx, int updateInterval) : base(updateInterval)
 {
     _progressBarEx = progressBarEx;
 }
Exemplo n.º 9
0
        void InitializeComponent()
        {
            #region Commands

            openFileCommand = new Command {
                MenuText = "Open", Shortcut = OpenHotKey
            };
            openFileWithCommand = new Command {
                MenuText = "Open with Plugin", Shortcut = OpenWithHotKey
            };
            saveAllFileCommand = new Command {
                MenuText = "Save All", Shortcut = SaveAllHotKey, Image = MenuSaveResource
            };

            openTextSequenceSearcherCommand = new Command {
                MenuText = "Text Sequence Searcher"
            };
            openBatchExtractorCommand = new Command {
                MenuText = "Batch Extractor"
            };
            openBatchInjectorCommand = new Command {
                MenuText = "Batch Injector"
            };

            openHashcommand = new Command {
                MenuText = "Hashes"
            };

            openEncryptionCommand = new Command {
                MenuText = "Encrypt"
            };
            openDecryptionCommand = new Command {
                MenuText = "Decrypt"
            };

            openDecompressionCommand = new Command {
                MenuText = "Decompress"
            };
            openCompressionCommand = new Command {
                MenuText = "Compress"
            };

            openRawImageViewerCommand = new Command {
                MenuText = "Raw Image Viewer"
            };

            openImageTranscoderCommand = new Command {
                MenuText = "Image Trascoder"
            };

            includeDevBuildCommand = new Command();

            openAboutCommand = new Command {
                MenuText = "About..."
            };

            #endregion

            Title      = "Kuriimu2";
            ClientSize = new Size(1116, 643);
            Padding    = new Padding(3);
            Icon       = Icon.FromResource("Kuriimu2.EtoForms.Images.kuriimu2winforms.ico");

            #region Menu

            Menu = new MenuBar
            {
                Items =
                {
                    new ButtonMenuItem {
                        Text = "File", Items ={ openFileCommand,           openFileWithCommand,      new SeparatorMenuItem(), saveAllFileCommand }
                    },
                    new ButtonMenuItem {
                        Text = "Tools", Items ={ openBatchExtractorCommand, openBatchInjectorCommand, openTextSequenceSearcherCommand }
                    },
                    new ButtonMenuItem(openHashcommand),
                    new ButtonMenuItem {
                        Text = "Ciphers", Items ={ openEncryptionCommand,     openDecryptionCommand }
                    },
                    new ButtonMenuItem {
                        Text = "Compressions", Items ={ openDecompressionCommand,  openCompressionCommand }
                    },
                    new ButtonMenuItem(openRawImageViewerCommand),
                    //new ButtonMenuItem(openImageTranscoderCommand),
                    new ButtonMenuItem {
                        Text = "Settings", Items ={ new CheckMenuItem {
                                             Text = "Include Developer Builds", Checked = Settings.Default.IncludeDevBuilds, Command = includeDevBuildCommand
                                         } }
                    }
                },
                AboutItem = openAboutCommand
            };

            #endregion

            #region Content

            tabControl     = new TabControl();
            _progressBarEx = new ProgressBarEx();
            statusMessage  = new Label();

            var progressLayout = new TableLayout
            {
                Spacing = new Size(3, 3),

                Rows =
                {
                    new TableRow
                    {
                        Cells =
                        {
                            new TableCell(_progressBarEx)
                            {
                                ScaleWidth = true
                            },
                            new TableCell(statusMessage)
                            {
                                ScaleWidth = true
                            },
                        }
                    }
                }
            };

            Content = new TableLayout
            {
                AllowDrop = true,
                Spacing   = new Size(3, 3),

                Rows =
                {
                    new TableRow(tabControl)
                    {
                        ScaleHeight = true
                    },
                    progressLayout
                }
            };

            #endregion
        }
Exemplo n.º 10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelBattery  = new System.Windows.Forms.Label();
     this.labelTime     = new System.Windows.Forms.Label();
     this.labelStatus   = new System.Windows.Forms.Label();
     this.progressBar   = new DataObjects.ProgressBarEx();
     this.labelDeviceID = new System.Windows.Forms.Label();
     this.labelLastSync = new System.Windows.Forms.Label();
     this.labelUser     = new System.Windows.Forms.Label();
     this.labelUserName = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // labelBattery
     //
     this.labelBattery.AutoSize  = true;
     this.labelBattery.BackColor = System.Drawing.Color.Transparent;
     this.labelBattery.Location  = new System.Drawing.Point(7, 13);
     this.labelBattery.Name      = "labelBattery";
     this.labelBattery.Size      = new System.Drawing.Size(0, 16);
     this.labelBattery.TabIndex  = 0;
     //
     // labelTime
     //
     this.labelTime.AutoSize  = true;
     this.labelTime.BackColor = System.Drawing.Color.Transparent;
     this.labelTime.Location  = new System.Drawing.Point(256, 13);
     this.labelTime.Name      = "labelTime";
     this.labelTime.Size      = new System.Drawing.Size(0, 16);
     this.labelTime.TabIndex  = 1;
     this.labelTime.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // labelStatus
     //
     this.labelStatus.BackColor = System.Drawing.Color.Transparent;
     this.labelStatus.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelStatus.ForeColor = System.Drawing.Color.Blue;
     this.labelStatus.Location  = new System.Drawing.Point(16, 48);
     this.labelStatus.Name      = "labelStatus";
     this.labelStatus.Size      = new System.Drawing.Size(260, 20);
     this.labelStatus.TabIndex  = 0;
     this.labelStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // progressBar
     //
     this.progressBar.BackColor      = System.Drawing.Color.Transparent;
     this.progressBar.DrawingColor   = System.Drawing.Color.Blue;
     this.progressBar.Location       = new System.Drawing.Point(26, 80);
     this.progressBar.Maximum        = 100;
     this.progressBar.Minimum        = 0;
     this.progressBar.Name           = "progressBar";
     this.progressBar.PercentageMode = DataObjects.ProgressBarEx.PercentageDrawingMode.Center;
     this.progressBar.Size           = new System.Drawing.Size(238, 20);
     this.progressBar.Step           = 1;
     this.progressBar.TabIndex       = 2;
     this.progressBar.Value          = 0;
     //
     // labelDeviceID
     //
     this.labelDeviceID.AutoSize  = true;
     this.labelDeviceID.BackColor = System.Drawing.Color.Transparent;
     this.labelDeviceID.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelDeviceID.ForeColor = System.Drawing.Color.White;
     this.labelDeviceID.Location  = new System.Drawing.Point(7, 128);
     this.labelDeviceID.Name      = "labelDeviceID";
     this.labelDeviceID.Size      = new System.Drawing.Size(81, 16);
     this.labelDeviceID.TabIndex  = 6;
     this.labelDeviceID.Text      = "Device ID #057";
     this.labelDeviceID.Visible   = false;
     //
     // labelLastSync
     //
     this.labelLastSync.AutoSize  = true;
     this.labelLastSync.BackColor = System.Drawing.Color.Transparent;
     this.labelLastSync.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.labelLastSync.ForeColor = System.Drawing.Color.White;
     this.labelLastSync.Location  = new System.Drawing.Point(144, 128);
     this.labelLastSync.Name      = "labelLastSync";
     this.labelLastSync.Size      = new System.Drawing.Size(76, 16);
     this.labelLastSync.TabIndex  = 6;
     this.labelLastSync.Text      = "Last Synched:";
     this.labelLastSync.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this.labelLastSync.Visible   = false;
     //
     // labelUser
     //
     this.labelUser.AutoSize  = true;
     this.labelUser.BackColor = System.Drawing.Color.Transparent;
     this.labelUser.ForeColor = System.Drawing.Color.LightBlue;
     this.labelUser.Location  = new System.Drawing.Point(8, 152);
     this.labelUser.Name      = "labelUser";
     this.labelUser.Size      = new System.Drawing.Size(108, 16);
     this.labelUser.TabIndex  = 7;
     this.labelUser.Text      = "User: Robert Werner";
     this.labelUser.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
     this.labelUser.Visible   = false;
     //
     // labelUserName
     //
     this.labelUserName.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.labelUserName.AutoSize  = true;
     this.labelUserName.BackColor = System.Drawing.Color.Transparent;
     this.labelUserName.ForeColor = System.Drawing.Color.LightBlue;
     this.labelUserName.Location  = new System.Drawing.Point(212, 152);
     this.labelUserName.Name      = "labelUserName";
     this.labelUserName.Size      = new System.Drawing.Size(43, 16);
     this.labelUserName.TabIndex  = 7;
     this.labelUserName.Text      = "UserID:";
     this.labelUserName.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     this.labelUserName.Visible   = false;
     //
     // frmNotify
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(294, 176);
     this.Controls.Add(this.labelUser);
     this.Controls.Add(this.labelDeviceID);
     this.Controls.Add(this.labelLastSync);
     this.Controls.Add(this.labelUserName);
     this.Controls.Add(this.labelTime);
     this.Controls.Add(this.labelBattery);
     this.Controls.Add(this.labelStatus);
     this.Controls.Add(this.progressBar);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimumSize     = new System.Drawing.Size(200, 100);
     this.Name            = "frmNotify";
     this.ShowInTaskbar   = false;
     this.Text            = "frmNotify";
     this.TopMost         = true;
     this.Load           += new System.EventHandler(this.frmNotify_Load);
     this.ResumeLayout(false);
 }
Exemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.ListViewGroup listViewGroup7 = new System.Windows.Forms.ListViewGroup("First Group", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewGroup listViewGroup8 = new System.Windows.Forms.ListViewGroup("Second Group", System.Windows.Forms.HorizontalAlignment.Left);
     System.Windows.Forms.ListViewItem  listViewItem61 = new System.Windows.Forms.ListViewItem("Hello Item 1");
     System.Windows.Forms.ListViewItem  listViewItem62 = new System.Windows.Forms.ListViewItem("Hello Item 2");
     System.Windows.Forms.ListViewItem  listViewItem63 = new System.Windows.Forms.ListViewItem("Hello Item 3");
     System.Windows.Forms.ListViewItem  listViewItem64 = new System.Windows.Forms.ListViewItem("Hello Item 4");
     System.Windows.Forms.ListViewItem  listViewItem65 = new System.Windows.Forms.ListViewItem("Hello Item 5");
     System.Windows.Forms.ListViewItem  listViewItem66 = new System.Windows.Forms.ListViewItem("Hello Item 6");
     System.Windows.Forms.ListViewItem  listViewItem67 = new System.Windows.Forms.ListViewItem("Hello Item 7");
     System.Windows.Forms.ListViewItem  listViewItem68 = new System.Windows.Forms.ListViewItem("Hello Item 8");
     System.Windows.Forms.ListViewItem  listViewItem69 = new System.Windows.Forms.ListViewItem("Hello Item 9");
     System.Windows.Forms.ListViewItem  listViewItem70 = new System.Windows.Forms.ListViewItem("Hello Item 10");
     System.Windows.Forms.ListViewItem  listViewItem71 = new System.Windows.Forms.ListViewItem("Hello Item 11");
     System.Windows.Forms.ListViewItem  listViewItem72 = new System.Windows.Forms.ListViewItem("Hello Item 12");
     System.Windows.Forms.ListViewItem  listViewItem73 = new System.Windows.Forms.ListViewItem("Hello Item 13");
     System.Windows.Forms.ListViewItem  listViewItem74 = new System.Windows.Forms.ListViewItem("Hello Item 14");
     System.Windows.Forms.ListViewItem  listViewItem75 = new System.Windows.Forms.ListViewItem("Hello Item 15");
     System.Windows.Forms.ListViewItem  listViewItem76 = new System.Windows.Forms.ListViewItem("Hello Item 16");
     System.Windows.Forms.ListViewItem  listViewItem77 = new System.Windows.Forms.ListViewItem("Hello Item 17");
     System.Windows.Forms.ListViewItem  listViewItem78 = new System.Windows.Forms.ListViewItem("Hello Item 18");
     System.Windows.Forms.ListViewItem  listViewItem79 = new System.Windows.Forms.ListViewItem("Hello Item 19");
     System.Windows.Forms.ListViewItem  listViewItem80 = new System.Windows.Forms.ListViewItem("Hello Item 20, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Fi" +
                                                                                               "ller, Filler, Filler, Filler, Filler, Filler, Filler, Filler");
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlDialog));
     System.Windows.Forms.TreeNode treeNode70 = new System.Windows.Forms.TreeNode("Node1");
     System.Windows.Forms.TreeNode treeNode71 = new System.Windows.Forms.TreeNode("Node2");
     System.Windows.Forms.TreeNode treeNode72 = new System.Windows.Forms.TreeNode("Node3");
     System.Windows.Forms.TreeNode treeNode73 = new System.Windows.Forms.TreeNode("Node4");
     System.Windows.Forms.TreeNode treeNode74 = new System.Windows.Forms.TreeNode("Node5");
     System.Windows.Forms.TreeNode treeNode75 = new System.Windows.Forms.TreeNode("Node0", new System.Windows.Forms.TreeNode[] {
         treeNode70,
         treeNode71,
         treeNode72,
         treeNode73,
         treeNode74
     });
     System.Windows.Forms.TreeNode treeNode76 = new System.Windows.Forms.TreeNode("Node7");
     System.Windows.Forms.TreeNode treeNode77 = new System.Windows.Forms.TreeNode("Node8");
     System.Windows.Forms.TreeNode treeNode78 = new System.Windows.Forms.TreeNode("Node9");
     System.Windows.Forms.TreeNode treeNode79 = new System.Windows.Forms.TreeNode("Node10");
     System.Windows.Forms.TreeNode treeNode80 = new System.Windows.Forms.TreeNode("Node11");
     System.Windows.Forms.TreeNode treeNode81 = new System.Windows.Forms.TreeNode("Node12");
     System.Windows.Forms.TreeNode treeNode82 = new System.Windows.Forms.TreeNode("Node6", new System.Windows.Forms.TreeNode[] {
         treeNode76,
         treeNode77,
         treeNode78,
         treeNode79,
         treeNode80,
         treeNode81
     });
     System.Windows.Forms.TreeNode treeNode83 = new System.Windows.Forms.TreeNode("Node14");
     System.Windows.Forms.TreeNode treeNode84 = new System.Windows.Forms.TreeNode("Node15");
     System.Windows.Forms.TreeNode treeNode85 = new System.Windows.Forms.TreeNode("Node16");
     System.Windows.Forms.TreeNode treeNode86 = new System.Windows.Forms.TreeNode("Node17");
     System.Windows.Forms.TreeNode treeNode87 = new System.Windows.Forms.TreeNode("Node18");
     System.Windows.Forms.TreeNode treeNode88 = new System.Windows.Forms.TreeNode("Node19");
     System.Windows.Forms.TreeNode treeNode89 = new System.Windows.Forms.TreeNode("Node20");
     System.Windows.Forms.TreeNode treeNode90 = new System.Windows.Forms.TreeNode("Node21");
     System.Windows.Forms.TreeNode treeNode91 = new System.Windows.Forms.TreeNode("Node22, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Filler, F" +
                                                                                  "iller, Filler, Filler, Filler, Filler, Filler, Filler");
     System.Windows.Forms.TreeNode treeNode92 = new System.Windows.Forms.TreeNode("Node13", new System.Windows.Forms.TreeNode[] {
         treeNode83,
         treeNode84,
         treeNode85,
         treeNode86,
         treeNode87,
         treeNode88,
         treeNode89,
         treeNode90,
         treeNode91
     });
     this.statusBarEx      = new System.Windows.Forms.StatusBarEx();
     this.customTabControl = new System.Windows.Forms.CustomTabControl();
     this.tabPage2         = new System.Windows.Forms.TabPage();
     this.dataGridViewEx   = new System.Windows.Forms.DataGridViewEx();
     this.Column1          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tabPage1         = new System.Windows.Forms.TabPage();
     this.propertyGridEx   = new System.Windows.Forms.PropertyGridEx();
     this.groupBoxEx       = new System.Windows.Forms.GroupBoxEx();
     this.pictureBoxEx     = new System.Windows.Forms.PictureBoxEx();
     this.progressBarEx    = new System.Windows.Forms.ProgressBarEx();
     this.buttonEx3        = new System.Windows.Forms.ButtonEx();
     this.checkBoxEx4      = new System.Windows.Forms.CheckBoxEx();
     this.checkBoxEx3      = new System.Windows.Forms.CheckBoxEx();
     this.checkBoxEx2      = new System.Windows.Forms.CheckBoxEx();
     this.buttonEx         = new System.Windows.Forms.ButtonEx();
     this.checkBoxEx       = new System.Windows.Forms.CheckBoxEx();
     this.buttonEx2        = new System.Windows.Forms.ButtonEx();
     this.listBoxEx        = new System.Windows.Forms.ListBoxEx();
     this.listViewEx       = new System.Windows.Forms.ListViewEx();
     this.columnHeader     = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader1    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.textBoxEx        = new System.Windows.Forms.TextBoxEx();
     this.treeViewEx       = new System.Windows.Forms.TreeViewEx();
     this.richTextBoxEx    = new System.Windows.Forms.RichTextBoxEx();
     this.customTabControl.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEx)).BeginInit();
     this.groupBoxEx.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxEx)).BeginInit();
     this.SuspendLayout();
     //
     // statusBarEx
     //
     this.statusBarEx.Location = new System.Drawing.Point(0, 769);
     this.statusBarEx.Name     = "statusBarEx";
     this.statusBarEx.Size     = new System.Drawing.Size(1132, 22);
     this.statusBarEx.TabIndex = 9;
     this.statusBarEx.Text     = "StatusBar";
     this.statusBarEx.UseTheme = true;
     //
     // customTabControl
     //
     this.customTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.customTabControl.Controls.Add(this.tabPage2);
     this.customTabControl.Controls.Add(this.tabPage1);
     //
     //
     //
     this.customTabControl.DisplayStyleProvider.BorderColor         = System.Drawing.SystemColors.ControlDark;
     this.customTabControl.DisplayStyleProvider.BorderColorHot      = System.Drawing.SystemColors.ControlDark;
     this.customTabControl.DisplayStyleProvider.BorderColorSelected = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(157)))), ((int)(((byte)(185)))));
     this.customTabControl.DisplayStyleProvider.CloserColor         = System.Drawing.Color.DarkGray;
     this.customTabControl.DisplayStyleProvider.FocusTrack          = true;
     this.customTabControl.DisplayStyleProvider.HotTrack            = true;
     this.customTabControl.DisplayStyleProvider.ImageAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.customTabControl.DisplayStyleProvider.Opacity             = 1F;
     this.customTabControl.DisplayStyleProvider.Overlap             = 0;
     this.customTabControl.DisplayStyleProvider.Padding             = new System.Drawing.Point(6, 3);
     this.customTabControl.DisplayStyleProvider.Radius            = 2;
     this.customTabControl.DisplayStyleProvider.ShowTabCloser     = false;
     this.customTabControl.DisplayStyleProvider.TextColor         = System.Drawing.SystemColors.ControlText;
     this.customTabControl.DisplayStyleProvider.TextColorDisabled = System.Drawing.SystemColors.ControlDark;
     this.customTabControl.DisplayStyleProvider.TextColorSelected = System.Drawing.SystemColors.ControlText;
     this.customTabControl.HotTrack      = true;
     this.customTabControl.Location      = new System.Drawing.Point(413, 528);
     this.customTabControl.Name          = "customTabControl";
     this.customTabControl.SelectedIndex = 0;
     this.customTabControl.Size          = new System.Drawing.Size(711, 233);
     this.customTabControl.TabIndex      = 8;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.dataGridViewEx);
     this.tabPage2.Location = new System.Drawing.Point(4, 23);
     this.tabPage2.Name     = "tabPage2";
     this.tabPage2.Size     = new System.Drawing.Size(703, 206);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text     = "tabPage2";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // dataGridViewEx
     //
     this.dataGridViewEx.AllowUserToAddRows          = false;
     this.dataGridViewEx.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewEx.BorderColor                 = System.Drawing.SystemColors.ControlDark;
     this.dataGridViewEx.BorderStyle                 = System.Windows.Forms.BorderStyle.None;
     this.dataGridViewEx.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewEx.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Column1,
         this.Column2
     });
     this.dataGridViewEx.Dock              = System.Windows.Forms.DockStyle.Fill;
     this.dataGridViewEx.Location          = new System.Drawing.Point(0, 0);
     this.dataGridViewEx.Name              = "dataGridViewEx";
     this.dataGridViewEx.RowHeadersVisible = false;
     this.dataGridViewEx.Size              = new System.Drawing.Size(703, 206);
     this.dataGridViewEx.TabIndex          = 0;
     this.dataGridViewEx.UseTheme          = true;
     //
     // Column1
     //
     this.Column1.HeaderText = "Column1";
     this.Column1.Name       = "Column1";
     //
     // Column2
     //
     this.Column2.HeaderText = "Column2";
     this.Column2.Name       = "Column2";
     //
     // tabPage1
     //
     this.tabPage1.Location = new System.Drawing.Point(4, 23);
     this.tabPage1.Name     = "tabPage1";
     this.tabPage1.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size     = new System.Drawing.Size(703, 206);
     this.tabPage1.TabIndex = 2;
     this.tabPage1.Text     = "tabPage1";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // propertyGridEx
     //
     this.propertyGridEx.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Right)));
     this.propertyGridEx.LineColor      = System.Drawing.SystemColors.ControlDark;
     this.propertyGridEx.Location       = new System.Drawing.Point(822, 13);
     this.propertyGridEx.Name           = "propertyGridEx";
     this.propertyGridEx.Size           = new System.Drawing.Size(298, 506);
     this.propertyGridEx.TabIndex       = 7;
     this.propertyGridEx.ToolbarVisible = false;
     this.propertyGridEx.UseTheme       = true;
     //
     // groupBoxEx
     //
     this.groupBoxEx.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBoxEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.groupBoxEx.Controls.Add(this.pictureBoxEx);
     this.groupBoxEx.Controls.Add(this.progressBarEx);
     this.groupBoxEx.Controls.Add(this.buttonEx3);
     this.groupBoxEx.Controls.Add(this.checkBoxEx4);
     this.groupBoxEx.Controls.Add(this.checkBoxEx3);
     this.groupBoxEx.Controls.Add(this.checkBoxEx2);
     this.groupBoxEx.Controls.Add(this.buttonEx);
     this.groupBoxEx.Controls.Add(this.checkBoxEx);
     this.groupBoxEx.Controls.Add(this.buttonEx2);
     this.groupBoxEx.Location = new System.Drawing.Point(12, 523);
     this.groupBoxEx.Name     = "groupBoxEx";
     this.groupBoxEx.Size     = new System.Drawing.Size(396, 235);
     this.groupBoxEx.TabIndex = 6;
     this.groupBoxEx.TabStop  = false;
     this.groupBoxEx.Text     = "GroupBox";
     this.groupBoxEx.UseTheme = true;
     //
     // pictureBoxEx
     //
     this.pictureBoxEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.pictureBoxEx.Location    = new System.Drawing.Point(221, 28);
     this.pictureBoxEx.Name        = "pictureBoxEx";
     this.pictureBoxEx.Size        = new System.Drawing.Size(153, 63);
     this.pictureBoxEx.TabIndex    = 13;
     this.pictureBoxEx.TabStop     = false;
     this.pictureBoxEx.UseTheme    = true;
     //
     // progressBarEx
     //
     this.progressBarEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.progressBarEx.Location    = new System.Drawing.Point(25, 80);
     this.progressBarEx.Name        = "progressBarEx";
     this.progressBarEx.Size        = new System.Drawing.Size(175, 11);
     this.progressBarEx.TabIndex    = 12;
     this.progressBarEx.UseTheme    = true;
     this.progressBarEx.Value       = 40;
     //
     // buttonEx3
     //
     this.buttonEx3.DisabledBackColor = System.Drawing.SystemColors.Control;
     this.buttonEx3.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.buttonEx3.Enabled           = false;
     this.buttonEx3.Location          = new System.Drawing.Point(25, 104);
     this.buttonEx3.Name     = "buttonEx3";
     this.buttonEx3.Size     = new System.Drawing.Size(92, 30);
     this.buttonEx3.TabIndex = 11;
     this.buttonEx3.Text     = "Button3";
     this.buttonEx3.UseTheme = true;
     this.buttonEx3.UseVisualStyleBackColor = true;
     //
     // checkBoxEx4
     //
     this.checkBoxEx4.AutoSize          = true;
     this.checkBoxEx4.BorderColor       = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx4.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx4.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxEx4.Location          = new System.Drawing.Point(123, 51);
     this.checkBoxEx4.Name                    = "checkBoxEx4";
     this.checkBoxEx4.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.checkBoxEx4.Size                    = new System.Drawing.Size(78, 17);
     this.checkBoxEx4.TabIndex                = 10;
     this.checkBoxEx4.Text                    = "Check Me4";
     this.checkBoxEx4.ThreeState              = true;
     this.checkBoxEx4.UseTheme                = true;
     this.checkBoxEx4.UseVisualStyleBackColor = false;
     //
     // checkBoxEx3
     //
     this.checkBoxEx3.AutoSize          = true;
     this.checkBoxEx3.BorderColor       = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx3.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx3.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxEx3.Location          = new System.Drawing.Point(123, 28);
     this.checkBoxEx3.Name                    = "checkBoxEx3";
     this.checkBoxEx3.RightToLeft             = System.Windows.Forms.RightToLeft.Yes;
     this.checkBoxEx3.Size                    = new System.Drawing.Size(78, 17);
     this.checkBoxEx3.TabIndex                = 9;
     this.checkBoxEx3.Text                    = "Check Me3";
     this.checkBoxEx3.ThreeState              = true;
     this.checkBoxEx3.UseTheme                = true;
     this.checkBoxEx3.UseVisualStyleBackColor = false;
     //
     // checkBoxEx2
     //
     this.checkBoxEx2.AutoSize          = true;
     this.checkBoxEx2.BorderColor       = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx2.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx2.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxEx2.Location          = new System.Drawing.Point(25, 51);
     this.checkBoxEx2.Name       = "checkBoxEx2";
     this.checkBoxEx2.Size       = new System.Drawing.Size(78, 17);
     this.checkBoxEx2.TabIndex   = 8;
     this.checkBoxEx2.Text       = "Check Me2";
     this.checkBoxEx2.ThreeState = true;
     this.checkBoxEx2.UseTheme   = true;
     this.checkBoxEx2.UseVisualStyleBackColor = false;
     //
     // buttonEx
     //
     this.buttonEx.DisabledBackColor = System.Drawing.SystemColors.Control;
     this.buttonEx.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.buttonEx.Location          = new System.Drawing.Point(25, 180);
     this.buttonEx.Name     = "buttonEx";
     this.buttonEx.Size     = new System.Drawing.Size(92, 30);
     this.buttonEx.TabIndex = 7;
     this.buttonEx.Text     = "Button1";
     this.buttonEx.UseTheme = true;
     this.buttonEx.UseVisualStyleBackColor = true;
     //
     // checkBoxEx
     //
     this.checkBoxEx.AutoSize          = true;
     this.checkBoxEx.BorderColor       = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.checkBoxEx.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.checkBoxEx.Location          = new System.Drawing.Point(25, 28);
     this.checkBoxEx.Name     = "checkBoxEx";
     this.checkBoxEx.Size     = new System.Drawing.Size(78, 17);
     this.checkBoxEx.TabIndex = 6;
     this.checkBoxEx.Text     = "Check Me1";
     this.checkBoxEx.UseTheme = true;
     this.checkBoxEx.UseVisualStyleBackColor = false;
     //
     // buttonEx2
     //
     this.buttonEx2.DisabledBackColor = System.Drawing.SystemColors.Control;
     this.buttonEx2.DisabledTextColor = System.Drawing.SystemColors.ControlDark;
     this.buttonEx2.Location          = new System.Drawing.Point(25, 142);
     this.buttonEx2.Name     = "buttonEx2";
     this.buttonEx2.Size     = new System.Drawing.Size(92, 30);
     this.buttonEx2.TabIndex = 5;
     this.buttonEx2.Text     = "Button2";
     this.buttonEx2.UseTheme = true;
     this.buttonEx2.UseVisualStyleBackColor = true;
     //
     // listBoxEx
     //
     this.listBoxEx.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.listBoxEx.BorderColor       = System.Drawing.SystemColors.ControlDark;
     this.listBoxEx.FormattingEnabled = true;
     this.listBoxEx.IntegralHeight    = false;
     this.listBoxEx.Location          = new System.Drawing.Point(553, 13);
     this.listBoxEx.Name     = "listBoxEx";
     this.listBoxEx.Size     = new System.Drawing.Size(261, 280);
     this.listBoxEx.TabIndex = 4;
     this.listBoxEx.UseTheme = true;
     //
     // listViewEx
     //
     this.listViewEx.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)));
     this.listViewEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.listViewEx.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader,
         this.columnHeader1
     });
     this.listViewEx.GridLineColor = System.Drawing.SystemColors.Control;
     listViewGroup7.Header         = "First Group";
     listViewGroup7.Name           = "listViewGroup";
     listViewGroup8.Header         = "Second Group";
     listViewGroup8.Name           = "listViewGroup2";
     this.listViewEx.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
         listViewGroup7,
         listViewGroup8
     });
     listViewItem61.Group = listViewGroup7;
     listViewItem62.Group = listViewGroup7;
     listViewItem63.Group = listViewGroup7;
     listViewItem64.Group = listViewGroup7;
     listViewItem65.Group = listViewGroup7;
     listViewItem66.Group = listViewGroup7;
     listViewItem67.Group = listViewGroup7;
     listViewItem68.Group = listViewGroup7;
     listViewItem69.Group = listViewGroup7;
     listViewItem70.Group = listViewGroup7;
     listViewItem71.Group = listViewGroup8;
     listViewItem72.Group = listViewGroup8;
     listViewItem73.Group = listViewGroup8;
     listViewItem74.Group = listViewGroup8;
     listViewItem75.Group = listViewGroup8;
     listViewItem76.Group = listViewGroup8;
     listViewItem77.Group = listViewGroup8;
     listViewItem78.Group = listViewGroup8;
     listViewItem79.Group = listViewGroup8;
     listViewItem80.Group = listViewGroup8;
     this.listViewEx.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
         listViewItem61,
         listViewItem62,
         listViewItem63,
         listViewItem64,
         listViewItem65,
         listViewItem66,
         listViewItem67,
         listViewItem68,
         listViewItem69,
         listViewItem70,
         listViewItem71,
         listViewItem72,
         listViewItem73,
         listViewItem74,
         listViewItem75,
         listViewItem76,
         listViewItem77,
         listViewItem78,
         listViewItem79,
         listViewItem80
     });
     this.listViewEx.Location  = new System.Drawing.Point(12, 301);
     this.listViewEx.Name      = "listViewEx";
     this.listViewEx.OwnerDraw = true;
     this.listViewEx.Size      = new System.Drawing.Size(396, 218);
     this.listViewEx.TabIndex  = 3;
     this.listViewEx.UseCompatibleStateImageBehavior = false;
     this.listViewEx.UseTheme = true;
     this.listViewEx.View     = System.Windows.Forms.View.Details;
     //
     // columnHeader
     //
     this.columnHeader.Text  = "Column1";
     this.columnHeader.Width = 277;
     //
     // columnHeader1
     //
     this.columnHeader1.Text  = "Column2";
     this.columnHeader1.Width = 98;
     //
     // textBoxEx
     //
     this.textBoxEx.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.textBoxEx.Location    = new System.Drawing.Point(282, 12);
     this.textBoxEx.Multiline   = true;
     this.textBoxEx.Name        = "textBoxEx";
     this.textBoxEx.Size        = new System.Drawing.Size(262, 281);
     this.textBoxEx.TabIndex    = 2;
     this.textBoxEx.Text        = resources.GetString("textBoxEx.Text");
     this.textBoxEx.UseTheme    = true;
     //
     // treeViewEx
     //
     this.treeViewEx.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.treeViewEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.treeViewEx.Location    = new System.Drawing.Point(416, 301);
     this.treeViewEx.Name        = "treeViewEx";
     treeNode70.Name             = "Node1";
     treeNode70.Text             = "Node1";
     treeNode71.Name             = "Node2";
     treeNode71.Text             = "Node2";
     treeNode72.Name             = "Node3";
     treeNode72.Text             = "Node3";
     treeNode73.Name             = "Node4";
     treeNode73.Text             = "Node4";
     treeNode74.Name             = "Node5";
     treeNode74.Text             = "Node5";
     treeNode75.Name             = "Node0";
     treeNode75.Text             = "Node0";
     treeNode76.Name             = "Node7";
     treeNode76.Text             = "Node7";
     treeNode77.Name             = "Node8";
     treeNode77.Text             = "Node8";
     treeNode78.Name             = "Node9";
     treeNode78.Text             = "Node9";
     treeNode79.Name             = "Node10";
     treeNode79.Text             = "Node10";
     treeNode80.Name             = "Node11";
     treeNode80.Text             = "Node11";
     treeNode81.Name             = "Node12";
     treeNode81.Text             = "Node12";
     treeNode82.Name             = "Node6";
     treeNode82.Text             = "Node6";
     treeNode83.Name             = "Node14";
     treeNode83.Text             = "Node14";
     treeNode84.Name             = "Node15";
     treeNode84.Text             = "Node15";
     treeNode85.Name             = "Node16";
     treeNode85.Text             = "Node16";
     treeNode86.Name             = "Node17";
     treeNode86.Text             = "Node17";
     treeNode87.Name             = "Node18";
     treeNode87.Text             = "Node18";
     treeNode88.Name             = "Node19";
     treeNode88.Text             = "Node19";
     treeNode89.Name             = "Node20";
     treeNode89.Text             = "Node20";
     treeNode90.Name             = "Node21";
     treeNode90.Text             = "Node21";
     treeNode91.Name             = "Node22";
     treeNode91.Text             = "Node22, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Filler, Filler, F" +
                                   "iller, Filler, Filler, Filler, Filler, Filler, Filler";
     treeNode92.Name = "Node13";
     treeNode92.Text = "Node13";
     this.treeViewEx.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
         treeNode75,
         treeNode82,
         treeNode92
     });
     this.treeViewEx.Size     = new System.Drawing.Size(398, 218);
     this.treeViewEx.TabIndex = 1;
     this.treeViewEx.UseTheme = true;
     //
     // richTextBoxEx
     //
     this.richTextBoxEx.BorderColor = System.Drawing.SystemColors.ControlDark;
     this.richTextBoxEx.Location    = new System.Drawing.Point(12, 12);
     this.richTextBoxEx.Name        = "richTextBoxEx";
     this.richTextBoxEx.Size        = new System.Drawing.Size(262, 281);
     this.richTextBoxEx.TabIndex    = 0;
     this.richTextBoxEx.Text        = resources.GetString("richTextBoxEx.Text");
     this.richTextBoxEx.UseTheme    = true;
     //
     // ControlDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1132, 791);
     this.Controls.Add(this.statusBarEx);
     this.Controls.Add(this.customTabControl);
     this.Controls.Add(this.propertyGridEx);
     this.Controls.Add(this.groupBoxEx);
     this.Controls.Add(this.listBoxEx);
     this.Controls.Add(this.listViewEx);
     this.Controls.Add(this.textBoxEx);
     this.Controls.Add(this.treeViewEx);
     this.Controls.Add(this.richTextBoxEx);
     this.DoubleBuffered = true;
     this.MinimumSize    = new System.Drawing.Size(1000, 700);
     this.Name           = "ControlDialog";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "ControlDialog";
     this.customTabControl.ResumeLayout(false);
     this.tabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewEx)).EndInit();
     this.groupBoxEx.ResumeLayout(false);
     this.groupBoxEx.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxEx)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }