Пример #1
0
 private void SetEnabled(RadGroupBox groupBox, bool value)
 {
     foreach (Control child in groupBox.Controls)
     {
         child.Enabled = value;
     }
 }
Пример #2
0
 private void SetGroupBoxEnabled(ref RadGroupBox grp, Boolean isEnabled)
 {
     if (!grp.InvokeRequired)
     {
         grp.Enabled = isEnabled;
     }
     else
     {
         RadGroupBox grpControl = grp;
         SetGroupBoxEnabledDelegate setGroupBoxEnabledDelegate = new SetGroupBoxEnabledDelegate(SetGroupBoxEnabled);
         Object[] objArray = new Object[] { grp, isEnabled };
         grpControl.Invoke(setGroupBoxEnabledDelegate, objArray);
     }
 }
Пример #3
0
 /// <summary>
 /// Update System Theme According to Selection
 /// </summary>
 /// <param name="c"></param>
 /// <param name="themeName"></param>
 internal static void UpdateControlTheme(Control c, string themeName)
 {
     if (c is RadMaskedEditBox)
     {
         RadMaskedEditBox rm = (RadMaskedEditBox)c;
         rm.ThemeName = themeName;
     }
     if (c is RadTextBox)
     {
         RadTextBox txt = (RadTextBox)c;
         txt.ThemeName = themeName;
     }
     if (c is RadDropDownList)
     {
         RadDropDownList ddl = (RadDropDownList)c;
         ddl.ThemeName = themeName;
     }
     if (c is RadGridView)
     {
         RadGridView ddl = (RadGridView)c;
         ddl.ThemeName = themeName;
     }
     if (c is RadGroupBox)
     {
         RadGroupBox rg = (RadGroupBox)c;
         rg.ThemeName = themeName;
     }
     if (c is RadButton)
     {
         RadButton btn = (RadButton)c;
         btn.ThemeName = themeName;
     }
     if (c is RadDateTimePicker)
     {
         RadDateTimePicker dtp = (RadDateTimePicker)c;
         dtp.ThemeName = themeName;
     }
     if (c is RadPageView)
     {
         RadPageView pv = new RadPageView();
         pv.ThemeName = themeName;
     }
     //Also update theme for children
     foreach (Control ch in c.Controls)
     {
         UpdateControlTheme(ch, themeName);
     }
 }
Пример #4
0
 public void SyncSizes(RadGroupBox groupBox1)
 {
     try
     {
         SerializeXML serialize = new SerializeXML(Status.CurrentDetailsSetDirectory + @"\SIZES.xml");
         List <SIZE>  list      = serialize.DeSerializer();
         if (list.Count > 0)
         {
             for (int i = 0; i < groupBox1.Controls.Count; i++)
             {
                 if (groupBox1.Controls[i] is RadTextBox)
                 {
                     foreach (var a in list)
                     {
                         if (groupBox1.Controls[i].Name == a.Id)
                         {
                             groupBox1.Controls[i].Text    = a.Value.ToString();
                             groupBox1.Controls[i].Enabled = false;
                             ((RadTextBox)groupBox1.Controls[i]).TextBoxElement.Border.ForeColor = Color.DarkSlateGray;
                         }
                     }
                 }
             }
         }
         groupBox1.FooterText = "Размеры загружены";
         groupBox1.GroupBoxElement.Footer.ForeColor = Color.DarkGreen;
     }
     catch (Exception)
     {
         Status.CurrState     = Status.CurrentState.WARNING;
         groupBox1.FooterText = "Нет файла с размерами";
         groupBox1.GroupBoxElement.Footer.ForeColor = Color.DarkGoldenrod;
         foreach (var tb in groupBox1.Controls)
         {
             if (tb is RadTextBox)
             {
                 ((RadTextBox)tb).Enabled = true;
                 ((RadTextBox)tb).TextBoxElement.Border.ForeColor = Color.DarkGoldenrod;
             }
         }
     }
 }
Пример #5
0
        private void LoadImage(string orderID)
        {
            try
            {
                int ImageSize = 100;
                Dictionary <string, Image> dicImage = SampleCheckItemImages.LoadImagesbyOrderID(orderID);

                foreach (string key in dicImage.Keys)
                {
                    Image img = dicImage[key];
                    if (img == null)
                    {
                        continue;
                    }

                    RadGroupBox gbImage = new RadGroupBox();
                    gbImage.Width  = ImageSize + 20;
                    gbImage.Height = ImageSize + 20;
                    gbImage.Text   = key;

                    PictureBox pbImage = new PictureBox();
                    pbImage.Image  = ImageFuncs.CreateThumbnail(img, ImageSize, ImageSize);
                    pbImage.Tag    = img;
                    pbImage.Width  = ImageSize;
                    pbImage.Height = ImageSize;
                    pbImage.Dock   = DockStyle.Fill;
                    pbImage.Click += PictureBox_Click;

                    gbImage.Controls.Add(pbImage);
                    flowPanel.Controls.Add(gbImage);
                }
            }
            catch
            {
            }
        }
        public void AddNumWorke(string nameWorker)
        {
            RadGroupBox radGroupBox = new RadGroupBox()
            {
                AccessibleRole = AccessibleRole.Grouping,
                HeaderText     = "",
                Location       = new Point(19, y),
                Name           = nameWorker,
                Size           = new System.Drawing.Size(200, 53),
                ThemeName      = "MaterialTeal"
            };

            RadLabel label = new RadLabel()
            {
                Location  = new Point(13, 19),
                Name      = "lbl_" + nameWorker,
                Size      = new Size(100, 36),
                TabIndex  = 0,
                Text      = nameWorker,
                ThemeName = "MaterialTeal"
            };

            RadSpinEditor spinEditor = new RadSpinEditor()
            {
                Location  = new Point(94, 9),
                Name      = "num_" + nameWorker,
                Size      = new Size(100, 36),
                TabIndex  = 1,
                ThemeName = "MaterialTeal"
            };

            radGroupBox.Controls.Add(label);
            radGroupBox.Controls.Add(spinEditor);
            selectedWorkers.Controls.Add(radGroupBox);
            y += 60;
        }
Пример #7
0
 public static void DesbloquearButtonsListEnRadGroupBox(RadGroupBox form)
 {
     foreach (Control ctrl in form.Controls)
     {
         if (ctrl is RadButton)
         {
             RadButton btn = (RadButton)ctrl;
             btn.Enabled = true;
         }
        
     }
 }
Пример #8
0
        public static void TabEnterEnGroupBox(RadGroupBox form)
        {
            foreach (Control ctrl in form.Controls)
            {
                if (ctrl is RadLabel)
                {
                    RadLabel lbl = (RadLabel)ctrl;
                    foreach (Control ctrl2 in lbl.Controls)
                    {
                        if (ctrl2 is RadTextBox)
                        {
                            RadTextBox txt = (RadTextBox)ctrl2;
                            //txtCodigo.Text = txtCodigo.Text + "/" + lbl.Controls.IndexOf(ctrl2).ToString() + lbl.Controls[lbl.Controls.IndexOf(ctrl2)].Name;
                            txt.Text = string.Empty;
                            txt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(delegate(object s, KeyPressEventArgs e)
                            {
                                if (e.KeyChar == (char)(Keys.Enter))
                                {
                                    e.Handled = true;
                                    SendKeys.Send("{TAB}");
                                }
                            });
                        }
                        else if (ctrl2 is RadDropDownList)
                        {
                            RadDropDownList rdl = (RadDropDownList)ctrl2;
                            rdl.KeyPress += new System.Windows.Forms.KeyPressEventHandler(delegate(object s, KeyPressEventArgs e)
                            {
                                if (e.KeyChar == (char)(Keys.Enter))
                                {
                                    e.Handled = true;
                                    SendKeys.Send("{TAB}");
                                }

                            });
                        }

                        else if (ctrl2 is RadDateTimePicker)
                        {
                            RadDateTimePicker rdl = (RadDateTimePicker)ctrl2;
                            rdl.KeyPress += new System.Windows.Forms.KeyPressEventHandler(delegate(object s, KeyPressEventArgs e)
                            {
                                if (e.KeyChar == (char)(Keys.Enter))
                                {
                                    e.Handled = true;
                                    SendKeys.Send("{TAB}");
                                }
                                else if (e.KeyChar == (char)(Keys.Space))
                                {
                                    rdl.Show();
                                }
                            });

                        }

                        else if (ctrl2 is RadioButton)
                        {
                            RadioButton rdl = (RadioButton)ctrl2;
                            rdl.KeyPress += new System.Windows.Forms.KeyPressEventHandler(delegate(object s, KeyPressEventArgs e)
                            {
                                if (e.KeyChar == (char)(Keys.Enter))
                                {
                                    e.Handled = true;
                                    SendKeys.Send("{TAB}");
                                }
                            });
                        }

                        //txtCodigo.Text = txtCodigo.Text + "/" + pvPaginaDatosFiliacion.Controls.IndexOf(ctrl).ToString() + pvPaginaDatosFiliacion.Controls[pvPaginaDatosFiliacion.Controls.IndexOf(ctrl)].Name;
                    }
                }
            }
        }
Пример #9
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmSelectVersion));

            this._lstVersions  = new RadCheckedListBox();
            this._radLabel1    = new RadLabel();
            this._cmdImport    = new RadButton();
            this._radGroupBox1 = new RadGroupBox();
            this._radLabel2    = new RadLabel();
            this._cmdCheckAll  = new RadButton();
            this._lstVersions.BeginInit();
            this._radLabel1.BeginInit();
            this._cmdImport.BeginInit();
            this._radGroupBox1.BeginInit();
            this._radGroupBox1.SuspendLayout();
            this._radLabel2.BeginInit();
            this._cmdCheckAll.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this._lstVersions.AllowRemove     = false;
            this._lstVersions.Dock            = DockStyle.Fill;
            this._lstVersions.Location        = new Point(10, 46);
            this._lstVersions.Name            = "_lstVersions";
            this._lstVersions.Size            = new Size(446, 337);
            this._lstVersions.TabIndex        = 7;
            this._lstVersions.Text            = "\r\n";
            this._lstVersions.ThemeName       = "VisualStudio2012Dark";
            this._radLabel1.Location          = new Point(5, 14);
            this._radLabel1.Name              = "_radLabel1";
            this._radLabel1.Size              = new Size(399, 18);
            this._radLabel1.TabIndex          = 2;
            this._radLabel1.Text              = "Please select the desired update versions. You usually only need the latest one.";
            this._radLabel1.ThemeName         = "VisualStudio2012Dark";
            this._cmdImport.Dock              = DockStyle.Bottom;
            this._cmdImport.Location          = new Point(10, 383);
            this._cmdImport.Name              = "_cmdImport";
            this._cmdImport.Size              = new Size(446, 26);
            this._cmdImport.TabIndex          = 9;
            this._cmdImport.Text              = "Ok";
            this._cmdImport.ThemeName         = "VisualStudio2012Dark";
            this._cmdImport.Click            += new EventHandler(this._cmdImport_Click);
            this._radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this._radGroupBox1.Controls.Add((Control)this._radLabel1);
            this._radGroupBox1.Dock       = DockStyle.Top;
            this._radGroupBox1.HeaderText = "Info";
            this._radGroupBox1.Location   = new Point(10, 10);
            this._radGroupBox1.Name       = "_radGroupBox1";
            this._radGroupBox1.Size       = new Size(446, 36);
            this._radGroupBox1.TabIndex   = 10;
            this._radGroupBox1.Text       = "Info";
            this._radGroupBox1.ThemeName  = "VisualStudio2012Dark";
            this._radLabel2.Location      = new Point(265, 18);
            this._radLabel2.Name          = "_radLabel2";
            this._radLabel2.Size          = new Size(2, 2);
            this._radLabel2.TabIndex      = 8;
            this._radLabel2.ThemeName     = "VisualStudio2012Dark";
            this._cmdCheckAll.Dock        = DockStyle.Bottom;
            this._cmdCheckAll.Location    = new Point(10, 409);
            this._cmdCheckAll.Name        = "_cmdCheckAll";
            this._cmdCheckAll.Size        = new Size(446, 26);
            this._cmdCheckAll.TabIndex    = 11;
            this._cmdCheckAll.Text        = "Select all";
            this._cmdCheckAll.ThemeName   = "VisualStudio2012Dark";
            this._cmdCheckAll.Click      += new EventHandler(this._cmdCheckAll_Click);
            this.ClientSize = new Size(466, 445);
            this.Controls.Add((Control)this._lstVersions);
            this.Controls.Add((Control)this._cmdImport);
            this.Controls.Add((Control)this._radGroupBox1);
            this.Controls.Add((Control)this._radLabel2);
            this.Controls.Add((Control)this._cmdCheckAll);
            this.Icon    = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name    = nameof(FrmSelectVersion);
            this.Padding = new Padding(10);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "Select versions";
            this.Load         += new EventHandler(this.FrmSelectVersion_Load);
            this._lstVersions.EndInit();
            this._radLabel1.EndInit();
            this._cmdImport.EndInit();
            this._radGroupBox1.EndInit();
            this._radGroupBox1.ResumeLayout(false);
            this._radGroupBox1.PerformLayout();
            this._radLabel2.EndInit();
            this._cmdCheckAll.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #10
0
        private void cfb5cf413352ed4044535eb4a62d2e98f()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(Type.GetTypeFromHandle(c88268b74f5ce364f3970b8bd3f051a39.c6804baa30a51e813a45fabcfa2b27b79()));

            this.c04ec098e0966ffd0b1a10f49441db094 = new RadCheckedListBox();
            this.c95ef98fe47240003ef4672097ba17b78 = new RadLabel();
            this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5 = new RadButton();
            this.c3e6103514481615fe8ff93d3bf1b3603 = new RadGroupBox();
            this.c3375300769682315777e854716124324 = new RadLabel();
            this.cb986ff8bb5fd141228be375bfc60bdc6 = new RadButton();
            ((ISupportInitialize)this.c04ec098e0966ffd0b1a10f49441db094).BeginInit();
            ((ISupportInitialize)this.c95ef98fe47240003ef4672097ba17b78).BeginInit();
            ((ISupportInitialize)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).BeginInit();
            ((ISupportInitialize)this.c3e6103514481615fe8ff93d3bf1b3603).BeginInit();
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).SuspendLayout();
            ((ISupportInitialize)this.c3375300769682315777e854716124324).BeginInit();
            ((ISupportInitialize)this.cb986ff8bb5fd141228be375bfc60bdc6).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            ((RadFormControlBase)this).SuspendLayout();
            ((RadListView)this.c04ec098e0966ffd0b1a10f49441db094).set_AllowRemove(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11436) != 0);
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11440);
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11444), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11448));
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18170);
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11452), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11456));
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11460);
            ((Control)this.c04ec098e0966ffd0b1a10f49441db094).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7221);
            ((RadControl)this.c04ec098e0966ffd0b1a10f49441db094).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c95ef98fe47240003ef4672097ba17b78).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11464), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11468));
            ((Control)this.c95ef98fe47240003ef4672097ba17b78).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18195);
            ((Control)this.c95ef98fe47240003ef4672097ba17b78).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11472), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11476));
            ((Control)this.c95ef98fe47240003ef4672097ba17b78).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11480);
            ((Control)this.c95ef98fe47240003ef4672097ba17b78).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18216);
            ((RadControl)this.c95ef98fe47240003ef4672097ba17b78).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11484);
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11488), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11492));
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18378);
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11496), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11500));
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11504);
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14002);
            ((RadControl)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).Click         += new EventHandler(this.cf93b4b8c40f46dbd89b416a232d361f0);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).AccessibleRole = (AccessibleRole)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11508);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Controls.Add((Control)this.c95ef98fe47240003ef4672097ba17b78);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11512);
            this.c3e6103514481615fe8ff93d3bf1b3603.set_HeaderText(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935));
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11516), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11520));
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18399);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11524), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11528));
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11532);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935);
            ((RadControl)this.c3e6103514481615fe8ff93d3bf1b3603).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c3375300769682315777e854716124324).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11536), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11540));
            ((Control)this.c3375300769682315777e854716124324).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18426);
            ((Control)this.c3375300769682315777e854716124324).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11544), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11548));
            ((Control)this.c3375300769682315777e854716124324).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11552);
            ((RadControl)this.c3375300769682315777e854716124324).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11556);
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11560), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11564));
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18447);
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11568), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11572));
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11576);
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16452);
            ((RadControl)this.cb986ff8bb5fd141228be375bfc60bdc6).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cb986ff8bb5fd141228be375bfc60bdc6).Click += new EventHandler(this.c73a91aa5e28f9899f28a0eb26c625fd5);
            ((Form)this).ClientSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11580), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11584));
            ((Control)this).Controls.Add((Control)this.c04ec098e0966ffd0b1a10f49441db094);
            ((Control)this).Controls.Add((Control)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5);
            ((Control)this).Controls.Add((Control)this.c3e6103514481615fe8ff93d3bf1b3603);
            ((Control)this).Controls.Add((Control)this.c3375300769682315777e854716124324);
            ((Control)this).Controls.Add((Control)this.cb986ff8bb5fd141228be375bfc60bdc6);
            ((Form)this).Icon       = cead0b4edd540ba7cac4363706aa68fb6.cc8e287d5350b43026d33bb80beb131a0(componentResourceManager.GetObject(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7256)));
            ((Control)this).Name    = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18472);
            ((Control)this).Padding = new Padding(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11588));
            ((RadFormControlBase)this).get_RootElement().set_ApplyShapeToControl(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11592) != 0);
            ((Form)this).StartPosition = (FormStartPosition)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11596);
            ((Control)this).Text       = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18505);
            ((Form)this).Load         += new EventHandler(this.c138ccb40d607129c8cc7e7de877df233);
            ((ISupportInitialize)this.c04ec098e0966ffd0b1a10f49441db094).EndInit();
            ((ISupportInitialize)this.c95ef98fe47240003ef4672097ba17b78).EndInit();
            ((ISupportInitialize)this.c7cca1c8ca71c2cf05bdd35a4bbdd30d5).EndInit();
            ((ISupportInitialize)this.c3e6103514481615fe8ff93d3bf1b3603).EndInit();
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11600) != 0);
            ((Control)this.c3e6103514481615fe8ff93d3bf1b3603).PerformLayout();
            ((ISupportInitialize)this.c3375300769682315777e854716124324).EndInit();
            ((ISupportInitialize)this.cb986ff8bb5fd141228be375bfc60bdc6).EndInit();
            ((ISupportInitialize)this).EndInit();
            ((RadFormControlBase)this).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11604) != 0);
            ((Control)this).PerformLayout();
        }
