private void InitializeComponent() { this.lstDrives = new RadListView(); this.label1 = new RadLabel(); this.chkDriveNotSeen = new RadCheckBox(); this.lstDrives.BeginInit(); this.label1.BeginInit(); this.chkDriveNotSeen.BeginInit(); this.BeginInit(); this.SuspendLayout(); this.lstDrives.AllowEdit = false; this.lstDrives.AllowRemove = false; this.lstDrives.Dock = DockStyle.Fill; this.lstDrives.FullRowSelect = false; this.lstDrives.ItemSize = new Size(64, 64); this.lstDrives.Location = new Point(10, 28); this.lstDrives.Name = "lstDrives"; this.lstDrives.Size = new Size(328, 339); this.lstDrives.TabIndex = 0; this.lstDrives.Text = "radListView1"; this.lstDrives.ThemeName = "VisualStudio2012Dark"; this.lstDrives.ViewType = ListViewType.IconsView; this.lstDrives.ItemMouseDoubleClick += new ListViewItemEventHandler(this.lstDrives_ItemMouseDoubleClick); this.label1.Dock = DockStyle.Top; this.label1.Location = new Point(10, 10); this.label1.Name = "label1"; this.label1.Size = new Size(224, 18); this.label1.TabIndex = 1; this.label1.Text = "Double click to select the destination drive :"; this.label1.ThemeName = "VisualStudio2012Dark"; this.chkDriveNotSeen.Dock = DockStyle.Bottom; this.chkDriveNotSeen.Location = new Point(10, 367); this.chkDriveNotSeen.Name = "chkDriveNotSeen"; this.chkDriveNotSeen.Size = new Size(116, 18); this.chkDriveNotSeen.TabIndex = 2; this.chkDriveNotSeen.Text = "I can't see my drive"; this.chkDriveNotSeen.ToggleStateChanged += new StateChangedEventHandler(this.chkDriveNotSeen_ToggleStateChanged); this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(348, 395); this.Controls.Add((Control)this.lstDrives); this.Controls.Add((Control)this.chkDriveNotSeen); this.Controls.Add((Control)this.label1); this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.Name = nameof(FrmSelectDrive); this.Padding = new Padding(10); this.RootElement.ApplyShapeToControl = true; this.ShowIcon = false; this.StartPosition = FormStartPosition.CenterParent; this.Text = "Select your destination drive"; this.ThemeName = "VisualStudio2012Dark"; this.FormClosing += new FormClosingEventHandler(this.FrmSelectDrive_FormClosing); this.Load += new EventHandler(this.FrmSelectDrive_Load); this.lstDrives.EndInit(); this.label1.EndInit(); this.chkDriveNotSeen.EndInit(); this.EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
protected void Grid_HostBed_SelectedIndexChanged(object sender, EventArgs e) { if (Grid_HostBed.SelectedValue != null) { Grid_HostBed.Visible = true; GridDataItem Item = (GridDataItem)Grid_HostBed.SelectedItems[0]; RadLabel lblAbliable = (RadLabel)Item.FindControl("lbl_avalible"); if (lblAbliable.Text == "Yes") { foreach (GridDataItem item in Grid_HostBed.MasterTableView.Items) { int HostBedId = Convert.ToInt32(item.GetDataKeyValue("HostBedId").ToString()); RadCheckBox chbPlacement = (RadCheckBox)item.FindControl("chb_placement"); if (HostBedId == Convert.ToInt32(Grid_HostBed.SelectedValue.ToString())) { chbPlacement.Checked = true; } else { chbPlacement.Checked = false; } } } } }
public CheckBoxGettingStartedCSharp() { // >> checkbox-getting-started-csharp var checkBox = new RadCheckBox(); // << checkbox-getting-started-csharp this.Content = checkBox; }
private void chk_Click(object sender, EventArgs e) { RadCheckBox activeCheckBox = sender as RadCheckBox; if (activeCheckBox != lastChecked && lastChecked != null) { lastChecked.Checked = false; } lastChecked = activeCheckBox; }
private void AttachEvents() { foreach (Control child in ControlHelper.EnumChildControls(this.radPageView1, true)) { RadCheckBox check = child as RadCheckBox; if (check != null) { check.ToggleStateChanged += OnCheck_ToggleStateChanged; } } }
bool[] checkAnswer; //позиции нажатых чекбоксов private RadCheckBox addAnswerRadio(int nameCount, string text) { RadCheckBox radRadioButton = new RadCheckBox(); radRadioButton.ThemeName = "Fluent"; radRadioButton.Name = "radAnswerRadio" + ++nameCount; radRadioButton.Text = text; this.pointRadio.Y = this.pointRadio.Y + 35; radRadioButton.Location = this.pointRadio; radRadioButton.Checked = checkAnswer[nameCount - 1]; return(radRadioButton); }
private RadCheckBox addAnswerRadio(int nameCount) { RadCheckBox radRadioButton = new RadCheckBox(); radRadioButton.ThemeName = "Fluent"; radRadioButton.Name = "radAnswerRadio" + ++nameCount; radRadioButton.Text = ""; this.pointRadio.Y = this.pointRadio.Y + 35; radRadioButton.Location = this.pointRadio; return(radRadioButton); }
private void radCheckBox_IsAccountable_CheckStateChanged(object sender, EventArgs e) { RadCheckBox checkBox = (RadCheckBox)sender; if (checkBox.Checked) { this.radCheckedDropDownList_Accountables.Visible = true; } else { this.radCheckedDropDownList_Accountables.Visible = false; } }
private void OnCheck_ToggleStateChanged(object sender, StateChangedEventArgs args) { RadCheckBox check = sender as RadCheckBox; if (check.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On) { RadListDataItem item = new RadListDataItem(check.Text); check.Tag = item; this.radListOptions.Items.Add(item); } else { this.radListOptions.Items.Remove(check.Tag as RadListDataItem); } }
private void LoadAllRole() { var roles = _roleManager.Roles.ToList(); foreach (var role in roles) { var x = new RadCheckBox() { Name = string.Format("chk{0}", role.Name), Text = role.Name, Checked = false, }; panelRoles.Controls.Add(x); } }
private void CheckFiles(string Path, RadLabel label, RadCheckBox checkBox) { if (!File.Exists(Path)) { label.BackColor = Color.Brown; label.LabelElement.ForeColor = Color.White; checkBox.Enabled = false; } else if (!checkBox.Checked) { label.BackColor = Color.OrangeRed; label.LabelElement.ForeColor = Color.White; checkBox.Enabled = true; } else { label.BackColor = Color.PaleGreen; label.LabelElement.ForeColor = Color.Black; checkBox.Enabled = true; } }
protected void Grid_HostBed_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { GridDataItem Item = (GridDataItem)e.Item; RadLabel lblAbliable = (RadLabel)Item.FindControl("lbl_avalible"); RadCheckBox chbPlacement = (RadCheckBox)Item.FindControl("chb_placement"); // Check Avalible if (lblAbliable.Text == "No") { chbPlacement.Visible = false; } else { chbPlacement.Visible = true; } } }
private void RdChkOpen_ToggleStateChanged(object sender, StateChangedEventArgs args) { try { RadCheckBox _RdCheckBox = ((RadCheckBox)sender); if (_RdCheckBox.CheckState == CheckState.Checked) { if (LstRdCheckBoxes.Contains(_RdCheckBox) == false && LstRdCheckBoxes.Count < 2) { LstRdCheckBoxes.Add(_RdCheckBox); } else { ClsMessage._IClsMessage.showMessage("Maximum Two Value Allowed !!!"); _RdCheckBox.ToggleStateChanged -= RdChkOpen_ToggleStateChanged; _RdCheckBox.CheckState = CheckState.Unchecked; _RdCheckBox.ToggleStateChanged += RdChkOpen_ToggleStateChanged; } } else { if (LstRdCheckBoxes.Contains(_RdCheckBox) == true) { LstRdCheckBoxes.Remove(_RdCheckBox); } } if (LstRdCheckBoxes.Count == 2) { RdTxtCompareFormula.Text = string.Concat(LstRdCheckBoxes[0].Text, " - ", LstRdCheckBoxes[1].Text); } else { RdTxtCompareFormula.Text = ""; } } catch (Exception ex) { ClsMessage._IClsMessage.ProjectExceptionMessage(ex); } }
public c5ac1c83c6771f1d2ec2730d47af7105b(cce1cf1e0b6971ed6f7ef86a83b0959b6 c89cbac13be511053120093fce8049319, WhatToAction c98e063588d8667f7cd2ff9e5891866fd) { this.\u002Ector(); this.cfb5cf413352ed4044535eb4a62d2e98f(); int num1; if (c98e063588d8667f7cd2ff9e5891866fd != WhatToAction.Copy) { label_1: switch (6) { case 0: goto label_1; default: if (1 == 0) { // ISSUE: method reference RuntimeMethodHandle runtimeMethodHandle = __methodref(c5ac1c83c6771f1d2ec2730d47af7105b.\u002Ector); } num1 = c98e063588d8667f7cd2ff9e5891866fd == (WhatToAction)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11956) ? 1 : 0; break; } } else { num1 = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11960); } this.c081ad20c5e4d89c184edf191af8142ba = num1 != 0; this.cf03615c721382f9adb018993489259dd = c98e063588d8667f7cd2ff9e5891866fd; ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Text = c89cbac13be511053120093fce8049319.Name; this.c96b8e6f4e9f5e44b2fe699369d544613 = c89cbac13be511053120093fce8049319; ((Control)this).Text = string.Format(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18856), (object)c98e063588d8667f7cd2ff9e5891866fd); ((Control)this.ce940872bf2d542451e120044788d9340).Text = string.Format(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18879), (object)Enum.GetName(Type.GetTypeFromHandle(c1967f7e2d2a97b97b6d65efb2b601f3e.c6804baa30a51e813a45fabcfa2b27b79()), (object)c98e063588d8667f7cd2ff9e5891866fd).ToLower()); if (this.c081ad20c5e4d89c184edf191af8142ba) { label_7: switch (2) { case 0: goto label_7; default: ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Enabled = c89cbac13be511053120093fce8049319.c7adb0b831ae9d44c1bc321f4993f8d5d == (cb48a6650cad6d81c80da89dfe58b703a)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11964); RadCheckBox ccfeb6fdd817438a960ed83fed86bda50 = this.ccfeb6fdd817438a960ed83fed86bda50; int num2; if (c89cbac13be511053120093fce8049319.c2485b5906efc569b1c867e5c900b2e4e) { label_9: switch (1) { case 0: goto label_9; default: List <ce64fe4baff0b285aaecd02e2cae2ea2c> updates = c89cbac13be511053120093fce8049319.Updates; // ISSUE: reference to a compiler-generated field Func <ce64fe4baff0b285aaecd02e2cae2ea2c, bool> predicate = c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.c56ecc1d647404f5e2c4554f0ef3b419f; if (predicate == null) { label_11: switch (4) { case 0: goto label_11; default: // ISSUE: reference to a compiler-generated field // ISSUE: reference to a compiler-generated field // ISSUE: reference to a compiler-generated method predicate = c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.c56ecc1d647404f5e2c4554f0ef3b419f = new Func <ce64fe4baff0b285aaecd02e2cae2ea2c, bool>(c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.c77621037b5e8518f08b9304f2b861f38.cc89a5ac07fd01e620922a666b59cd3fe); break; } } num2 = updates.Any <ce64fe4baff0b285aaecd02e2cae2ea2c>(predicate) ? 1 : 0; break; } } else { num2 = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11968); } ((Control)ccfeb6fdd817438a960ed83fed86bda50).Enabled = num2 != 0; RadCheckBox c9454a5157d9a45a9ac8ddd9ea1de4a2c = this.c9454a5157d9a45a9ac8ddd9ea1de4a2c; int num3; if (c89cbac13be511053120093fce8049319.Dlc != null) { label_16: switch (2) { case 0: goto label_16; default: num3 = c89cbac13be511053120093fce8049319.Dlc.c7adb0b831ae9d44c1bc321f4993f8d5d == (cb48a6650cad6d81c80da89dfe58b703a)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11972) ? 1 : 0; break; } } else { num3 = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11976); } ((Control)c9454a5157d9a45a9ac8ddd9ea1de4a2c).Enabled = num3 != 0; break; } } else { ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Enabled = (uint)c89cbac13be511053120093fce8049319.c7adb0b831ae9d44c1bc321f4993f8d5d > (uint)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11980); RadCheckBox ccfeb6fdd817438a960ed83fed86bda50 = this.ccfeb6fdd817438a960ed83fed86bda50; int num2; if (c89cbac13be511053120093fce8049319.c2485b5906efc569b1c867e5c900b2e4e) { label_21: switch (5) { case 0: goto label_21; default: List <ce64fe4baff0b285aaecd02e2cae2ea2c> updates = c89cbac13be511053120093fce8049319.Updates; // ISSUE: reference to a compiler-generated field Func <ce64fe4baff0b285aaecd02e2cae2ea2c, bool> predicate = c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.cd8eb5ab47043e58b9ae39d42f7bcb156; if (predicate == null) { label_23: switch (6) { case 0: goto label_23; default: // ISSUE: reference to a compiler-generated field // ISSUE: reference to a compiler-generated field // ISSUE: reference to a compiler-generated method predicate = c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.cd8eb5ab47043e58b9ae39d42f7bcb156 = new Func <ce64fe4baff0b285aaecd02e2cae2ea2c, bool>(c5ac1c83c6771f1d2ec2730d47af7105b.\u003C\u003Ec.c77621037b5e8518f08b9304f2b861f38.c8a78d477b91bc7582713b6bd2a84c33d); break; } } num2 = updates.Any <ce64fe4baff0b285aaecd02e2cae2ea2c>(predicate) ? 1 : 0; break; } } else { num2 = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11984); } ((Control)ccfeb6fdd817438a960ed83fed86bda50).Enabled = num2 != 0; RadCheckBox c9454a5157d9a45a9ac8ddd9ea1de4a2c = this.c9454a5157d9a45a9ac8ddd9ea1de4a2c; int num3; if (c89cbac13be511053120093fce8049319.Dlc != null) { label_28: switch (4) { case 0: goto label_28; default: num3 = (uint)c89cbac13be511053120093fce8049319.Dlc.c7adb0b831ae9d44c1bc321f4993f8d5d > (uint)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11988) ? 1 : 0; break; } } else { num3 = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11992); } ((Control)c9454a5157d9a45a9ac8ddd9ea1de4a2c).Enabled = num3 != 0; } ((Form)this).Opacity = cb85779efa5f9c78fa841b92dceca9094.cc355471519aa13f05c72ce1708ca5624(11996); }
//_Dict dict = new _Dict(); #endregion #region === Form Update === public void Update(Control Control, object update = null) { if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadRichTextEditor") { RadRichTextEditor txt = (RadRichTextEditor)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadLabel") { RadLabel txt = (RadLabel)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadButton") { RadButton txt = (RadButton)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadTextBox") { RadTextBox txt = (RadTextBox)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadCheckBox") { RadCheckBox txt = (RadCheckBox)Control; // editor to update passed by user bool CheckVal = (bool)update; if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Checked = CheckVal; }); } else { txt.Checked = CheckVal; // Update Control Text } return; } if (Control.GetType().ToString() == "IntegrationDataUpdate.IntegrationApp") { Form txt = (Form)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadBindingNavigator") { RadBindingNavigator txt = (RadBindingNavigator)Control; // editor to update passed by user string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate if (txt.InvokeRequired) // if currently on a different thread, invoke { txt.BeginInvoke((MethodInvoker) delegate() { txt.Text = Text; }); } else { txt.Text = Text; // Update Control Text } return; } //if (Control.GetType().ToString() == "Telerik.WinControls.UI.RadLabelElement") //{ // RadLabelElement txt = (RadLabelElement)Control; // editor to update passed by user // string Text = ""; if (update != null) { Text = update.ToString(); } // optional field used to pass text to populate // if (txt.InvokeRequired) // if currently on a different thread, invoke // { // txt.BeginInvoke((MethodInvoker)delegate () { txt.Text = Text; }); // } // else // { // txt.Text = Text; // Update Control Text // } // return; //} ahk.MsgBox("Control Type: " + Control.GetType().ToString() + " Not Defined To Update YET"); }
private void InitializeComponent() { this.icontainer_0 = (IContainer) new Container(); ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmInjectionAnimation)); this.pctAarrow = new PictureBox(); this.radLabel4 = new RadLabel(); this.radLabel3 = new RadLabel(); this.radLabel2 = new RadLabel(); this.radLabel1 = new RadLabel(); this.timer_0 = new Timer(this.icontainer_0); this.pictureBox1 = new PictureBox(); this.timer_1 = new Timer(this.icontainer_0); this.chkListenToMusic = new RadCheckBox(); ((ISupportInitialize)this.pctAarrow).BeginInit(); this.radLabel4.BeginInit(); this.radLabel3.BeginInit(); this.radLabel2.BeginInit(); this.radLabel1.BeginInit(); ((ISupportInitialize)this.pictureBox1).BeginInit(); this.chkListenToMusic.BeginInit(); this.SuspendLayout(); this.pctAarrow.BackColor = Color.Transparent; this.pctAarrow.Image = (Image)Class123.icnArrow; this.pctAarrow.Location = new Point(227, 35); this.pctAarrow.Name = "pctAarrow"; this.pctAarrow.Size = new Size(32, 32); this.pctAarrow.SizeMode = PictureBoxSizeMode.AutoSize; this.pctAarrow.TabIndex = 11; this.pctAarrow.TabStop = false; this.radLabel4.BackColor = Color.Transparent; this.radLabel4.Font = new Font("Trebuchet MS", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte)0); this.radLabel4.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0); this.radLabel4.Location = new Point(271, 144); this.radLabel4.Name = "radLabel4"; this.radLabel4.Size = new Size(184, 19); this.radLabel4.TabIndex = 10; this.radLabel4.Text = "Step 4 : Packing the game..."; this.radLabel3.BackColor = Color.Transparent; this.radLabel3.Font = new Font("Trebuchet MS", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte)0); this.radLabel3.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0); this.radLabel3.Location = new Point(271, 110); this.radLabel3.Name = "radLabel3"; this.radLabel3.Size = new Size(191, 19); this.radLabel3.TabIndex = 9; this.radLabel3.Text = "Step 3 : Injecting the game..."; this.radLabel2.BackColor = Color.Transparent; this.radLabel2.Font = new Font("Trebuchet MS", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte)0); this.radLabel2.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0); this.radLabel2.Location = new Point(271, 76); this.radLabel2.Name = "radLabel2"; this.radLabel2.Size = new Size(181, 19); this.radLabel2.TabIndex = 8; this.radLabel2.Text = "Step 2 : Shrinking the ISO..."; this.radLabel1.BackColor = Color.Transparent; this.radLabel1.Font = new Font("Trebuchet MS", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte)0); this.radLabel1.ForeColor = Color.FromArgb((int)byte.MaxValue, 128, 0); this.radLabel1.Location = new Point(271, 42); this.radLabel1.Name = "radLabel1"; this.radLabel1.Size = new Size(206, 19); this.radLabel1.TabIndex = 7; this.radLabel1.Text = "Step 1 : Fetching the content..."; this.timer_0.Interval = 33; this.timer_0.Tick += new EventHandler(this.timer_0_Tick); this.pictureBox1.BackColor = Color.Transparent; this.pictureBox1.Location = new Point(36, 24); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(160, 160); this.pictureBox1.TabIndex = 12; this.pictureBox1.TabStop = false; this.pictureBox1.Paint += new PaintEventHandler(this.pictureBox1_Paint); this.timer_1.Tick += new EventHandler(this.timer_1_Tick); this.chkListenToMusic.Location = new Point(259, 174); this.chkListenToMusic.Name = "chkListenToMusic"; this.chkListenToMusic.Size = new Size(218, 18); this.chkListenToMusic.TabIndex = 13; this.chkListenToMusic.Text = "Why not listen to the OST of the game?"; this.chkListenToMusic.ToggleStateChanged += new StateChangedEventHandler(this.chkListenToMusic_ToggleStateChanged); this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.BackgroundImage = (Image)Class123.bg; this.ClientSize = new Size(489, 204); this.Controls.Add((Control)this.chkListenToMusic); this.Controls.Add((Control)this.pctAarrow); this.Controls.Add((Control)this.radLabel4); this.Controls.Add((Control)this.radLabel3); this.Controls.Add((Control)this.radLabel2); this.Controls.Add((Control)this.radLabel1); this.Controls.Add((Control)this.pictureBox1); this.FormBorderStyle = FormBorderStyle.None; this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon"); this.Name = nameof(frmInjectionAnimation); this.StartPosition = FormStartPosition.CenterScreen; this.Text = "Injecting..."; this.FormClosing += new FormClosingEventHandler(this.frmInjectionAnimation_FormClosing); this.Shown += new EventHandler(this.frmInjectionAnimation_Shown); ((ISupportInitialize)this.pctAarrow).EndInit(); this.radLabel4.EndInit(); this.radLabel3.EndInit(); this.radLabel2.EndInit(); this.radLabel1.EndInit(); ((ISupportInitialize)this.pictureBox1).EndInit(); this.chkListenToMusic.EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
public SurveyEditPage(Patient patient, Survey survey) { InitializeComponent(); _patient = patient; _survey = survey; this.Title = _patient.Dsc + " " + _patient.PNR; foreach (var q in _survey.SurveyAnswers) { Label headline = new Label(); headline.Text = q.Dsc; headline.HorizontalOptions = LayoutOptions.FillAndExpand; stackMain.Children.Add(headline); switch (q.OhaTyp.ToLower()) { case "top": headline.BackgroundColor = Color.FromRgb(135, 206, 234); // Samma som default Telerik i Carita headline.FontSize = headline.FontSize * 1.5; headline.FontAttributes = FontAttributes.Bold; break; case "sel": headline.FontSize = headline.FontSize * 1.25; string[] sel = q.PrmChr.Split('¤'); if (sel.Length > 1) { if (q.PrmDec == 0) { q._checks = new List <RadCheckBox>(); for (int i = 0; i < sel.Length - 1; i++) { StackLayout stack = new StackLayout(); stack.Orientation = StackOrientation.Horizontal; string[] vals = sel[i + 1].Split('|'); RadCheckBox button = new RadCheckBox(); q._checks.Add(button); button.AutomationId = vals[0] + "|" + vals[1]; if (vals[2] == "1") { button.IsChecked = true; } Label label = new Label(); label.Text = vals[0]; stack.Children.Add(button); stack.Children.Add(label); stackMain.Children.Add(stack); button.IsCheckedChanged += Button_IsCheckedChanged; } } else { q._checks = new List <RadCheckBox>(); for (int i = 0; i < sel.Length - 1; i++) { StackLayout stack = new StackLayout(); stack.Orientation = StackOrientation.Horizontal; string[] vals = sel[i + 1].Split('|'); RadCheckBox button = new RadCheckBox(); q._checks.Add(button); button.AutomationId = vals[0] + "|" + vals[1]; if (vals[2] == "1") { button.IsChecked = true; } Label label = new Label(); label.Text = vals[0]; stack.Children.Add(button); stack.Children.Add(label); stackMain.Children.Add(stack); } } } break; case "chr": headline.FontSize = headline.FontSize * 1.25; Editor editor = new Editor(); q._editor = editor; editor.HorizontalOptions = LayoutOptions.FillAndExpand; editor.HeightRequest = 80; editor.Text = q.TextBoxText; stackMain.Children.Add(editor); break; case "int": headline.FontSize = headline.FontSize * 1.25; RadNumericInput numeric = new RadNumericInput(); q._numeric = numeric; numeric.Value = q.NumericValue; numeric.HorizontalOptions = LayoutOptions.Start; stackMain.Children.Add(numeric); break; case "tooth": headline.FontSize = headline.FontSize * 1.25; q._images = new List <Image>(); Grid outerGrid = new Grid(); outerGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); outerGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); outerGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); outerGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); outerGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); outerGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); Label newLabel; newLabel = new Label() { Text = "ÖK", HorizontalTextAlignment = TextAlignment.Center }; Grid.SetColumn(newLabel, 1); Grid.SetRow(newLabel, 0); outerGrid.Children.Add(newLabel); newLabel = new Label() { Text = "UK", HorizontalTextAlignment = TextAlignment.Center }; Grid.SetColumn(newLabel, 1); Grid.SetRow(newLabel, 2); outerGrid.Children.Add(newLabel); newLabel = new Label() { Text = "HÖ", VerticalTextAlignment = TextAlignment.Center }; Grid.SetColumn(newLabel, 0); Grid.SetRow(newLabel, 1); outerGrid.Children.Add(newLabel); newLabel = new Label() { Text = "VÄ", VerticalTextAlignment = TextAlignment.Center }; Grid.SetColumn(newLabel, 2); Grid.SetRow(newLabel, 1); outerGrid.Children.Add(newLabel); StackLayout innerStack = new StackLayout() { Orientation = StackOrientation.Vertical }; Grid.SetColumn(innerStack, 1); Grid.SetRow(innerStack, 1); outerGrid.Children.Add(innerStack); Grid newGrid = new Grid() { ColumnSpacing = 0, RowSpacing = 0 }; newGrid.RowDefinitions.Add(new RowDefinition()); for (int i = 0; i < 16; i++) { newGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); } Image newImg; for (int i = 0; i < 16; i++) { newImg = new Image() { Source = ImageSource.FromResource("CaritaUAT.Icons.t" + i.ToString() + ".png", typeof(Patient).GetTypeInfo().Assembly) }; Grid.SetColumn(newImg, i); newGrid.Children.Add(newImg); switch (q.PrmChr.Substring(i, 1)) { case "0": // Vit newImg.BackgroundColor = Color.White; break; case "1": // Röd newImg.BackgroundColor = Color.Red; break; case "2": // Blå newImg.BackgroundColor = Color.Blue; break; case "3": // Svart newImg.BackgroundColor = Color.Black; break; } TapGestureRecognizer newTap = new TapGestureRecognizer() { NumberOfTapsRequired = 1 }; newTap.Tapped += NewTap_Tapped; newImg.GestureRecognizers.Add(newTap); q._images.Add(newImg); } innerStack.Children.Add(newGrid); newGrid = new Grid() { ColumnSpacing = 0, RowSpacing = 0 }; newGrid.RowDefinitions.Add(new RowDefinition()); for (int i = 0; i < 16; i++) { newGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); } for (int i = 0; i < 16; i++) { newImg = new Image() { Source = ImageSource.FromResource("CaritaUAT.Icons.t" + (i + 16).ToString() + ".png", typeof(Patient).GetTypeInfo().Assembly) }; Grid.SetColumn(newImg, i); newGrid.Children.Add(newImg); switch (q.PrmChr.Substring(i + 16, 1)) { case "0": // Vit newImg.BackgroundColor = Color.White; break; case "1": // Röd newImg.BackgroundColor = Color.Red; break; case "2": // Blå newImg.BackgroundColor = Color.Blue; break; case "3": // Svart newImg.BackgroundColor = Color.Black; break; } TapGestureRecognizer newTap = new TapGestureRecognizer() { NumberOfTapsRequired = 1 }; newTap.Tapped += NewTap_Tapped; newImg.GestureRecognizers.Add(newTap); q._images.Add(newImg); } innerStack.Children.Add(newGrid); stackMain.Children.Add(outerGrid); newGrid = new Grid(); newGrid.RowDefinitions.Add(new RowDefinition()); newGrid.RowDefinitions.Add(new RowDefinition()); newGrid.RowDefinitions.Add(new RowDefinition()); newGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); newGrid.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); BoxView newBox; newBox = new BoxView() { BackgroundColor = Color.Red, WidthRequest = 16, HeightRequest = 16 }; Grid.SetRow(newBox, 0); Grid.SetColumn(newBox, 0); newGrid.Children.Add(newBox); newBox = new BoxView() { BackgroundColor = Color.Blue, WidthRequest = 16, HeightRequest = 16 }; Grid.SetRow(newBox, 1); Grid.SetColumn(newBox, 0); newGrid.Children.Add(newBox); newBox = new BoxView() { BackgroundColor = Color.Black, WidthRequest = 16, HeightRequest = 16 }; Grid.SetRow(newBox, 2); Grid.SetColumn(newBox, 0); newGrid.Children.Add(newBox); newLabel = new Label() { Text = "Avtagbart" }; Grid.SetRow(newLabel, 0); Grid.SetColumn(newLabel, 1); newGrid.Children.Add(newLabel); newLabel = new Label() { Text = "Fastsittande tänder" }; Grid.SetRow(newLabel, 1); Grid.SetColumn(newLabel, 1); newGrid.Children.Add(newLabel); newLabel = new Label() { Text = "Saknad tand" }; Grid.SetRow(newLabel, 2); Grid.SetColumn(newLabel, 1); newGrid.Children.Add(newLabel); stackMain.Children.Add(newGrid); break; } } }
protected void rgPersonnel_ItemDataBound(object sender, GridItemEventArgs e) { if (e.Item.IsInEditMode) { GridEditableItem item = (GridEditableItem)e.Item; Panel pnlUpdate = (Panel)item.FindControl("pnlUpdate"); Panel pnlInsert1 = (Panel)item.FindControl("pnlInsert1"); Panel pnlInsert2 = (Panel)item.FindControl("pnlInsert2"); RadTextBox rtbUserID = (RadTextBox)item.FindControl("rtbUserID"); RadTextBox rtbFirstNm = (RadTextBox)item.FindControl("rtbFirstNm"); RadTextBox rtbLastNm = (RadTextBox)item.FindControl("rtbLastNm"); RadDropDownList rddlAdminLevel = (RadDropDownList)item.FindControl("rddlAdminLevel"); RadDropDownList rddlPASSLevel = (RadDropDownList)item.FindControl("rddlPASSLevel"); RadRadioButtonList rrblSafetyApprover = (RadRadioButtonList)item.FindControl("rrblSafetyApprover"); RadDropDownList rddlOffice = (RadDropDownList)item.FindControl("rddlOffice"); RadRadioButtonList rrblStatus = (RadRadioButtonList)item.FindControl("rrblStatus"); RadCheckBox rcbReports = (RadCheckBox)item.FindControl("rcbReports"); RadDropDownList rddlAdminLevel2 = (RadDropDownList)item.FindControl("rddlAdminLevel2"); RadDropDownList rddlPASSLevel2 = (RadDropDownList)item.FindControl("rddlPASSLevel2"); RadDropDownList rddlOffice2 = (RadDropDownList)item.FindControl("rddlOffice2"); RadRadioButtonList rrblSafetyApprover2 = (RadRadioButtonList)item.FindControl("rrblSafetyApprover2"); RadRadioButtonList rrblStatus2 = (RadRadioButtonList)item.FindControl("rrblStatus2"); if (!(e.Item is IGridInsertItem)) { string user_id = item.GetDataKeyValue("user_id").ToString(); var currUser = db.Employees.FirstOrDefault(p => p.user_id == user_id); rddlAdminLevel.DataSource = Levels; rddlPASSLevel.DataSource = Levels; rddlOffice.DataSource = db.Offices.Where(p => p.wsc_id == WSCID).Select(p => new { office_id = p.office_id, office_nm = p.office_nm }).ToList(); rddlAdminLevel.DataBind(); rddlPASSLevel.DataBind(); rddlOffice.DataBind(); rtbUserID.Text = currUser.user_id; rtbFirstNm.Text = currUser.first_nm; rtbLastNm.Text = currUser.last_nm; rddlAdminLevel.SelectedValue = currUser.administrator_va; rddlPASSLevel.SelectedValue = currUser.pass_access; if (currUser.approver_va.ToString() != null) { rrblSafetyApprover.SelectedValue = currUser.approver_va.ToString().ToLower(); } else { rrblSafetyApprover.SelectedValue = "false"; } rddlOffice.SelectedValue = currUser.Office.office_id.ToString(); rrblStatus.SelectedValue = currUser.active.ToString().ToLower(); rcbReports.Checked = currUser.show_reports; pnlUpdate.Visible = true; pnlInsert1.Visible = false; pnlInsert2.Visible = false; } else if ((e.Item is IGridInsertItem)) { rddlAdminLevel2.DataSource = Levels; rddlPASSLevel2.DataSource = Levels; rddlOffice2.DataSource = db.Offices.Where(p => p.wsc_id == WSCID).Select(p => new { office_id = p.office_id, office_nm = p.office_nm }).ToList(); rddlAdminLevel2.DataBind(); rddlPASSLevel2.DataBind(); rddlOffice2.DataBind(); rrblSafetyApprover2.SelectedValue = "false"; rrblStatus2.SelectedValue = "true"; pnlUpdate.Visible = false; pnlInsert1.Visible = true; pnlInsert2.Visible = false; } } if (e.Item is GridDataItem) { GridDataItem item = (GridDataItem)e.Item; try { if (Session["CanEdit"].ToString() == "false") { ImageButton ib3 = (ImageButton)item["EditCommandColumn"].Controls[0]; ib3.Visible = false; } } catch (Exception ex) { } } }
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); }
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); }
/// <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); }
private void InitializeComponent() { this.label1 = new RadLabel(); this.chkCopyGame = new RadCheckBox(); this.chkCopyUpdate = new RadCheckBox(); this.radButton1 = new RadButton(); this.chkCopyDlc = new RadCheckBox(); this.title = new RadLabel(); this.label1.BeginInit(); this.chkCopyGame.BeginInit(); this.chkCopyUpdate.BeginInit(); this.radButton1.BeginInit(); this.chkCopyDlc.BeginInit(); this.title.BeginInit(); this.BeginInit(); this.SuspendLayout(); this.label1.Location = new Point(56, 47); this.label1.Name = "label1"; this.label1.Size = new Size(185, 18); this.label1.TabIndex = 0; this.label1.Text = "Select what you would like to copy :"; this.chkCopyGame.Location = new Point(102, 75); this.chkCopyGame.Name = "chkCopyGame"; this.chkCopyGame.Size = new Size(49, 18); this.chkCopyGame.TabIndex = 1; this.chkCopyGame.Text = "Game"; this.chkCopyUpdate.Location = new Point(102, 99); this.chkCopyUpdate.Name = "chkCopyUpdate"; this.chkCopyUpdate.Size = new Size(57, 18); this.chkCopyUpdate.TabIndex = 2; this.chkCopyUpdate.Text = "Update"; this.chkCopyUpdate.ToggleStateChanged += new StateChangedEventHandler(this.chkCopyUpdate_ToggleStateChanged); this.radButton1.Location = new Point(90, 147); this.radButton1.Name = "radButton1"; this.radButton1.Size = new Size(110, 24); this.radButton1.TabIndex = 3; this.radButton1.Text = "Ok"; this.radButton1.ThemeName = "Desert"; this.radButton1.Click += new EventHandler(this.radButton1_Click); this.chkCopyDlc.Location = new Point(102, 123); this.chkCopyDlc.Name = "chkCopyDlc"; this.chkCopyDlc.Size = new Size(40, 18); this.chkCopyDlc.TabIndex = 3; this.chkCopyDlc.Text = "DLC"; this.title.AutoSize = false; this.title.Dock = DockStyle.Top; this.title.Font = new Font("Segoe UI", 11.25f, FontStyle.Bold, GraphicsUnit.Point, (byte)0); this.title.Location = new Point(0, 0); this.title.Name = "title"; this.title.Size = new Size(296, 45); this.title.TabIndex = 4; this.title.Text = "label2"; this.title.TextAlignment = ContentAlignment.TopCenter; this.title.UseMnemonic = false; this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(296, 172); this.Controls.Add((Control)this.title); this.Controls.Add((Control)this.chkCopyDlc); this.Controls.Add((Control)this.radButton1); this.Controls.Add((Control)this.chkCopyUpdate); this.Controls.Add((Control)this.chkCopyGame); this.Controls.Add((Control)this.label1); this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.Name = nameof(FrmWhatToCopy); this.RootElement.ApplyShapeToControl = true; this.ShowIcon = false; this.StartPosition = FormStartPosition.CenterParent; this.Text = "What to copy?"; this.ThemeName = "Desert"; this.Load += new EventHandler(this.FrmWhatToCopy_Load); this.label1.EndInit(); this.chkCopyGame.EndInit(); this.chkCopyUpdate.EndInit(); this.radButton1.EndInit(); this.chkCopyDlc.EndInit(); this.title.EndInit(); this.EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void SetSave(RadCheckBox checkBox) { var cUserPermission = new CUserPermission(); bool isSuccess = true; foreach (var checkItem in RadComboBoxMenu.CheckedItems) { UserPermission userPermissionAccess = cUserPermission.Get(Id, Convert.ToInt32(checkItem.Value), Convert.ToInt32(RadCheckBoxAccess.Value)); UserPermission userPermissionModify = cUserPermission.Get(Id, Convert.ToInt32(checkItem.Value), Convert.ToInt32(RadCheckBoxModify.Value)); // Access if (checkBox == RadCheckBoxAccess) { if (RadCheckBoxAccess.Checked == true) { if (userPermissionAccess == null) { int result = cUserPermission.Add(new UserPermission() { PermissionType = Convert.ToInt32(RadCheckBoxAccess.Value), CreatedDate = DateTime.Now, CreatedId = CurrentUserId, UserId = Id, MenuId = Convert.ToInt32(checkItem.Value) }); if (result < 0) { isSuccess = false; } } } else { if (userPermissionAccess != null) { bool result = cUserPermission.Delete(userPermissionAccess); if (result == false) { isSuccess = false; } } } } // Modify if (checkBox == RadCheckBoxModify) { if (RadCheckBoxModify.Checked == true) { if (userPermissionModify == null) { int result = cUserPermission.Add(new UserPermission() { PermissionType = Convert.ToInt32(RadCheckBoxModify.Value), CreatedDate = DateTime.Now, CreatedId = CurrentUserId, UserId = Id, MenuId = Convert.ToInt32(checkItem.Value) }); if (result < 0) { isSuccess = false; } } } else { if (userPermissionModify != null) { bool result = cUserPermission.Delete(userPermissionModify); if (result == false) { isSuccess = false; } } } } } if (isSuccess) { ShowMessage("It has been updated."); } else { ShowMessage("Failed."); } }
private void InitializeComponent() { ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMining)); this.radLabel1 = new RadLabel(); this.label1 = new RadLabel(); this.pictureBox1 = new PictureBox(); this.cmdYes = new RadButton(); this.cmdNo = new RadButton(); this.pictureBox2 = new PictureBox(); this.pictureBox3 = new PictureBox(); this.radPause = new RadCheckBox(); this.radLabel1.BeginInit(); this.label1.BeginInit(); ((ISupportInitialize)this.pictureBox1).BeginInit(); this.cmdYes.BeginInit(); this.cmdNo.BeginInit(); ((ISupportInitialize)this.pictureBox2).BeginInit(); ((ISupportInitialize)this.pictureBox3).BeginInit(); this.radPause.BeginInit(); this.BeginInit(); this.SuspendLayout(); this.radLabel1.AutoSize = false; this.radLabel1.Font = new Font("Segoe UI", 9f, FontStyle.Regular, GraphicsUnit.Point, (byte)0); this.radLabel1.Location = new Point(106, 32); this.radLabel1.Name = "radLabel1"; this.radLabel1.Size = new Size(502, 433); this.radLabel1.TabIndex = 5; 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(106, 2); this.label1.Name = "label1"; this.label1.Size = new Size(286, 24); this.label1.TabIndex = 4; this.label1.Text = "Thank you for wanting to support me!"; this.label1.ThemeName = "VisualStudio2012Dark"; this.pictureBox1.Image = (Image)Class123.logo; this.pictureBox1.Location = new Point(6, 32); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(94, 91); this.pictureBox1.TabIndex = 3; this.pictureBox1.TabStop = false; this.cmdYes.Location = new Point(128, 471); this.cmdYes.Name = "cmdYes"; this.cmdYes.Size = new Size(180, 24); this.cmdYes.TabIndex = 6; this.cmdYes.Text = "Sure!"; this.cmdYes.Click += new EventHandler(this.cmdYes_Click); this.cmdNo.Location = new Point(314, 471); this.cmdNo.Name = "cmdNo"; this.cmdNo.Size = new Size(180, 24); this.cmdNo.TabIndex = 7; this.cmdNo.Text = "Maybe some other time"; this.cmdNo.Click += new EventHandler(this.cmdNo_Click); this.pictureBox2.Image = (Image)Class123.stopMiner; this.pictureBox2.Location = new Point(405, 501); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(212, 69); this.pictureBox2.TabIndex = 8; this.pictureBox2.TabStop = false; this.pictureBox3.Image = (Image)Class123.startMiner; this.pictureBox3.Location = new Point(26, 501); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new Size(202, 78); this.pictureBox3.TabIndex = 9; this.pictureBox3.TabStop = false; this.radPause.Location = new Point(5, 561); this.radPause.Name = "radPause"; this.radPause.Size = new Size(303, 18); this.radPause.TabIndex = 10; this.radPause.Text = "Pause the miner when using the \"Play this game\" feature"; this.radPause.ToggleStateChanged += new StateChangedEventHandler(this.radPause_ToggleStateChanged); this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(636, 579); this.Controls.Add((Control)this.radPause); this.Controls.Add((Control)this.pictureBox3); this.Controls.Add((Control)this.pictureBox2); this.Controls.Add((Control)this.cmdNo); this.Controls.Add((Control)this.radLabel1); this.Controls.Add((Control)this.cmdYes); this.Controls.Add((Control)this.label1); this.Controls.Add((Control)this.pictureBox1); this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon"); this.Name = nameof(frmMining); this.RootElement.ApplyShapeToControl = true; this.ShowIcon = false; this.StartPosition = FormStartPosition.CenterScreen; this.Text = "I want to help!"; this.Load += new EventHandler(this.frmMining_Load); this.radLabel1.EndInit(); this.label1.EndInit(); ((ISupportInitialize)this.pictureBox1).EndInit(); this.cmdYes.EndInit(); this.cmdNo.EndInit(); ((ISupportInitialize)this.pictureBox2).EndInit(); ((ISupportInitialize)this.pictureBox3).EndInit(); this.radPause.EndInit(); this.EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.icontainer_0 = (IContainer) new Container(); ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmShortcutType)); this.cmdShortcut = new RadButton(); this.cmdSteam = new RadButton(); this.pictureBox1 = new PictureBox(); this.pictureBox2 = new PictureBox(); this.radLabel1 = new RadLabel(); this.radLabel2 = new RadLabel(); this.timer_0 = new Timer(this.icontainer_0); this.lblCloseSteam = new RadLabel(); this.radSplitContainer1 = new RadSplitContainer(); this.splitPanel1 = new SplitPanel(); this.splitPanel2 = new SplitPanel(); this.radSteamLink = new RadButton(); this.chkSteamLink = new RadCheckBox(); this.cmdShortcut.BeginInit(); this.cmdSteam.BeginInit(); ((ISupportInitialize)this.pictureBox1).BeginInit(); ((ISupportInitialize)this.pictureBox2).BeginInit(); this.radLabel1.BeginInit(); this.radLabel2.BeginInit(); this.lblCloseSteam.BeginInit(); this.radSplitContainer1.BeginInit(); this.radSplitContainer1.SuspendLayout(); this.splitPanel1.BeginInit(); this.splitPanel1.SuspendLayout(); this.splitPanel2.BeginInit(); this.splitPanel2.SuspendLayout(); this.radSteamLink.BeginInit(); this.chkSteamLink.BeginInit(); this.BeginInit(); this.SuspendLayout(); this.cmdShortcut.Location = new Point(100, 168); this.cmdShortcut.Name = "cmdShortcut"; this.cmdShortcut.Size = new Size(172, 24); this.cmdShortcut.TabIndex = 0; this.cmdShortcut.Text = "Create a desktop shortcut"; this.cmdShortcut.Click += new EventHandler(this.cmdShortcut_Click); this.cmdSteam.Location = new Point(85, 138); this.cmdSteam.Name = "cmdSteam"; this.cmdSteam.Size = new Size(172, 24); this.cmdSteam.TabIndex = 1; this.cmdSteam.Text = "Add game to Steam"; this.cmdSteam.Click += new EventHandler(this.cmdSteam_Click); this.pictureBox1.Image = (Image)Class123.icnSteam; this.pictureBox1.Location = new Point(123, 17); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new Size(96, 96); this.pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize; this.pictureBox1.TabIndex = 2; this.pictureBox1.TabStop = false; this.pictureBox2.Image = (Image)Class123.icnDesktop; this.pictureBox2.Location = new Point(138, 47); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new Size(96, 96); this.pictureBox2.SizeMode = PictureBoxSizeMode.AutoSize; this.pictureBox2.TabIndex = 3; this.pictureBox2.TabStop = false; this.radLabel1.AutoSize = false; this.radLabel1.Location = new Point(59, 198); this.radLabel1.Name = "radLabel1"; this.radLabel1.Size = new Size(227, 21); this.radLabel1.TabIndex = 4; this.radLabel1.Text = "<html><ul><li>Launch the game from your dekstop</li></ul></html>"; this.radLabel2.Location = new Point(40, 168); this.radLabel2.Name = "radLabel2"; this.radLabel2.Size = new Size(263, 46); this.radLabel2.TabIndex = 5; this.radLabel2.Text = "<html><ul><li>Launch the game from Steam</li><li>Launch the game from the Big Picture Mode</li><li>Launch the game with the Steam Link</li></ul></html>"; this.timer_0.Enabled = true; this.timer_0.Interval = 150; this.timer_0.Tick += new EventHandler(this.timer_0_Tick); this.lblCloseSteam.Cursor = Cursors.Hand; this.lblCloseSteam.ForeColor = Color.Red; this.lblCloseSteam.Location = new Point(41, 119); this.lblCloseSteam.Name = "lblCloseSteam"; this.lblCloseSteam.Size = new Size(260, 18); this.lblCloseSteam.TabIndex = 6; this.lblCloseSteam.Text = "Please close Steam to proceed (click to force close)"; this.lblCloseSteam.Visible = false; this.lblCloseSteam.Click += new EventHandler(this.lblCloseSteam_Click); this.radSplitContainer1.Controls.Add((Control)this.splitPanel1); this.radSplitContainer1.Controls.Add((Control)this.splitPanel2); this.radSplitContainer1.Dock = DockStyle.Fill; this.radSplitContainer1.Location = new Point(0, 0); this.radSplitContainer1.Name = "radSplitContainer1"; this.radSplitContainer1.RootElement.MinSize = new Size(25, 25); this.radSplitContainer1.Size = new Size(691, 266); this.radSplitContainer1.TabIndex = 8; this.radSplitContainer1.TabStop = false; this.radSplitContainer1.Text = "radSplitContainer1"; this.splitPanel1.Controls.Add((Control)this.pictureBox2); this.splitPanel1.Controls.Add((Control)this.cmdShortcut); this.splitPanel1.Controls.Add((Control)this.radLabel1); this.splitPanel1.Location = new Point(0, 0); this.splitPanel1.Name = "splitPanel1"; this.splitPanel1.RootElement.MinSize = new Size(25, 25); this.splitPanel1.Size = new Size(344, 266); this.splitPanel1.TabIndex = 0; this.splitPanel1.TabStop = false; this.splitPanel1.Text = "splitPanel1"; this.splitPanel2.Controls.Add((Control)this.chkSteamLink); this.splitPanel2.Controls.Add((Control)this.radSteamLink); this.splitPanel2.Controls.Add((Control)this.pictureBox1); this.splitPanel2.Controls.Add((Control)this.cmdSteam); this.splitPanel2.Controls.Add((Control)this.lblCloseSteam); this.splitPanel2.Controls.Add((Control)this.radLabel2); this.splitPanel2.Location = new Point(348, 0); this.splitPanel2.Name = "splitPanel2"; this.splitPanel2.RootElement.MinSize = new Size(25, 25); this.splitPanel2.Size = new Size(343, 266); this.splitPanel2.TabIndex = 1; this.splitPanel2.TabStop = false; this.splitPanel2.Text = "splitPanel2"; this.radSteamLink.Location = new Point(114, 239); this.radSteamLink.Name = "radSteamLink"; this.radSteamLink.Size = new Size(226, 24); this.radSteamLink.TabIndex = 7; this.radSteamLink.Text = "Download Steam Link Input Configuration"; this.radSteamLink.Click += new EventHandler(this.radSteamLink_Click); this.chkSteamLink.Location = new Point(19, 242); this.chkSteamLink.Name = "chkSteamLink"; this.chkSteamLink.Size = new Size(89, 18); this.chkSteamLink.TabIndex = 8; this.chkSteamLink.Text = "Steam Link fix"; this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(691, 266); this.Controls.Add((Control)this.radSplitContainer1); this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.Icon = (Icon)componentResourceManager.GetObject("$this.Icon"); this.Name = nameof(frmShortcutType); this.RootElement.ApplyShapeToControl = true; this.ShowIcon = false; this.StartPosition = FormStartPosition.CenterScreen; this.Text = "Choose a shortcut"; this.Load += new EventHandler(this.frmShortcutType_Load); this.cmdShortcut.EndInit(); this.cmdSteam.EndInit(); ((ISupportInitialize)this.pictureBox1).EndInit(); ((ISupportInitialize)this.pictureBox2).EndInit(); this.radLabel1.EndInit(); this.radLabel2.EndInit(); this.lblCloseSteam.EndInit(); this.radSplitContainer1.EndInit(); this.radSplitContainer1.ResumeLayout(false); this.splitPanel1.EndInit(); this.splitPanel1.ResumeLayout(false); this.splitPanel1.PerformLayout(); this.splitPanel2.EndInit(); this.splitPanel2.ResumeLayout(false); this.splitPanel2.PerformLayout(); this.radSteamLink.EndInit(); this.chkSteamLink.EndInit(); this.EndInit(); this.ResumeLayout(false); }
private void cfb5cf413352ed4044535eb4a62d2e98f() { this.ce940872bf2d542451e120044788d9340 = new RadLabel(); this.cd4db08d2fcf3456a34306eebd4dc7244 = new RadCheckBox(); this.ccfeb6fdd817438a960ed83fed86bda50 = new RadCheckBox(); this.c3768da1c9e17b9980d03acca3e5a19a9 = new RadButton(); this.c9454a5157d9a45a9ac8ddd9ea1de4a2c = new RadCheckBox(); this.c36dd98eb0c08ea087627a40c6663c9a8 = new RadLabel(); ((ISupportInitialize)this.ce940872bf2d542451e120044788d9340).BeginInit(); ((ISupportInitialize)this.cd4db08d2fcf3456a34306eebd4dc7244).BeginInit(); ((ISupportInitialize)this.ccfeb6fdd817438a960ed83fed86bda50).BeginInit(); ((ISupportInitialize)this.c3768da1c9e17b9980d03acca3e5a19a9).BeginInit(); ((ISupportInitialize)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).BeginInit(); ((ISupportInitialize)this.c36dd98eb0c08ea087627a40c6663c9a8).BeginInit(); ((ISupportInitialize)this).BeginInit(); ((RadFormControlBase)this).SuspendLayout(); ((Control)this.ce940872bf2d542451e120044788d9340).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11764), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11768)); ((Control)this.ce940872bf2d542451e120044788d9340).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(10090); ((Control)this.ce940872bf2d542451e120044788d9340).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11772), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11776)); ((Control)this.ce940872bf2d542451e120044788d9340).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11780); ((Control)this.ce940872bf2d542451e120044788d9340).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18616); ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11784), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11788)); ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18689); ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11792), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11796)); ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11800); ((Control)this.cd4db08d2fcf3456a34306eebd4dc7244).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18712); ((Control)this.ccfeb6fdd817438a960ed83fed86bda50).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11804), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11808)); ((Control)this.ccfeb6fdd817438a960ed83fed86bda50).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18721); ((Control)this.ccfeb6fdd817438a960ed83fed86bda50).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11812), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11816)); ((Control)this.ccfeb6fdd817438a960ed83fed86bda50).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11820); ((Control)this.ccfeb6fdd817438a960ed83fed86bda50).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18748); // ISSUE: method pointer ((RadToggleButton)this.ccfeb6fdd817438a960ed83fed86bda50).add_ToggleStateChanged(new StateChangedEventHandler((object)this, __methodptr(c40d736fc970a087b664d32bf9c0d15ed))); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11824), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11828)); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7473); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11832), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11836)); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11840); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(14002); ((RadControl)this.c3768da1c9e17b9980d03acca3e5a19a9).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(13418)); ((Control)this.c3768da1c9e17b9980d03acca3e5a19a9).Click += new EventHandler(this.cd3ea5f6f49b3d27138c3508cc5d825bb); ((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11844), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11848)); ((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18761); ((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11852), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11856)); ((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11860); ((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18782); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).AutoSize = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11864) != 0; ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Dock = (DockStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11868); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Font = new Font(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7400), cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11872), (FontStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11876), (GraphicsUnit)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11880), (byte)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11884)); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Location = new Point(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11888), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11892)); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(7417); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Size = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11896), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11900)); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).TabIndex = cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11904); ((Control)this.c36dd98eb0c08ea087627a40c6663c9a8).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18789); this.c36dd98eb0c08ea087627a40c6663c9a8.set_TextAlignment((ContentAlignment)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11908)); this.c36dd98eb0c08ea087627a40c6663c9a8.set_UseMnemonic(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11912) != 0); ((ContainerControl)this).AutoScaleDimensions = new SizeF(cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11916), cb85779efa5f9c78fa841b92dceca9094.c8c83a3807da60b9f032d40f2b5665e27(11920)); ((RadFormControlBase)this).set_AutoScaleMode((AutoScaleMode)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11924)); ((Form)this).ClientSize = new Size(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11928), cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11932)); ((Control)this).Controls.Add((Control)this.c36dd98eb0c08ea087627a40c6663c9a8); ((Control)this).Controls.Add((Control)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c); ((Control)this).Controls.Add((Control)this.c3768da1c9e17b9980d03acca3e5a19a9); ((Control)this).Controls.Add((Control)this.ccfeb6fdd817438a960ed83fed86bda50); ((Control)this).Controls.Add((Control)this.cd4db08d2fcf3456a34306eebd4dc7244); ((Control)this).Controls.Add((Control)this.ce940872bf2d542451e120044788d9340); ((RadFormControlBase)this).set_FormBorderStyle((FormBorderStyle)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11936)); ((Control)this).Name = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18802); ((RadFormControlBase)this).get_RootElement().set_ApplyShapeToControl(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11940) != 0); this.set_ShowIcon(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11944) != 0); ((Form)this).StartPosition = (FormStartPosition)cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11948); ((Control)this).Text = c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(18829); ((RadFormControlBase)this).set_ThemeName(c833fbfa18d441f3acb05d803efdf1eb8.c702a9e4555297107d7c7901aa91e5540(13418)); ((Form)this).Load += new EventHandler(this.cd8a2159bd70a1fb708936de6cd95399e); ((ISupportInitialize)this.ce940872bf2d542451e120044788d9340).EndInit(); ((ISupportInitialize)this.cd4db08d2fcf3456a34306eebd4dc7244).EndInit(); ((ISupportInitialize)this.ccfeb6fdd817438a960ed83fed86bda50).EndInit(); ((ISupportInitialize)this.c3768da1c9e17b9980d03acca3e5a19a9).EndInit(); ((ISupportInitialize)this.c9454a5157d9a45a9ac8ddd9ea1de4a2c).EndInit(); ((ISupportInitialize)this.c36dd98eb0c08ea087627a40c6663c9a8).EndInit(); ((ISupportInitialize)this).EndInit(); ((RadFormControlBase)this).ResumeLayout(cb85779efa5f9c78fa841b92dceca9094.c4f3ad310245f8f6e7d32122c50c48ab1(11952) != 0); ((Control)this).PerformLayout(); }
private void InitializeComponent() { this.tableLayoutPanel1 = new TableLayoutPanel(); this.radLabelImageSize = new RadLabel(); this.radLabelWidth = new RadLabel(); this.radLabelHeight = new RadLabel(); this.radLabelRelativeSize = new RadLabel(); this.radLabelRelativeWidth = new RadLabel(); this.radLabelRelativeHeight = new RadLabel(); this.radSpinEditorWidth = new RadSpinEditor(); this.radSpinEditorHeight = new RadSpinEditor(); this.radSpinEditorRelativeWidth = new RadSpinEditor(); this.radSpinEditorRelativeHeight = new RadSpinEditor(); this.radButtonReset = new RadButton(); this.radCheckBoxAspectRation = new RadCheckBox(); this.tableLayoutPanel1.SuspendLayout(); this.radLabelImageSize.BeginInit(); this.radLabelWidth.BeginInit(); this.radLabelHeight.BeginInit(); this.radLabelRelativeSize.BeginInit(); this.radLabelRelativeWidth.BeginInit(); this.radLabelRelativeHeight.BeginInit(); this.radSpinEditorWidth.BeginInit(); this.radSpinEditorHeight.BeginInit(); this.radSpinEditorRelativeWidth.BeginInit(); this.radSpinEditorRelativeHeight.BeginInit(); this.radButtonReset.BeginInit(); this.radCheckBoxAspectRation.BeginInit(); this.BeginInit(); this.SuspendLayout(); this.tableLayoutPanel1.ColumnCount = 2; this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50f)); this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50f)); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelImageSize, 0, 0); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelWidth, 0, 1); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelHeight, 1, 1); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelRelativeSize, 0, 3); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelRelativeWidth, 0, 4); this.tableLayoutPanel1.Controls.Add((Control)this.radLabelRelativeHeight, 1, 4); this.tableLayoutPanel1.Controls.Add((Control)this.radSpinEditorWidth, 0, 2); this.tableLayoutPanel1.Controls.Add((Control)this.radSpinEditorHeight, 1, 2); this.tableLayoutPanel1.Controls.Add((Control)this.radSpinEditorRelativeWidth, 0, 5); this.tableLayoutPanel1.Controls.Add((Control)this.radSpinEditorRelativeHeight, 1, 5); this.tableLayoutPanel1.Controls.Add((Control)this.radButtonReset, 1, 7); this.tableLayoutPanel1.Controls.Add((Control)this.radCheckBoxAspectRation, 0, 6); this.tableLayoutPanel1.Dock = DockStyle.Fill; this.tableLayoutPanel1.Location = new Point(0, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 8; this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 12.5f)); this.tableLayoutPanel1.Size = new Size(292, 251); this.tableLayoutPanel1.TabIndex = 0; this.radLabelImageSize.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelImageSize.Location = new Point(3, 10); this.radLabelImageSize.Name = "radLabelImageSize"; this.radLabelImageSize.Size = new Size(82, 18); this.radLabelImageSize.TabIndex = 0; this.radLabelImageSize.Text = "Image Size (px)"; this.radLabelWidth.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelWidth.Location = new Point(3, 41); this.radLabelWidth.Name = "radLabelWidth"; this.radLabelWidth.Size = new Size(39, 18); this.radLabelWidth.TabIndex = 0; this.radLabelWidth.Text = "Width:"; this.radLabelHeight.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelHeight.Location = new Point(149, 41); this.radLabelHeight.Name = "radLabelHeight"; this.radLabelHeight.Size = new Size(42, 18); this.radLabelHeight.TabIndex = 0; this.radLabelHeight.Text = "Height:"; this.radLabelRelativeSize.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelRelativeSize.Location = new Point(3, 103); this.radLabelRelativeSize.Name = "radLabelRelativeSize"; this.radLabelRelativeSize.Size = new Size(87, 18); this.radLabelRelativeSize.TabIndex = 0; this.radLabelRelativeSize.Text = "Relative Size (%)"; this.radLabelRelativeWidth.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelRelativeWidth.Location = new Point(3, 134); this.radLabelRelativeWidth.Name = "radLabelRelativeWidth"; this.radLabelRelativeWidth.Size = new Size(39, 18); this.radLabelRelativeWidth.TabIndex = 0; this.radLabelRelativeWidth.Text = "Width:"; this.radLabelRelativeHeight.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.radLabelRelativeHeight.Location = new Point(149, 134); this.radLabelRelativeHeight.Name = "radLabelRelativeHeight"; this.radLabelRelativeHeight.Size = new Size(42, 18); this.radLabelRelativeHeight.TabIndex = 0; this.radLabelRelativeHeight.Text = "Height:"; this.radSpinEditorWidth.Anchor = AnchorStyles.Left | AnchorStyles.Right; this.radSpinEditorWidth.Location = new Point(3, 67); this.radSpinEditorWidth.Margin = new Padding(3, 0, 3, 0); this.radSpinEditorWidth.Maximum = new Decimal(new int[4] { (int)short.MaxValue, 0, 0, 0 }); this.radSpinEditorWidth.Minimum = new Decimal(new int[4] { 1, 0, 0, 0 }); this.radSpinEditorWidth.Name = "radSpinEditorWidth"; this.radSpinEditorWidth.NullableValue = new Decimal?(new Decimal(new int[4] { 1, 0, 0, 0 })); this.radSpinEditorWidth.Size = new Size(140, 20); this.radSpinEditorWidth.TabIndex = 2; this.radSpinEditorWidth.TabStop = false; this.radSpinEditorWidth.Value = new Decimal(new int[4] { 1, 0, 0, 0 }); this.radSpinEditorHeight.Anchor = AnchorStyles.Left | AnchorStyles.Right; this.radSpinEditorHeight.Location = new Point(149, 67); this.radSpinEditorHeight.Margin = new Padding(3, 0, 3, 0); this.radSpinEditorHeight.Maximum = new Decimal(new int[4] { (int)short.MaxValue, 0, 0, 0 }); this.radSpinEditorHeight.Minimum = new Decimal(new int[4] { 1, 0, 0, 0 }); this.radSpinEditorHeight.Name = "radSpinEditorHeight"; this.radSpinEditorHeight.NullableValue = new Decimal?(new Decimal(new int[4] { 1, 0, 0, 0 })); this.radSpinEditorHeight.Size = new Size(140, 20); this.radSpinEditorHeight.TabIndex = 2; this.radSpinEditorHeight.TabStop = false; this.radSpinEditorHeight.Value = new Decimal(new int[4] { 1, 0, 0, 0 }); this.radSpinEditorRelativeWidth.Anchor = AnchorStyles.Left | AnchorStyles.Right; this.radSpinEditorRelativeWidth.DecimalPlaces = 2; this.radSpinEditorRelativeWidth.Location = new Point(3, 160); this.radSpinEditorRelativeWidth.Margin = new Padding(3, 0, 3, 0); this.radSpinEditorRelativeWidth.Maximum = new Decimal(new int[4] { 1000, 0, 0, 0 }); this.radSpinEditorRelativeWidth.Minimum = new Decimal(new int[4] { 1, 0, 0, 262144 }); this.radSpinEditorRelativeWidth.Name = "radSpinEditorRelativeWidth"; this.radSpinEditorRelativeWidth.NullableValue = new Decimal?(new Decimal(new int[4] { 1, 0, 0, 262144 })); this.radSpinEditorRelativeWidth.Size = new Size(140, 20); this.radSpinEditorRelativeWidth.TabIndex = 2; this.radSpinEditorRelativeWidth.TabStop = false; this.radSpinEditorRelativeWidth.Value = new Decimal(new int[4] { 1, 0, 0, 262144 }); this.radSpinEditorRelativeHeight.Anchor = AnchorStyles.Left | AnchorStyles.Right; this.radSpinEditorRelativeHeight.DecimalPlaces = 2; this.radSpinEditorRelativeHeight.Location = new Point(149, 160); this.radSpinEditorRelativeHeight.Margin = new Padding(3, 0, 3, 0); this.radSpinEditorRelativeHeight.Maximum = new Decimal(new int[4] { 1000, 0, 0, 0 }); this.radSpinEditorRelativeHeight.Minimum = new Decimal(new int[4] { 1, 0, 0, 262144 }); this.radSpinEditorRelativeHeight.Name = "radSpinEditorRelativeHeight"; this.radSpinEditorRelativeHeight.NullableValue = new Decimal?(new Decimal(new int[4] { 1, 0, 0, 262144 })); this.radSpinEditorRelativeHeight.Size = new Size(140, 20); this.radSpinEditorRelativeHeight.TabIndex = 2; this.radSpinEditorRelativeHeight.TabStop = false; this.radSpinEditorRelativeHeight.Value = new Decimal(new int[4] { 1, 0, 0, 262144 }); this.radButtonReset.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; this.radButtonReset.Location = new Point(179, 224); this.radButtonReset.Name = "radButtonReset"; this.radButtonReset.Size = new Size(110, 24); this.radButtonReset.TabIndex = 1; this.radButtonReset.Text = "Reset"; this.radCheckBoxAspectRation.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; this.tableLayoutPanel1.SetColumnSpan((Control)this.radCheckBoxAspectRation, 2); this.radCheckBoxAspectRation.Location = new Point(3, 199); this.radCheckBoxAspectRation.Margin = new Padding(3, 0, 3, 0); this.radCheckBoxAspectRation.Name = "radCheckBoxAspectRation"; this.radCheckBoxAspectRation.Size = new Size(128, 18); this.radCheckBoxAspectRation.TabIndex = 3; this.radCheckBoxAspectRation.Text = "Preserve Aspect Ratio"; this.AutoScaleDimensions = new SizeF(6f, 13f); this.AutoScaleMode = AutoScaleMode.Font; this.ClientSize = new Size(292, 251); this.Controls.Add((Control)this.tableLayoutPanel1); this.FormBorderStyle = FormBorderStyle.FixedToolWindow; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = nameof(ResizeDialog); this.RootElement.ApplyShapeToControl = true; this.ShowIcon = false; this.ShowInTaskbar = false; this.Text = nameof(ResizeDialog); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.radLabelImageSize.EndInit(); this.radLabelWidth.EndInit(); this.radLabelHeight.EndInit(); this.radLabelRelativeSize.EndInit(); this.radLabelRelativeWidth.EndInit(); this.radLabelRelativeHeight.EndInit(); this.radSpinEditorWidth.EndInit(); this.radSpinEditorHeight.EndInit(); this.radSpinEditorRelativeWidth.EndInit(); this.radSpinEditorRelativeHeight.EndInit(); this.radButtonReset.EndInit(); this.radCheckBoxAspectRation.EndInit(); this.EndInit(); this.ResumeLayout(false); }
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(); }