543 lines
29 KiB
C#
543 lines
29 KiB
C#
namespace GamerServices
|
|
{
|
|
partial class FormMain
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
|
|
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.logoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.friendsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.onlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.offlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.requestsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
|
|
this.timerUpdate = new System.Windows.Forms.Timer(this.components);
|
|
this.listGames = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.gameIconList = new System.Windows.Forms.ImageList(this.components);
|
|
this.labelGameDescription = new System.Windows.Forms.Label();
|
|
this.labelGameName = new System.Windows.Forms.Label();
|
|
this.PingTimer = new System.Windows.Forms.Timer(this.components);
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.buttonUninstall = new System.Windows.Forms.Button();
|
|
this.buttonUpdate = new System.Windows.Forms.Button();
|
|
this.buttonPlay = new System.Windows.Forms.Button();
|
|
this.groupDeveloperToolBox = new System.Windows.Forms.GroupBox();
|
|
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
|
this.buttonChecksumTool = new System.Windows.Forms.Button();
|
|
this.textExecuteblePath = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.labelVersion = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.picGameIcon = new System.Windows.Forms.PictureBox();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.listAchievements = new System.Windows.Forms.ListView();
|
|
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.tabPage3 = new System.Windows.Forms.TabPage();
|
|
this.menuStrip.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.tabPage1.SuspendLayout();
|
|
this.groupDeveloperToolBox.SuspendLayout();
|
|
this.groupBox3.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.picGameIcon)).BeginInit();
|
|
this.tabPage2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// menuStrip
|
|
//
|
|
this.menuStrip.BackColor = System.Drawing.SystemColors.Control;
|
|
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.fileToolStripMenuItem,
|
|
this.helpToolStripMenuItem,
|
|
this.friendsToolStripMenuItem});
|
|
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
|
this.menuStrip.Name = "menuStrip";
|
|
this.menuStrip.Size = new System.Drawing.Size(846, 24);
|
|
this.menuStrip.TabIndex = 0;
|
|
this.menuStrip.Text = "menuStrip1";
|
|
//
|
|
// fileToolStripMenuItem
|
|
//
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.settingsToolStripMenuItem,
|
|
this.toolStripSeparator1,
|
|
this.logoutToolStripMenuItem,
|
|
this.exitToolStripMenuItem});
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
this.fileToolStripMenuItem.Text = "File";
|
|
//
|
|
// settingsToolStripMenuItem
|
|
//
|
|
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
|
|
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
|
|
this.settingsToolStripMenuItem.Text = "Settings";
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(113, 6);
|
|
//
|
|
// logoutToolStripMenuItem
|
|
//
|
|
this.logoutToolStripMenuItem.Name = "logoutToolStripMenuItem";
|
|
this.logoutToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
|
|
this.logoutToolStripMenuItem.Text = "Logout";
|
|
this.logoutToolStripMenuItem.Click += new System.EventHandler(this.logoutToolStripMenuItem_Click);
|
|
//
|
|
// exitToolStripMenuItem
|
|
//
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
|
|
this.exitToolStripMenuItem.Text = "Exit";
|
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|
//
|
|
// helpToolStripMenuItem
|
|
//
|
|
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.aboutToolStripMenuItem});
|
|
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
|
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
|
this.helpToolStripMenuItem.Text = "Help";
|
|
//
|
|
// aboutToolStripMenuItem
|
|
//
|
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
|
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
|
|
this.aboutToolStripMenuItem.Text = "About GamerServices";
|
|
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
|
//
|
|
// friendsToolStripMenuItem
|
|
//
|
|
this.friendsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.onlineToolStripMenuItem,
|
|
this.offlineToolStripMenuItem,
|
|
this.requestsToolStripMenuItem,
|
|
this.addToolStripMenuItem});
|
|
this.friendsToolStripMenuItem.Name = "friendsToolStripMenuItem";
|
|
this.friendsToolStripMenuItem.Size = new System.Drawing.Size(57, 20);
|
|
this.friendsToolStripMenuItem.Text = "Friends";
|
|
//
|
|
// onlineToolStripMenuItem
|
|
//
|
|
this.onlineToolStripMenuItem.Name = "onlineToolStripMenuItem";
|
|
this.onlineToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
|
|
this.onlineToolStripMenuItem.Text = "Online";
|
|
//
|
|
// offlineToolStripMenuItem
|
|
//
|
|
this.offlineToolStripMenuItem.Name = "offlineToolStripMenuItem";
|
|
this.offlineToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
|
|
this.offlineToolStripMenuItem.Text = "Offline";
|
|
//
|
|
// requestsToolStripMenuItem
|
|
//
|
|
this.requestsToolStripMenuItem.Name = "requestsToolStripMenuItem";
|
|
this.requestsToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
|
|
this.requestsToolStripMenuItem.Text = "Requests";
|
|
//
|
|
// addToolStripMenuItem
|
|
//
|
|
this.addToolStripMenuItem.Name = "addToolStripMenuItem";
|
|
this.addToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
|
|
this.addToolStripMenuItem.Text = "Add friend";
|
|
this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
|
|
//
|
|
// trayIcon
|
|
//
|
|
this.trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("trayIcon.Icon")));
|
|
this.trayIcon.Text = "GamerServices";
|
|
this.trayIcon.BalloonTipClicked += new System.EventHandler(this.trayIcon_BalloonTipClicked);
|
|
this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
|
|
//
|
|
// timerUpdate
|
|
//
|
|
this.timerUpdate.Enabled = true;
|
|
this.timerUpdate.Interval = 10;
|
|
this.timerUpdate.Tick += new System.EventHandler(this.timerUpdate_Tick);
|
|
//
|
|
// listGames
|
|
//
|
|
this.listGames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)));
|
|
this.listGames.BackColor = System.Drawing.Color.White;
|
|
this.listGames.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1});
|
|
this.listGames.FullRowSelect = true;
|
|
this.listGames.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
|
this.listGames.HideSelection = false;
|
|
this.listGames.LabelWrap = false;
|
|
this.listGames.Location = new System.Drawing.Point(12, 33);
|
|
this.listGames.MultiSelect = false;
|
|
this.listGames.Name = "listGames";
|
|
this.listGames.Size = new System.Drawing.Size(193, 484);
|
|
this.listGames.SmallImageList = this.gameIconList;
|
|
this.listGames.TabIndex = 1;
|
|
this.listGames.UseCompatibleStateImageBehavior = false;
|
|
this.listGames.View = System.Windows.Forms.View.List;
|
|
this.listGames.SelectedIndexChanged += new System.EventHandler(this.listGames_SelectedIndexChanged);
|
|
this.listGames.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listGames_MouseClick);
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "";
|
|
this.columnHeader1.Width = 193;
|
|
//
|
|
// gameIconList
|
|
//
|
|
this.gameIconList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("gameIconList.ImageStream")));
|
|
this.gameIconList.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.gameIconList.Images.SetKeyName(0, "wireless_mouse.ico");
|
|
this.gameIconList.Images.SetKeyName(1, "wireless_mouse.png");
|
|
this.gameIconList.Images.SetKeyName(2, "wireless_mouse_grayed.png");
|
|
this.gameIconList.Images.SetKeyName(3, "wireless_mouse_yellow.png");
|
|
//
|
|
// labelGameDescription
|
|
//
|
|
this.labelGameDescription.BackColor = System.Drawing.SystemColors.Control;
|
|
this.labelGameDescription.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
this.labelGameDescription.Font = new System.Drawing.Font("Calibri", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.labelGameDescription.Location = new System.Drawing.Point(6, 70);
|
|
this.labelGameDescription.Name = "labelGameDescription";
|
|
this.labelGameDescription.Size = new System.Drawing.Size(610, 161);
|
|
this.labelGameDescription.TabIndex = 1;
|
|
this.labelGameDescription.Text = "labelGameDescription";
|
|
//
|
|
// labelGameName
|
|
//
|
|
this.labelGameName.AutoSize = true;
|
|
this.labelGameName.Font = new System.Drawing.Font("Calibri", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.labelGameName.Location = new System.Drawing.Point(44, 3);
|
|
this.labelGameName.Name = "labelGameName";
|
|
this.labelGameName.Size = new System.Drawing.Size(211, 36);
|
|
this.labelGameName.TabIndex = 0;
|
|
this.labelGameName.Text = "labelGameName";
|
|
//
|
|
// PingTimer
|
|
//
|
|
this.PingTimer.Enabled = true;
|
|
this.PingTimer.Interval = 30000;
|
|
this.PingTimer.Tick += new System.EventHandler(this.PingTimer_Tick);
|
|
//
|
|
// tabControl1
|
|
//
|
|
this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
|
|
this.tabControl1.Controls.Add(this.tabPage1);
|
|
this.tabControl1.Controls.Add(this.tabPage2);
|
|
this.tabControl1.Controls.Add(this.tabPage3);
|
|
this.tabControl1.Location = new System.Drawing.Point(208, 33);
|
|
this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.Size = new System.Drawing.Size(630, 484);
|
|
this.tabControl1.TabIndex = 3;
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.tabPage1.Controls.Add(this.buttonUninstall);
|
|
this.tabPage1.Controls.Add(this.buttonUpdate);
|
|
this.tabPage1.Controls.Add(this.buttonPlay);
|
|
this.tabPage1.Controls.Add(this.groupDeveloperToolBox);
|
|
this.tabPage1.Controls.Add(this.picGameIcon);
|
|
this.tabPage1.Controls.Add(this.labelGameName);
|
|
this.tabPage1.Controls.Add(this.labelGameDescription);
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 25);
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage1.Size = new System.Drawing.Size(622, 455);
|
|
this.tabPage1.TabIndex = 0;
|
|
this.tabPage1.Text = "Info";
|
|
//
|
|
// buttonUninstall
|
|
//
|
|
this.buttonUninstall.Location = new System.Drawing.Point(168, 44);
|
|
this.buttonUninstall.Name = "buttonUninstall";
|
|
this.buttonUninstall.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonUninstall.TabIndex = 6;
|
|
this.buttonUninstall.Text = "Uninstall";
|
|
this.buttonUninstall.UseVisualStyleBackColor = true;
|
|
this.buttonUninstall.Visible = false;
|
|
this.buttonUninstall.Click += new System.EventHandler(this.buttonUninstall_Click);
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
this.buttonUpdate.Location = new System.Drawing.Point(87, 44);
|
|
this.buttonUpdate.Name = "buttonUpdate";
|
|
this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonUpdate.TabIndex = 5;
|
|
this.buttonUpdate.Text = "Update";
|
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|
this.buttonUpdate.Visible = false;
|
|
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
|
|
//
|
|
// buttonPlay
|
|
//
|
|
this.buttonPlay.Location = new System.Drawing.Point(6, 44);
|
|
this.buttonPlay.Name = "buttonPlay";
|
|
this.buttonPlay.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonPlay.TabIndex = 4;
|
|
this.buttonPlay.Text = "Play";
|
|
this.buttonPlay.UseVisualStyleBackColor = true;
|
|
this.buttonPlay.Visible = false;
|
|
this.buttonPlay.Click += new System.EventHandler(this.buttonPlay_Click);
|
|
//
|
|
// groupDeveloperToolBox
|
|
//
|
|
this.groupDeveloperToolBox.BackColor = System.Drawing.SystemColors.Control;
|
|
this.groupDeveloperToolBox.Controls.Add(this.groupBox3);
|
|
this.groupDeveloperToolBox.Controls.Add(this.groupBox2);
|
|
this.groupDeveloperToolBox.Location = new System.Drawing.Point(6, 234);
|
|
this.groupDeveloperToolBox.Name = "groupDeveloperToolBox";
|
|
this.groupDeveloperToolBox.Size = new System.Drawing.Size(610, 215);
|
|
this.groupDeveloperToolBox.TabIndex = 3;
|
|
this.groupDeveloperToolBox.TabStop = false;
|
|
this.groupDeveloperToolBox.Text = "Developer Settings";
|
|
this.groupDeveloperToolBox.Visible = false;
|
|
//
|
|
// groupBox3
|
|
//
|
|
this.groupBox3.BackColor = System.Drawing.SystemColors.Control;
|
|
this.groupBox3.Controls.Add(this.buttonChecksumTool);
|
|
this.groupBox3.Controls.Add(this.textExecuteblePath);
|
|
this.groupBox3.Controls.Add(this.label1);
|
|
this.groupBox3.Location = new System.Drawing.Point(6, 19);
|
|
this.groupBox3.Name = "groupBox3";
|
|
this.groupBox3.Size = new System.Drawing.Size(383, 190);
|
|
this.groupBox3.TabIndex = 4;
|
|
this.groupBox3.TabStop = false;
|
|
this.groupBox3.Text = "Settings";
|
|
//
|
|
// buttonChecksumTool
|
|
//
|
|
this.buttonChecksumTool.Location = new System.Drawing.Point(9, 161);
|
|
this.buttonChecksumTool.Name = "buttonChecksumTool";
|
|
this.buttonChecksumTool.Size = new System.Drawing.Size(112, 23);
|
|
this.buttonChecksumTool.TabIndex = 4;
|
|
this.buttonChecksumTool.Text = "Checksum tool";
|
|
this.buttonChecksumTool.UseVisualStyleBackColor = true;
|
|
this.buttonChecksumTool.Click += new System.EventHandler(this.buttonChecksumTool_Click);
|
|
//
|
|
// textExecuteblePath
|
|
//
|
|
this.textExecuteblePath.Location = new System.Drawing.Point(221, 13);
|
|
this.textExecuteblePath.Name = "textExecuteblePath";
|
|
this.textExecuteblePath.Size = new System.Drawing.Size(156, 20);
|
|
this.textExecuteblePath.TabIndex = 3;
|
|
this.textExecuteblePath.TextChanged += new System.EventHandler(this.textExecuteblePath_TextChanged);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(6, 16);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(126, 13);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Current executeble path: ";
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.BackColor = System.Drawing.SystemColors.Control;
|
|
this.groupBox2.Controls.Add(this.labelVersion);
|
|
this.groupBox2.Controls.Add(this.label3);
|
|
this.groupBox2.Location = new System.Drawing.Point(404, 19);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(200, 190);
|
|
this.groupBox2.TabIndex = 3;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "Updating";
|
|
//
|
|
// labelVersion
|
|
//
|
|
this.labelVersion.Location = new System.Drawing.Point(103, 16);
|
|
this.labelVersion.Name = "labelVersion";
|
|
this.labelVersion.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
|
this.labelVersion.Size = new System.Drawing.Size(91, 13);
|
|
this.labelVersion.TabIndex = 3;
|
|
this.labelVersion.Text = "0.0.0.0";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(6, 16);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(76, 13);
|
|
this.label3.TabIndex = 2;
|
|
this.label3.Text = "Local version: ";
|
|
//
|
|
// picGameIcon
|
|
//
|
|
this.picGameIcon.Location = new System.Drawing.Point(6, 6);
|
|
this.picGameIcon.Name = "picGameIcon";
|
|
this.picGameIcon.Size = new System.Drawing.Size(32, 32);
|
|
this.picGameIcon.TabIndex = 2;
|
|
this.picGameIcon.TabStop = false;
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
|
|
this.tabPage2.Controls.Add(this.listAchievements);
|
|
this.tabPage2.Location = new System.Drawing.Point(4, 25);
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage2.Size = new System.Drawing.Size(622, 455);
|
|
this.tabPage2.TabIndex = 1;
|
|
this.tabPage2.Text = "Achievements";
|
|
//
|
|
// listAchievements
|
|
//
|
|
this.listAchievements.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader2,
|
|
this.columnHeader3,
|
|
this.columnHeader5});
|
|
this.listAchievements.FullRowSelect = true;
|
|
this.listAchievements.LabelWrap = false;
|
|
this.listAchievements.Location = new System.Drawing.Point(6, 6);
|
|
this.listAchievements.Name = "listAchievements";
|
|
this.listAchievements.Size = new System.Drawing.Size(610, 443);
|
|
this.listAchievements.TabIndex = 0;
|
|
this.listAchievements.UseCompatibleStateImageBehavior = false;
|
|
this.listAchievements.View = System.Windows.Forms.View.Details;
|
|
this.listAchievements.SelectedIndexChanged += new System.EventHandler(this.listAchievements_SelectedIndexChanged);
|
|
//
|
|
// columnHeader2
|
|
//
|
|
this.columnHeader2.Text = "Name";
|
|
this.columnHeader2.Width = 200;
|
|
//
|
|
// columnHeader3
|
|
//
|
|
this.columnHeader3.Text = "Points";
|
|
//
|
|
// columnHeader5
|
|
//
|
|
this.columnHeader5.Text = "Description";
|
|
this.columnHeader5.Width = 224;
|
|
//
|
|
// tabPage3
|
|
//
|
|
this.tabPage3.BackColor = System.Drawing.SystemColors.Control;
|
|
this.tabPage3.Location = new System.Drawing.Point(4, 25);
|
|
this.tabPage3.Name = "tabPage3";
|
|
this.tabPage3.Size = new System.Drawing.Size(622, 455);
|
|
this.tabPage3.TabIndex = 2;
|
|
this.tabPage3.Text = "Leaderboard";
|
|
//
|
|
// FormMain
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.Control;
|
|
this.ClientSize = new System.Drawing.Size(846, 523);
|
|
this.Controls.Add(this.tabControl1);
|
|
this.Controls.Add(this.listGames);
|
|
this.Controls.Add(this.menuStrip);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MainMenuStrip = this.menuStrip;
|
|
this.MaximizeBox = false;
|
|
this.Name = "FormMain";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "GamerServices";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
|
|
this.Load += new System.EventHandler(this.FormMain_Load);
|
|
this.menuStrip.ResumeLayout(false);
|
|
this.menuStrip.PerformLayout();
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.tabPage1.ResumeLayout(false);
|
|
this.tabPage1.PerformLayout();
|
|
this.groupDeveloperToolBox.ResumeLayout(false);
|
|
this.groupBox3.ResumeLayout(false);
|
|
this.groupBox3.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.picGameIcon)).EndInit();
|
|
this.tabPage2.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.MenuStrip menuStrip;
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem friendsToolStripMenuItem;
|
|
public System.Windows.Forms.NotifyIcon trayIcon;
|
|
private System.Windows.Forms.Timer timerUpdate;
|
|
private System.Windows.Forms.ListView listGames;
|
|
private System.Windows.Forms.ImageList gameIconList;
|
|
private System.Windows.Forms.Label labelGameName;
|
|
private System.Windows.Forms.Label labelGameDescription;
|
|
private System.Windows.Forms.PictureBox picGameIcon;
|
|
private System.Windows.Forms.Timer PingTimer;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private System.Windows.Forms.ToolStripMenuItem onlineToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem offlineToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem requestsToolStripMenuItem;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.TabPage tabPage3;
|
|
private System.Windows.Forms.ListView listAchievements;
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
|
private System.Windows.Forms.ColumnHeader columnHeader5;
|
|
private System.Windows.Forms.ToolStripMenuItem logoutToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
|
|
private System.Windows.Forms.GroupBox groupDeveloperToolBox;
|
|
private System.Windows.Forms.GroupBox groupBox3;
|
|
private System.Windows.Forms.TextBox textExecuteblePath;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label labelVersion;
|
|
private System.Windows.Forms.Button buttonPlay;
|
|
private System.Windows.Forms.Button buttonUninstall;
|
|
private System.Windows.Forms.Button buttonUpdate;
|
|
private System.Windows.Forms.Button buttonChecksumTool;
|
|
}
|
|
} |