Пример #11
0
 private void InitializeComponent()
 {
     this.label1           = new RadLabel();
     this.cmdSavelink      = new RadButton();
     this.radGroupBox2     = new RadGroupBox();
     this.pictureBox4      = new PictureBox();
     this.pictureBox3      = new PictureBox();
     this.pictureBox2      = new PictureBox();
     this.radLabel7        = new RadLabel();
     this.radTextBox3      = new RadTextBox();
     this.radTextBox1      = new RadTextBox();
     this.radLabel5        = new RadLabel();
     this.radLabel1        = new RadLabel();
     this.radLabel3        = new RadLabel();
     this.radTextBox2      = new RadTextBox();
     this.radButton2       = new RadButton();
     this.radPageView1     = new RadPageView();
     this.radPageViewPage1 = new RadPageViewPage();
     this.radPageViewPage2 = new RadPageViewPage();
     this.radGroupBox3     = new RadGroupBox();
     this.radLabel6        = new RadLabel();
     this.radLabel4        = new RadLabel();
     this.pictureBox1      = new PictureBox();
     this.radButton1       = new RadButton();
     this.label5           = new RadLabel();
     this.radGroupBox1     = new RadGroupBox();
     this.label6           = new RadLabel();
     this.txtUrl           = new RadTextBox();
     this.label7           = new RadLabel();
     this.label1.BeginInit();
     this.cmdSavelink.BeginInit();
     this.radGroupBox2.BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((ISupportInitialize)this.pictureBox4).BeginInit();
     ((ISupportInitialize)this.pictureBox3).BeginInit();
     ((ISupportInitialize)this.pictureBox2).BeginInit();
     this.radLabel7.BeginInit();
     this.radTextBox3.BeginInit();
     this.radTextBox1.BeginInit();
     this.radLabel5.BeginInit();
     this.radLabel1.BeginInit();
     this.radLabel3.BeginInit();
     this.radTextBox2.BeginInit();
     this.radButton2.BeginInit();
     this.radPageView1.BeginInit();
     this.radPageView1.SuspendLayout();
     this.radPageViewPage1.SuspendLayout();
     this.radPageViewPage2.SuspendLayout();
     this.radGroupBox3.BeginInit();
     this.radGroupBox3.SuspendLayout();
     this.radLabel6.BeginInit();
     this.radLabel4.BeginInit();
     ((ISupportInitialize)this.pictureBox1).BeginInit();
     this.radButton1.BeginInit();
     this.label5.BeginInit();
     this.radGroupBox1.BeginInit();
     this.label6.BeginInit();
     this.txtUrl.BeginInit();
     this.label7.BeginInit();
     this.BeginInit();
     this.SuspendLayout();
     this.label1.AutoSize             = false;
     this.label1.Dock                 = DockStyle.Top;
     this.label1.Font                 = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.label1.ForeColor            = Color.FromArgb((int)byte.MaxValue, 128, 0);
     this.label1.Location             = new Point(10, 10);
     this.label1.Name                 = "label1";
     this.label1.Size                 = new Size(561, 41);
     this.label1.TabIndex             = 0;
     this.label1.Text                 = "In order to work, this application needs to download tickets.\r\nUnfortunately, since this is copyrighted material, you will need to provide them yourself.";
     this.label1.TextAlignment        = ContentAlignment.TopCenter;
     this.cmdSavelink.Location        = new Point(1027, 499);
     this.cmdSavelink.Name            = "cmdSavelink";
     this.cmdSavelink.Size            = new Size(110, 24);
     this.cmdSavelink.TabIndex        = 10;
     this.cmdSavelink.Text            = "Save link";
     this.cmdSavelink.ThemeName       = "Desert";
     this.cmdSavelink.Click          += new EventHandler(this.cmdSavelink_Click);
     this.radGroupBox2.AccessibleRole = AccessibleRole.Grouping;
     this.radGroupBox2.AllowDrop      = true;
     this.radGroupBox2.Controls.Add((Control)this.pictureBox4);
     this.radGroupBox2.Controls.Add((Control)this.pictureBox3);
     this.radGroupBox2.Controls.Add((Control)this.pictureBox2);
     this.radGroupBox2.Controls.Add((Control)this.radLabel7);
     this.radGroupBox2.Controls.Add((Control)this.radTextBox3);
     this.radGroupBox2.Controls.Add((Control)this.radTextBox1);
     this.radGroupBox2.Controls.Add((Control)this.radLabel5);
     this.radGroupBox2.Controls.Add((Control)this.radLabel1);
     this.radGroupBox2.Controls.Add((Control)this.radLabel3);
     this.radGroupBox2.Controls.Add((Control)this.radTextBox2);
     this.radGroupBox2.Controls.Add((Control)this.radButton2);
     this.radGroupBox2.Dock        = DockStyle.Fill;
     this.radGroupBox2.Font        = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radGroupBox2.HeaderText  = "Use the title key sites";
     this.radGroupBox2.Location    = new Point(0, 0);
     this.radGroupBox2.Name        = "radGroupBox2";
     this.radGroupBox2.Size        = new Size(551, 531);
     this.radGroupBox2.TabIndex    = 7;
     this.radGroupBox2.Text        = "Use the title key sites";
     this.radGroupBox2.ThemeName   = "Desert";
     this.pictureBox4.Image        = (Image)Class123.logoWii;
     this.pictureBox4.Location     = new Point(482, 231);
     this.pictureBox4.Name         = "pictureBox4";
     this.pictureBox4.Size         = new Size(33, 18);
     this.pictureBox4.TabIndex     = 18;
     this.pictureBox4.TabStop      = false;
     this.pictureBox4.Visible      = false;
     this.pictureBox3.Image        = (Image)Class123.logo3ds;
     this.pictureBox3.Location     = new Point(462, 170);
     this.pictureBox3.Name         = "pictureBox3";
     this.pictureBox3.Size         = new Size(53, 18);
     this.pictureBox3.TabIndex     = 17;
     this.pictureBox3.TabStop      = false;
     this.pictureBox2.Image        = (Image)Class123.logoWiiU;
     this.pictureBox2.Location     = new Point(462, 104);
     this.pictureBox2.Name         = "pictureBox2";
     this.pictureBox2.Size         = new Size(53, 18);
     this.pictureBox2.TabIndex     = 16;
     this.pictureBox2.TabStop      = false;
     this.radLabel7.Font           = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radLabel7.Location       = new Point(36, 231);
     this.radLabel7.Name           = "radLabel7";
     this.radLabel7.Size           = new Size(226, 18);
     this.radLabel7.TabIndex       = 14;
     this.radLabel7.Text           = "For the Wii: (only works on Wii and vWii)";
     this.radLabel7.Visible        = false;
     this.radTextBox3.Location     = new Point(85, (int)byte.MaxValue);
     this.radTextBox3.Name         = "radTextBox3";
     this.radTextBox3.NullText     = "Please paste here the address to that Wii site";
     this.radTextBox3.Size         = new Size(430, 20);
     this.radTextBox3.TabIndex     = 15;
     this.radTextBox3.ThemeName    = "Desert";
     this.radTextBox3.Visible      = false;
     this.radTextBox1.Location     = new Point(85, 128);
     this.radTextBox1.Name         = "radTextBox1";
     this.radTextBox1.NullText     = "Please paste here the address to that WiiU site";
     this.radTextBox1.Size         = new Size(430, 20);
     this.radTextBox1.TabIndex     = 10;
     this.radTextBox1.ThemeName    = "Desert";
     this.radTextBox1.TextChanged += new EventHandler(this.radTextBox1_TextChanged);
     this.radLabel5.Font           = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radLabel5.Location       = new Point(71, 69);
     this.radLabel5.Name           = "radLabel5";
     this.radLabel5.Size           = new Size(429, 18);
     this.radLabel5.TabIndex       = 2;
     this.radLabel5.Text           = "If you wish to download both 3DS and WiiU games you have to input both urls.";
     this.radLabel1.Font           = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radLabel1.Location       = new Point(36, 170);
     this.radLabel1.Name           = "radLabel1";
     this.radLabel1.Size           = new Size(239, 18);
     this.radLabel1.TabIndex       = 2;
     this.radLabel1.Text           = "For the 3DS: (only works on 3DS, not WiiU!)";
     this.radLabel3.Font           = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radLabel3.Location       = new Point(36, 104);
     this.radLabel3.Name           = "radLabel3";
     this.radLabel3.Size           = new Size(76, 18);
     this.radLabel3.TabIndex       = 3;
     this.radLabel3.Text           = "For the WiiU:";
     this.radTextBox2.Location     = new Point(85, 194);
     this.radTextBox2.Name         = "radTextBox2";
     this.radTextBox2.NullText     = "Please paste here the address to that 3DS site";
     this.radTextBox2.Size         = new Size(430, 20);
     this.radTextBox2.TabIndex     = 11;
     this.radTextBox2.ThemeName    = "Desert";
     this.radButton2.Location      = new Point(187, 286);
     this.radButton2.Name          = "radButton2";
     this.radButton2.Size          = new Size(177, 25);
     this.radButton2.TabIndex      = 13;
     this.radButton2.Text          = "Ok";
     this.radButton2.ThemeName     = "Desert";
     this.radButton2.Click        += new EventHandler(this.radButton2_Click);
     this.radPageView1.Controls.Add((Control)this.radPageViewPage1);
     this.radPageView1.Controls.Add((Control)this.radPageViewPage2);
     this.radPageView1.Dock                 = DockStyle.Fill;
     this.radPageView1.ItemSizeMode         = PageViewItemSizeMode.EqualSize;
     this.radPageView1.Location             = new Point(10, 51);
     this.radPageView1.Name                 = "radPageView1";
     this.radPageView1.SelectedPage         = this.radPageViewPage1;
     this.radPageView1.Size                 = new Size(561, 626);
     this.radPageView1.TabIndex             = 14;
     this.radPageView1.Text                 = "Method - 1 (Recommended)";
     this.radPageView1.ViewMode             = PageViewMode.Stack;
     this.radPageView1.SelectedPageChanged += new EventHandler(this.radPageView1_SelectedPageChanged);
     this.radPageViewPage1.Controls.Add((Control)this.radGroupBox2);
     this.radPageViewPage1.ItemSize = new SizeF(561f, 32f);
     this.radPageViewPage1.Location = new Point(5, 29);
     this.radPageViewPage1.Name     = "radPageViewPage1";
     this.radPageViewPage1.Size     = new Size(551, 531);
     this.radPageViewPage1.Text     = "Method 1 - (Recommended)";
     this.radPageViewPage1.Paint   += new PaintEventHandler(this.radPageViewPage1_Paint);
     this.radPageViewPage2.Controls.Add((Control)this.radGroupBox3);
     this.radPageViewPage2.ItemSize   = new SizeF(561f, 32f);
     this.radPageViewPage2.Location   = new Point(5, 29);
     this.radPageViewPage2.Name       = "radPageViewPage2";
     this.radPageViewPage2.Size       = new Size(551, 531);
     this.radPageViewPage2.Text       = "Alternate Method";
     this.radGroupBox3.AccessibleRole = AccessibleRole.Grouping;
     this.radGroupBox3.Controls.Add((Control)this.radLabel6);
     this.radGroupBox3.Controls.Add((Control)this.radLabel4);
     this.radGroupBox3.Controls.Add((Control)this.pictureBox1);
     this.radGroupBox3.Controls.Add((Control)this.radButton1);
     this.radGroupBox3.Controls.Add((Control)this.label5);
     this.radGroupBox3.Controls.Add((Control)this.radGroupBox1);
     this.radGroupBox3.Controls.Add((Control)this.label6);
     this.radGroupBox3.Controls.Add((Control)this.txtUrl);
     this.radGroupBox3.Controls.Add((Control)this.label7);
     this.radGroupBox3.Dock           = DockStyle.Fill;
     this.radGroupBox3.HeaderText     = "Alternate method";
     this.radGroupBox3.Location       = new Point(0, 0);
     this.radGroupBox3.Name           = "radGroupBox3";
     this.radGroupBox3.Padding        = new Padding(10);
     this.radGroupBox3.Size           = new Size(551, 531);
     this.radGroupBox3.TabIndex       = 14;
     this.radGroupBox3.Text           = "Alternate method";
     this.radLabel6.Font              = new Font("Segoe UI", 9f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
     this.radLabel6.ForeColor         = Color.FromArgb(192, 0, 0);
     this.radLabel6.Location          = new Point(132, 23);
     this.radLabel6.Name              = "radLabel6";
     this.radLabel6.Size              = new Size(300, 19);
     this.radLabel6.TabIndex          = 13;
     this.radLabel6.Text              = "This method is outdated and no longer supported.";
     this.radLabel4.Location          = new Point(13, 47);
     this.radLabel4.Name              = "radLabel4";
     this.radLabel4.Size              = new Size(469, 18);
     this.radLabel4.TabIndex          = 6;
     this.radLabel4.Text              = "If you want to use your own archive, just create a rar archive with the following file structure :";
     this.pictureBox1.Image           = (Image)Class123.filestruct;
     this.pictureBox1.Location        = new Point(13, 71);
     this.pictureBox1.Name            = "pictureBox1";
     this.pictureBox1.Size            = new Size(547, 193);
     this.pictureBox1.TabIndex        = 4;
     this.pictureBox1.TabStop         = false;
     this.radButton1.Location         = new Point(435, 242);
     this.radButton1.Name             = "radButton1";
     this.radButton1.Size             = new Size(110, 24);
     this.radButton1.TabIndex         = 12;
     this.radButton1.Text             = "Browse...";
     this.radButton1.ThemeName        = "Desert";
     this.radButton1.Click           += new EventHandler(this.radButton1_Click);
     this.label5.Location             = new Point(13, 270);
     this.label5.Name                 = "label5";
     this.label5.Size                 = new Size(252, 18);
     this.label5.TabIndex             = 5;
     this.label5.Text                 = "Now, please drag and drop your archive file here:";
     this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
     this.radGroupBox1.AllowDrop      = true;
     this.radGroupBox1.HeaderText     = "Drag Here!";
     this.radGroupBox1.Location       = new Point(9, 326);
     this.radGroupBox1.Name           = "radGroupBox1";
     this.radGroupBox1.Size           = new Size(544, 133);
     this.radGroupBox1.TabIndex       = 6;
     this.radGroupBox1.Text           = "Drag Here!";
     this.radGroupBox1.ThemeName      = "Desert";
     this.radGroupBox1.DragDrop      += new DragEventHandler(this.radGroupBox1_DragDrop);
     this.radGroupBox1.DragEnter     += new DragEventHandler(this.radGroupBox1_DragEnter);
     this.label6.Location             = new Point(106, 465);
     this.label6.Name                 = "label6";
     this.label6.Size                 = new Size(346, 18);
     this.label6.TabIndex             = 7;
     this.label6.Text                 = "Alternatively, you can use a URL to fetch the ticket archive at launch.";
     this.txtUrl.Location             = new Point(65, 498);
     this.txtUrl.Name                 = "txtUrl";
     this.txtUrl.Size                 = new Size(433, 20);
     this.txtUrl.TabIndex             = 9;
     this.txtUrl.ThemeName            = "Desert";
     this.label7.Location             = new Point(151, 480);
     this.label7.Name                 = "label7";
     this.label7.Size                 = new Size(256, 18);
     this.label7.TabIndex             = 8;
     this.label7.Text                 = "Caution, it has to be a direct link ! (No mega links)";
     this.AutoScaleDimensions         = new SizeF(6f, 13f);
     this.AutoScaleMode               = AutoScaleMode.Font;
     this.ClientSize = new Size(581, 687);
     this.Controls.Add((Control)this.radPageView1);
     this.Controls.Add((Control)this.cmdSavelink);
     this.Controls.Add((Control)this.label1);
     this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
     this.Name            = nameof(FrmAskTicket);
     this.Padding         = new Padding(10);
     this.RootElement.ApplyShapeToControl = true;
     this.ShowIcon      = false;
     this.StartPosition = FormStartPosition.CenterScreen;
     this.Text          = "Ticket";
     this.ThemeName     = "Desert";
     this.Load         += new EventHandler(this.FrmAskTicket_Load);
     this.label1.EndInit();
     this.cmdSavelink.EndInit();
     this.radGroupBox2.EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((ISupportInitialize)this.pictureBox4).EndInit();
     ((ISupportInitialize)this.pictureBox3).EndInit();
     ((ISupportInitialize)this.pictureBox2).EndInit();
     this.radLabel7.EndInit();
     this.radTextBox3.EndInit();
     this.radTextBox1.EndInit();
     this.radLabel5.EndInit();
     this.radLabel1.EndInit();
     this.radLabel3.EndInit();
     this.radTextBox2.EndInit();
     this.radButton2.EndInit();
     this.radPageView1.EndInit();
     this.radPageView1.ResumeLayout(false);
     this.radPageViewPage1.ResumeLayout(false);
     this.radPageViewPage2.ResumeLayout(false);
     this.radGroupBox3.EndInit();
     this.radGroupBox3.ResumeLayout(false);
     this.radGroupBox3.PerformLayout();
     this.radLabel6.EndInit();
     this.radLabel4.EndInit();
     ((ISupportInitialize)this.pictureBox1).EndInit();
     this.radButton1.EndInit();
     this.label5.EndInit();
     this.radGroupBox1.EndInit();
     this.label6.EndInit();
     this.txtUrl.EndInit();
     this.label7.EndInit();
     this.EndInit();
     this.ResumeLayout(false);
 }
Пример #12
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmInjection));

            this.radGroupBox1 = new RadGroupBox();
            this.radButton1   = new RadButton();
            this.radLabel2    = new RadLabel();
            this.chkRatio     = new RadCheckBox();
            this.grpDrop      = new RadGroupBox();
            this.lblDrop      = new RadLabel();
            this.lblCount     = new System.Windows.Forms.Label();
            this.cmdBrowse    = new RadButton();
            this.cmdPrepareSd = new RadButton();
            this.radLabel3    = new RadLabel();
            this.pictureBox2  = new PictureBox();
            this.pictureBox1  = new PictureBox();
            this.lblIntro     = new RadLabel();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.radButton1.BeginInit();
            this.radLabel2.BeginInit();
            this.chkRatio.BeginInit();
            this.grpDrop.BeginInit();
            this.grpDrop.SuspendLayout();
            this.lblDrop.BeginInit();
            this.lblDrop.SuspendLayout();
            this.cmdBrowse.BeginInit();
            this.cmdPrepareSd.BeginInit();
            this.radLabel3.BeginInit();
            ((ISupportInitialize)this.pictureBox2).BeginInit();
            ((ISupportInitialize)this.pictureBox1).BeginInit();
            this.lblIntro.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.radButton1);
            this.radGroupBox1.Controls.Add((Control)this.radLabel2);
            this.radGroupBox1.Controls.Add((Control)this.chkRatio);
            this.radGroupBox1.Controls.Add((Control)this.grpDrop);
            this.radGroupBox1.Controls.Add((Control)this.cmdPrepareSd);
            this.radGroupBox1.Controls.Add((Control)this.radLabel3);
            this.radGroupBox1.Controls.Add((Control)this.pictureBox2);
            this.radGroupBox1.Controls.Add((Control)this.pictureBox1);
            this.radGroupBox1.Controls.Add((Control)this.lblIntro);
            this.radGroupBox1.Dock       = DockStyle.Fill;
            this.radGroupBox1.HeaderText = "Injection";
            this.radGroupBox1.Location   = new Point(0, 0);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(601, 435);
            this.radGroupBox1.TabIndex   = 0;
            this.radGroupBox1.Text       = "Injection";
            this.radButton1.Location     = new Point(458, 12);
            this.radButton1.Name         = "radButton1";
            this.radButton1.Size         = new Size(138, 24);
            this.radButton1.TabIndex     = 0;
            this.radButton1.Text         = "Vote for the next games!";
            this.radButton1.Click       += new EventHandler(this.radButton1_Click);
            this.radLabel2.ForeColor     = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel2.Location      = new Point(5, 412);
            this.radLabel2.Name          = "radLabel2";
            this.radLabel2.Size          = new Size(120, 18);
            this.radLabel2.TabIndex      = 9;
            this.radLabel2.Text          = "See the Special Thanks";
            this.radLabel2.Click        += new EventHandler(this.radLabel2_Click);
            this.chkRatio.Location       = new Point(480, 396);
            this.chkRatio.Name           = "chkRatio";
            this.chkRatio.Size           = new Size(91, 18);
            this.chkRatio.TabIndex       = 8;
            this.chkRatio.Text           = "Force 4:3 ratio";
            this.grpDrop.AccessibleRole  = AccessibleRole.Grouping;
            this.grpDrop.AllowDrop       = true;
            this.grpDrop.Controls.Add((Control)this.lblDrop);
            this.grpDrop.HeaderText = "Drop the ISO here !";
            this.grpDrop.Location   = new Point(27, 160);
            this.grpDrop.Name       = "grpDrop";
            this.grpDrop.Size       = new Size(546, 169);
            this.grpDrop.TabIndex   = 1;
            this.grpDrop.Text       = "Drop the ISO here !";
            this.grpDrop.DragDrop  += new DragEventHandler(this.grpDrop_DragDrop);
            this.grpDrop.DragEnter += new DragEventHandler(this.grpDrop_DragEnter);
            this.lblDrop.AutoSize   = false;
            this.lblDrop.Controls.Add((Control)this.lblCount);
            this.lblDrop.Controls.Add((Control)this.cmdBrowse);
            this.lblDrop.Dock                   = DockStyle.Fill;
            this.lblDrop.Font                   = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
            this.lblDrop.ForeColor              = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.lblDrop.Location               = new Point(2, 18);
            this.lblDrop.Name                   = "lblDrop";
            this.lblDrop.Size                   = new Size(542, 149);
            this.lblDrop.TabIndex               = 0;
            this.lblDrop.Text                   = "Drop your ISO here!";
            this.lblDrop.TextAlignment          = ContentAlignment.MiddleCenter;
            this.lblCount.AutoSize              = true;
            this.lblCount.Location              = new Point(386, 133);
            this.lblCount.Name                  = "lblCount";
            this.lblCount.Size                  = new Size(156, 13);
            this.lblCount.TabIndex              = 1;
            this.lblCount.Text                  = "{x} disc(s) provded out of {x}";
            this.cmdBrowse.Location             = new Point(216, 122);
            this.cmdBrowse.Name                 = "cmdBrowse";
            this.cmdBrowse.Size                 = new Size(110, 24);
            this.cmdBrowse.TabIndex             = 0;
            this.cmdBrowse.Text                 = "Browse...";
            this.cmdBrowse.Click               += new EventHandler(this.cmdBrowse_Click);
            this.cmdPrepareSd.Image             = (Image)Class123.icnSd;
            this.cmdPrepareSd.Location          = new Point(206, 363);
            this.cmdPrepareSd.Name              = "cmdPrepareSd";
            this.cmdPrepareSd.Padding           = new Padding(8);
            this.cmdPrepareSd.Size              = new Size(203, 51);
            this.cmdPrepareSd.TabIndex          = 7;
            this.cmdPrepareSd.Text              = "Prepare my SD";
            this.cmdPrepareSd.TextAlignment     = ContentAlignment.MiddleLeft;
            this.cmdPrepareSd.TextImageRelation = TextImageRelation.ImageBeforeText;
            this.cmdPrepareSd.ThemeName         = "VisualStudio2012Dark";
            this.cmdPrepareSd.Click            += new EventHandler(this.cmdPrepareSd_Click);
            this.radLabel3.Location             = new Point(116, 340);
            this.radLabel3.Name                 = "radLabel3";
            this.radLabel3.Size                 = new Size(447, 17);
            this.radLabel3.TabIndex             = 4;
            this.radLabel3.Text                 = "<html><strong><span style=\"color: #ff8000\">In order to be able to launch these games, you must prepare your SD at least once.</span></strong></html>";
            this.pictureBox2.Image              = (Image)Class123.warning;
            this.pictureBox2.Location           = new Point(29, 333);
            this.pictureBox2.Name               = "pictureBox2";
            this.pictureBox2.Size               = new Size(64, 64);
            this.pictureBox2.SizeMode           = PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex           = 3;
            this.pictureBox2.TabStop            = false;
            this.pictureBox1.Location           = new Point(27, 44);
            this.pictureBox1.Name               = "pictureBox1";
            this.pictureBox1.Size               = new Size(90, 90);
            this.pictureBox1.SizeMode           = PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex           = 2;
            this.pictureBox1.TabStop            = false;
            this.lblIntro.Font                  = new Font("Segoe UI", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
            this.lblIntro.Location              = new Point(126, 21);
            this.lblIntro.Name                  = "lblIntro";
            this.lblIntro.Size                  = new Size(465, 323);
            this.lblIntro.TabIndex              = 1;
            this.lblIntro.Text                  = componentResourceManager.GetString("lblIntro.Text");
            this.AutoScaleDimensions            = new SizeF(6f, 13f);
            this.AutoScaleMode                  = AutoScaleMode.Font;
            this.ClientSize = new Size(601, 435);
            this.Controls.Add((Control)this.radGroupBox1);
            this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
            this.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name            = nameof(frmInjection);
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon      = false;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Injection";
            this.Load         += new EventHandler(this.frmInjection_Load);
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            this.radButton1.EndInit();
            this.radLabel2.EndInit();
            this.chkRatio.EndInit();
            this.grpDrop.EndInit();
            this.grpDrop.ResumeLayout(false);
            this.lblDrop.EndInit();
            this.lblDrop.ResumeLayout(false);
            this.lblDrop.PerformLayout();
            this.cmdBrowse.EndInit();
            this.cmdPrepareSd.EndInit();
            this.radLabel3.EndInit();
            ((ISupportInitialize)this.pictureBox2).EndInit();
            ((ISupportInitialize)this.pictureBox1).EndInit();
            this.lblIntro.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
        }
 private void InitializeComponent()
 {
   ListViewDetailColumn viewDetailColumn1 = new ListViewDetailColumn("Column 0", "Title");
   ListViewDetailColumn viewDetailColumn2 = new ListViewDetailColumn("Column 1", "Size on disk");
   ListViewDetailColumn viewDetailColumn3 = new ListViewDetailColumn("Column 0", "Title");
   ListViewDetailColumn viewDetailColumn4 = new ListViewDetailColumn("Column 1", "Size on disk");
   ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (frmAdvancedDiskManagement));
   this.lstTitles = new RadListView();
   this.cmdDelete = new RadButton();
   this.lstEmuTitles = new RadListView();
   this.cmdDeleteEmu = new RadButton();
   this.radGroupBox1 = new RadGroupBox();
   this.radSplitContainer1 = new RadSplitContainer();
   this.splitPanel1 = new SplitPanel();
   this.radGroupBox2 = new RadGroupBox();
   this.radButton1 = new RadButton();
   this.lblTotalRaw = new RadLabel();
   this.radLabel1 = new RadLabel();
   this.splitPanel2 = new SplitPanel();
   this.radGroupBox3 = new RadGroupBox();
   this.lblTotalEmu = new RadLabel();
   this.radLabel2 = new RadLabel();
   this.lstTitles.BeginInit();
   this.cmdDelete.BeginInit();
   this.lstEmuTitles.BeginInit();
   this.cmdDeleteEmu.BeginInit();
   this.radGroupBox1.BeginInit();
   this.radGroupBox1.SuspendLayout();
   this.radSplitContainer1.BeginInit();
   this.radSplitContainer1.SuspendLayout();
   this.splitPanel1.BeginInit();
   this.splitPanel1.SuspendLayout();
   this.radGroupBox2.BeginInit();
   this.radGroupBox2.SuspendLayout();
   this.radButton1.BeginInit();
   this.lblTotalRaw.BeginInit();
   this.radLabel1.BeginInit();
   this.splitPanel2.BeginInit();
   this.splitPanel2.SuspendLayout();
   this.radGroupBox3.BeginInit();
   this.radGroupBox3.SuspendLayout();
   this.lblTotalEmu.BeginInit();
   this.radLabel2.BeginInit();
   this.BeginInit();
   this.SuspendLayout();
   viewDetailColumn1.HeaderText = "Title";
   viewDetailColumn1.Width = 400f;
   viewDetailColumn2.HeaderText = "Size on disk";
   this.lstTitles.Columns.AddRange(viewDetailColumn1, viewDetailColumn2);
   this.lstTitles.Dock = DockStyle.Fill;
   this.lstTitles.ItemSpacing = -1;
   this.lstTitles.Location = new Point(2, 120);
   this.lstTitles.Name = "lstTitles";
   this.lstTitles.ShowGridLines = true;
   this.lstTitles.Size = new Size(726, 614);
   this.lstTitles.TabIndex = 1;
   this.lstTitles.Text = "radListView1";
   this.lstTitles.ViewType = ListViewType.DetailsView;
   this.lstTitles.ItemRemoving += new ListViewItemCancelEventHandler(this.lstTitles_ItemRemoving);
   this.cmdDelete.Dock = DockStyle.Bottom;
   this.cmdDelete.Location = new Point(2, 764);
   this.cmdDelete.Name = "cmdDelete";
   this.cmdDelete.Size = new Size(726, 24);
   this.cmdDelete.TabIndex = 2;
   this.cmdDelete.Text = "Delete";
   this.cmdDelete.Click += new EventHandler(this.cmdDelete_Click);
   this.lstEmuTitles.AllowEdit = false;
   viewDetailColumn3.HeaderText = "Title";
   viewDetailColumn3.Width = 400f;
   viewDetailColumn4.HeaderText = "Size on disk";
   this.lstEmuTitles.Columns.AddRange(viewDetailColumn3, viewDetailColumn4);
   this.lstEmuTitles.Dock = DockStyle.Fill;
   this.lstEmuTitles.ItemSpacing = -1;
   this.lstEmuTitles.Location = new Point(2, 120);
   this.lstEmuTitles.Name = "lstEmuTitles";
   this.lstEmuTitles.ShowGridLines = true;
   this.lstEmuTitles.Size = new Size(726, 614);
   this.lstEmuTitles.TabIndex = 3;
   this.lstEmuTitles.Text = "radListView1";
   this.lstEmuTitles.ViewType = ListViewType.DetailsView;
   this.lstEmuTitles.ItemRemoving += new ListViewItemCancelEventHandler(this.lstEmuTitles_ItemRemoving);
   this.cmdDeleteEmu.Dock = DockStyle.Bottom;
   this.cmdDeleteEmu.Location = new Point(2, 764);
   this.cmdDeleteEmu.Name = "cmdDeleteEmu";
   this.cmdDeleteEmu.Size = new Size(726, 24);
   this.cmdDeleteEmu.TabIndex = 3;
   this.cmdDeleteEmu.Text = "Delete";
   this.cmdDeleteEmu.Click += new EventHandler(this.cmdDeleteEmu_Click);
   this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
   this.radGroupBox1.Controls.Add((Control) this.radSplitContainer1);
   this.radGroupBox1.Dock = DockStyle.Fill;
   this.radGroupBox1.HeaderText = "Manage Data";
   this.radGroupBox1.Location = new Point(0, 0);
   this.radGroupBox1.Name = "radGroupBox1";
   this.radGroupBox1.Padding = new Padding(20);
   this.radGroupBox1.Size = new Size(1504, 830);
   this.radGroupBox1.TabIndex = 5;
   this.radGroupBox1.Text = "Manage Data";
   this.radSplitContainer1.Controls.Add((Control) this.splitPanel1);
   this.radSplitContainer1.Controls.Add((Control) this.splitPanel2);
   this.radSplitContainer1.Dock = DockStyle.Fill;
   this.radSplitContainer1.Location = new Point(20, 20);
   this.radSplitContainer1.Name = "radSplitContainer1";
   this.radSplitContainer1.RootElement.MinSize = new Size(25, 25);
   this.radSplitContainer1.Size = new Size(1464, 790);
   this.radSplitContainer1.TabIndex = 7;
   this.radSplitContainer1.TabStop = false;
   this.radSplitContainer1.Text = "radSplitContainer1";
   this.splitPanel1.Controls.Add((Control) this.radGroupBox2);
   this.splitPanel1.Location = new Point(0, 0);
   this.splitPanel1.Name = "splitPanel1";
   this.splitPanel1.RootElement.MinSize = new Size(25, 25);
   this.splitPanel1.Size = new Size(730, 790);
   this.splitPanel1.TabIndex = 0;
   this.splitPanel1.TabStop = false;
   this.splitPanel1.Text = "splitPanel1";
   this.radGroupBox2.AccessibleRole = AccessibleRole.Grouping;
   this.radGroupBox2.Controls.Add((Control) this.radButton1);
   this.radGroupBox2.Controls.Add((Control) this.lstTitles);
   this.radGroupBox2.Controls.Add((Control) this.lblTotalRaw);
   this.radGroupBox2.Controls.Add((Control) this.cmdDelete);
   this.radGroupBox2.Controls.Add((Control) this.radLabel1);
   this.radGroupBox2.Dock = DockStyle.Fill;
   this.radGroupBox2.HeaderText = "Raw content";
   this.radGroupBox2.Location = new Point(0, 0);
   this.radGroupBox2.Name = "radGroupBox2";
   this.radGroupBox2.Size = new Size(730, 790);
   this.radGroupBox2.TabIndex = 6;
   this.radGroupBox2.Text = "Raw content";
   this.radButton1.Dock = DockStyle.Bottom;
   this.radButton1.Location = new Point(2, 710);
   this.radButton1.Name = "radButton1";
   this.radButton1.Size = new Size(726, 24);
   this.radButton1.TabIndex = 4;
   this.radButton1.Text = "Delete all useless data";
   this.radButton1.Click += new EventHandler(this.radButton1_Click);
   this.lblTotalRaw.Dock = DockStyle.Bottom;
   this.lblTotalRaw.Font = new Font("Segoe UI", 14.25f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
   this.lblTotalRaw.Location = new Point(2, 734);
   this.lblTotalRaw.Name = "lblTotalRaw";
   this.lblTotalRaw.Size = new Size(17, 30);
   this.lblTotalRaw.TabIndex = 3;
   this.lblTotalRaw.Text = "-";
   this.radLabel1.AutoSize = false;
   this.radLabel1.Dock = DockStyle.Top;
   this.radLabel1.Location = new Point(2, 18);
   this.radLabel1.Name = "radLabel1";
   this.radLabel1.Padding = new Padding(20, 0, 0, 0);
   this.radLabel1.Size = new Size(726, 102);
   this.radLabel1.TabIndex = 0;
   this.radLabel1.Text = componentResourceManager.GetString("radLabel1.Text");
   this.splitPanel2.Controls.Add((Control) this.radGroupBox3);
   this.splitPanel2.Location = new Point(734, 0);
   this.splitPanel2.Name = "splitPanel2";
   this.splitPanel2.RootElement.MinSize = new Size(25, 25);
   this.splitPanel2.Size = new Size(730, 790);
   this.splitPanel2.TabIndex = 1;
   this.splitPanel2.TabStop = false;
   this.splitPanel2.Text = "splitPanel2";
   this.radGroupBox3.AccessibleRole = AccessibleRole.Grouping;
   this.radGroupBox3.Controls.Add((Control) this.lstEmuTitles);
   this.radGroupBox3.Controls.Add((Control) this.lblTotalEmu);
   this.radGroupBox3.Controls.Add((Control) this.radLabel2);
   this.radGroupBox3.Controls.Add((Control) this.cmdDeleteEmu);
   this.radGroupBox3.Dock = DockStyle.Fill;
   this.radGroupBox3.HeaderText = "Emulation Content";
   this.radGroupBox3.Location = new Point(0, 0);
   this.radGroupBox3.Name = "radGroupBox3";
   this.radGroupBox3.Size = new Size(730, 790);
   this.radGroupBox3.TabIndex = 6;
   this.radGroupBox3.Text = "Emulation Content";
   this.lblTotalEmu.Dock = DockStyle.Bottom;
   this.lblTotalEmu.Font = new Font("Segoe UI", 14.25f, FontStyle.Regular, GraphicsUnit.Point, (byte) 0);
   this.lblTotalEmu.Location = new Point(2, 734);
   this.lblTotalEmu.Name = "lblTotalEmu";
   this.lblTotalEmu.Size = new Size(17, 30);
   this.lblTotalEmu.TabIndex = 4;
   this.lblTotalEmu.Text = "-";
   this.radLabel2.AutoSize = false;
   this.radLabel2.Dock = DockStyle.Top;
   this.radLabel2.Location = new Point(2, 18);
   this.radLabel2.Name = "radLabel2";
   this.radLabel2.Padding = new Padding(20, 0, 0, 0);
   this.radLabel2.Size = new Size(726, 102);
   this.radLabel2.TabIndex = 1;
   this.radLabel2.Text = "<html><p>We call 'Emulation' content files that have been unpacked/decrypted/converted from the RAW files.</p><p>This is the format emulators can use to play games.</p><p></p></html>";
   this.AutoScaleDimensions = new SizeF(6f, 13f);
   this.AutoScaleMode = AutoScaleMode.Font;
   this.ClientSize = new Size(1504, 830);
   this.Controls.Add((Control) this.radGroupBox1);
   this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
   this.Name = nameof (frmAdvancedDiskManagement);
   this.RootElement.ApplyShapeToControl = true;
   this.StartPosition = FormStartPosition.CenterScreen;
   this.Text = "Advanced Disk Space Manager";
   this.lstTitles.EndInit();
   this.cmdDelete.EndInit();
   this.lstEmuTitles.EndInit();
   this.cmdDeleteEmu.EndInit();
   this.radGroupBox1.EndInit();
   this.radGroupBox1.ResumeLayout(false);
   this.radSplitContainer1.EndInit();
   this.radSplitContainer1.ResumeLayout(false);
   this.splitPanel1.EndInit();
   this.splitPanel1.ResumeLayout(false);
   this.radGroupBox2.EndInit();
   this.radGroupBox2.ResumeLayout(false);
   this.radGroupBox2.PerformLayout();
   this.radButton1.EndInit();
   this.lblTotalRaw.EndInit();
   this.radLabel1.EndInit();
   this.splitPanel2.EndInit();
   this.splitPanel2.ResumeLayout(false);
   this.radGroupBox3.EndInit();
   this.radGroupBox3.ResumeLayout(false);
   this.radGroupBox3.PerformLayout();
   this.lblTotalEmu.EndInit();
   this.radLabel2.EndInit();
   this.EndInit();
   this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn1 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 0", "Версия");
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn2 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 1", "Тип");
     Telerik.WinControls.UI.ListViewDetailColumn listViewDetailColumn3 = new Telerik.WinControls.UI.ListViewDetailColumn("Column 2", "Зависимость");
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LauncherForm));
     Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
     this.vs12theme = new Telerik.WinControls.Themes.VisualStudio2012DarkTheme();
     this.mainPageView = new Telerik.WinControls.UI.RadPageView();
     this.News = new Telerik.WinControls.UI.RadPageViewPage();
     this.newsBrowser = new System.Windows.Forms.WebBrowser();
     this.webPanel = new Telerik.WinControls.UI.RadPanel();
     this.BackWebButton = new Telerik.WinControls.UI.RadButton();
     this.ForwardWebButton = new Telerik.WinControls.UI.RadButton();
     this.ConsolePage = new Telerik.WinControls.UI.RadPageViewPage();
     this.logBox = new System.Windows.Forms.RichTextBox();
     this.ConsoleOptionsPanel = new Telerik.WinControls.UI.RadPanel();
     this.SetToClipboardButton = new Telerik.WinControls.UI.RadButton();
     this.DebugModeButton = new Telerik.WinControls.UI.RadToggleButton();
     this.EditVersions = new Telerik.WinControls.UI.RadPageViewPage();
     this.versionsListView = new Telerik.WinControls.UI.RadListView();
     this.AboutPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.AboutPageView = new Telerik.WinControls.UI.RadPageView();
     this.AboutPageViewPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.radScrollablePanel2 = new Telerik.WinControls.UI.RadScrollablePanel();
     this.AboutVersion = new Telerik.WinControls.UI.RadLabel();
     this.label6 = new System.Windows.Forms.Label();
     this.MCofflineDescLabel = new System.Windows.Forms.Label();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     this.PartnersLabel = new Telerik.WinControls.UI.RadLabel();
     this.CopyrightInfoLabel = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.DevInfoLabel = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.GratitudesDescLabel = new System.Windows.Forms.Label();
     this.GratitudesLabel = new Telerik.WinControls.UI.RadLabel();
     this.LicensesPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.licensePageView = new Telerik.WinControls.UI.RadPageView();
     this.FreeLauncherLicense = new Telerik.WinControls.UI.RadPageViewPage();
     this.FreeLauncherLicenseText = new Telerik.WinControls.UI.RadLabel();
     this.dotMCLauncherLicense = new Telerik.WinControls.UI.RadPageViewPage();
     this.dotMCLauncherLicenseText = new Telerik.WinControls.UI.RadLabel();
     this.SettingsPage = new Telerik.WinControls.UI.RadPageViewPage();
     this.radScrollablePanel1 = new Telerik.WinControls.UI.RadScrollablePanel();
     this.radGroupBox2 = new Telerik.WinControls.UI.RadGroupBox();
     this.CloseGameOutput = new Telerik.WinControls.UI.RadCheckBox();
     this.UseGamePrefix = new Telerik.WinControls.UI.RadCheckBox();
     this.EnableMinecraftLogging = new Telerik.WinControls.UI.RadCheckBox();
     this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.LangDropDownList = new Telerik.WinControls.UI.RadDropDownList();
     this.EnableMinecraftUpdateAlerts = new Telerik.WinControls.UI.RadCheckBox();
     this.radCheckBox1 = new Telerik.WinControls.UI.RadCheckBox();
     this.StatusBar = new Telerik.WinControls.UI.RadProgressBar();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.DeleteProfileButton = new Telerik.WinControls.UI.RadButton();
     this.ManageUsersButton = new Telerik.WinControls.UI.RadButton();
     this.NicknameDropDownList = new Telerik.WinControls.UI.RadDropDownList();
     this.SelectedVersion = new System.Windows.Forms.Label();
     this.LogoBox = new System.Windows.Forms.PictureBox();
     this.LaunchButton = new Telerik.WinControls.UI.RadButton();
     this.profilesDropDownBox = new Telerik.WinControls.UI.RadDropDownList();
     this.EditProfile = new Telerik.WinControls.UI.RadButton();
     this.AddProfile = new Telerik.WinControls.UI.RadButton();
     ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).BeginInit();
     this.mainPageView.SuspendLayout();
     this.News.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.webPanel)).BeginInit();
     this.webPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.BackWebButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ForwardWebButton)).BeginInit();
     this.ConsolePage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ConsoleOptionsPanel)).BeginInit();
     this.ConsoleOptionsPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SetToClipboardButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DebugModeButton)).BeginInit();
     this.EditVersions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.versionsListView)).BeginInit();
     this.AboutPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AboutPageView)).BeginInit();
     this.AboutPageView.SuspendLayout();
     this.AboutPageViewPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).BeginInit();
     this.radScrollablePanel2.PanelContainer.SuspendLayout();
     this.radScrollablePanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.AboutVersion)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PartnersLabel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GratitudesLabel)).BeginInit();
     this.LicensesPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.licensePageView)).BeginInit();
     this.licensePageView.SuspendLayout();
     this.FreeLauncherLicense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FreeLauncherLicenseText)).BeginInit();
     this.dotMCLauncherLicense.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dotMCLauncherLicenseText)).BeginInit();
     this.SettingsPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).BeginInit();
     this.radScrollablePanel1.PanelContainer.SuspendLayout();
     this.radScrollablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit();
     this.radGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CloseGameOutput)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UseGamePrefix)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftLogging)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
     this.radGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LangDropDownList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftUpdateAlerts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StatusBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     this.radPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteProfileButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ManageUsersButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NicknameDropDownList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LogoBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LaunchButton)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.profilesDropDownBox)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditProfile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AddProfile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // mainPageView
     //
     this.mainPageView.Controls.Add(this.News);
     this.mainPageView.Controls.Add(this.ConsolePage);
     this.mainPageView.Controls.Add(this.EditVersions);
     this.mainPageView.Controls.Add(this.AboutPage);
     this.mainPageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mainPageView.Location = new System.Drawing.Point(0, 0);
     this.mainPageView.Name = "mainPageView";
     //
     //
     //
     this.mainPageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.mainPageView.RootElement.AngleTransform = 0F;
     this.mainPageView.RootElement.FlipText = false;
     this.mainPageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.mainPageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.mainPageView.SelectedPage = this.News;
     this.mainPageView.Size = new System.Drawing.Size(858, 363);
     this.mainPageView.TabIndex = 2;
     this.mainPageView.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.mainPageView.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     //
     // News
     //
     this.News.Controls.Add(this.newsBrowser);
     this.News.Controls.Add(this.webPanel);
     this.News.ItemSize = new System.Drawing.SizeF(65F, 24F);
     this.News.Location = new System.Drawing.Point(5, 30);
     this.News.Name = "News";
     this.News.Size = new System.Drawing.Size(848, 328);
     this.News.Text = "НОВОСТИ";
     //
     // newsBrowser
     //
     this.newsBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
     this.newsBrowser.Location = new System.Drawing.Point(0, 0);
     this.newsBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.newsBrowser.Name = "newsBrowser";
     this.newsBrowser.ScriptErrorsSuppressed = true;
     this.newsBrowser.Size = new System.Drawing.Size(848, 308);
     this.newsBrowser.TabIndex = 0;
     this.newsBrowser.Url = new System.Uri("http://mcupdate.tumblr.com/", System.UriKind.Absolute);
     this.newsBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.newsBrowser_Navigated);
     this.newsBrowser.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.newsBrowser_Navigating);
     //
     // webPanel
     //
     this.webPanel.Controls.Add(this.BackWebButton);
     this.webPanel.Controls.Add(this.ForwardWebButton);
     this.webPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.webPanel.Location = new System.Drawing.Point(0, 308);
     this.webPanel.Name = "webPanel";
     //
     //
     //
     this.webPanel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.webPanel.RootElement.AngleTransform = 0F;
     this.webPanel.RootElement.FlipText = false;
     this.webPanel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.webPanel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.webPanel.Size = new System.Drawing.Size(848, 20);
     this.webPanel.TabIndex = 1;
     this.webPanel.ThemeName = "VisualStudio2012Dark";
     this.webPanel.Visible = false;
     //
     // BackWebButton
     //
     this.BackWebButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.BackWebButton.Location = new System.Drawing.Point(720, 0);
     this.BackWebButton.Name = "BackWebButton";
     //
     //
     //
     this.BackWebButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.BackWebButton.RootElement.AngleTransform = 0F;
     this.BackWebButton.RootElement.FlipText = false;
     this.BackWebButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.BackWebButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.BackWebButton.Size = new System.Drawing.Size(64, 17);
     this.BackWebButton.TabIndex = 1;
     this.BackWebButton.Text = "<";
     this.BackWebButton.ThemeName = "VisualStudio2012Dark";
     this.BackWebButton.Click += new System.EventHandler(this.backWebButton_Click);
     //
     // ForwardWebButton
     //
     this.ForwardWebButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.ForwardWebButton.Location = new System.Drawing.Point(784, 0);
     this.ForwardWebButton.Name = "ForwardWebButton";
     //
     //
     //
     this.ForwardWebButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.ForwardWebButton.RootElement.AngleTransform = 0F;
     this.ForwardWebButton.RootElement.FlipText = false;
     this.ForwardWebButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.ForwardWebButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.ForwardWebButton.Size = new System.Drawing.Size(64, 17);
     this.ForwardWebButton.TabIndex = 0;
     this.ForwardWebButton.Text = ">";
     this.ForwardWebButton.ThemeName = "VisualStudio2012Dark";
     this.ForwardWebButton.Click += new System.EventHandler(this.forwardWebButton_Click);
     //
     // ConsolePage
     //
     this.ConsolePage.Controls.Add(this.logBox);
     this.ConsolePage.Controls.Add(this.ConsoleOptionsPanel);
     this.ConsolePage.ItemSize = new System.Drawing.SizeF(65F, 24F);
     this.ConsolePage.Location = new System.Drawing.Point(5, 30);
     this.ConsolePage.Name = "ConsolePage";
     this.ConsolePage.Size = new System.Drawing.Size(848, 328);
     this.ConsolePage.Text = "КОНСОЛЬ";
     //
     // logBox
     //
     this.logBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.logBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.logBox.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.logBox.Location = new System.Drawing.Point(0, 0);
     this.logBox.Name = "logBox";
     this.logBox.ReadOnly = true;
     this.logBox.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.logBox.Size = new System.Drawing.Size(848, 299);
     this.logBox.TabIndex = 1;
     this.logBox.Text = "";
     this.logBox.TextChanged += new System.EventHandler(this.logBox_TextChanged);
     //
     // ConsoleOptionsPanel
     //
     this.ConsoleOptionsPanel.Controls.Add(this.SetToClipboardButton);
     this.ConsoleOptionsPanel.Controls.Add(this.DebugModeButton);
     this.ConsoleOptionsPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ConsoleOptionsPanel.Location = new System.Drawing.Point(0, 299);
     this.ConsoleOptionsPanel.Name = "ConsoleOptionsPanel";
     this.ConsoleOptionsPanel.Size = new System.Drawing.Size(848, 29);
     this.ConsoleOptionsPanel.TabIndex = 2;
     this.ConsoleOptionsPanel.ThemeName = "VisualStudio2012Dark";
     //
     // SetToClipboardButton
     //
     this.SetToClipboardButton.Location = new System.Drawing.Point(7, 3);
     this.SetToClipboardButton.Name = "SetToClipboardButton";
     this.SetToClipboardButton.Size = new System.Drawing.Size(131, 23);
     this.SetToClipboardButton.TabIndex = 1;
     this.SetToClipboardButton.Text = "Скопировать в буфер";
     this.SetToClipboardButton.ThemeName = "VisualStudio2012Dark";
     this.SetToClipboardButton.Click += new System.EventHandler(this.SetToClipboardButton_Click);
     //
     // DebugModeButton
     //
     this.DebugModeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.DebugModeButton.Location = new System.Drawing.Point(710, 3);
     this.DebugModeButton.Name = "DebugModeButton";
     this.DebugModeButton.Size = new System.Drawing.Size(131, 23);
     this.DebugModeButton.TabIndex = 0;
     this.DebugModeButton.Text = "Debug Mode";
     this.DebugModeButton.ThemeName = "VisualStudio2012Dark";
     //
     // EditVersions
     //
     this.EditVersions.Controls.Add(this.versionsListView);
     this.EditVersions.ItemSize = new System.Drawing.SizeF(145F, 24F);
     this.EditVersions.Location = new System.Drawing.Point(5, 30);
     this.EditVersions.Name = "EditVersions";
     this.EditVersions.Size = new System.Drawing.Size(848, 328);
     this.EditVersions.Text = "УПРАВЛЕНИЕ ВЕРСИЯМИ";
     //
     // versionsListView
     //
     this.versionsListView.AllowColumnReorder = false;
     this.versionsListView.AllowColumnResize = false;
     this.versionsListView.AllowEdit = false;
     this.versionsListView.AllowRemove = false;
     this.versionsListView.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.versionsListView.CheckOnClickMode = Telerik.WinControls.UI.CheckOnClickMode.FirstClick;
     listViewDetailColumn1.HeaderText = "Версия";
     listViewDetailColumn2.HeaderText = "Тип";
     listViewDetailColumn2.Width = 100F;
     listViewDetailColumn3.HeaderText = "Зависимость";
     listViewDetailColumn3.Width = 100F;
     this.versionsListView.Columns.AddRange(new Telerik.WinControls.UI.ListViewDetailColumn[] {
     listViewDetailColumn1,
     listViewDetailColumn2,
     listViewDetailColumn3});
     this.versionsListView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.versionsListView.EnableColumnSort = true;
     this.versionsListView.EnableFiltering = true;
     this.versionsListView.EnableSorting = true;
     this.versionsListView.HorizontalScrollState = Telerik.WinControls.UI.ScrollState.AlwaysHide;
     this.versionsListView.ItemSpacing = -1;
     this.versionsListView.Location = new System.Drawing.Point(0, 0);
     this.versionsListView.Name = "versionsListView";
     //
     //
     //
     this.versionsListView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.versionsListView.RootElement.AngleTransform = 0F;
     this.versionsListView.RootElement.FlipText = false;
     this.versionsListView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.versionsListView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.versionsListView.SelectLastAddedItem = false;
     this.versionsListView.ShowItemToolTips = false;
     this.versionsListView.Size = new System.Drawing.Size(848, 328);
     this.versionsListView.TabIndex = 0;
     this.versionsListView.ThemeName = "VisualStudio2012Dark";
     this.versionsListView.VerticalScrollState = Telerik.WinControls.UI.ScrollState.AlwaysShow;
     this.versionsListView.ViewType = Telerik.WinControls.UI.ListViewType.DetailsView;
     this.versionsListView.ItemMouseClick += new Telerik.WinControls.UI.ListViewItemEventHandler(this.versionsListView_ItemMouseClick);
     //
     // AboutPage
     //
     this.AboutPage.Controls.Add(this.AboutPageView);
     this.AboutPage.ItemSize = new System.Drawing.SizeF(79F, 24F);
     this.AboutPage.Location = new System.Drawing.Point(5, 30);
     this.AboutPage.Name = "AboutPage";
     this.AboutPage.Size = new System.Drawing.Size(848, 328);
     this.AboutPage.Text = "О ЛАУНЧЕРЕ";
     //
     // AboutPageView
     //
     this.AboutPageView.Controls.Add(this.AboutPageViewPage);
     this.AboutPageView.Controls.Add(this.LicensesPage);
     this.AboutPageView.Controls.Add(this.SettingsPage);
     this.AboutPageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.AboutPageView.Location = new System.Drawing.Point(0, 0);
     this.AboutPageView.Name = "AboutPageView";
     //
     //
     //
     this.AboutPageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AboutPageView.RootElement.AngleTransform = 0F;
     this.AboutPageView.RootElement.FlipText = false;
     this.AboutPageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AboutPageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AboutPageView.SelectedPage = this.AboutPageViewPage;
     this.AboutPageView.Size = new System.Drawing.Size(848, 328);
     this.AboutPageView.TabIndex = 9;
     this.AboutPageView.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).ItemAlignment = Telerik.WinControls.UI.StripViewItemAlignment.Center;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).ItemFitMode = Telerik.WinControls.UI.StripViewItemFitMode.Fill;
     ((Telerik.WinControls.UI.RadPageViewStripElement)(this.AboutPageView.GetChildAt(0))).StripAlignment = Telerik.WinControls.UI.StripViewAlignment.Bottom;
     //
     // AboutPageViewPage
     //
     this.AboutPageViewPage.Controls.Add(this.radScrollablePanel2);
     this.AboutPageViewPage.Location = new System.Drawing.Point(5, 5);
     this.AboutPageViewPage.Name = "AboutPageViewPage";
     this.AboutPageViewPage.Size = new System.Drawing.Size(838, 293);
     this.AboutPageViewPage.Text = "О ЛАУНЧЕРЕ";
     //
     // radScrollablePanel2
     //
     this.radScrollablePanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radScrollablePanel2.Location = new System.Drawing.Point(0, 0);
     this.radScrollablePanel2.Name = "radScrollablePanel2";
     //
     // radScrollablePanel2.PanelContainer
     //
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.AboutVersion);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label6);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.MCofflineDescLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.radLabel1);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.PartnersLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.CopyrightInfoLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label3);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.DevInfoLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.label5);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.GratitudesDescLabel);
     this.radScrollablePanel2.PanelContainer.Controls.Add(this.GratitudesLabel);
     this.radScrollablePanel2.PanelContainer.Size = new System.Drawing.Size(836, 291);
     //
     //
     //
     this.radScrollablePanel2.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radScrollablePanel2.RootElement.AngleTransform = 0F;
     this.radScrollablePanel2.RootElement.FlipText = false;
     this.radScrollablePanel2.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radScrollablePanel2.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radScrollablePanel2.Size = new System.Drawing.Size(838, 293);
     this.radScrollablePanel2.TabIndex = 9;
     this.radScrollablePanel2.Text = "radScrollablePanel2";
     this.radScrollablePanel2.ThemeName = "VisualStudio2012Dark";
     //
     // AboutVersion
     //
     this.AboutVersion.BackColor = System.Drawing.Color.Transparent;
     this.AboutVersion.ForeColor = System.Drawing.Color.DimGray;
     this.AboutVersion.Location = new System.Drawing.Point(122, 34);
     this.AboutVersion.MinimumSize = new System.Drawing.Size(58, 18);
     this.AboutVersion.Name = "AboutVersion";
     //
     //
     //
     this.AboutVersion.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AboutVersion.RootElement.AngleTransform = 0F;
     this.AboutVersion.RootElement.FlipText = false;
     this.AboutVersion.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AboutVersion.RootElement.MinSize = new System.Drawing.Size(58, 18);
     this.AboutVersion.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AboutVersion.Size = new System.Drawing.Size(58, 18);
     this.AboutVersion.TabIndex = 1;
     this.AboutVersion.Text = "0.0.0.000";
     this.AboutVersion.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     this.AboutVersion.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.AboutVersion.GetChildAt(0))).TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     ((Telerik.WinControls.UI.RadLabelElement)(this.AboutVersion.GetChildAt(0))).Text = "0.0.0.000";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.AboutVersion.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label6.ForeColor = System.Drawing.Color.Gray;
     this.label6.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label6.Location = new System.Drawing.Point(14, 201);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(127, 13);
     this.label6.TabIndex = 11;
     this.label6.Text = "http://vk.com/mcoffline";
     this.label6.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // MCofflineDescLabel
     //
     this.MCofflineDescLabel.AutoSize = true;
     this.MCofflineDescLabel.BackColor = System.Drawing.Color.Transparent;
     this.MCofflineDescLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.MCofflineDescLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.MCofflineDescLabel.Location = new System.Drawing.Point(14, 184);
     this.MCofflineDescLabel.Name = "MCofflineDescLabel";
     this.MCofflineDescLabel.Size = new System.Drawing.Size(402, 17);
     this.MCofflineDescLabel.TabIndex = 9;
     this.MCofflineDescLabel.Text = "MCoffline - лучшая программа для серверных администраторов!";
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.radLabel1.ForeColor = System.Drawing.Color.Transparent;
     this.radLabel1.Location = new System.Drawing.Point(3, 3);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radLabel1.RootElement.AngleTransform = 0F;
     this.radLabel1.RootElement.FlipText = false;
     this.radLabel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radLabel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radLabel1.Size = new System.Drawing.Size(175, 41);
     this.radLabel1.TabIndex = 0;
     this.radLabel1.Text = "FreeLauncher";
     this.radLabel1.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.radLabel1.GetChildAt(0))).Text = "FreeLauncher";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radLabel1.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // PartnersLabel
     //
     this.PartnersLabel.BackColor = System.Drawing.Color.Transparent;
     this.PartnersLabel.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.PartnersLabel.ForeColor = System.Drawing.Color.Transparent;
     this.PartnersLabel.Location = new System.Drawing.Point(3, 147);
     this.PartnersLabel.Name = "PartnersLabel";
     //
     //
     //
     this.PartnersLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.PartnersLabel.RootElement.AngleTransform = 0F;
     this.PartnersLabel.RootElement.FlipText = false;
     this.PartnersLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.PartnersLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.PartnersLabel.Size = new System.Drawing.Size(140, 41);
     this.PartnersLabel.TabIndex = 10;
     this.PartnersLabel.Text = "Партнёры";
     this.PartnersLabel.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.PartnersLabel.GetChildAt(0))).Text = "Партнёры";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.PartnersLabel.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // CopyrightInfoLabel
     //
     this.CopyrightInfoLabel.AutoSize = true;
     this.CopyrightInfoLabel.BackColor = System.Drawing.Color.Transparent;
     this.CopyrightInfoLabel.Font = new System.Drawing.Font("Segoe UI Semibold", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CopyrightInfoLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.CopyrightInfoLabel.Location = new System.Drawing.Point(7, 248);
     this.CopyrightInfoLabel.Name = "CopyrightInfoLabel";
     this.CopyrightInfoLabel.Size = new System.Drawing.Size(464, 34);
     this.CopyrightInfoLabel.TabIndex = 4;
     this.CopyrightInfoLabel.Text = "\"Minecraft\" является торговой маркой Mojang AB. Все права защищены.\r\nMojang AB яв" +
     "ляется дочерней студией Microsoft Studios.";
     this.CopyrightInfoLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label3.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.label3.ForeColor = System.Drawing.Color.Gray;
     this.label3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label3.Location = new System.Drawing.Point(14, 72);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(163, 15);
     this.label3.TabIndex = 5;
     this.label3.Text = "https://github.com/dedepete";
     this.label3.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // DevInfoLabel
     //
     this.DevInfoLabel.AutoSize = true;
     this.DevInfoLabel.BackColor = System.Drawing.Color.Transparent;
     this.DevInfoLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.DevInfoLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.DevInfoLabel.Location = new System.Drawing.Point(14, 55);
     this.DevInfoLabel.Name = "DevInfoLabel";
     this.DevInfoLabel.Size = new System.Drawing.Size(146, 17);
     this.DevInfoLabel.TabIndex = 3;
     this.DevInfoLabel.Text = "Разработано dedepete";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Cursor = System.Windows.Forms.Cursors.Hand;
     this.label5.ForeColor = System.Drawing.Color.Gray;
     this.label5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label5.Location = new System.Drawing.Point(14, 135);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(117, 13);
     this.label5.TabIndex = 8;
     this.label5.Text = "http://ru-minecraft.ru";
     this.label5.Click += new System.EventHandler(this.urlLabel_Click);
     //
     // GratitudesDescLabel
     //
     this.GratitudesDescLabel.AutoSize = true;
     this.GratitudesDescLabel.BackColor = System.Drawing.Color.Transparent;
     this.GratitudesDescLabel.Font = new System.Drawing.Font("Segoe UI", 9.75F);
     this.GratitudesDescLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.GratitudesDescLabel.Location = new System.Drawing.Point(14, 118);
     this.GratitudesDescLabel.Name = "GratitudesDescLabel";
     this.GratitudesDescLabel.Size = new System.Drawing.Size(449, 17);
     this.GratitudesDescLabel.TabIndex = 6;
     this.GratitudesDescLabel.Text = "Большое спасибо администрации портала ru-minecraft.ru за хост файлов";
     //
     // GratitudesLabel
     //
     this.GratitudesLabel.BackColor = System.Drawing.Color.Transparent;
     this.GratitudesLabel.Font = new System.Drawing.Font("Segoe UI", 20.25F);
     this.GratitudesLabel.ForeColor = System.Drawing.Color.Transparent;
     this.GratitudesLabel.Location = new System.Drawing.Point(3, 81);
     this.GratitudesLabel.Name = "GratitudesLabel";
     //
     //
     //
     this.GratitudesLabel.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.GratitudesLabel.RootElement.AngleTransform = 0F;
     this.GratitudesLabel.RootElement.FlipText = false;
     this.GratitudesLabel.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.GratitudesLabel.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.GratitudesLabel.Size = new System.Drawing.Size(202, 41);
     this.GratitudesLabel.TabIndex = 7;
     this.GratitudesLabel.Text = "Благодарности";
     this.GratitudesLabel.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.GratitudesLabel.GetChildAt(0))).Text = "Благодарности";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.GratitudesLabel.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // LicensesPage
     //
     this.LicensesPage.Controls.Add(this.licensePageView);
     this.LicensesPage.Location = new System.Drawing.Point(5, 5);
     this.LicensesPage.Name = "LicensesPage";
     this.LicensesPage.Size = new System.Drawing.Size(838, 293);
     this.LicensesPage.Text = "ЛИЦЕНЗИИ";
     //
     // licensePageView
     //
     this.licensePageView.Controls.Add(this.FreeLauncherLicense);
     this.licensePageView.Controls.Add(this.dotMCLauncherLicense);
     this.licensePageView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.licensePageView.Location = new System.Drawing.Point(0, 0);
     this.licensePageView.Name = "licensePageView";
     //
     //
     //
     this.licensePageView.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.licensePageView.RootElement.AngleTransform = 0F;
     this.licensePageView.RootElement.FlipText = false;
     this.licensePageView.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.licensePageView.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.licensePageView.SelectedPage = this.FreeLauncherLicense;
     this.licensePageView.Size = new System.Drawing.Size(838, 293);
     this.licensePageView.TabIndex = 0;
     this.licensePageView.Text = "radPageView3";
     this.licensePageView.ThemeName = "VisualStudio2012Dark";
     this.licensePageView.ViewMode = Telerik.WinControls.UI.PageViewMode.Backstage;
     ((Telerik.WinControls.UI.StripViewItemContainer)(this.licensePageView.GetChildAt(0).GetChildAt(0))).MinSize = new System.Drawing.Size(150, 0);
     //
     // FreeLauncherLicense
     //
     this.FreeLauncherLicense.AutoScroll = true;
     this.FreeLauncherLicense.Controls.Add(this.FreeLauncherLicenseText);
     this.FreeLauncherLicense.Location = new System.Drawing.Point(155, 4);
     this.FreeLauncherLicense.Name = "FreeLauncherLicense";
     this.FreeLauncherLicense.Size = new System.Drawing.Size(679, 285);
     this.FreeLauncherLicense.Text = "FreeLauncher";
     //
     // FreeLauncherLicenseText
     //
     this.FreeLauncherLicenseText.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FreeLauncherLicenseText.Location = new System.Drawing.Point(0, 0);
     this.FreeLauncherLicenseText.Name = "FreeLauncherLicenseText";
     this.FreeLauncherLicenseText.Size = new System.Drawing.Size(679, 285);
     this.FreeLauncherLicenseText.TabIndex = 2;
     this.FreeLauncherLicenseText.Text = resources.GetString("FreeLauncherLicenseText.Text");
     this.FreeLauncherLicenseText.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.FreeLauncherLicenseText.GetChildAt(0))).Text = resources.GetString("resource.Text");
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.FreeLauncherLicenseText.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // dotMCLauncherLicense
     //
     this.dotMCLauncherLicense.AutoScroll = true;
     this.dotMCLauncherLicense.Controls.Add(this.dotMCLauncherLicenseText);
     this.dotMCLauncherLicense.Location = new System.Drawing.Point(155, 4);
     this.dotMCLauncherLicense.Name = "dotMCLauncherLicense";
     this.dotMCLauncherLicense.Size = new System.Drawing.Size(679, 285);
     this.dotMCLauncherLicense.Text = "dotMCLauncher";
     //
     // dotMCLauncherLicenseText
     //
     this.dotMCLauncherLicenseText.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dotMCLauncherLicenseText.Location = new System.Drawing.Point(0, 0);
     this.dotMCLauncherLicenseText.Name = "dotMCLauncherLicenseText";
     this.dotMCLauncherLicenseText.Size = new System.Drawing.Size(679, 285);
     this.dotMCLauncherLicenseText.TabIndex = 1;
     this.dotMCLauncherLicenseText.Text = resources.GetString("dotMCLauncherLicenseText.Text");
     this.dotMCLauncherLicenseText.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.dotMCLauncherLicenseText.GetChildAt(0))).Text = resources.GetString("resource.Text1");
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.dotMCLauncherLicenseText.GetChildAt(0).GetChildAt(0))).BackColor = System.Drawing.Color.Transparent;
     //
     // SettingsPage
     //
     this.SettingsPage.Controls.Add(this.radScrollablePanel1);
     this.SettingsPage.Location = new System.Drawing.Point(5, 5);
     this.SettingsPage.Name = "SettingsPage";
     this.SettingsPage.Size = new System.Drawing.Size(838, 293);
     this.SettingsPage.Text = "НАСТРОЙКИ";
     //
     // radScrollablePanel1
     //
     this.radScrollablePanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.radScrollablePanel1.Location = new System.Drawing.Point(0, 0);
     this.radScrollablePanel1.Name = "radScrollablePanel1";
     //
     // radScrollablePanel1.PanelContainer
     //
     this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox2);
     this.radScrollablePanel1.PanelContainer.Controls.Add(this.radGroupBox1);
     this.radScrollablePanel1.PanelContainer.Size = new System.Drawing.Size(836, 291);
     //
     //
     //
     this.radScrollablePanel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radScrollablePanel1.RootElement.AngleTransform = 0F;
     this.radScrollablePanel1.RootElement.FlipText = false;
     this.radScrollablePanel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radScrollablePanel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radScrollablePanel1.Size = new System.Drawing.Size(838, 293);
     this.radScrollablePanel1.TabIndex = 1;
     this.radScrollablePanel1.Text = "radScrollablePanel1";
     this.radScrollablePanel1.ThemeName = "VisualStudio2012Dark";
     //
     // radGroupBox2
     //
     this.radGroupBox2.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox2.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox2.Controls.Add(this.CloseGameOutput);
     this.radGroupBox2.Controls.Add(this.UseGamePrefix);
     this.radGroupBox2.Controls.Add(this.EnableMinecraftLogging);
     this.radGroupBox2.HeaderText = "Логирование";
     this.radGroupBox2.Location = new System.Drawing.Point(402, 18);
     this.radGroupBox2.Name = "radGroupBox2";
     //
     //
     //
     this.radGroupBox2.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radGroupBox2.RootElement.AngleTransform = 0F;
     this.radGroupBox2.RootElement.FlipText = false;
     this.radGroupBox2.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radGroupBox2.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroupBox2.Size = new System.Drawing.Size(357, 121);
     this.radGroupBox2.TabIndex = 1;
     this.radGroupBox2.Text = "Логирование";
     this.radGroupBox2.ThemeName = "VisualStudio2012Dark";
     //
     // CloseGameOutput
     //
     this.CloseGameOutput.Location = new System.Drawing.Point(5, 69);
     this.CloseGameOutput.Name = "CloseGameOutput";
     //
     //
     //
     this.CloseGameOutput.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.CloseGameOutput.RootElement.AngleTransform = 0F;
     this.CloseGameOutput.RootElement.FlipText = false;
     this.CloseGameOutput.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.CloseGameOutput.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.CloseGameOutput.Size = new System.Drawing.Size(327, 18);
     this.CloseGameOutput.TabIndex = 2;
     this.CloseGameOutput.Text = "Закрывать вкладку, если завершение прошло без ошибок";
     this.CloseGameOutput.ThemeName = "VisualStudio2012Dark";
     //
     // UseGamePrefix
     //
     this.UseGamePrefix.CheckState = System.Windows.Forms.CheckState.Checked;
     this.UseGamePrefix.Location = new System.Drawing.Point(5, 45);
     this.UseGamePrefix.Name = "UseGamePrefix";
     //
     //
     //
     this.UseGamePrefix.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.UseGamePrefix.RootElement.AngleTransform = 0F;
     this.UseGamePrefix.RootElement.FlipText = false;
     this.UseGamePrefix.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.UseGamePrefix.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.UseGamePrefix.Size = new System.Drawing.Size(288, 18);
     this.UseGamePrefix.TabIndex = 1;
     this.UseGamePrefix.Text = "Использовать префикс [GAME] для логов Minecraft";
     this.UseGamePrefix.ThemeName = "VisualStudio2012Dark";
     this.UseGamePrefix.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // EnableMinecraftLogging
     //
     this.EnableMinecraftLogging.CheckState = System.Windows.Forms.CheckState.Checked;
     this.EnableMinecraftLogging.Location = new System.Drawing.Point(5, 21);
     this.EnableMinecraftLogging.Name = "EnableMinecraftLogging";
     //
     //
     //
     this.EnableMinecraftLogging.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EnableMinecraftLogging.RootElement.AngleTransform = 0F;
     this.EnableMinecraftLogging.RootElement.FlipText = false;
     this.EnableMinecraftLogging.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EnableMinecraftLogging.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EnableMinecraftLogging.Size = new System.Drawing.Size(177, 18);
     this.EnableMinecraftLogging.TabIndex = 0;
     this.EnableMinecraftLogging.Text = "Выводить лог игры в консоль";
     this.EnableMinecraftLogging.ThemeName = "VisualStudio2012Dark";
     this.EnableMinecraftLogging.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // radGroupBox1
     //
     this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this.radGroupBox1.BackColor = System.Drawing.Color.Transparent;
     this.radGroupBox1.Controls.Add(this.radLabel4);
     this.radGroupBox1.Controls.Add(this.LangDropDownList);
     this.radGroupBox1.Controls.Add(this.EnableMinecraftUpdateAlerts);
     this.radGroupBox1.Controls.Add(this.radCheckBox1);
     this.radGroupBox1.HeaderText = "Основные";
     this.radGroupBox1.Location = new System.Drawing.Point(17, 18);
     this.radGroupBox1.Name = "radGroupBox1";
     //
     //
     //
     this.radGroupBox1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radGroupBox1.RootElement.AngleTransform = 0F;
     this.radGroupBox1.RootElement.FlipText = false;
     this.radGroupBox1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radGroupBox1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radGroupBox1.Size = new System.Drawing.Size(357, 121);
     this.radGroupBox1.TabIndex = 0;
     this.radGroupBox1.Text = "Основные";
     this.radGroupBox1.ThemeName = "VisualStudio2012Dark";
     //
     // radLabel4
     //
     this.radLabel4.Location = new System.Drawing.Point(5, 69);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radLabel4.RootElement.AngleTransform = 0F;
     this.radLabel4.RootElement.FlipText = false;
     this.radLabel4.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radLabel4.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radLabel4.Size = new System.Drawing.Size(87, 18);
     this.radLabel4.TabIndex = 5;
     this.radLabel4.Text = "Язык/Language:";
     this.radLabel4.ThemeName = "VisualStudio2012Dark";
     ((Telerik.WinControls.UI.RadLabelElement)(this.radLabel4.GetChildAt(0))).Text = "Язык/Language:";
     ((Telerik.WinControls.Primitives.FillPrimitive)(this.radLabel4.GetChildAt(0).GetChildAt(0))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
     //
     // LangDropDownList
     //
     this.LangDropDownList.AutoCompleteDisplayMember = null;
     this.LangDropDownList.AutoCompleteValueMember = null;
     this.LangDropDownList.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     radListDataItem1.Tag = "ru-RU";
     radListDataItem1.Text = "Русский (ru-default)";
     this.LangDropDownList.Items.Add(radListDataItem1);
     this.LangDropDownList.Location = new System.Drawing.Point(150, 69);
     this.LangDropDownList.Name = "LangDropDownList";
     //
     //
     //
     this.LangDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.LangDropDownList.RootElement.AngleTransform = 0F;
     this.LangDropDownList.RootElement.FlipText = false;
     this.LangDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.LangDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.LangDropDownList.Size = new System.Drawing.Size(202, 24);
     this.LangDropDownList.TabIndex = 3;
     this.LangDropDownList.Text = "Русский (ru-RU)";
     this.LangDropDownList.ThemeName = "VisualStudio2012Dark";
     this.LangDropDownList.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.LangDropDownList_SelectedIndexChanged);
     //
     // EnableMinecraftUpdateAlerts
     //
     this.EnableMinecraftUpdateAlerts.CheckState = System.Windows.Forms.CheckState.Checked;
     this.EnableMinecraftUpdateAlerts.Enabled = false;
     this.EnableMinecraftUpdateAlerts.Location = new System.Drawing.Point(5, 45);
     this.EnableMinecraftUpdateAlerts.Name = "EnableMinecraftUpdateAlerts";
     //
     //
     //
     this.EnableMinecraftUpdateAlerts.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EnableMinecraftUpdateAlerts.RootElement.AngleTransform = 0F;
     this.EnableMinecraftUpdateAlerts.RootElement.FlipText = false;
     this.EnableMinecraftUpdateAlerts.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EnableMinecraftUpdateAlerts.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EnableMinecraftUpdateAlerts.Size = new System.Drawing.Size(340, 18);
     this.EnableMinecraftUpdateAlerts.TabIndex = 2;
     this.EnableMinecraftUpdateAlerts.Text = "Показывать уведомления о наличии новых версий Minecraft";
     this.EnableMinecraftUpdateAlerts.ThemeName = "VisualStudio2012Dark";
     this.EnableMinecraftUpdateAlerts.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;
     //
     // radCheckBox1
     //
     this.radCheckBox1.Enabled = false;
     this.radCheckBox1.Location = new System.Drawing.Point(5, 21);
     this.radCheckBox1.Name = "radCheckBox1";
     //
     //
     //
     this.radCheckBox1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radCheckBox1.RootElement.AngleTransform = 0F;
     this.radCheckBox1.RootElement.FlipText = false;
     this.radCheckBox1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radCheckBox1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radCheckBox1.Size = new System.Drawing.Size(257, 18);
     this.radCheckBox1.TabIndex = 0;
     this.radCheckBox1.Text = "Проверять наличие обновлений программы";
     this.radCheckBox1.ThemeName = "VisualStudio2012Dark";
     //
     // StatusBar
     //
     this.StatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.StatusBar.Location = new System.Drawing.Point(0, 363);
     this.StatusBar.Name = "StatusBar";
     this.StatusBar.Size = new System.Drawing.Size(858, 24);
     this.StatusBar.TabIndex = 4;
     this.StatusBar.Text = "StatusBar";
     this.StatusBar.ThemeName = "VisualStudio2012Dark";
     this.StatusBar.Visible = false;
     //
     // radPanel1
     //
     this.radPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radPanel1.BackgroundImage")));
     this.radPanel1.Controls.Add(this.DeleteProfileButton);
     this.radPanel1.Controls.Add(this.ManageUsersButton);
     this.radPanel1.Controls.Add(this.NicknameDropDownList);
     this.radPanel1.Controls.Add(this.SelectedVersion);
     this.radPanel1.Controls.Add(this.LogoBox);
     this.radPanel1.Controls.Add(this.LaunchButton);
     this.radPanel1.Controls.Add(this.profilesDropDownBox);
     this.radPanel1.Controls.Add(this.EditProfile);
     this.radPanel1.Controls.Add(this.AddProfile);
     this.radPanel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.radPanel1.Location = new System.Drawing.Point(0, 387);
     this.radPanel1.Name = "radPanel1";
     //
     //
     //
     this.radPanel1.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.radPanel1.RootElement.AngleTransform = 0F;
     this.radPanel1.RootElement.FlipText = false;
     this.radPanel1.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.radPanel1.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.radPanel1.Size = new System.Drawing.Size(858, 59);
     this.radPanel1.TabIndex = 3;
     this.radPanel1.ThemeName = "VisualStudio2012Dark";
     //
     // DeleteProfileButton
     //
     this.DeleteProfileButton.Image = ((System.Drawing.Image)(resources.GetObject("DeleteProfileButton.Image")));
     this.DeleteProfileButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.DeleteProfileButton.Location = new System.Drawing.Point(6, 6);
     this.DeleteProfileButton.Name = "DeleteProfileButton";
     this.DeleteProfileButton.Size = new System.Drawing.Size(32, 24);
     this.DeleteProfileButton.TabIndex = 8;
     this.DeleteProfileButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.DeleteProfileButton.ThemeName = "VisualStudio2012Dark";
     this.DeleteProfileButton.Click += new System.EventHandler(this.DeleteProfileButton_Click);
     //
     // ManageUsersButton
     //
     this.ManageUsersButton.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.ManageUsersButton.Image = global::FreeLauncher.Properties.Resources.edit;
     this.ManageUsersButton.ImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.ManageUsersButton.Location = new System.Drawing.Point(513, 6);
     this.ManageUsersButton.Name = "ManageUsersButton";
     //
     //
     //
     this.ManageUsersButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.ManageUsersButton.RootElement.AngleTransform = 0F;
     this.ManageUsersButton.RootElement.FlipText = false;
     this.ManageUsersButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.ManageUsersButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.ManageUsersButton.Size = new System.Drawing.Size(32, 24);
     this.ManageUsersButton.TabIndex = 7;
     this.ManageUsersButton.ThemeName = "VisualStudio2012Dark";
     this.ManageUsersButton.Click += new System.EventHandler(this.ManageUsersButton_Click);
     //
     // NicknameDropDownList
     //
     this.NicknameDropDownList.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.NicknameDropDownList.AutoCompleteDisplayMember = null;
     this.NicknameDropDownList.AutoCompleteValueMember = null;
     this.NicknameDropDownList.Location = new System.Drawing.Point(314, 6);
     this.NicknameDropDownList.Name = "NicknameDropDownList";
     this.NicknameDropDownList.NullText = "Ник";
     //
     //
     //
     this.NicknameDropDownList.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.NicknameDropDownList.RootElement.AngleTransform = 0F;
     this.NicknameDropDownList.RootElement.FlipText = false;
     this.NicknameDropDownList.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.NicknameDropDownList.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.NicknameDropDownList.Size = new System.Drawing.Size(196, 24);
     this.NicknameDropDownList.TabIndex = 3;
     this.NicknameDropDownList.ThemeName = "VisualStudio2012Dark";
     this.NicknameDropDownList.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.NicknameDropDownList_SelectedIndexChanged);
     //
     // SelectedVersion
     //
     this.SelectedVersion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.SelectedVersion.AutoSize = true;
     this.SelectedVersion.BackColor = System.Drawing.Color.Transparent;
     this.SelectedVersion.ForeColor = System.Drawing.Color.White;
     this.SelectedVersion.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.SelectedVersion.Location = new System.Drawing.Point(631, 42);
     this.SelectedVersion.MinimumSize = new System.Drawing.Size(220, 13);
     this.SelectedVersion.Name = "SelectedVersion";
     this.SelectedVersion.Size = new System.Drawing.Size(220, 13);
     this.SelectedVersion.TabIndex = 6;
     this.SelectedVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // LogoBox
     //
     this.LogoBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LogoBox.BackColor = System.Drawing.Color.Transparent;
     this.LogoBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.LogoBox.Image = ((System.Drawing.Image)(resources.GetObject("LogoBox.Image")));
     this.LogoBox.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.LogoBox.Location = new System.Drawing.Point(651, -11);
     this.LogoBox.Name = "LogoBox";
     this.LogoBox.Size = new System.Drawing.Size(181, 84);
     this.LogoBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.LogoBox.TabIndex = 5;
     this.LogoBox.TabStop = false;
     //
     // LaunchButton
     //
     this.LaunchButton.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.LaunchButton.Location = new System.Drawing.Point(314, 33);
     this.LaunchButton.Name = "LaunchButton";
     //
     //
     //
     this.LaunchButton.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.LaunchButton.RootElement.AngleTransform = 0F;
     this.LaunchButton.RootElement.FlipText = false;
     this.LaunchButton.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.LaunchButton.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.LaunchButton.Size = new System.Drawing.Size(231, 22);
     this.LaunchButton.TabIndex = 4;
     this.LaunchButton.Text = "Запуск игры";
     this.LaunchButton.ThemeName = "VisualStudio2012Dark";
     this.LaunchButton.Click += new System.EventHandler(this.LaunchButton_Click);
     //
     // profilesDropDownBox
     //
     this.profilesDropDownBox.AutoCompleteDisplayMember = null;
     this.profilesDropDownBox.AutoCompleteValueMember = null;
     this.profilesDropDownBox.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
     this.profilesDropDownBox.Location = new System.Drawing.Point(41, 6);
     this.profilesDropDownBox.Name = "profilesDropDownBox";
     //
     //
     //
     this.profilesDropDownBox.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.profilesDropDownBox.RootElement.AngleTransform = 0F;
     this.profilesDropDownBox.RootElement.FlipText = false;
     this.profilesDropDownBox.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.profilesDropDownBox.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.profilesDropDownBox.Size = new System.Drawing.Size(191, 24);
     this.profilesDropDownBox.TabIndex = 2;
     this.profilesDropDownBox.ThemeName = "VisualStudio2012Dark";
     this.profilesDropDownBox.SelectedIndexChanged += new Telerik.WinControls.UI.Data.PositionChangedEventHandler(this.profilesDropDownBox_SelectedIndexChanged);
     //
     // EditProfile
     //
     this.EditProfile.Location = new System.Drawing.Point(122, 33);
     this.EditProfile.Name = "EditProfile";
     //
     //
     //
     this.EditProfile.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.EditProfile.RootElement.AngleTransform = 0F;
     this.EditProfile.RootElement.FlipText = false;
     this.EditProfile.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.EditProfile.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.EditProfile.Size = new System.Drawing.Size(110, 22);
     this.EditProfile.TabIndex = 1;
     this.EditProfile.Text = "Изменить профиль";
     this.EditProfile.TextWrap = true;
     this.EditProfile.ThemeName = "VisualStudio2012Dark";
     this.EditProfile.Click += new System.EventHandler(this.EditProfile_Click);
     //
     // AddProfile
     //
     this.AddProfile.Location = new System.Drawing.Point(6, 33);
     this.AddProfile.Name = "AddProfile";
     //
     //
     //
     this.AddProfile.RootElement.Alignment = System.Drawing.ContentAlignment.TopLeft;
     this.AddProfile.RootElement.AngleTransform = 0F;
     this.AddProfile.RootElement.FlipText = false;
     this.AddProfile.RootElement.Margin = new System.Windows.Forms.Padding(0);
     this.AddProfile.RootElement.TextOrientation = System.Windows.Forms.Orientation.Horizontal;
     this.AddProfile.Size = new System.Drawing.Size(110, 22);
     this.AddProfile.TabIndex = 0;
     this.AddProfile.Text = "Добавить профиль";
     this.AddProfile.TextWrap = true;
     this.AddProfile.ThemeName = "VisualStudio2012Dark";
     this.AddProfile.Click += new System.EventHandler(this.AddProfile_Click);
     //
     // LauncherForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(858, 446);
     this.Controls.Add(this.mainPageView);
     this.Controls.Add(this.StatusBar);
     this.Controls.Add(this.radPanel1);
     this.MinimumSize = new System.Drawing.Size(712, 446);
     this.Name = "LauncherForm";
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.Text = "FreeLauncher";
     this.ThemeName = "VisualStudio2012Dark";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LauncherForm_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.mainPageView)).EndInit();
     this.mainPageView.ResumeLayout(false);
     this.News.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.webPanel)).EndInit();
     this.webPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.BackWebButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ForwardWebButton)).EndInit();
     this.ConsolePage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ConsoleOptionsPanel)).EndInit();
     this.ConsoleOptionsPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SetToClipboardButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DebugModeButton)).EndInit();
     this.EditVersions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.versionsListView)).EndInit();
     this.AboutPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.AboutPageView)).EndInit();
     this.AboutPageView.ResumeLayout(false);
     this.AboutPageViewPage.ResumeLayout(false);
     this.radScrollablePanel2.PanelContainer.ResumeLayout(false);
     this.radScrollablePanel2.PanelContainer.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel2)).EndInit();
     this.radScrollablePanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.AboutVersion)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PartnersLabel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GratitudesLabel)).EndInit();
     this.LicensesPage.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.licensePageView)).EndInit();
     this.licensePageView.ResumeLayout(false);
     this.FreeLauncherLicense.ResumeLayout(false);
     this.FreeLauncherLicense.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FreeLauncherLicenseText)).EndInit();
     this.dotMCLauncherLicense.ResumeLayout(false);
     this.dotMCLauncherLicense.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dotMCLauncherLicenseText)).EndInit();
     this.SettingsPage.ResumeLayout(false);
     this.radScrollablePanel1.PanelContainer.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radScrollablePanel1)).EndInit();
     this.radScrollablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit();
     this.radGroupBox2.ResumeLayout(false);
     this.radGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.CloseGameOutput)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UseGamePrefix)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftLogging)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
     this.radGroupBox1.ResumeLayout(false);
     this.radGroupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LangDropDownList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EnableMinecraftUpdateAlerts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StatusBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     this.radPanel1.ResumeLayout(false);
     this.radPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteProfileButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ManageUsersButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NicknameDropDownList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LogoBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LaunchButton)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.profilesDropDownBox)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.EditProfile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AddProfile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
 }
Пример #15
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmSupport));

            this.feedbackPictureBox = new PictureBox();
            this.radLabel2          = new RadLabel();
            this.radGroupBox1       = new RadGroupBox();
            this.lblusualtime       = new RadLabel();
            this.timeViewer         = new RadDateTimePicker();
            this.radLabel4          = new RadLabel();
            this.chkTeamViewer      = new RadCheckBox();
            this.pageContent        = new RadPageViewPage();
            this.radButton5         = new RadButton();
            this.radGroupBox2       = new RadGroupBox();
            this.lblProvided        = new RadLabel();
            this.radLabel15         = new RadLabel();
            this.radButton7         = new RadButton();
            this.chkSyslog          = new RadCheckBox();
            this.radLabel12         = new RadLabel();
            this.radLabel13         = new RadLabel();
            this.radLabel1          = new RadLabel();
            this.txtRemarks         = new RadTextBox();
            this.pageTitle          = new RadPageViewPage();
            this.radTextBox1        = new RadTextBox();
            this.lstTitles          = new RadCheckedListBox();
            this.radLabel16         = new RadLabel();
            this.radLabel17         = new RadLabel();
            this.radButton4         = new RadButton();
            this.radLabel10         = new RadLabel();
            this.radLabel11         = new RadLabel();
            this.radLabel5          = new RadLabel();
            this.txtTitle           = new RadTextBox();
            this.pageEmail          = new RadPageViewPage();
            this.radLabel14         = new RadLabel();
            this.radButton3         = new RadButton();
            this.txtEmail           = new RadTextBox();
            this.radLabel9          = new RadLabel();
            this.emailLabel         = new RadLabel();
            this.pageWelcome        = new RadPageViewPage();
            this.radButton2         = new RadButton();
            this.radLabel3          = new RadLabel();
            this.pictureBox3        = new PictureBox();
            this.radLabel8          = new RadLabel();
            this.pictureBox2        = new PictureBox();
            this.radButton1         = new RadButton();
            this.pictureBox1        = new PictureBox();
            this.radLabel7          = new RadLabel();
            this.radLabel6          = new RadLabel();
            this.radPageView1       = new RadPageView();
            ((ISupportInitialize)this.feedbackPictureBox).BeginInit();
            this.radLabel2.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.lblusualtime.BeginInit();
            this.timeViewer.BeginInit();
            this.radLabel4.BeginInit();
            this.chkTeamViewer.BeginInit();
            this.pageContent.SuspendLayout();
            this.radButton5.BeginInit();
            this.radGroupBox2.BeginInit();
            this.radGroupBox2.SuspendLayout();
            this.lblProvided.BeginInit();
            this.radLabel15.BeginInit();
            this.radButton7.BeginInit();
            this.chkSyslog.BeginInit();
            this.radLabel12.BeginInit();
            this.radLabel12.SuspendLayout();
            this.radLabel13.BeginInit();
            this.radLabel1.BeginInit();
            this.txtRemarks.BeginInit();
            this.pageTitle.SuspendLayout();
            this.radTextBox1.BeginInit();
            this.lstTitles.BeginInit();
            this.radLabel16.BeginInit();
            this.radLabel16.SuspendLayout();
            this.radLabel17.BeginInit();
            this.radButton4.BeginInit();
            this.radLabel10.BeginInit();
            this.radLabel10.SuspendLayout();
            this.radLabel11.BeginInit();
            this.radLabel5.BeginInit();
            this.txtTitle.BeginInit();
            this.pageEmail.SuspendLayout();
            this.radLabel14.BeginInit();
            this.radButton3.BeginInit();
            this.txtEmail.BeginInit();
            this.radLabel9.BeginInit();
            this.radLabel9.SuspendLayout();
            this.emailLabel.BeginInit();
            this.pageWelcome.SuspendLayout();
            this.radButton2.BeginInit();
            this.radLabel3.BeginInit();
            ((ISupportInitialize)this.pictureBox3).BeginInit();
            this.radLabel8.BeginInit();
            ((ISupportInitialize)this.pictureBox2).BeginInit();
            this.radButton1.BeginInit();
            ((ISupportInitialize)this.pictureBox1).BeginInit();
            this.radLabel7.BeginInit();
            this.radLabel6.BeginInit();
            this.radPageView1.BeginInit();
            this.radPageView1.SuspendLayout();
            this.BeginInit();
            this.SuspendLayout();
            this.feedbackPictureBox.Image    = (Image)Class123.logo;
            this.feedbackPictureBox.Location = new Point(12, 1);
            this.feedbackPictureBox.Name     = "feedbackPictureBox";
            this.feedbackPictureBox.Size     = new Size(88, 78);
            this.feedbackPictureBox.SizeMode = PictureBoxSizeMode.AutoSize;
            this.feedbackPictureBox.TabIndex = 11;
            this.feedbackPictureBox.TabStop  = false;
            this.radLabel2.Font              = new Font("Segoe UI Black", 27.75f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
            this.radLabel2.Location          = new Point(149, 12);
            this.radLabel2.Name              = "radLabel2";
            this.radLabel2.Size              = new Size(270, 56);
            this.radLabel2.TabIndex          = 19;
            this.radLabel2.Text              = "HELP CENTER";
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.lblusualtime);
            this.radGroupBox1.Controls.Add((Control)this.timeViewer);
            this.radGroupBox1.Controls.Add((Control)this.radLabel4);
            this.radGroupBox1.Controls.Add((Control)this.chkTeamViewer);
            this.radGroupBox1.HeaderText = "Remote assistance";
            this.radGroupBox1.Location   = new Point(12, 484);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(469, 158);
            this.radGroupBox1.TabIndex   = 22;
            this.radGroupBox1.Text       = "Remote assistance";
            this.lblusualtime.Location   = new Point(14, 124);
            this.lblusualtime.Name       = "lblusualtime";
            this.lblusualtime.Size       = new Size(55, 18);
            this.lblusualtime.TabIndex   = 3;
            this.lblusualtime.Text       = "radLabel5";
            this.timeViewer.Location     = new Point(14, 98);
            this.timeViewer.Name         = "timeViewer";
            this.timeViewer.Size         = new Size(441, 20);
            this.timeViewer.TabIndex     = 2;
            this.timeViewer.TabStop      = false;
            this.timeViewer.Text         = "vendredi 15 septembre 2017";
            this.timeViewer.Value        = new DateTime(2017, 9, 15, 19, 56, 50, 24);
            this.radLabel4.Font          = new Font("Segoe UI", 8.25f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
            this.radLabel4.Location      = new Point(14, 46);
            this.radLabel4.Name          = "radLabel4";
            this.radLabel4.Size          = new Size(419, 46);
            this.radLabel4.TabIndex      = 1;
            this.radLabel4.Text          = componentResourceManager.GetString("radLabel4.Text");
            this.chkTeamViewer.Location  = new Point(117, 21);
            this.chkTeamViewer.Name      = "chkTeamViewer";
            this.chkTeamViewer.Size      = new Size(235, 18);
            this.chkTeamViewer.TabIndex  = 0;
            this.chkTeamViewer.Text      = "I wish to require assistance via TeamViewer";
            this.pageContent.Controls.Add((Control)this.radButton5);
            this.pageContent.Controls.Add((Control)this.radGroupBox2);
            this.pageContent.Controls.Add((Control)this.chkSyslog);
            this.pageContent.Controls.Add((Control)this.radLabel12);
            this.pageContent.Controls.Add((Control)this.radLabel1);
            this.pageContent.Controls.Add((Control)this.txtRemarks);
            this.pageContent.ItemSize        = new SizeF(50f, 28f);
            this.pageContent.Location        = new Point(10, 37);
            this.pageContent.Name            = "pageContent";
            this.pageContent.Size            = new Size(474, 345);
            this.pageContent.Text            = "Details";
            this.radButton5.Image            = (Image)Class123.icnArrow;
            this.radButton5.Location         = new Point(343, 308);
            this.radButton5.Name             = "radButton5";
            this.radButton5.Size             = new Size(128, 37);
            this.radButton5.TabIndex         = 18;
            this.radButton5.Text             = "    &Done";
            this.radButton5.Click           += new EventHandler(this.radButton5_Click);
            this.radGroupBox2.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add((Control)this.lblProvided);
            this.radGroupBox2.Controls.Add((Control)this.radLabel15);
            this.radGroupBox2.Controls.Add((Control)this.radButton7);
            this.radGroupBox2.HeaderText = "Attach files";
            this.radGroupBox2.Location   = new Point(3, 239);
            this.radGroupBox2.Name       = "radGroupBox2";
            this.radGroupBox2.Size       = new Size(468, 64);
            this.radGroupBox2.TabIndex   = 28;
            this.radGroupBox2.Text       = "Attach files";
            this.lblProvided.Font        = new Font("Segoe UI", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte)0);
            this.lblProvided.Location    = new Point(5, 41);
            this.lblProvided.Name        = "lblProvided";
            this.lblProvided.Size        = new Size(87, 18);
            this.lblProvided.TabIndex    = 2;
            this.lblProvided.Text        = "0 file(s) provided";
            this.radLabel15.Location     = new Point(5, 22);
            this.radLabel15.Name         = "radLabel15";
            this.radLabel15.Size         = new Size(204, 18);
            this.radLabel15.TabIndex     = 1;
            this.radLabel15.Text         = "Supported formats : png,jpg (3MB max)";
            this.radButton7.Location     = new Point(337, 26);
            this.radButton7.Name         = "radButton7";
            this.radButton7.Size         = new Size(110, 24);
            this.radButton7.TabIndex     = 0;
            this.radButton7.Text         = "Browse...";
            this.radButton7.Click       += new EventHandler(this.radButton7_Click);
            this.chkSyslog.CheckState    = CheckState.Checked;
            this.chkSyslog.Location      = new Point(3, 309);
            this.chkSyslog.Name          = "chkSyslog";
            this.chkSyslog.Size          = new Size(276, 18);
            this.chkSyslog.TabIndex      = 27;
            this.chkSyslog.Text          = "Include basic system info to facilitate the assistance";
            this.chkSyslog.ToggleState   = ToggleState.On;
            this.radLabel12.Controls.Add((Control)this.radLabel13);
            this.radLabel12.Location      = new Point(3, 3);
            this.radLabel12.Name          = "radLabel12";
            this.radLabel12.Size          = new Size(365, 17);
            this.radLabel12.TabIndex      = 3;
            this.radLabel12.Text          = "<html>Please provide us with as much details as possible regarding your issue :</html>";
            this.radLabel13.Location      = new Point(0, 72);
            this.radLabel13.Name          = "radLabel13";
            this.radLabel13.Size          = new Size(141, 18);
            this.radLabel13.TabIndex      = 12;
            this.radLabel13.Text          = "E-mail Address (Required) :";
            this.radLabel1.Font           = new Font("Segoe UI", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte)0);
            this.radLabel1.ForeColor      = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel1.Location       = new Point(3, 26);
            this.radLabel1.Name           = "radLabel1";
            this.radLabel1.Size           = new Size(176, 18);
            this.radLabel1.TabIndex       = 18;
            this.radLabel1.Text           = "Details about the issue : (Required)";
            this.txtRemarks.AcceptsReturn = true;
            this.txtRemarks.AcceptsTab    = true;
            this.txtRemarks.AutoSize      = false;
            this.txtRemarks.Location      = new Point(3, 50);
            this.txtRemarks.Multiline     = true;
            this.txtRemarks.Name          = "txtRemarks";
            this.txtRemarks.Size          = new Size(468, 186);
            this.txtRemarks.TabIndex      = 3;
            this.pageTitle.Controls.Add((Control)this.radTextBox1);
            this.pageTitle.Controls.Add((Control)this.lstTitles);
            this.pageTitle.Controls.Add((Control)this.radLabel16);
            this.pageTitle.Controls.Add((Control)this.radButton4);
            this.pageTitle.Controls.Add((Control)this.radLabel10);
            this.pageTitle.Controls.Add((Control)this.radLabel5);
            this.pageTitle.Controls.Add((Control)this.txtTitle);
            this.pageTitle.ItemSize       = new SizeF(102f, 28f);
            this.pageTitle.Location       = new Point(10, 37);
            this.pageTitle.Name           = "pageTitle";
            this.pageTitle.Size           = new Size(474, 345);
            this.pageTitle.Text           = "Short description";
            this.radTextBox1.Location     = new Point(4, 101);
            this.radTextBox1.Name         = "radTextBox1";
            this.radTextBox1.NullText     = "Search...";
            this.radTextBox1.Size         = new Size(467, 20);
            this.radTextBox1.TabIndex     = 20;
            this.radTextBox1.TextChanged += new EventHandler(this.radTextBox1_TextChanged);
            this.lstTitles.Location       = new Point(4, (int)sbyte.MaxValue);
            this.lstTitles.Name           = "lstTitles";
            this.lstTitles.Size           = new Size(467, 172);
            this.lstTitles.TabIndex       = 19;
            this.lstTitles.Text           = "radCheckedListBox1";
            this.radLabel16.Controls.Add((Control)this.radLabel17);
            this.radLabel16.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel16.Location  = new Point(3, 78);
            this.radLabel16.Name      = "radLabel16";
            this.radLabel16.Size      = new Size(214, 18);
            this.radLabel16.TabIndex  = 13;
            this.radLabel16.Text      = "Does your issue concern a particular title?";
            this.radLabel17.Location  = new Point(0, 72);
            this.radLabel17.Name      = "radLabel17";
            this.radLabel17.Size      = new Size(141, 18);
            this.radLabel17.TabIndex  = 12;
            this.radLabel17.Text      = "E-mail Address (Required) :";
            this.radButton4.Image     = (Image)Class123.icnArrow;
            this.radButton4.Location  = new Point(343, 305);
            this.radButton4.Name      = "radButton4";
            this.radButton4.Size      = new Size(128, 37);
            this.radButton4.TabIndex  = 18;
            this.radButton4.Text      = "    &Next";
            this.radButton4.Click    += new EventHandler(this.radButton4_Click);
            this.radLabel10.Controls.Add((Control)this.radLabel11);
            this.radLabel10.Location = new Point(3, 3);
            this.radLabel10.Name     = "radLabel10";
            this.radLabel10.Size     = new Size(283, 18);
            this.radLabel10.TabIndex = 2;
            this.radLabel10.Text     = "Please provide us with a short description of your issue:";
            this.radLabel11.Location = new Point(0, 72);
            this.radLabel11.Name     = "radLabel11";
            this.radLabel11.Size     = new Size(141, 18);
            this.radLabel11.TabIndex = 12;
            this.radLabel11.Text     = "E-mail Address (Required) :";
            this.radLabel5.Font      = new Font("Segoe UI", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte)0);
            this.radLabel5.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel5.Location  = new Point(3, 26);
            this.radLabel5.Name      = "radLabel5";
            this.radLabel5.Size      = new Size(199, 18);
            this.radLabel5.TabIndex  = 15;
            this.radLabel5.Text      = "Short description of the issue (Required)";
            this.txtTitle.Location   = new Point(4, 50);
            this.txtTitle.MaxLength  = 50;
            this.txtTitle.Name       = "txtTitle";
            this.txtTitle.Size       = new Size(467, 20);
            this.txtTitle.TabIndex   = 2;
            this.pageEmail.Controls.Add((Control)this.radLabel14);
            this.pageEmail.Controls.Add((Control)this.radButton3);
            this.pageEmail.Controls.Add((Control)this.txtEmail);
            this.pageEmail.Controls.Add((Control)this.radLabel9);
            this.pageEmail.ItemSize   = new SizeF(114f, 28f);
            this.pageEmail.Location   = new Point(10, 37);
            this.pageEmail.Name       = "pageEmail";
            this.pageEmail.Size       = new Size(474, 345);
            this.pageEmail.Text       = "How to contact you";
            this.radLabel14.Font      = new Font("Segoe UI", 8.25f, FontStyle.Italic, GraphicsUnit.Point, (byte)0);
            this.radLabel14.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel14.Location  = new Point(3, 40);
            this.radLabel14.Name      = "radLabel14";
            this.radLabel14.Size      = new Size(168, 18);
            this.radLabel14.TabIndex  = 18;
            this.radLabel14.Text      = "Please input your e-mail address:";
            this.radButton3.Image     = (Image)Class123.icnArrow;
            this.radButton3.Location  = new Point(343, 305);
            this.radButton3.Name      = "radButton3";
            this.radButton3.Size      = new Size(128, 37);
            this.radButton3.TabIndex  = 17;
            this.radButton3.Text      = "    &Next";
            this.radButton3.Click    += new EventHandler(this.radButton3_Click);
            this.txtEmail.Location    = new Point(3, 65);
            this.txtEmail.Name        = "txtEmail";
            this.txtEmail.Size        = new Size(468, 20);
            this.txtEmail.TabIndex    = 1;
            this.radLabel9.AutoSize   = false;
            this.radLabel9.Controls.Add((Control)this.emailLabel);
            this.radLabel9.Location  = new Point(4, 4);
            this.radLabel9.Name      = "radLabel9";
            this.radLabel9.Size      = new Size(468, 30);
            this.radLabel9.TabIndex  = 1;
            this.radLabel9.Text      = "<html><p>In order to be able to provide you with an answer, we need to know how to contact you.</p><p></p><p></p><p></p></html>";
            this.emailLabel.Location = new Point(0, 72);
            this.emailLabel.Name     = "emailLabel";
            this.emailLabel.Size     = new Size(141, 18);
            this.emailLabel.TabIndex = 12;
            this.emailLabel.Text     = "E-mail Address (Required) :";
            this.pageWelcome.Controls.Add((Control)this.radButton2);
            this.pageWelcome.Controls.Add((Control)this.radLabel3);
            this.pageWelcome.Controls.Add((Control)this.pictureBox3);
            this.pageWelcome.Controls.Add((Control)this.radLabel8);
            this.pageWelcome.Controls.Add((Control)this.pictureBox2);
            this.pageWelcome.Controls.Add((Control)this.radButton1);
            this.pageWelcome.Controls.Add((Control)this.pictureBox1);
            this.pageWelcome.Controls.Add((Control)this.radLabel7);
            this.pageWelcome.Controls.Add((Control)this.radLabel6);
            this.pageWelcome.ItemSize = new SizeF(66f, 28f);
            this.pageWelcome.Location = new Point(10, 37);
            this.pageWelcome.Name     = "pageWelcome";
            this.pageWelcome.Size     = new Size(474, 345);
            this.pageWelcome.Text     = "Welcome!";
            this.radButton2.Location  = new Point(36, 184);
            this.radButton2.Name      = "radButton2";
            this.radButton2.Size      = new Size(372, 24);
            this.radButton2.TabIndex  = 22;
            this.radButton2.Text      = "I need further assistance";
            this.radButton2.Click    += new EventHandler(this.radButton2_Click);
            this.radLabel3.Font       = new Font("Segoe UI", 8.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
            this.radLabel3.ForeColor  = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel3.Location   = new Point(37, 257);
            this.radLabel3.Name       = "radLabel3";
            this.radLabel3.Size       = new Size(402, 32);
            this.radLabel3.TabIndex   = 20;
            this.radLabel3.Text       = "<html><p>I am not involved in the development of either CITRA or CEMU so I cannot</p><p>fix any of the issues which are not directly related to Wii U USB Helper.</p></html>";
            this.pictureBox3.Image    = (Image)Class123.UKFlag;
            this.pictureBox3.Location = new Point(97, 239);
            this.pictureBox3.Name     = "pictureBox3";
            this.pictureBox3.Size     = new Size(24, 12);
            this.pictureBox3.SizeMode = PictureBoxSizeMode.AutoSize;
            this.pictureBox3.TabIndex = 26;
            this.pictureBox3.TabStop  = false;
            this.radLabel8.Location   = new Point(36, 149);
            this.radLabel8.Name       = "radLabel8";
            this.radLabel8.Size       = new Size(116, 17);
            this.radLabel8.TabIndex   = 22;
            this.radLabel8.Text       = "<html>Didn\"t find an answer?</html>";
            this.pictureBox2.Image    = (Image)Class123.usaFlag;
            this.pictureBox2.Location = new Point(67, 238);
            this.pictureBox2.Name     = "pictureBox2";
            this.pictureBox2.Size     = new Size(24, 13);
            this.pictureBox2.SizeMode = PictureBoxSizeMode.AutoSize;
            this.pictureBox2.TabIndex = 25;
            this.pictureBox2.TabStop  = false;
            this.radButton1.Location  = new Point(36, 106);
            this.radButton1.Name      = "radButton1";
            this.radButton1.Size      = new Size(372, 24);
            this.radButton1.TabIndex  = 21;
            this.radButton1.Text      = "See if my problem already has a solution";
            this.radButton1.Click    += new EventHandler(this.radButton1_Click);
            this.pictureBox1.Image    = (Image)Class123.frenchFlag;
            this.pictureBox1.Location = new Point(37, 237);
            this.pictureBox1.Name     = "pictureBox1";
            this.pictureBox1.Size     = new Size(24, 14);
            this.pictureBox1.TabIndex = 24;
            this.pictureBox1.TabStop  = false;
            this.radLabel7.Location   = new Point(36, 56);
            this.radLabel7.Name       = "radLabel7";
            this.radLabel7.Size       = new Size(378, 46);
            this.radLabel7.TabIndex   = 0;
            this.radLabel7.Text       = "<html><p>Welcome to the support center!</p><p>Before proceeding, make sure your issue does not already have a solution :</p><p></p></html>";
            this.radLabel6.ForeColor  = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel6.Location   = new Point(36, 214);
            this.radLabel6.Name       = "radLabel6";
            this.radLabel6.Size       = new Size(277, 18);
            this.radLabel6.TabIndex   = 23;
            this.radLabel6.Text       = "Support is ONLY provided in the following languages :";
            this.radPageView1.Controls.Add((Control)this.pageWelcome);
            this.radPageView1.Controls.Add((Control)this.pageEmail);
            this.radPageView1.Controls.Add((Control)this.pageTitle);
            this.radPageView1.Controls.Add((Control)this.pageContent);
            this.radPageView1.Location         = new Point(7, 85);
            this.radPageView1.Name             = "radPageView1";
            this.radPageView1.SelectedPage     = this.pageWelcome;
            this.radPageView1.ShowItemToolTips = false;
            this.radPageView1.Size             = new Size(495, 393);
            this.radPageView1.TabIndex         = 28;
            this.radPageView1.TabStop          = false;
            this.radPageView1.Text             = "radPageView1";
            ((RadPageViewStripElement)this.radPageView1.GetChildAt(0)).StripButtons = StripViewButtons.None;
            this.AutoScaleDimensions = new SizeF(6f, 13f);
            this.AutoScaleMode       = AutoScaleMode.Font;
            this.ClientSize          = new Size(508, 480);
            this.Controls.Add((Control)this.radPageView1);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.radLabel2);
            this.Controls.Add((Control)this.feedbackPictureBox);
            this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
            this.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name            = nameof(frmSupport);
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon      = false;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "I need help!";
            this.Load         += new EventHandler(this.frmSupport_Load);
            ((ISupportInitialize)this.feedbackPictureBox).EndInit();
            this.radLabel2.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            this.lblusualtime.EndInit();
            this.timeViewer.EndInit();
            this.radLabel4.EndInit();
            this.chkTeamViewer.EndInit();
            this.pageContent.ResumeLayout(false);
            this.pageContent.PerformLayout();
            this.radButton5.EndInit();
            this.radGroupBox2.EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox2.PerformLayout();
            this.lblProvided.EndInit();
            this.radLabel15.EndInit();
            this.radButton7.EndInit();
            this.chkSyslog.EndInit();
            this.radLabel12.EndInit();
            this.radLabel12.ResumeLayout(false);
            this.radLabel12.PerformLayout();
            this.radLabel13.EndInit();
            this.radLabel1.EndInit();
            this.txtRemarks.EndInit();
            this.pageTitle.ResumeLayout(false);
            this.pageTitle.PerformLayout();
            this.radTextBox1.EndInit();
            this.lstTitles.EndInit();
            this.radLabel16.EndInit();
            this.radLabel16.ResumeLayout(false);
            this.radLabel16.PerformLayout();
            this.radLabel17.EndInit();
            this.radButton4.EndInit();
            this.radLabel10.EndInit();
            this.radLabel10.ResumeLayout(false);
            this.radLabel10.PerformLayout();
            this.radLabel11.EndInit();
            this.radLabel5.EndInit();
            this.txtTitle.EndInit();
            this.pageEmail.ResumeLayout(false);
            this.pageEmail.PerformLayout();
            this.radLabel14.EndInit();
            this.radButton3.EndInit();
            this.txtEmail.EndInit();
            this.radLabel9.EndInit();
            this.radLabel9.ResumeLayout(false);
            this.radLabel9.PerformLayout();
            this.emailLabel.EndInit();
            this.pageWelcome.ResumeLayout(false);
            this.pageWelcome.PerformLayout();
            this.radButton2.EndInit();
            this.radLabel3.EndInit();
            ((ISupportInitialize)this.pictureBox3).EndInit();
            this.radLabel8.EndInit();
            ((ISupportInitialize)this.pictureBox2).EndInit();
            this.radButton1.EndInit();
            ((ISupportInitialize)this.pictureBox1).EndInit();
            this.radLabel7.EndInit();
            this.radLabel6.EndInit();
            this.radPageView1.EndInit();
            this.radPageView1.ResumeLayout(false);
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #16
0
        private void InitializeComponent()
        {
            ListViewDetailColumn     viewDetailColumn1        = new ListViewDetailColumn("Column 0", "Description");
            ListViewDetailColumn     viewDetailColumn2        = new ListViewDetailColumn("Column 1", "Date");
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmCommunitySaves));

            this.lstSaves      = new RadListView();
            this.cmdUploadSave = new RadButton();
            this.cmdImport     = new RadButton();
            this.radGroupBox1  = new RadGroupBox();
            this.lblNoSaves    = new RadLabel();
            this.lstSaves.BeginInit();
            this.lstSaves.SuspendLayout();
            this.cmdUploadSave.BeginInit();
            this.cmdImport.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.lblNoSaves.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            viewDetailColumn1.HeaderText = "Description";
            viewDetailColumn1.Width      = 600f;
            viewDetailColumn2.HeaderText = "Date";
            this.lstSaves.Columns.AddRange(viewDetailColumn1, viewDetailColumn2);
            this.lstSaves.Controls.Add((Control)this.lblNoSaves);
            this.lstSaves.Dock               = DockStyle.Fill;
            this.lstSaves.ItemSpacing        = -1;
            this.lstSaves.Location           = new Point(0, 0);
            this.lstSaves.Name               = "lstSaves";
            this.lstSaves.Size               = new Size(938, 404);
            this.lstSaves.TabIndex           = 0;
            this.lstSaves.Text               = "radListView1";
            this.lstSaves.ViewType           = ListViewType.DetailsView;
            this.cmdUploadSave.Anchor        = AnchorStyles.None;
            this.cmdUploadSave.Image         = (Image)Class123.icnWebMini;
            this.cmdUploadSave.Location      = new Point(482, 26);
            this.cmdUploadSave.Name          = "cmdUploadSave";
            this.cmdUploadSave.Size          = new Size(203, 24);
            this.cmdUploadSave.TabIndex      = 0;
            this.cmdUploadSave.Text          = "Upload my own save";
            this.cmdUploadSave.Click        += new EventHandler(this.cmdUploadSave_Click);
            this.cmdImport.Anchor            = AnchorStyles.None;
            this.cmdImport.Image             = (Image)Class123.icnDownloadedMini;
            this.cmdImport.Location          = new Point(253, 26);
            this.cmdImport.Name              = "cmdImport";
            this.cmdImport.Size              = new Size(200, 24);
            this.cmdImport.TabIndex          = 1;
            this.cmdImport.Text              = "Import this save";
            this.cmdImport.Click            += new EventHandler(this.cmdImport_Click);
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.cmdImport);
            this.radGroupBox1.Controls.Add((Control)this.cmdUploadSave);
            this.radGroupBox1.Dock        = DockStyle.Bottom;
            this.radGroupBox1.HeaderText  = "Options";
            this.radGroupBox1.Location    = new Point(0, 404);
            this.radGroupBox1.Name        = "radGroupBox1";
            this.radGroupBox1.Size        = new Size(938, 63);
            this.radGroupBox1.TabIndex    = 1;
            this.radGroupBox1.Text        = "Options";
            this.lblNoSaves.Anchor        = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
            this.lblNoSaves.AutoSize      = false;
            this.lblNoSaves.Location      = new Point(0, 0);
            this.lblNoSaves.Name          = "lblNoSaves";
            this.lblNoSaves.Size          = new Size(938, 404);
            this.lblNoSaves.TabIndex      = 0;
            this.lblNoSaves.Text          = "No saves are available at the moment, why not share your own?";
            this.lblNoSaves.TextAlignment = ContentAlignment.MiddleCenter;
            this.AutoScaleDimensions      = new SizeF(6f, 13f);
            this.AutoScaleMode            = AutoScaleMode.Font;
            this.ClientSize = new Size(938, 467);
            this.Controls.Add((Control)this.lstSaves);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name = nameof(frmCommunitySaves);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Community Saves";
            this.lstSaves.EndInit();
            this.lstSaves.ResumeLayout(false);
            this.cmdUploadSave.EndInit();
            this.cmdImport.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.lblNoSaves.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
        }
Пример #17
0
 private void SetGroupBoxEnabled(ref RadGroupBox grp, Boolean isEnabled)
 {
     if (!grp.InvokeRequired)
     {
         grp.Enabled = isEnabled;
     }
     else
     {
         RadGroupBox grpControl = grp;
         SetGroupBoxEnabledDelegate setGroupBoxEnabledDelegate = new SetGroupBoxEnabledDelegate(SetGroupBoxEnabled);
         Object[] objArray = new Object[] { grp, isEnabled };
         grpControl.Invoke(setGroupBoxEnabledDelegate, objArray);
     }
 }
Пример #18
0
        public static void DesbloquearControlesEnGroupBox(RadGroupBox form)
        {
            foreach (Control ctrl in form.Controls)
            {
                if (ctrl is RadLabel)
                {
                    RadLabel lbl = (RadLabel)ctrl;
                    foreach (Control ctrl2 in lbl.Controls)
                    {
                        if (ctrl2 is RadTextBox)
                        {
                            RadTextBox txt = (RadTextBox)ctrl2;
                            //txtCodigo.Text = txtCodigo.Text + "/" + lbl.Controls.IndexOf(ctrl2).ToString() + lbl.Controls[lbl.Controls.IndexOf(ctrl2)].Name;
                            txt.Enabled = true;
                        }
                        else if (ctrl2 is RadDropDownList)
                        {
                            RadDropDownList cbo = (RadDropDownList)ctrl2;
                            cbo.Enabled = true;
                        }
                        else if (ctrl2 is RadDateTimePicker)
                        {
                            RadDateTimePicker dtp = (RadDateTimePicker)ctrl2;
                            dtp.Enabled = true;
                        }
                        else if (ctrl2 is RichTextBox)
                        {
                            RichTextBox rtb = (RichTextBox)ctrl2;
                            rtb.Enabled = true;
                        }

                    }
                }
            }
        }
Пример #19
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmCloudSaving));

            this.radLabel1       = new RadLabel();
            this.radLabel2       = new RadLabel();
            this.txtUsername     = new RadTextBox();
            this.radGroupBox1    = new RadGroupBox();
            this.lblShowPassword = new RadLabel();
            this.txtPassword     = new RadTextBoxControl();
            this.radButton1      = new RadButton();
            this.radLogged       = new RadLabel();
            this.radEnable       = new RadToggleSwitch();
            this.radLabel3       = new RadLabel();
            this.pictureBox1     = new PictureBox();
            this.radLabel4       = new RadLabel();
            this.radLabel5       = new RadLabel();
            this.radLabel6       = new RadLabel();
            this.cmdManageSaves  = new RadButton();
            this.radLabel1.BeginInit();
            this.radLabel2.BeginInit();
            this.txtUsername.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.lblShowPassword.BeginInit();
            this.txtPassword.BeginInit();
            this.radButton1.BeginInit();
            this.radLogged.BeginInit();
            this.radEnable.BeginInit();
            this.radLabel3.BeginInit();
            ((ISupportInitialize)this.pictureBox1).BeginInit();
            this.radLabel4.BeginInit();
            this.radLabel5.BeginInit();
            this.radLabel6.BeginInit();
            this.cmdManageSaves.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.radLabel1.Location          = new Point(24, 32);
            this.radLabel1.Name              = "radLabel1";
            this.radLabel1.Size              = new Size(62, 18);
            this.radLabel1.TabIndex          = 0;
            this.radLabel1.Text              = "Username :"******"radLabel2";
            this.radLabel2.Size              = new Size(59, 18);
            this.radLabel2.TabIndex          = 1;
            this.radLabel2.Text              = "Password :"******"txtUsername";
            this.txtUsername.Size            = new Size(218, 20);
            this.txtUsername.TabIndex        = 1;
            this.txtUsername.TextChanging   += new TextChangingEventHandler(this.txtPassword_TextChanging);
            this.txtUsername.KeyDown        += new KeyEventHandler(this.txtPassword_KeyDown);
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.lblShowPassword);
            this.radGroupBox1.Controls.Add((Control)this.txtPassword);
            this.radGroupBox1.Controls.Add((Control)this.radButton1);
            this.radGroupBox1.Controls.Add((Control)this.radLabel1);
            this.radGroupBox1.Controls.Add((Control)this.radLogged);
            this.radGroupBox1.Controls.Add((Control)this.radLabel2);
            this.radGroupBox1.Controls.Add((Control)this.txtUsername);
            this.radGroupBox1.HeaderText     = "Log in";
            this.radGroupBox1.Location       = new Point(54, 132);
            this.radGroupBox1.Name           = "radGroupBox1";
            this.radGroupBox1.Size           = new Size(335, 163);
            this.radGroupBox1.TabIndex       = 4;
            this.radGroupBox1.Text           = "Log in";
            this.lblShowPassword.Location    = new Point(227, 80);
            this.lblShowPassword.Name        = "lblShowPassword";
            this.lblShowPassword.Size        = new Size(84, 18);
            this.lblShowPassword.TabIndex    = 9;
            this.lblShowPassword.Text        = "Show Password";
            this.lblShowPassword.MouseEnter += new EventHandler(this.lblShowPassword_MouseEnter);
            this.lblShowPassword.MouseLeave += new EventHandler(this.lblShowPassword_MouseLeave);
            this.txtPassword.Location        = new Point(93, 54);
            this.txtPassword.Name            = "txtPassword";
            this.txtPassword.PasswordChar    = '*';
            this.txtPassword.Size            = new Size(218, 20);
            this.txtPassword.TabIndex        = 2;
            this.txtPassword.TextChanging   += new TextChangingEventHandler(this.txtPassword_TextChanging);
            this.txtPassword.KeyDown        += new KeyEventHandler(this.txtPassword_KeyDown);
            this.radButton1.Image            = (Image)Class123.icnMovieMini;
            this.radButton1.Location         = new Point(105, 104);
            this.radButton1.Name             = "radButton1";
            this.radButton1.Size             = new Size(133, 24);
            this.radButton1.TabIndex         = 3;
            this.radButton1.Text             = "Log in/Register";
            this.radButton1.Click           += new EventHandler(this.radButton1_Click);
            this.radLogged.Font              = new Font("Segoe UI", 11.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
            this.radLogged.Location          = new Point(24, 134);
            this.radLogged.Name              = "radLogged";
            this.radLogged.Size              = new Size(79, 24);
            this.radLogged.TabIndex          = 8;
            this.radLogged.Text              = "radLabel4";
            this.radEnable.Enabled           = false;
            this.radEnable.Location          = new Point(138, 304);
            this.radEnable.Name              = "radEnable";
            this.radEnable.Size              = new Size(99, 20);
            this.radEnable.TabIndex          = 5;
            this.radEnable.Value             = false;
            this.radEnable.ValueChanged     += new EventHandler(this.radEnable_ValueChanged);
            this.radLabel3.Location          = new Point(21, 304);
            this.radLabel3.Name              = "radLabel3";
            this.radLabel3.Size              = new Size(111, 18);
            this.radLabel3.TabIndex          = 6;
            this.radLabel3.Text              = "Enable cloud saving :";
            this.pictureBox1.Image           = (Image)Class123.logo_horiz;
            this.pictureBox1.Location        = new Point(21, 6);
            this.pictureBox1.Name            = "pictureBox1";
            this.pictureBox1.Size            = new Size(401, 83);
            this.pictureBox1.TabIndex        = 7;
            this.pictureBox1.TabStop         = false;
            this.radLabel4.ForeColor         = Color.FromArgb((int)byte.MaxValue, 128, 0);
            this.radLabel4.Location          = new Point(21, 74);
            this.radLabel4.Name              = "radLabel4";
            this.radLabel4.Size              = new Size(146, 18);
            this.radLabel4.TabIndex          = 9;
            this.radLabel4.Text              = "This feature is experimental.";
            this.radLabel5.Location          = new Point(21, 88);
            this.radLabel5.Name              = "radLabel5";
            this.radLabel5.Size              = new Size(385, 18);
            this.radLabel5.TabIndex          = 10;
            this.radLabel5.Text              = "If you enable it, all your Cemu and Citra saves will be uploaded to the cloud.";
            this.radLabel6.Location          = new Point(21, 108);
            this.radLabel6.Name              = "radLabel6";
            this.radLabel6.Size              = new Size(344, 18);
            this.radLabel6.TabIndex          = 11;
            this.radLabel6.Text              = "This way you can easily share your saves across multiple computers.";
            this.cmdManageSaves.Enabled      = false;
            this.cmdManageSaves.Image        = (Image)Class123.icnCaseMini;
            this.cmdManageSaves.Location     = new Point(243, 301);
            this.cmdManageSaves.Name         = "cmdManageSaves";
            this.cmdManageSaves.Size         = new Size(163, 24);
            this.cmdManageSaves.TabIndex     = 12;
            this.cmdManageSaves.Text         = "Manage my cloud saves...";
            this.cmdManageSaves.Click       += new EventHandler(this.cmdManageSaves_Click);
            this.AutoScaleDimensions         = new SizeF(6f, 13f);
            this.AutoScaleMode = AutoScaleMode.Font;
            this.ClientSize    = new Size(442, 334);
            this.Controls.Add((Control)this.cmdManageSaves);
            this.Controls.Add((Control)this.radLabel6);
            this.Controls.Add((Control)this.radLabel5);
            this.Controls.Add((Control)this.radLabel4);
            this.Controls.Add((Control)this.pictureBox1);
            this.Controls.Add((Control)this.radLabel3);
            this.Controls.Add((Control)this.radEnable);
            this.Controls.Add((Control)this.radGroupBox1);
            this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
            this.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name            = nameof(frmCloudSaving);
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon      = false;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Cloud Saving";
            this.Load         += new EventHandler(this.frmCloudSaving_Load);
            this.radLabel1.EndInit();
            this.radLabel2.EndInit();
            this.txtUsername.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            this.lblShowPassword.EndInit();
            this.txtPassword.EndInit();
            this.radButton1.EndInit();
            this.radLogged.EndInit();
            this.radEnable.EndInit();
            this.radLabel3.EndInit();
            ((ISupportInitialize)this.pictureBox1).EndInit();
            this.radLabel4.EndInit();
            this.radLabel5.EndInit();
            this.radLabel6.EndInit();
            this.cmdManageSaves.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #20
0
        public async void Create_Async(RadGroupBox groupBox1, string DeatailType)
        {
            countError = 0;
            Sizes.Clear();
            SerializeXML serialize = new SerializeXML(Status.CurrentDetailsSetDirectory + @"\SIZES.xml");

            foreach (var tb in groupBox1.Controls)
            {
                if (tb is RadTextBox)
                {
                    Sizes.Add((tb as RadTextBox).Name, DParse(tb as RadTextBox));
                    if (SerializeXML.Check(SerializeXML.Values(), (tb as RadTextBox).Name))
                    {
                        SerializeXML.Add((tb as RadTextBox).Name, DParse(tb as RadTextBox));
                    }
                }
            }
            serialize.Serialize(SerializeXML.Values());

            if (Status.CurrState == Status.CurrentState.READY && Status.CurrState != Status.CurrentState.ERROR)
            {
                try
                {
                    switch (DeatailType)
                    {
                    case "Поршень":
                        await Task.Run(() => new MakeDetails(FemapModel).CreatePistonAsync(Status.CancellationTokenSourse.Token));

                        break;

                    case "Шатун":
                        await Task.Run(() => new MakeDetails(FemapModel).CreateConnectingRodAsync(Status.CancellationTokenSourse.Token));

                        break;

                    case "Крышка шатуна":
                        await Task.Run(() => new MakeDetails(FemapModel).CreateCoverRodAsync(Status.CancellationTokenSourse.Token));

                        break;

                    case "Поршневой палец":
                        await Task.Run(() => new MakeDetails(FemapModel).CreatePistonFingerAsync(Status.CancellationTokenSourse.Token));

                        break;

                    case "Коленчатый вал":
                        await Task.Run(() => new MakeDetails(FemapModel).CreateCrankshaftAsync(Status.CancellationTokenSourse.Token));

                        break;

                    case "Гильза цилиндра":
                        await Task.Run(() => new MakeDetails(FemapModel).CreateSleeveAsync(Status.CancellationTokenSourse.Token));

                        break;
                    }
                    SQLControl(DeatailType);
                }
                catch (OperationCanceledException)
                {
                    Status.CurrState = Status.CurrentState.WARNING;
                    if (MessageBox.Show("Построение было отменено пользователем.\nСохранить изменения?", "Внимание",
                                        MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
                    {
                        Status.CurrState = Status.CurrentState.SAVING;
                        FemapModel.feFileSave(false);
                    }
                    else
                    {
                        Status.CurrState = Status.CurrentState.READY;
                        FemapModel.feFileClose(false);
                        FemapModel.feFileNew();
                    }
                }
                catch (Exception)
                {
                    MessageBox.Show("Failed.");
                }
                await Task.Delay(500);

                SyncSizes(groupBox1);
                Status.CurrState = Status.CurrentState.READY;
            }
            else if (Status.CurrentStatusString == "Построение детали")
            {
                MessageBox.Show("Подождите.. Идет построение детали");
                Status.CurrState = Status.CurrentState.CREATING;
            }
        }
Пример #21
0
        private void AddCategories()
        {
            var categories = Category.GetCategories();

            foreach (var category in categories)
            {
                var questions = Question.GetQuestions(category.CategoryId);

                RadPageViewPage newPage = new RadPageViewPage
                {
                    Name  = category.CategoryName + "_cat",
                    Text  = category.CategoryName,
                    Title = category.CategoryName
                };

                RadWizard radWizard = new RadWizard
                {
                    Name         = $"wizard_{category.CategoryName}",
                    Text         = category.CategoryName,
                    ThemeName    = "Crystal",
                    Dock         = DockStyle.Fill,
                    CancelButton = { Visibility = ElementVisibility.Hidden },
                    FinishButton = { Visibility = ElementVisibility.Visible },
                    BackButton   = { Visibility = ElementVisibility.Hidden },
                    HelpButton   = { Visibility = ElementVisibility.Hidden },
                };

                radWizard.Finish += RadWizardOnFinish;
                radWizard.Next   += RadWizardOnNext;

                foreach (var question in questions)
                {
                    var answers = Answer.GetAnswers(question.QuestionId);

                    WizardPage wizardPage = new WizardPage
                    {
                        Tag       = question,
                        Text      = category.CategoryName,
                        Title     = category.CategoryName,
                        AutoSize  = true,
                        BackColor = Color.Transparent
                    };

                    RadGroupBox radGroupBox = new RadGroupBox()
                    {
                        HeaderText = "Answers",
                        Name       = $"answers_{category.CategoryId}",
                        Location   = new Point(25, 80),
                        Size       = new Size(600, 250),
                        ThemeName  = "MaterialTeal",
                    };

                    RadLabel questionLabel = new RadLabel
                    {
                        ThemeName = "MaterialTeal",
                        Name      = $"q_{question.QuestionId}Label",
                        Text      = $"{question.question}",
                        AutoSize  = true,
                        Location  = new Point(25, 25),
                        Font      = new Font(FontFamily.GenericSerif, 15)
                    };

                    int i = 1;
                    foreach (Answer answer in answers)
                    {
                        radGroupBox.Controls.Add(new RadRadioButton()
                        {
                            Name      = "answer_" + answer.AnswerId,
                            Text      = answer.answer,
                            Tag       = answer,
                            Location  = new Point(30, 85 + (25 * i)),
                            ThemeName = "MaterialTeal"
                        });
                        i++;
                    }

                    wizardPage.ContentArea = new Panel();
                    radWizard.Pages.Add(wizardPage);

                    RadButton detailsButton = new RadButton {
                        Text      = "Details",
                        Location  = new Point(450, 250),
                        ThemeName = "MaterialTeal"
                    };
                    detailsButton.Click += delegate(object sender, EventArgs args)
                    {
                        var catInfo     = CategoryInfo.GetCategoryInfo(category.CategoryId);
                        var detailsForm = new CategoryInformationForm(catInfo, category.CategoryName);
                        detailsForm.Show();
                    };

                    wizardPage.ContentArea.Controls.Add(detailsButton);
                    wizardPage.ContentArea.Controls.Add(questionLabel);
                    wizardPage.ContentArea.Controls.Add(radGroupBox);
                }

                //radWizard.Pages.Add(radWizard.CompletionPage);

                newPage.Controls.Add(radWizard);
                tabViews.Pages.Add(newPage);
            }
        }
Пример #22
0
        private void cfb5cf413352ed4044535eb4a62d2e98f()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(Type.GetTypeFromHandle(c2af734756c2d6bd28a48005deacf05b6.c6804baa30a51e813a45fabcfa2b27b79()));

            this.ca75cf6b554bca20b242f951643c4d424 = new RadButton();
            this.cd036f2b2868b103e71bd7b4fbe25a603 = new RadLabel();
            this.c51175a4a3b6b11c0eee765ad7effd076 = new RadButton();
            this.c0b6ff62997904dd44189c4cb17f2ab15 = new RadGroupBox();
            this.cee9946355c6a614ff90b875d32801e38 = new RadLabel();
            this.c315ebf3de36e7a50ea2c550cda4eaba1 = new RadCheckedListBox();
            ((ISupportInitialize)this.ca75cf6b554bca20b242f951643c4d424).BeginInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).BeginInit();
            ((ISupportInitialize)this.c51175a4a3b6b11c0eee765ad7effd076).BeginInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).BeginInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).SuspendLayout();
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).BeginInit();
            ((ISupportInitialize)this.c315ebf3de36e7a50ea2c550cda4eaba1).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            ((RadFormControlBase)this).SuspendLayout();
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10856);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10860), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10864));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15903);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10868), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10872));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10876);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16652);
            ((RadControl)this.ca75cf6b554bca20b242f951643c4d424).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Click   += new EventHandler(this.cf93b4b8c40f46dbd89b416a232d361f0);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).AutoSize = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10880) != 0;
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10884);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10888), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10892));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7428);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10896), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10900));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10904);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16685);
            this.cd036f2b2868b103e71bd7b4fbe25a603.set_TextAlignment((ContentAlignment)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10908));
            ((RadControl)this.cd036f2b2868b103e71bd7b4fbe25a603).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10912);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10916), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10920));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16429);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10924), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10928));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10932);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16452);
            ((RadControl)this.c51175a4a3b6b11c0eee765ad7effd076).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Click         += new EventHandler(this.c73a91aa5e28f9899f28a0eb26c625fd5);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).AccessibleRole = (AccessibleRole)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10936);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.cd036f2b2868b103e71bd7b4fbe25a603);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10940);
            this.c0b6ff62997904dd44189c4cb17f2ab15.set_HeaderText(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10944), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10948));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14902);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10952), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10956));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10960);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935);
            ((RadControl)this.c0b6ff62997904dd44189c4cb17f2ab15).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Click   += new EventHandler(this.cda0083ff2d7ad8dc5a378909d229a0b0);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10964), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10968));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(12323);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10972), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10976));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10980);
            ((RadControl)this.cee9946355c6a614ff90b875d32801e38).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10984);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10988), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10992));
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15793);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10996), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11000));
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11004);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7221);
            ((RadControl)this.c315ebf3de36e7a50ea2c550cda4eaba1).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((ContainerControl)this).AutoScaleDimensions = new SizeF(cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11008), cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11012));
            ((RadFormControlBase)this).set_AutoScaleMode((AutoScaleMode)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11016));
            ((Form)this).ClientSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11020), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11024));
            ((Control)this).Controls.Add((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1);
            ((Control)this).Controls.Add((Control)this.c51175a4a3b6b11c0eee765ad7effd076);
            ((Control)this).Controls.Add((Control)this.ca75cf6b554bca20b242f951643c4d424);
            ((Control)this).Controls.Add((Control)this.c0b6ff62997904dd44189c4cb17f2ab15);
            ((Control)this).Controls.Add((Control)this.cee9946355c6a614ff90b875d32801e38);
            ((Form)this).Icon       = cead0b4edd540ba7cac4363706aa68fb6.cc8e287d5350b43026d33bb80beb131a0(componentResourceManager.GetObject(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7256)));
            ((Control)this).Name    = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16835);
            ((Control)this).Padding = new Padding(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11028));
            ((RadFormControlBase)this).get_RootElement().set_ApplyShapeToControl(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11032) != 0);
            ((Form)this).StartPosition = (FormStartPosition)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11036);
            ((Control)this).Text       = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16860);
            ((RadFormControlBase)this).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Form)this).Load += new EventHandler(this.cb56b11ce4ade631a7106e629654b04c4);
            ((ISupportInitialize)this.ca75cf6b554bca20b242f951643c4d424).EndInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).EndInit();
            ((ISupportInitialize)this.c51175a4a3b6b11c0eee765ad7effd076).EndInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).EndInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11040) != 0);
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).EndInit();
            ((ISupportInitialize)this.c315ebf3de36e7a50ea2c550cda4eaba1).EndInit();
            ((ISupportInitialize)this).EndInit();
            ((RadFormControlBase)this).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11044) != 0);
            ((Control)this).PerformLayout();
        }
Пример #23
0
        private void InitializeComponent()
        {
            ListViewDetailColumn     viewDetailColumn1        = new ListViewDetailColumn("Column 0", "Title");
            ListViewDetailColumn     viewDetailColumn2        = new ListViewDetailColumn("Column 1", "Status");
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmImport));

            this.lstTitles    = new RadCheckedListBox();
            this.radLabel1    = new RadLabel();
            this.radLabel2    = new RadLabel();
            this.cmdImport    = new RadButton();
            this.radGroupBox1 = new RadGroupBox();
            this.radLabel6    = new RadLabel();
            this.radLabel5    = new RadLabel();
            this.radLabel4    = new RadLabel();
            this.radLabel3    = new RadLabel();
            this.cmdCheckAll  = new RadButton();
            this.lstTitles.BeginInit();
            this.radLabel1.BeginInit();
            this.radLabel2.BeginInit();
            this.cmdImport.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.radLabel6.BeginInit();
            this.radLabel5.BeginInit();
            this.radLabel4.BeginInit();
            this.radLabel3.BeginInit();
            this.cmdCheckAll.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.lstTitles.AllowRemove   = false;
            viewDetailColumn1.HeaderText = "Title";
            viewDetailColumn1.Width      = 500f;
            viewDetailColumn2.HeaderText = "Status";
            viewDetailColumn2.Width      = 300f;
            this.lstTitles.Columns.AddRange(viewDetailColumn1, viewDetailColumn2);
            this.lstTitles.Dock              = DockStyle.Fill;
            this.lstTitles.ItemSpacing       = -1;
            this.lstTitles.Location          = new Point(5, 95);
            this.lstTitles.Name              = "lstTitles";
            this.lstTitles.Size              = new Size(836, 398);
            this.lstTitles.TabIndex          = 1;
            this.lstTitles.Text              = "\r\n";
            this.lstTitles.ThemeName         = "VisualStudio2012Dark";
            this.lstTitles.ViewType          = ListViewType.DetailsView;
            this.radLabel1.Location          = new Point(188, 14);
            this.radLabel1.Name              = "radLabel1";
            this.radLabel1.Size              = new Size(240, 18);
            this.radLabel1.TabIndex          = 2;
            this.radLabel1.Text              = "USB Helper has detected the following games. ";
            this.radLabel1.ThemeName         = "VisualStudio2012Dark";
            this.radLabel2.Location          = new Point((int)byte.MaxValue, 8);
            this.radLabel2.Name              = "radLabel2";
            this.radLabel2.Size              = new Size(2, 2);
            this.radLabel2.TabIndex          = 3;
            this.radLabel2.ThemeName         = "VisualStudio2012Dark";
            this.cmdImport.Dock              = DockStyle.Bottom;
            this.cmdImport.Location          = new Point(5, 519);
            this.cmdImport.Name              = "cmdImport";
            this.cmdImport.Size              = new Size(836, 26);
            this.cmdImport.TabIndex          = 5;
            this.cmdImport.Text              = "Import";
            this.cmdImport.ThemeName         = "VisualStudio2012Dark";
            this.cmdImport.Click            += new EventHandler(this.cmdImport_Click);
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.radLabel6);
            this.radGroupBox1.Controls.Add((Control)this.radLabel5);
            this.radGroupBox1.Controls.Add((Control)this.radLabel4);
            this.radGroupBox1.Controls.Add((Control)this.radLabel3);
            this.radGroupBox1.Controls.Add((Control)this.radLabel1);
            this.radGroupBox1.Dock       = DockStyle.Top;
            this.radGroupBox1.HeaderText = "Info";
            this.radGroupBox1.Location   = new Point(5, 5);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(836, 90);
            this.radGroupBox1.TabIndex   = 6;
            this.radGroupBox1.Text       = "Info";
            this.radGroupBox1.ThemeName  = "VisualStudio2012Dark";
            this.radLabel6.Location      = new Point(188, 31);
            this.radLabel6.Name          = "radLabel6";
            this.radLabel6.Size          = new Size(323, 18);
            this.radLabel6.TabIndex      = 4;
            this.radLabel6.Text          = "This will only work with games which already appear in the app.";
            this.radLabel6.ThemeName     = "VisualStudio2012Dark";
            this.radLabel5.Location      = new Point(189, 48);
            this.radLabel5.Name          = "radLabel5";
            this.radLabel5.Size          = new Size(367, 18);
            this.radLabel5.TabIndex      = 3;
            this.radLabel5.Text          = "If you have tickets which are not available on that site, please post them.";
            this.radLabel5.ThemeName     = "VisualStudio2012Dark";
            this.radLabel4.ForeColor     = Color.Red;
            this.radLabel4.Location      = new Point(188, 67);
            this.radLabel4.Name          = "radLabel4";
            this.radLabel4.Size          = new Size(311, 18);
            this.radLabel4.TabIndex      = 4;
            this.radLabel4.Text          = "Caution, this will MOVE and RENAME the folders accordingly.";
            this.radLabel4.ThemeName     = "VisualStudio2012Dark";
            this.radLabel3.Location      = new Point(424, 14);
            this.radLabel3.Name          = "radLabel3";
            this.radLabel3.Size          = new Size(225, 18);
            this.radLabel3.TabIndex      = 3;
            this.radLabel3.Text          = " Please choose the ones you wish to import.";
            this.radLabel3.ThemeName     = "VisualStudio2012Dark";
            this.cmdCheckAll.Dock        = DockStyle.Bottom;
            this.cmdCheckAll.Location    = new Point(5, 493);
            this.cmdCheckAll.Name        = "cmdCheckAll";
            this.cmdCheckAll.Size        = new Size(836, 26);
            this.cmdCheckAll.TabIndex    = 6;
            this.cmdCheckAll.Text        = "Select all";
            this.cmdCheckAll.ThemeName   = "VisualStudio2012Dark";
            this.cmdCheckAll.Click      += new EventHandler(this.cmdCheckAll_Click);
            this.AutoScaleDimensions     = new SizeF(6f, 13f);
            this.AutoScaleMode           = AutoScaleMode.Font;
            this.ClientSize = new Size(846, 550);
            this.Controls.Add((Control)this.lstTitles);
            this.Controls.Add((Control)this.cmdCheckAll);
            this.Controls.Add((Control)this.cmdImport);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.radLabel2);
            this.Icon        = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.MinimumSize = new Size(479, 580);
            this.Name        = nameof(FrmImport);
            this.Padding     = new Padding(5);
            this.RootElement.ApplyShapeToControl = true;
            this.RootElement.MaxSize             = new Size(0, 0);
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "Import games";
            this.ThemeName     = "VisualStudio2012Dark";
            this.Load         += new EventHandler(this.FrmImport_Load);
            this.lstTitles.EndInit();
            this.radLabel1.EndInit();
            this.radLabel2.EndInit();
            this.cmdImport.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            this.radLabel6.EndInit();
            this.radLabel5.EndInit();
            this.radLabel4.EndInit();
            this.radLabel3.EndInit();
            this.cmdCheckAll.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #24
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmEmuInfo));

            this.radGroupBox1       = new RadGroupBox();
            this.radGroupBox6       = new RadGroupBox();
            this.lblEmuPath         = new RadLabel();
            this.label1             = new RadLabel();
            this.lblEmuStatus       = new RadLabel();
            this.label2             = new RadLabel();
            this.lblEmuName         = new RadLabel();
            this.label3             = new RadLabel();
            this.radGroupBox3       = new RadGroupBox();
            this.cmdVerifyGame      = new RadButton();
            this.pictGame           = new PictureBox();
            this.lblGameStatus      = new RadLabel();
            this.radLabel6          = new RadLabel();
            this.radGroupBox4       = new RadGroupBox();
            this.cmdVerifyUpdate    = new RadButton();
            this.chkExceptionUpdate = new RadCheckBox();
            this.lblUpdateVersion   = new RadLabel();
            this.lblUpdateStatus    = new RadLabel();
            this.radLabel7          = new RadLabel();
            this.radLabel4          = new RadLabel();
            this.radGroupBox5       = new RadGroupBox();
            this.cmdVerifyDlc       = new RadButton();
            this.chkExceptionDLC    = new RadCheckBox();
            this.lblDLCStatus       = new RadLabel();
            this.radLabel1          = new RadLabel();
            this.cmdDeleteGame      = new RadButton();
            this.cmdDeleteUpdate    = new RadButton();
            this.cmdDeleteDlc       = new RadButton();
            this.radGroupBox2       = new RadGroupBox();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.radGroupBox6.BeginInit();
            this.radGroupBox6.SuspendLayout();
            this.lblEmuPath.BeginInit();
            this.label1.BeginInit();
            this.lblEmuStatus.BeginInit();
            this.label2.BeginInit();
            this.lblEmuName.BeginInit();
            this.label3.BeginInit();
            this.radGroupBox3.BeginInit();
            this.radGroupBox3.SuspendLayout();
            this.cmdVerifyGame.BeginInit();
            ((ISupportInitialize)this.pictGame).BeginInit();
            this.lblGameStatus.BeginInit();
            this.radLabel6.BeginInit();
            this.radGroupBox4.BeginInit();
            this.radGroupBox4.SuspendLayout();
            this.cmdVerifyUpdate.BeginInit();
            this.chkExceptionUpdate.BeginInit();
            this.lblUpdateVersion.BeginInit();
            this.lblUpdateStatus.BeginInit();
            this.radLabel7.BeginInit();
            this.radLabel4.BeginInit();
            this.radGroupBox5.BeginInit();
            this.radGroupBox5.SuspendLayout();
            this.cmdVerifyDlc.BeginInit();
            this.chkExceptionDLC.BeginInit();
            this.lblDLCStatus.BeginInit();
            this.radLabel1.BeginInit();
            this.cmdDeleteGame.BeginInit();
            this.cmdDeleteUpdate.BeginInit();
            this.cmdDeleteDlc.BeginInit();
            this.radGroupBox2.BeginInit();
            this.radGroupBox2.SuspendLayout();
            this.BeginInit();
            this.SuspendLayout();
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.radGroupBox6);
            this.radGroupBox1.Controls.Add((Control)this.radGroupBox3);
            this.radGroupBox1.Controls.Add((Control)this.radGroupBox4);
            this.radGroupBox1.Controls.Add((Control)this.radGroupBox5);
            this.radGroupBox1.Dock           = DockStyle.Fill;
            this.radGroupBox1.HeaderText     = "Info";
            this.radGroupBox1.Location       = new Point(0, 0);
            this.radGroupBox1.Name           = "radGroupBox1";
            this.radGroupBox1.Size           = new Size(1114, 154);
            this.radGroupBox1.TabIndex       = 0;
            this.radGroupBox1.Text           = "Info";
            this.radGroupBox6.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox6.Controls.Add((Control)this.lblEmuPath);
            this.radGroupBox6.Controls.Add((Control)this.label1);
            this.radGroupBox6.Controls.Add((Control)this.lblEmuStatus);
            this.radGroupBox6.Controls.Add((Control)this.label2);
            this.radGroupBox6.Controls.Add((Control)this.lblEmuName);
            this.radGroupBox6.Controls.Add((Control)this.label3);
            this.radGroupBox6.Dock           = DockStyle.Fill;
            this.radGroupBox6.HeaderText     = "Emulator information";
            this.radGroupBox6.Location       = new Point(2, 18);
            this.radGroupBox6.Name           = "radGroupBox6";
            this.radGroupBox6.Size           = new Size(430, 134);
            this.radGroupBox6.TabIndex       = 2;
            this.radGroupBox6.Text           = "Emulator information";
            this.lblEmuPath.Location         = new Point(21, 89);
            this.lblEmuPath.Name             = "lblEmuPath";
            this.lblEmuPath.Size             = new Size(11, 18);
            this.lblEmuPath.TabIndex         = 7;
            this.lblEmuPath.Text             = "-";
            this.label1.Location             = new Point(21, 21);
            this.label1.Name                 = "label1";
            this.label1.Size                 = new Size(57, 18);
            this.label1.TabIndex             = 0;
            this.label1.Text                 = "Emulator :";
            this.lblEmuStatus.Location       = new Point(120, 42);
            this.lblEmuStatus.Name           = "lblEmuStatus";
            this.lblEmuStatus.Size           = new Size(11, 18);
            this.lblEmuStatus.TabIndex       = 6;
            this.lblEmuStatus.Text           = "-";
            this.label2.Location             = new Point(21, 43);
            this.label2.Name                 = "label2";
            this.label2.Size                 = new Size(89, 18);
            this.label2.TabIndex             = 1;
            this.label2.Text                 = "Emulator status :";
            this.lblEmuName.Location         = new Point(120, 18);
            this.lblEmuName.Name             = "lblEmuName";
            this.lblEmuName.Size             = new Size(11, 18);
            this.lblEmuName.TabIndex         = 5;
            this.lblEmuName.Text             = "-";
            this.label3.Location             = new Point(21, 65);
            this.label3.Name                 = "label3";
            this.label3.Size                 = new Size(82, 18);
            this.label3.TabIndex             = 2;
            this.label3.Text                 = "Emulator path :";
            this.radGroupBox3.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox3.Controls.Add((Control)this.cmdVerifyGame);
            this.radGroupBox3.Controls.Add((Control)this.pictGame);
            this.radGroupBox3.Controls.Add((Control)this.lblGameStatus);
            this.radGroupBox3.Controls.Add((Control)this.radLabel6);
            this.radGroupBox3.Dock           = DockStyle.Right;
            this.radGroupBox3.HeaderText     = "Game Info";
            this.radGroupBox3.Location       = new Point(432, 18);
            this.radGroupBox3.Name           = "radGroupBox3";
            this.radGroupBox3.Size           = new Size(280, 134);
            this.radGroupBox3.TabIndex       = 2;
            this.radGroupBox3.Text           = "Game Info";
            this.cmdVerifyGame.Location      = new Point(85, 105);
            this.cmdVerifyGame.Name          = "cmdVerifyGame";
            this.cmdVerifyGame.Size          = new Size(110, 24);
            this.cmdVerifyGame.TabIndex      = 13;
            this.cmdVerifyGame.Text          = "Verify";
            this.cmdVerifyGame.Visible       = false;
            this.cmdVerifyGame.Click        += new EventHandler(this.cmdVerifyGame_Click);
            this.pictGame.Location           = new Point(227, 16);
            this.pictGame.Name               = "pictGame";
            this.pictGame.Size               = new Size(48, 48);
            this.pictGame.TabIndex           = 8;
            this.pictGame.TabStop            = false;
            this.lblGameStatus.Location      = new Point(83, 21);
            this.lblGameStatus.Name          = "lblGameStatus";
            this.lblGameStatus.Size          = new Size(11, 18);
            this.lblGameStatus.TabIndex      = 10;
            this.lblGameStatus.Text          = "-";
            this.radLabel6.Location          = new Point(6, 22);
            this.radLabel6.Name              = "radLabel6";
            this.radLabel6.Size              = new Size(46, 18);
            this.radLabel6.TabIndex          = 4;
            this.radLabel6.Text              = "Status : ";
            this.radGroupBox4.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox4.Controls.Add((Control)this.cmdVerifyUpdate);
            this.radGroupBox4.Controls.Add((Control)this.chkExceptionUpdate);
            this.radGroupBox4.Controls.Add((Control)this.lblUpdateVersion);
            this.radGroupBox4.Controls.Add((Control)this.lblUpdateStatus);
            this.radGroupBox4.Controls.Add((Control)this.radLabel7);
            this.radGroupBox4.Controls.Add((Control)this.radLabel4);
            this.radGroupBox4.Dock                      = DockStyle.Right;
            this.radGroupBox4.HeaderText                = "Update Info";
            this.radGroupBox4.Location                  = new Point(712, 18);
            this.radGroupBox4.Name                      = "radGroupBox4";
            this.radGroupBox4.Size                      = new Size(200, 134);
            this.radGroupBox4.TabIndex                  = 3;
            this.radGroupBox4.Text                      = "Update Info";
            this.cmdVerifyUpdate.Location               = new Point(45, 105);
            this.cmdVerifyUpdate.Name                   = "cmdVerifyUpdate";
            this.cmdVerifyUpdate.Size                   = new Size(110, 24);
            this.cmdVerifyUpdate.TabIndex               = 11;
            this.cmdVerifyUpdate.Text                   = "Verify";
            this.cmdVerifyUpdate.Visible                = false;
            this.cmdVerifyUpdate.Click                 += new EventHandler(this.cmdVerifyUpdate_Click);
            this.chkExceptionUpdate.Location            = new Point(7, 70);
            this.chkExceptionUpdate.Name                = "chkExceptionUpdate";
            this.chkExceptionUpdate.Size                = new Size(94, 18);
            this.chkExceptionUpdate.TabIndex            = 10;
            this.chkExceptionUpdate.Text                = "Do not unpack";
            this.chkExceptionUpdate.ToggleStateChanged += new StateChangedEventHandler(this.chkExceptionUpdate_ToggleStateChanged);
            this.lblUpdateVersion.Location              = new Point(84, 46);
            this.lblUpdateVersion.Name                  = "lblUpdateVersion";
            this.lblUpdateVersion.Size                  = new Size(11, 18);
            this.lblUpdateVersion.TabIndex              = 9;
            this.lblUpdateVersion.Text                  = "-";
            this.lblUpdateStatus.Location               = new Point(83, 22);
            this.lblUpdateStatus.Name                   = "lblUpdateStatus";
            this.lblUpdateStatus.Size                   = new Size(11, 18);
            this.lblUpdateStatus.TabIndex               = 7;
            this.lblUpdateStatus.Text                   = "-";
            this.radLabel7.Location                     = new Point(7, 46);
            this.radLabel7.Name              = "radLabel7";
            this.radLabel7.Size              = new Size(49, 18);
            this.radLabel7.TabIndex          = 4;
            this.radLabel7.Text              = "Version :";
            this.radLabel4.Location          = new Point(6, 22);
            this.radLabel4.Name              = "radLabel4";
            this.radLabel4.Size              = new Size(46, 18);
            this.radLabel4.TabIndex          = 2;
            this.radLabel4.Text              = "Status : ";
            this.radGroupBox5.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox5.Controls.Add((Control)this.cmdVerifyDlc);
            this.radGroupBox5.Controls.Add((Control)this.chkExceptionDLC);
            this.radGroupBox5.Controls.Add((Control)this.lblDLCStatus);
            this.radGroupBox5.Controls.Add((Control)this.radLabel1);
            this.radGroupBox5.Dock                   = DockStyle.Right;
            this.radGroupBox5.HeaderText             = "DLC Info";
            this.radGroupBox5.Location               = new Point(912, 18);
            this.radGroupBox5.Name                   = "radGroupBox5";
            this.radGroupBox5.Size                   = new Size(200, 134);
            this.radGroupBox5.TabIndex               = 4;
            this.radGroupBox5.Text                   = "DLC Info";
            this.cmdVerifyDlc.Location               = new Point(45, 105);
            this.cmdVerifyDlc.Name                   = "cmdVerifyDlc";
            this.cmdVerifyDlc.Size                   = new Size(110, 24);
            this.cmdVerifyDlc.TabIndex               = 12;
            this.cmdVerifyDlc.Text                   = "Verify";
            this.cmdVerifyDlc.Visible                = false;
            this.cmdVerifyDlc.Click                 += new EventHandler(this.cmdVerifyDlc_Click);
            this.chkExceptionDLC.Location            = new Point(5, 70);
            this.chkExceptionDLC.Name                = "chkExceptionDLC";
            this.chkExceptionDLC.Size                = new Size(94, 18);
            this.chkExceptionDLC.TabIndex            = 11;
            this.chkExceptionDLC.Text                = "Do not unpack";
            this.chkExceptionDLC.ToggleStateChanged += new StateChangedEventHandler(this.chkExceptionDLC_ToggleStateChanged);
            this.lblDLCStatus.Location               = new Point(88, 22);
            this.lblDLCStatus.Name                   = "lblDLCStatus";
            this.lblDLCStatus.Size                   = new Size(11, 18);
            this.lblDLCStatus.TabIndex               = 6;
            this.lblDLCStatus.Text                   = "-";
            this.radLabel1.Location                  = new Point(11, 22);
            this.radLabel1.Name              = "radLabel1";
            this.radLabel1.Size              = new Size(46, 18);
            this.radLabel1.TabIndex          = 0;
            this.radLabel1.Text              = "Status : ";
            this.cmdDeleteGame.Anchor        = AnchorStyles.None;
            this.cmdDeleteGame.Location      = new Point(386, 24);
            this.cmdDeleteGame.Name          = "cmdDeleteGame";
            this.cmdDeleteGame.Size          = new Size(110, 24);
            this.cmdDeleteGame.TabIndex      = 3;
            this.cmdDeleteGame.Text          = "Delete Game";
            this.cmdDeleteGame.Click        += new EventHandler(this.cmdDeleteGame_Click);
            this.cmdDeleteUpdate.Anchor      = AnchorStyles.None;
            this.cmdDeleteUpdate.Location    = new Point(502, 24);
            this.cmdDeleteUpdate.Name        = "cmdDeleteUpdate";
            this.cmdDeleteUpdate.Size        = new Size(110, 24);
            this.cmdDeleteUpdate.TabIndex    = 4;
            this.cmdDeleteUpdate.Text        = "Delete Update";
            this.cmdDeleteUpdate.Click      += new EventHandler(this.cmdDeleteUpdate_Click);
            this.cmdDeleteDlc.Anchor         = AnchorStyles.None;
            this.cmdDeleteDlc.Location       = new Point(618, 24);
            this.cmdDeleteDlc.Name           = "cmdDeleteDlc";
            this.cmdDeleteDlc.Size           = new Size(110, 24);
            this.cmdDeleteDlc.TabIndex       = 4;
            this.cmdDeleteDlc.Text           = "Delete DLC";
            this.cmdDeleteDlc.Click         += new EventHandler(this.cmdDeleteDlc_Click);
            this.radGroupBox2.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add((Control)this.cmdDeleteDlc);
            this.radGroupBox2.Controls.Add((Control)this.cmdDeleteGame);
            this.radGroupBox2.Controls.Add((Control)this.cmdDeleteUpdate);
            this.radGroupBox2.Dock       = DockStyle.Bottom;
            this.radGroupBox2.HeaderText = "Delete";
            this.radGroupBox2.Location   = new Point(0, 154);
            this.radGroupBox2.Name       = "radGroupBox2";
            this.radGroupBox2.Size       = new Size(1114, 56);
            this.radGroupBox2.TabIndex   = 1;
            this.radGroupBox2.Text       = "Delete";
            this.ClientSize = new Size(1114, 210);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.radGroupBox2);
            this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
            this.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name            = nameof(frmEmuInfo);
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon      = false;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "Emulator Status";
            this.FormClosing  += new FormClosingEventHandler(this.frmEmuInfo_FormClosing);
            this.Load         += new EventHandler(this.frmEmuInfo_Load);
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox6.EndInit();
            this.radGroupBox6.ResumeLayout(false);
            this.radGroupBox6.PerformLayout();
            this.lblEmuPath.EndInit();
            this.label1.EndInit();
            this.lblEmuStatus.EndInit();
            this.label2.EndInit();
            this.lblEmuName.EndInit();
            this.label3.EndInit();
            this.radGroupBox3.EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox3.PerformLayout();
            this.cmdVerifyGame.EndInit();
            ((ISupportInitialize)this.pictGame).EndInit();
            this.lblGameStatus.EndInit();
            this.radLabel6.EndInit();
            this.radGroupBox4.EndInit();
            this.radGroupBox4.ResumeLayout(false);
            this.radGroupBox4.PerformLayout();
            this.cmdVerifyUpdate.EndInit();
            this.chkExceptionUpdate.EndInit();
            this.lblUpdateVersion.EndInit();
            this.lblUpdateStatus.EndInit();
            this.radLabel7.EndInit();
            this.radLabel4.EndInit();
            this.radGroupBox5.EndInit();
            this.radGroupBox5.ResumeLayout(false);
            this.radGroupBox5.PerformLayout();
            this.cmdVerifyDlc.EndInit();
            this.chkExceptionDLC.EndInit();
            this.lblDLCStatus.EndInit();
            this.radLabel1.EndInit();
            this.cmdDeleteGame.EndInit();
            this.cmdDeleteUpdate.EndInit();
            this.cmdDeleteDlc.EndInit();
            this.radGroupBox2.EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.EndInit();
            this.ResumeLayout(false);
        }
Пример #25
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmNewTitles));

            this.cmdImport    = new RadButton();
            this.lblUpText    = new RadLabel();
            this.cmdCheckAll  = new RadButton();
            this.radGroupBox1 = new RadGroupBox();
            this.radLabel2    = new RadLabel();
            this.lstTitles    = new RadCheckedListBox();
            this.cmdImport.BeginInit();
            this.lblUpText.BeginInit();
            this.cmdCheckAll.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.radLabel2.BeginInit();
            this.lstTitles.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.cmdImport.Dock              = DockStyle.Bottom;
            this.cmdImport.Location          = new Point(10, 532);
            this.cmdImport.Name              = "cmdImport";
            this.cmdImport.Size              = new Size(714, 26);
            this.cmdImport.TabIndex          = 9;
            this.cmdImport.Text              = "Add to the queue";
            this.cmdImport.ThemeName         = "VisualStudio2012Dark";
            this.cmdImport.Click            += new EventHandler(this.cmdImport_Click);
            this.lblUpText.AutoSize          = false;
            this.lblUpText.Dock              = DockStyle.Fill;
            this.lblUpText.Location          = new Point(2, 18);
            this.lblUpText.Name              = "lblUpText";
            this.lblUpText.Size              = new Size(710, 19);
            this.lblUpText.TabIndex          = 2;
            this.lblUpText.Text              = "New titles have been added! Please choose the ones you wish to download.\r\n";
            this.lblUpText.TextAlignment     = ContentAlignment.MiddleCenter;
            this.lblUpText.ThemeName         = "VisualStudio2012Dark";
            this.cmdCheckAll.Dock            = DockStyle.Bottom;
            this.cmdCheckAll.Location        = new Point(10, 506);
            this.cmdCheckAll.Name            = "cmdCheckAll";
            this.cmdCheckAll.Size            = new Size(714, 26);
            this.cmdCheckAll.TabIndex        = 10;
            this.cmdCheckAll.Text            = "Select all";
            this.cmdCheckAll.ThemeName       = "VisualStudio2012Dark";
            this.cmdCheckAll.Click          += new EventHandler(this.cmdCheckAll_Click);
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.lblUpText);
            this.radGroupBox1.Dock       = DockStyle.Top;
            this.radGroupBox1.HeaderText = "Info";
            this.radGroupBox1.Location   = new Point(10, 10);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(714, 39);
            this.radGroupBox1.TabIndex   = 11;
            this.radGroupBox1.Text       = "Info";
            this.radGroupBox1.ThemeName  = "VisualStudio2012Dark";
            this.radGroupBox1.Click     += new EventHandler(this.radGroupBox1_Click);
            this.radLabel2.Location      = new Point(260, 13);
            this.radLabel2.Name          = "radLabel2";
            this.radLabel2.Size          = new Size(2, 2);
            this.radLabel2.TabIndex      = 8;
            this.radLabel2.ThemeName     = "VisualStudio2012Dark";
            this.lstTitles.Dock          = DockStyle.Fill;
            this.lstTitles.Location      = new Point(10, 49);
            this.lstTitles.Name          = "lstTitles";
            this.lstTitles.Size          = new Size(714, 457);
            this.lstTitles.TabIndex      = 7;
            this.lstTitles.Text          = "\r\n";
            this.lstTitles.ThemeName     = "VisualStudio2012Dark";
            this.AutoScaleDimensions     = new SizeF(6f, 13f);
            this.AutoScaleMode           = AutoScaleMode.Font;
            this.ClientSize = new Size(734, 568);
            this.Controls.Add((Control)this.lstTitles);
            this.Controls.Add((Control)this.cmdCheckAll);
            this.Controls.Add((Control)this.cmdImport);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.radLabel2);
            this.Icon    = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name    = nameof(FrmNewTitles);
            this.Padding = new Padding(10);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "New titles available!";
            this.ThemeName     = "VisualStudio2012Dark";
            this.Load         += new EventHandler(this.FrmNewTitles_Load);
            this.cmdImport.EndInit();
            this.lblUpText.EndInit();
            this.cmdCheckAll.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radLabel2.EndInit();
            this.lstTitles.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #26
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmFeedback));

            this.suggestionTypeGroupBox    = new RadGroupBox();
            this.featureRequestRadioButton = new RadRadioButton();
            this.commentRadioButton        = new RadRadioButton();
            this.suggestionRadioButton     = new RadRadioButton();
            this.feedbackLabel             = new RadLabel();
            this.feedbackPictureBox        = new PictureBox();
            this.emailLabel   = new RadLabel();
            this.remarksLabel = new RadLabel();
            this.txtEmail     = new RadTextBox();
            this.txtRemarks   = new RadTextBox();
            this.sendButton   = new RadButton();
            this.closeButton  = new RadButton();
            this.suggestionTypeGroupBox.BeginInit();
            this.suggestionTypeGroupBox.SuspendLayout();
            this.featureRequestRadioButton.BeginInit();
            this.commentRadioButton.BeginInit();
            this.suggestionRadioButton.BeginInit();
            this.feedbackLabel.BeginInit();
            ((ISupportInitialize)this.feedbackPictureBox).BeginInit();
            this.emailLabel.BeginInit();
            this.remarksLabel.BeginInit();
            this.txtEmail.BeginInit();
            this.txtRemarks.BeginInit();
            this.sendButton.BeginInit();
            this.closeButton.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.suggestionTypeGroupBox.AccessibleRole = AccessibleRole.Grouping;
            this.suggestionTypeGroupBox.Controls.Add((Control)this.featureRequestRadioButton);
            this.suggestionTypeGroupBox.Controls.Add((Control)this.commentRadioButton);
            this.suggestionTypeGroupBox.Controls.Add((Control)this.suggestionRadioButton);
            this.suggestionTypeGroupBox.HeaderText             = "Suggestion Type:";
            this.suggestionTypeGroupBox.Location               = new Point(12, 87);
            this.suggestionTypeGroupBox.Name                   = "suggestionTypeGroupBox";
            this.suggestionTypeGroupBox.Size                   = new Size(464, 42);
            this.suggestionTypeGroupBox.TabIndex               = 0;
            this.suggestionTypeGroupBox.TabStop                = false;
            this.suggestionTypeGroupBox.Text                   = "Suggestion Type:";
            this.featureRequestRadioButton.Location            = new Point(262, 17);
            this.featureRequestRadioButton.Name                = "featureRequestRadioButton";
            this.featureRequestRadioButton.Size                = new Size(101, 18);
            this.featureRequestRadioButton.TabIndex            = 3;
            this.featureRequestRadioButton.TabStop             = false;
            this.featureRequestRadioButton.Text                = "Feature Request";
            this.featureRequestRadioButton.ToggleStateChanged += new StateChangedEventHandler(this.featureRequestRadioButton_ToggleStateChanged);
            this.commentRadioButton.Location                   = new Point(186, 17);
            this.commentRadioButton.Name                   = "commentRadioButton";
            this.commentRadioButton.Size                   = new Size(70, 18);
            this.commentRadioButton.TabIndex               = 2;
            this.commentRadioButton.TabStop                = false;
            this.commentRadioButton.Text                   = "Comment";
            this.commentRadioButton.ToggleStateChanged    += new StateChangedEventHandler(this.commentRadioButton_ToggleStateChanged);
            this.suggestionRadioButton.CheckState          = CheckState.Checked;
            this.suggestionRadioButton.Location            = new Point(102, 17);
            this.suggestionRadioButton.Name                = "suggestionRadioButton";
            this.suggestionRadioButton.Size                = new Size(76, 18);
            this.suggestionRadioButton.TabIndex            = 0;
            this.suggestionRadioButton.Text                = "Suggestion";
            this.suggestionRadioButton.ToggleState         = ToggleState.On;
            this.suggestionRadioButton.ToggleStateChanged += new StateChangedEventHandler(this.suggestionRadioButton_ToggleStateChanged);
            this.feedbackLabel.Location         = new Point(112, 12);
            this.feedbackLabel.Name             = "feedbackLabel";
            this.feedbackLabel.ShowItemToolTips = false;
            this.feedbackLabel.Size             = new Size(364, 47);
            this.feedbackLabel.TabIndex         = 1;
            this.feedbackLabel.Text             = "Please fill in the form below to submit your feedback.\r\nSelecting the proper feedback type will help us better understand your\r\nopinion.";
            this.feedbackPictureBox.Image       = (Image)Class123.logo;
            this.feedbackPictureBox.Location    = new Point(16, 3);
            this.feedbackPictureBox.Name        = "feedbackPictureBox";
            this.feedbackPictureBox.Size        = new Size(88, 78);
            this.feedbackPictureBox.SizeMode    = PictureBoxSizeMode.AutoSize;
            this.feedbackPictureBox.TabIndex    = 2;
            this.feedbackPictureBox.TabStop     = false;
            this.emailLabel.Location            = new Point(12, 145);
            this.emailLabel.Name       = "emailLabel";
            this.emailLabel.Size       = new Size(136, 18);
            this.emailLabel.TabIndex   = 3;
            this.emailLabel.Text       = "E-mail Address (Optional):";
            this.remarksLabel.Location = new Point(12, 169);
            this.remarksLabel.Name     = "remarksLabel";
            this.remarksLabel.Size     = new Size(51, 18);
            this.remarksLabel.TabIndex = 4;
            this.remarksLabel.Text     = "Remarks:";
            this.txtEmail.Location     = new Point(154, 143);
            this.txtEmail.Name         = "txtEmail";
            this.txtEmail.Size         = new Size(322, 20);
            this.txtEmail.TabIndex     = 5;
            this.txtRemarks.AutoSize   = false;
            this.txtRemarks.Location   = new Point(12, 193);
            this.txtRemarks.Multiline  = true;
            this.txtRemarks.Name       = "txtRemarks";
            this.txtRemarks.Size       = new Size(468, 120);
            this.txtRemarks.TabIndex   = 6;
            this.sendButton.Location   = new Point(405, 319);
            this.sendButton.Name       = "sendButton";
            this.sendButton.Size       = new Size(75, 23);
            this.sendButton.TabIndex   = 7;
            this.sendButton.Text       = "    &Send";
            this.sendButton.Click     += new EventHandler(this.sendButton_Click);
            this.closeButton.Location  = new Point(319, 319);
            this.closeButton.Name      = "closeButton";
            this.closeButton.Size      = new Size(75, 23);
            this.closeButton.TabIndex  = 8;
            this.closeButton.Text      = "&Close";
            this.closeButton.Click    += new EventHandler(this.closeButton_Click);
            this.AutoScaleDimensions   = new SizeF(6f, 13f);
            this.AutoScaleMode         = AutoScaleMode.Font;
            this.ClientSize            = new Size(481, 346);
            this.Controls.Add((Control)this.feedbackPictureBox);
            this.Controls.Add((Control)this.closeButton);
            this.Controls.Add((Control)this.sendButton);
            this.Controls.Add((Control)this.txtRemarks);
            this.Controls.Add((Control)this.txtEmail);
            this.Controls.Add((Control)this.remarksLabel);
            this.Controls.Add((Control)this.emailLabel);
            this.Controls.Add((Control)this.feedbackLabel);
            this.Controls.Add((Control)this.suggestionTypeGroupBox);
            this.FormBorderStyle = FormBorderStyle.FixedSingle;
            this.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.MaximizeBox     = false;
            this.MinimizeBox     = false;
            this.Name            = nameof(frmFeedback);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "Feedback";
            this.Load         += new EventHandler(this.frmFeedback_Load);
            this.suggestionTypeGroupBox.EndInit();
            this.suggestionTypeGroupBox.ResumeLayout(false);
            this.suggestionTypeGroupBox.PerformLayout();
            this.featureRequestRadioButton.EndInit();
            this.commentRadioButton.EndInit();
            this.suggestionRadioButton.EndInit();
            this.feedbackLabel.EndInit();
            ((ISupportInitialize)this.feedbackPictureBox).EndInit();
            this.emailLabel.EndInit();
            this.remarksLabel.EndInit();
            this.txtEmail.EndInit();
            this.txtRemarks.EndInit();
            this.sendButton.EndInit();
            this.closeButton.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #27
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmDownloadSpecificFiles));

            this.lstNodesGame   = new RadTreeView();
            this.radButton1     = new RadButton();
            this.lstNodesUpdate = new RadTreeView();
            this.lstNodesDlc    = new RadTreeView();
            this.radGroupBox1   = new RadGroupBox();
            this.radGroupBox2   = new RadGroupBox();
            this.radGroupBox3   = new RadGroupBox();
            this.radGroupBox4   = new RadGroupBox();
            this.grpPreview     = new RadGroupBox();
            this.radGroupBox5   = new RadGroupBox();
            this.radLabel1      = new RadLabel();
            this.radLabel2      = new RadLabel();
            this.lblFullPath    = new RadLabel();
            this.lblSize        = new RadLabel();
            this.lstNodesGame.BeginInit();
            this.radButton1.BeginInit();
            this.lstNodesUpdate.BeginInit();
            this.lstNodesDlc.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.radGroupBox2.BeginInit();
            this.radGroupBox2.SuspendLayout();
            this.radGroupBox3.BeginInit();
            this.radGroupBox3.SuspendLayout();
            this.radGroupBox4.BeginInit();
            this.radGroupBox4.SuspendLayout();
            this.grpPreview.BeginInit();
            this.radGroupBox5.BeginInit();
            this.radGroupBox5.SuspendLayout();
            this.radLabel1.BeginInit();
            this.radLabel2.BeginInit();
            this.lblFullPath.BeginInit();
            this.lblSize.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.lstNodesGame.Dock                = DockStyle.Fill;
            this.lstNodesGame.Location            = new Point(2, 18);
            this.lstNodesGame.Name                = "lstNodesGame";
            this.lstNodesGame.Size                = new Size(334, 505);
            this.lstNodesGame.SpacingBetweenNodes = -1;
            this.lstNodesGame.TabIndex            = 0;
            this.lstNodesGame.NodeMouseClick     += new RadTreeView.TreeViewEventHandler(this.lstNodesGame_NodeMouseClick);
            this.radButton1.Dock                    = DockStyle.Bottom;
            this.radButton1.Location                = new Point(0, 525);
            this.radButton1.Name                    = "radButton1";
            this.radButton1.Size                    = new Size(1530, 24);
            this.radButton1.TabIndex                = 0;
            this.radButton1.Text                    = "Download Selected Files";
            this.radButton1.Click                  += new EventHandler(this.radButton1_Click);
            this.lstNodesUpdate.Dock                = DockStyle.Fill;
            this.lstNodesUpdate.Location            = new Point(2, 18);
            this.lstNodesUpdate.Name                = "lstNodesUpdate";
            this.lstNodesUpdate.Size                = new Size(365, 505);
            this.lstNodesUpdate.SpacingBetweenNodes = -1;
            this.lstNodesUpdate.TabIndex            = 1;
            this.lstNodesUpdate.NodeMouseClick     += new RadTreeView.TreeViewEventHandler(this.lstNodesUpdate_NodeMouseClick);
            this.lstNodesDlc.Dock                   = DockStyle.Fill;
            this.lstNodesDlc.Location               = new Point(2, 18);
            this.lstNodesDlc.Name                   = "lstNodesDlc";
            this.lstNodesDlc.Size                   = new Size(384, 505);
            this.lstNodesDlc.SpacingBetweenNodes    = -1;
            this.lstNodesDlc.TabIndex               = 2;
            this.lstNodesDlc.NodeMouseClick        += new RadTreeView.TreeViewEventHandler(this.lstNodesDlc_NodeMouseClick);
            this.radGroupBox1.AccessibleRole        = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.lstNodesGame);
            this.radGroupBox1.Dock           = DockStyle.Left;
            this.radGroupBox1.HeaderText     = "Game";
            this.radGroupBox1.Location       = new Point(0, 0);
            this.radGroupBox1.Name           = "radGroupBox1";
            this.radGroupBox1.Size           = new Size(338, 525);
            this.radGroupBox1.TabIndex       = 3;
            this.radGroupBox1.Text           = "Game";
            this.radGroupBox2.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox2.Controls.Add((Control)this.lstNodesUpdate);
            this.radGroupBox2.Dock           = DockStyle.Left;
            this.radGroupBox2.HeaderText     = "Update";
            this.radGroupBox2.Location       = new Point(338, 0);
            this.radGroupBox2.Name           = "radGroupBox2";
            this.radGroupBox2.Size           = new Size(369, 525);
            this.radGroupBox2.TabIndex       = 4;
            this.radGroupBox2.Text           = "Update";
            this.radGroupBox3.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox3.Controls.Add((Control)this.lstNodesDlc);
            this.radGroupBox3.Dock           = DockStyle.Left;
            this.radGroupBox3.HeaderText     = "Dlc";
            this.radGroupBox3.Location       = new Point(707, 0);
            this.radGroupBox3.Name           = "radGroupBox3";
            this.radGroupBox3.Size           = new Size(388, 525);
            this.radGroupBox3.TabIndex       = 5;
            this.radGroupBox3.Text           = "Dlc";
            this.radGroupBox4.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox4.Controls.Add((Control)this.grpPreview);
            this.radGroupBox4.Controls.Add((Control)this.radGroupBox5);
            this.radGroupBox4.Dock           = DockStyle.Fill;
            this.radGroupBox4.HeaderText     = "File Info";
            this.radGroupBox4.Location       = new Point(1095, 0);
            this.radGroupBox4.Name           = "radGroupBox4";
            this.radGroupBox4.Size           = new Size(435, 525);
            this.radGroupBox4.TabIndex       = 6;
            this.radGroupBox4.Text           = "File Info";
            this.grpPreview.AccessibleRole   = AccessibleRole.Grouping;
            this.grpPreview.Dock             = DockStyle.Fill;
            this.grpPreview.HeaderText       = "File preview";
            this.grpPreview.Location         = new Point(2, 118);
            this.grpPreview.Name             = "grpPreview";
            this.grpPreview.Size             = new Size(431, 405);
            this.grpPreview.TabIndex         = 7;
            this.grpPreview.Text             = "File preview";
            this.radGroupBox5.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox5.Controls.Add((Control)this.radLabel1);
            this.radGroupBox5.Controls.Add((Control)this.radLabel2);
            this.radGroupBox5.Controls.Add((Control)this.lblFullPath);
            this.radGroupBox5.Controls.Add((Control)this.lblSize);
            this.radGroupBox5.Dock       = DockStyle.Top;
            this.radGroupBox5.HeaderText = "Details";
            this.radGroupBox5.Location   = new Point(2, 18);
            this.radGroupBox5.Name       = "radGroupBox5";
            this.radGroupBox5.Size       = new Size(431, 100);
            this.radGroupBox5.TabIndex   = 7;
            this.radGroupBox5.Text       = "Details";
            this.radLabel1.Location      = new Point(18, 36);
            this.radLabel1.Name          = "radLabel1";
            this.radLabel1.Size          = new Size(55, 18);
            this.radLabel1.TabIndex      = 0;
            this.radLabel1.Text          = "Full Path :";
            this.radLabel2.Location      = new Point(18, 60);
            this.radLabel2.Name          = "radLabel2";
            this.radLabel2.Size          = new Size(32, 18);
            this.radLabel2.TabIndex      = 1;
            this.radLabel2.Text          = "Size :";
            this.lblFullPath.Location    = new Point(80, 35);
            this.lblFullPath.Name        = "lblFullPath";
            this.lblFullPath.Size        = new Size(11, 18);
            this.lblFullPath.TabIndex    = 1;
            this.lblFullPath.Text        = "-";
            this.lblSize.Location        = new Point(80, 59);
            this.lblSize.Name            = "lblSize";
            this.lblSize.Size            = new Size(11, 18);
            this.lblSize.TabIndex        = 2;
            this.lblSize.Text            = "-";
            this.AutoScaleDimensions     = new SizeF(6f, 13f);
            this.AutoScaleMode           = AutoScaleMode.Font;
            this.ClientSize = new Size(1530, 549);
            this.Controls.Add((Control)this.radGroupBox4);
            this.Controls.Add((Control)this.radGroupBox3);
            this.Controls.Add((Control)this.radGroupBox2);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.radButton1);
            this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name = nameof(frmDownloadSpecificFiles);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterParent;
            this.Text          = "Download Specific Files";
            this.Load         += new EventHandler(this.frmDownloadSpecificFiles_Load);
            this.lstNodesGame.EndInit();
            this.radButton1.EndInit();
            this.lstNodesUpdate.EndInit();
            this.lstNodesDlc.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox2.EndInit();
            this.radGroupBox2.ResumeLayout(false);
            this.radGroupBox3.EndInit();
            this.radGroupBox3.ResumeLayout(false);
            this.radGroupBox4.EndInit();
            this.radGroupBox4.ResumeLayout(false);
            this.grpPreview.EndInit();
            this.radGroupBox5.EndInit();
            this.radGroupBox5.ResumeLayout(false);
            this.radGroupBox5.PerformLayout();
            this.radLabel1.EndInit();
            this.radLabel2.EndInit();
            this.lblFullPath.EndInit();
            this.lblSize.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
        }
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmUnhandledException));

            this.cmdLater     = new RadButton();
            this.radLabel1    = new RadLabel();
            this.label1       = new RadLabel();
            this.pictureBox1  = new PictureBox();
            this.radLabel2    = new RadLabel();
            this.radGroupBox1 = new RadGroupBox();
            this.lblException = new RadTextBoxControl();
            this.radButton1   = new RadButton();
            this.cmdLater.BeginInit();
            this.radLabel1.BeginInit();
            this.label1.BeginInit();
            ((ISupportInitialize)this.pictureBox1).BeginInit();
            this.radLabel2.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.lblException.BeginInit();
            this.radButton1.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.cmdLater.Location           = new Point(205, 550);
            this.cmdLater.Name               = "cmdLater";
            this.cmdLater.Size               = new Size(163, 29);
            this.cmdLater.TabIndex           = 35;
            this.cmdLater.Text               = "Close the app";
            this.cmdLater.ThemeName          = "VisualStudio2012Dark";
            this.cmdLater.Click             += new EventHandler(this.cmdLater_Click);
            this.radLabel1.AutoSize          = false;
            this.radLabel1.Font              = new Font("Segoe UI", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
            this.radLabel1.Location          = new Point(118, 42);
            this.radLabel1.Name              = "radLabel1";
            this.radLabel1.Size              = new Size(454, 185);
            this.radLabel1.TabIndex          = 32;
            this.radLabel1.Text              = componentResourceManager.GetString("radLabel1.Text");
            this.radLabel1.TextAlignment     = ContentAlignment.MiddleLeft;
            this.radLabel1.ThemeName         = "VisualStudio2012Dark";
            this.label1.Font                 = new Font("Segoe UI", 11.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0);
            this.label1.Location             = new Point(118, 12);
            this.label1.Name                 = "label1";
            this.label1.Size                 = new Size(325, 24);
            this.label1.TabIndex             = 31;
            this.label1.Text                 = "Wii U USB Helper has encountered an issue.";
            this.label1.ThemeName            = "VisualStudio2012Dark";
            this.pictureBox1.Image           = (Image)Class123.logo;
            this.pictureBox1.Location        = new Point(12, 12);
            this.pictureBox1.Name            = "pictureBox1";
            this.pictureBox1.Size            = new Size(94, 91);
            this.pictureBox1.TabIndex        = 30;
            this.pictureBox1.TabStop         = false;
            this.radLabel2.Location          = new Point(5, 21);
            this.radLabel2.Name              = "radLabel2";
            this.radLabel2.Size              = new Size(60, 18);
            this.radLabel2.TabIndex          = 36;
            this.radLabel2.Text              = "Exception :";
            this.radGroupBox1.AccessibleRole = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.lblException);
            this.radGroupBox1.Controls.Add((Control)this.radLabel2);
            this.radGroupBox1.HeaderText = "Info";
            this.radGroupBox1.Location   = new Point(12, 279);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(560, 265);
            this.radGroupBox1.TabIndex   = 37;
            this.radGroupBox1.Text       = "Info";
            this.lblException.BackColor  = Color.FromArgb(64, 64, 64);
            this.lblException.Font       = new Font("Consolas", 8.25f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
            this.lblException.ForeColor  = Color.Lime;
            this.lblException.IsReadOnly = true;
            this.lblException.Location   = new Point(6, 46);
            this.lblException.Multiline  = true;
            this.lblException.Name       = "lblException";
            this.lblException.Size       = new Size(549, 214);
            this.lblException.TabIndex   = 37;
            this.lblException.TabStop    = false;
            this.radButton1.Location     = new Point(208, 244);
            this.radButton1.Name         = "radButton1";
            this.radButton1.Size         = new Size(163, 29);
            this.radButton1.TabIndex     = 36;
            this.radButton1.Text         = "Go the Help Center";
            this.radButton1.ThemeName    = "VisualStudio2012Dark";
            this.radButton1.Click       += new EventHandler(this.radButton1_Click);
            this.AutoScaleDimensions     = new SizeF(6f, 13f);
            this.AutoScaleMode           = AutoScaleMode.Font;
            this.ClientSize = new Size(579, 583);
            this.Controls.Add((Control)this.radButton1);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Controls.Add((Control)this.cmdLater);
            this.Controls.Add((Control)this.radLabel1);
            this.Controls.Add((Control)this.label1);
            this.Controls.Add((Control)this.pictureBox1);
            this.FormBorderStyle = FormBorderStyle.FixedToolWindow;
            this.Name            = nameof(frmUnhandledException);
            this.RootElement.ApplyShapeToControl = true;
            this.ShowIcon      = false;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "An error has occured";
            this.cmdLater.EndInit();
            this.radLabel1.EndInit();
            this.label1.EndInit();
            ((ISupportInitialize)this.pictureBox1).EndInit();
            this.radLabel2.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.radGroupBox1.PerformLayout();
            this.lblException.EndInit();
            this.radButton1.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Пример #29
0
        public static void ConvertirBordesRedondeadosLabelEnGroupBox(RadGroupBox panel)
        {

            foreach (Control ctrl in panel.Controls)
            {
                if (ctrl is RadLabel && ctrl.Name != "lblTitulo")
                {
                    RadLabel rad = (RadLabel)ctrl;
                    rad.LabelElement.Shape = new RoundRectShape();
                    rad.BackColor = Color.Transparent;
                    Color colorr = Color.FromArgb(191, 219, 255);
                    Color color = Color.FromArgb(17, 105, 133);
                    rad.LabelElement.ForeColor = colorr;
                    rad.LabelElement.LabelFill.GradientStyle = GradientStyles.Solid;
                    rad.LabelElement.LabelFill.BackColor = color;
                }
            }
        }
Пример #30
0
        private void cfb5cf413352ed4044535eb4a62d2e98f()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(Type.GetTypeFromHandle(cfd932400aa2acc273e255df4b5e4a6af.c6804baa30a51e813a45fabcfa2b27b79()));

            this.c315ebf3de36e7a50ea2c550cda4eaba1 = new RadCheckedListBox();
            this.cd036f2b2868b103e71bd7b4fbe25a603 = new RadLabel();
            this.cee9946355c6a614ff90b875d32801e38 = new RadLabel();
            this.ca75cf6b554bca20b242f951643c4d424 = new RadButton();
            this.c0b6ff62997904dd44189c4cb17f2ab15 = new RadGroupBox();
            this.c0b8c323aae75c040334498c5efcb96f4 = new RadLabel();
            this.c9e453c2e79f4fc55124ccb1fd3603902 = new RadLabel();
            this.c38925728235576f0c42cd968bde792d6 = new RadLabel();
            this.cba34b2a0111f6e5bc303375f968bc295 = new RadLabel();
            this.c51175a4a3b6b11c0eee765ad7effd076 = new RadButton();
            ((ISupportInitialize)this.c315ebf3de36e7a50ea2c550cda4eaba1).BeginInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).BeginInit();
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).BeginInit();
            ((ISupportInitialize)this.ca75cf6b554bca20b242f951643c4d424).BeginInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).BeginInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).SuspendLayout();
            ((ISupportInitialize)this.c0b8c323aae75c040334498c5efcb96f4).BeginInit();
            ((ISupportInitialize)this.c9e453c2e79f4fc55124ccb1fd3603902).BeginInit();
            ((ISupportInitialize)this.c38925728235576f0c42cd968bde792d6).BeginInit();
            ((ISupportInitialize)this.cba34b2a0111f6e5bc303375f968bc295).BeginInit();
            ((ISupportInitialize)this.c51175a4a3b6b11c0eee765ad7effd076).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            ((RadFormControlBase)this).SuspendLayout();
            ((RadListView)this.c315ebf3de36e7a50ea2c550cda4eaba1).set_AllowRemove(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10180) != 0);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10184);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10188), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10192));
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15793);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10196), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10200));
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10204);
            ((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7221);
            ((RadControl)this.c315ebf3de36e7a50ea2c550cda4eaba1).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((RadListView)this.c315ebf3de36e7a50ea2c550cda4eaba1).add_SelectedItemChanged(new EventHandler(this.cb42fd5251475b82666a24ad0ee4d65c6));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10208), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10212));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7428);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10216), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10220));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10224);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15812);
            ((RadControl)this.cd036f2b2868b103e71bd7b4fbe25a603).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Click   += new EventHandler(this.c6867c328266a684e255f3e845159490f);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10228), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10232));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(12323);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10236), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10240));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10244);
            ((RadControl)this.cee9946355c6a614ff90b875d32801e38).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Click   += new EventHandler(this.cde47dfcc2c5f0f43f25fde9825b1bff9);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10248);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10252), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10256));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15903);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10260), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10264));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10268);
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15922);
            ((RadControl)this.ca75cf6b554bca20b242f951643c4d424).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.ca75cf6b554bca20b242f951643c4d424).Click         += new EventHandler(this.cf93b4b8c40f46dbd89b416a232d361f0);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).AccessibleRole = (AccessibleRole)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10272);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.c0b8c323aae75c040334498c5efcb96f4);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.c9e453c2e79f4fc55124ccb1fd3603902);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.c38925728235576f0c42cd968bde792d6);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.cba34b2a0111f6e5bc303375f968bc295);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.cd036f2b2868b103e71bd7b4fbe25a603);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10276);
            this.c0b6ff62997904dd44189c4cb17f2ab15.set_HeaderText(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10280), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10284));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14902);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10288), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10292));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10296);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15935);
            ((RadControl)this.c0b6ff62997904dd44189c4cb17f2ab15).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Click   += new EventHandler(this.cda0083ff2d7ad8dc5a378909d229a0b0);
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10300), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10304));
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14336);
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10308), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10312));
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10316);
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15944);
            ((RadControl)this.c0b8c323aae75c040334498c5efcb96f4).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c0b8c323aae75c040334498c5efcb96f4).Click   += new EventHandler(this.c40834fe6e096f5f7d2c61d5d194bc8bf);
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10320), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10324));
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(13621);
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10328), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10332));
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10336);
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16071);
            ((RadControl)this.c9e453c2e79f4fc55124ccb1fd3603902).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c9e453c2e79f4fc55124ccb1fd3603902).Click    += new EventHandler(this.c055f9c481300eac610c0c54370bb4fc2);
            ((Control)this.c38925728235576f0c42cd968bde792d6).ForeColor = Color.Red;
            ((Control)this.c38925728235576f0c42cd968bde792d6).Location  = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10340), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10344));
            ((Control)this.c38925728235576f0c42cd968bde792d6).Name      = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14533);
            ((Control)this.c38925728235576f0c42cd968bde792d6).Size      = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10348), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10352));
            ((Control)this.c38925728235576f0c42cd968bde792d6).TabIndex  = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10356);
            ((Control)this.c38925728235576f0c42cd968bde792d6).Text      = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16223);
            ((RadControl)this.c38925728235576f0c42cd968bde792d6).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c38925728235576f0c42cd968bde792d6).Click   += new EventHandler(this.cf7db0bc1157d74354f9f6496a296c24f);
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10360), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10364));
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(13819);
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10368), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10372));
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10376);
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16342);
            ((RadControl)this.cba34b2a0111f6e5bc303375f968bc295).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cba34b2a0111f6e5bc303375f968bc295).Click   += new EventHandler(this.c68466370159591d103d317ff138cc2d1);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10380);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10384), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10388));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16429);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10392), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10396));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10400);
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16452);
            ((RadControl)this.c51175a4a3b6b11c0eee765ad7effd076).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.c51175a4a3b6b11c0eee765ad7effd076).Click += new EventHandler(this.c73a91aa5e28f9899f28a0eb26c625fd5);
            ((ContainerControl)this).AutoScaleDimensions             = new SizeF(cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(10404), cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(10408));
            ((RadFormControlBase)this).set_AutoScaleMode((AutoScaleMode)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10412));
            ((Form)this).ClientSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10416), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10420));
            ((Control)this).Controls.Add((Control)this.c315ebf3de36e7a50ea2c550cda4eaba1);
            ((Control)this).Controls.Add((Control)this.c51175a4a3b6b11c0eee765ad7effd076);
            ((Control)this).Controls.Add((Control)this.ca75cf6b554bca20b242f951643c4d424);
            ((Control)this).Controls.Add((Control)this.c0b6ff62997904dd44189c4cb17f2ab15);
            ((Control)this).Controls.Add((Control)this.cee9946355c6a614ff90b875d32801e38);
            ((Form)this).Icon           = cead0b4edd540ba7cac4363706aa68fb6.cc8e287d5350b43026d33bb80beb131a0(componentResourceManager.GetObject(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7256)));
            ((Control)this).MinimumSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10424), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10428));
            ((Control)this).Name        = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16473);
            ((Control)this).Padding     = new Padding(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10432));
            ((RadFormControlBase)this).get_RootElement().set_ApplyShapeToControl(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10436) != 0);
            ((RadElement)((RadFormControlBase)this).get_RootElement()).set_MaxSize(new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10440), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10444)));
            ((Form)this).StartPosition = (FormStartPosition)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10448);
            ((Control)this).Text       = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16492);
            ((RadFormControlBase)this).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Form)this).Load += new EventHandler(this.c6f9e28dce46d00214020200ce5c6bfbe);
            ((ISupportInitialize)this.c315ebf3de36e7a50ea2c550cda4eaba1).EndInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).EndInit();
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).EndInit();
            ((ISupportInitialize)this.ca75cf6b554bca20b242f951643c4d424).EndInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).EndInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10452) != 0);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).PerformLayout();
            ((ISupportInitialize)this.c0b8c323aae75c040334498c5efcb96f4).EndInit();
            ((ISupportInitialize)this.c9e453c2e79f4fc55124ccb1fd3603902).EndInit();
            ((ISupportInitialize)this.c38925728235576f0c42cd968bde792d6).EndInit();
            ((ISupportInitialize)this.cba34b2a0111f6e5bc303375f968bc295).EndInit();
            ((ISupportInitialize)this.c51175a4a3b6b11c0eee765ad7effd076).EndInit();
            ((ISupportInitialize)this).EndInit();
            ((RadFormControlBase)this).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(10456) != 0);
            ((Control)this).PerformLayout();
        }
Пример #31
0
 public static void LimpiarControlesEnGroupBox(RadGroupBox form)
 {
     foreach (Control ctrl in form.Controls)
     {
         if (ctrl is RadLabel)
         {
             RadLabel lbl = (RadLabel)ctrl;
             foreach (Control ctrl2 in lbl.Controls)
             {
                 if (ctrl2 is RadTextBox)
                 {
                     RadTextBox txt = (RadTextBox)ctrl2;
                     //txtCodigo.Text = txtCodigo.Text + "/" + lbl.Controls.IndexOf(ctrl2).ToString() + lbl.Controls[lbl.Controls.IndexOf(ctrl2)].Name;
                     txt.Text = string.Empty;
                 }
                 else if (ctrl2 is RadDropDownList)
                 {
                     RadDropDownList cbo = (RadDropDownList)ctrl2;
                     cbo.Text = "--Seleccione--";
                     cbo.SelectedIndex = -1;
                 }
                 else if (ctrl2 is RadDateTimePicker)
                 {
                     RadDateTimePicker dtp = (RadDateTimePicker)ctrl2;
                     dtp.Value = DateTime.Now;
                 }
                 else if (ctrl2 is RichTextBox)
                 {
                     RichTextBox rtb = (RichTextBox)ctrl2;
                     rtb.Text = string.Empty;
                 }
                 //txtCodigo.Text = txtCodigo.Text + "/" + pvPaginaDatosFiliacion.Controls.IndexOf(ctrl).ToString() + pvPaginaDatosFiliacion.Controls[pvPaginaDatosFiliacion.Controls.IndexOf(ctrl)].Name;
             }
         }
     }
 }
Пример #32
0
        private void InitializeComponent()
        {
            ListViewDetailColumn     viewDetailColumn1        = new ListViewDetailColumn("Column 0", "Game");
            ListViewDetailColumn     viewDetailColumn2        = new ListViewDetailColumn("Column 1", "Date");
            ListViewDetailColumn     viewDetailColumn3        = new ListViewDetailColumn("Column 2", "Size");
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmManageCloudSaves));

            this.lstSaves     = new RadListView();
            this.radGroupBox1 = new RadGroupBox();
            this.cmdDelete    = new RadButton();
            this.lstSaves.BeginInit();
            this.radGroupBox1.BeginInit();
            this.radGroupBox1.SuspendLayout();
            this.cmdDelete.BeginInit();
            this.BeginInit();
            this.SuspendLayout();
            this.lstSaves.AllowEdit      = false;
            this.lstSaves.AllowRemove    = false;
            viewDetailColumn1.HeaderText = "Game";
            viewDetailColumn1.Width      = 400f;
            viewDetailColumn2.HeaderText = "Date";
            viewDetailColumn3.HeaderText = "Size";
            this.lstSaves.Columns.AddRange(viewDetailColumn1, viewDetailColumn2, viewDetailColumn3);
            this.lstSaves.Dock                 = DockStyle.Fill;
            this.lstSaves.ItemSpacing          = -1;
            this.lstSaves.Location             = new Point(0, 0);
            this.lstSaves.Name                 = "lstSaves";
            this.lstSaves.Size                 = new Size(808, 482);
            this.lstSaves.TabIndex             = 0;
            this.lstSaves.Text                 = "radListView1";
            this.lstSaves.ViewType             = ListViewType.DetailsView;
            this.lstSaves.SelectedItemChanged += new EventHandler(this.lstSaves_SelectedItemChanged);
            this.radGroupBox1.AccessibleRole   = AccessibleRole.Grouping;
            this.radGroupBox1.Controls.Add((Control)this.cmdDelete);
            this.radGroupBox1.Dock       = DockStyle.Bottom;
            this.radGroupBox1.HeaderText = "Actions";
            this.radGroupBox1.Location   = new Point(0, 482);
            this.radGroupBox1.Name       = "radGroupBox1";
            this.radGroupBox1.Size       = new Size(808, 57);
            this.radGroupBox1.TabIndex   = 0;
            this.radGroupBox1.Text       = "Actions";
            this.cmdDelete.Location      = new Point(5, 28);
            this.cmdDelete.Name          = "cmdDelete";
            this.cmdDelete.Size          = new Size(177, 24);
            this.cmdDelete.TabIndex      = 0;
            this.cmdDelete.Text          = "Delete the save from the cloud";
            this.cmdDelete.Click        += new EventHandler(this.cmdDelete_Click);
            this.AutoScaleDimensions     = new SizeF(6f, 13f);
            this.AutoScaleMode           = AutoScaleMode.Font;
            this.ClientSize = new Size(808, 539);
            this.Controls.Add((Control)this.lstSaves);
            this.Controls.Add((Control)this.radGroupBox1);
            this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
            this.Name = nameof(frmManageCloudSaves);
            this.RootElement.ApplyShapeToControl = true;
            this.StartPosition = FormStartPosition.CenterScreen;
            this.Text          = "Manage my saves";
            this.lstSaves.EndInit();
            this.radGroupBox1.EndInit();
            this.radGroupBox1.ResumeLayout(false);
            this.cmdDelete.EndInit();
            this.EndInit();
            this.ResumeLayout(false);
        }
        private void cfb5cf413352ed4044535eb4a62d2e98f()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(Type.GetTypeFromHandle(c9b4090f9607a8252f041a249fe420068.c6804baa30a51e813a45fabcfa2b27b79()));

            this.cd1f843e42a66d99c7be2b2990a7005c3 = new RadListView();
            this.c0b6ff62997904dd44189c4cb17f2ab15 = new RadGroupBox();
            this.cdf4f936649fd7e5caeee05e0dab9c79e = new RadTextBoxControl();
            this.ceaa840c956974ca188494a71cc14878f = new RadButton();
            this.cee9946355c6a614ff90b875d32801e38 = new RadLabel();
            this.cd036f2b2868b103e71bd7b4fbe25a603 = new RadLabel();
            ((ISupportInitialize)this.cd1f843e42a66d99c7be2b2990a7005c3).BeginInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).BeginInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).SuspendLayout();
            ((ISupportInitialize)this.cdf4f936649fd7e5caeee05e0dab9c79e).BeginInit();
            ((ISupportInitialize)this.ceaa840c956974ca188494a71cc14878f).BeginInit();
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).BeginInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            ((RadFormControlBase)this).SuspendLayout();
            this.cd1f843e42a66d99c7be2b2990a7005c3.set_AllowEdit(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11052) != 0);
            this.cd1f843e42a66d99c7be2b2990a7005c3.set_AllowRemove(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11056) != 0);
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11060);
            this.cd1f843e42a66d99c7be2b2990a7005c3.set_FullRowSelect(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11064) != 0);
            this.cd1f843e42a66d99c7be2b2990a7005c3.set_ItemSize(new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11068), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11072)));
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11076), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11080));
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16962);
            ((RadControl)this.cd1f843e42a66d99c7be2b2990a7005c3).set_Padding(new Padding(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11084)));
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11088), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11092));
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11096);
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).TabStop  = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11100) != 0;
            ((Control)this.cd1f843e42a66d99c7be2b2990a7005c3).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(12100);
            ((RadControl)this.cd1f843e42a66d99c7be2b2990a7005c3).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            this.cd1f843e42a66d99c7be2b2990a7005c3.set_ViewType((ListViewType)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11104));
            // ISSUE: method pointer
            this.cd1f843e42a66d99c7be2b2990a7005c3.add_ItemMouseDoubleClick(new ListViewItemEventHandler((object)this, __methodptr(c627fa68eab5b64ee6b24da313f6a4447)));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).AccessibleRole = (AccessibleRole)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11108);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Controls.Add((Control)this.ceaa840c956974ca188494a71cc14878f);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11112);
            this.c0b6ff62997904dd44189c4cb17f2ab15.set_HeaderText(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16977));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11116), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11120));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14902);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11124), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11128));
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11132);
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(16977);
            ((RadControl)this.c0b6ff62997904dd44189c4cb17f2ab15).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11136);
            ((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11140), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11144));
            ((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(15084);
            ((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11148), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11152));
            ((Control)this.cdf4f936649fd7e5caeee05e0dab9c79e).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11156);
            ((RadControl)this.cdf4f936649fd7e5caeee05e0dab9c79e).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11160);
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11164), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11168));
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17010);
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11172), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11176));
            ((Control)this.ceaa840c956974ca188494a71cc14878f).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11180);
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17023);
            ((RadControl)this.ceaa840c956974ca188494a71cc14878f).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.ceaa840c956974ca188494a71cc14878f).Click    += new EventHandler(this.cc067706f898221edfb932cc0fbf28ca1);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).AutoSize  = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11184) != 0;
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Dock      = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11188);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).ForeColor = Color.Orange;
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Location  = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11192), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11196));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Name      = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(12323);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Size      = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11200), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11204));
            ((Control)this.cee9946355c6a614ff90b875d32801e38).TabIndex  = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11208);
            ((Control)this.cee9946355c6a614ff90b875d32801e38).Text      = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17030);
            this.cee9946355c6a614ff90b875d32801e38.set_TextAlignment((ContentAlignment)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11212));
            ((RadControl)this.cee9946355c6a614ff90b875d32801e38).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).AutoSize = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11216) != 0;
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Dock     = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11220);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11224), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11228));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Name     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7428);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Size     = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11232), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11236));
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11240);
            ((Control)this.cd036f2b2868b103e71bd7b4fbe25a603).Text     = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17282);
            this.cd036f2b2868b103e71bd7b4fbe25a603.set_TextAlignment((ContentAlignment)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11244));
            ((RadControl)this.cd036f2b2868b103e71bd7b4fbe25a603).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((ContainerControl)this).AutoScaleDimensions = new SizeF(cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11248), cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11252));
            ((RadFormControlBase)this).set_AutoScaleMode((AutoScaleMode)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11256));
            ((Form)this).ClientSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11260), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11264));
            ((Control)this).Controls.Add((Control)this.cd1f843e42a66d99c7be2b2990a7005c3);
            ((Control)this).Controls.Add((Control)this.cee9946355c6a614ff90b875d32801e38);
            ((Control)this).Controls.Add((Control)this.cd036f2b2868b103e71bd7b4fbe25a603);
            ((Control)this).Controls.Add((Control)this.c0b6ff62997904dd44189c4cb17f2ab15);
            ((Form)this).Icon       = cead0b4edd540ba7cac4363706aa68fb6.cc8e287d5350b43026d33bb80beb131a0(componentResourceManager.GetObject(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7256)));
            ((Control)this).Name    = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17430);
            ((Control)this).Padding = new Padding(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11268));
            ((RadFormControlBase)this).get_RootElement().set_ApplyShapeToControl(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11272) != 0);
            ((Control)this).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(17445);
            ((RadFormControlBase)this).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7321));
            ((Form)this).Load += new EventHandler(this.c0e6784edbde9022161a29ac467b4c73d);
            ((ISupportInitialize)this.cd1f843e42a66d99c7be2b2990a7005c3).EndInit();
            ((ISupportInitialize)this.c0b6ff62997904dd44189c4cb17f2ab15).EndInit();
            ((Control)this.c0b6ff62997904dd44189c4cb17f2ab15).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11276) != 0);
            ((ISupportInitialize)this.cdf4f936649fd7e5caeee05e0dab9c79e).EndInit();
            ((ISupportInitialize)this.ceaa840c956974ca188494a71cc14878f).EndInit();
            ((ISupportInitialize)this.cee9946355c6a614ff90b875d32801e38).EndInit();
            ((ISupportInitialize)this.cd036f2b2868b103e71bd7b4fbe25a603).EndInit();
            ((ISupportInitialize)this).EndInit();
            ((RadFormControlBase)this).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11280) != 0);
        }