/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelSortBy = new System.Windows.Forms.Label();
     this.radioButtonSortByID = new System.Windows.Forms.RadioButton();
     this.radioButtonSortByDate = new System.Windows.Forms.RadioButton();
     this.checkBoxDescending = new System.Windows.Forms.CheckBox();
     this.listBox1 = new CustomDrawListBox();
     this.SuspendLayout();
     //
     // labelSortBy
     //
     this.labelSortBy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.labelSortBy.AutoSize = true;
     this.labelSortBy.Location = new System.Drawing.Point(12, 434);
     this.labelSortBy.Name = "labelSortBy";
     this.labelSortBy.Size = new System.Drawing.Size(43, 13);
     this.labelSortBy.TabIndex = 2;
     this.labelSortBy.Text = "Sort by:";
     //
     // radioButtonSortByID
     //
     this.radioButtonSortByID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.radioButtonSortByID.AutoSize = true;
     this.radioButtonSortByID.Checked = true;
     this.radioButtonSortByID.Location = new System.Drawing.Point(61, 433);
     this.radioButtonSortByID.Name = "radioButtonSortByID";
     this.radioButtonSortByID.Size = new System.Drawing.Size(72, 17);
     this.radioButtonSortByID.TabIndex = 3;
     this.radioButtonSortByID.TabStop = true;
     this.radioButtonSortByID.Text = "Trophy ID";
     this.radioButtonSortByID.UseVisualStyleBackColor = true;
     //
     // radioButtonSortByDate
     //
     this.radioButtonSortByDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.radioButtonSortByDate.AutoSize = true;
     this.radioButtonSortByDate.Location = new System.Drawing.Point(139, 433);
     this.radioButtonSortByDate.Name = "radioButtonSortByDate";
     this.radioButtonSortByDate.Size = new System.Drawing.Size(93, 17);
     this.radioButtonSortByDate.TabIndex = 4;
     this.radioButtonSortByDate.Text = "Time Acquired";
     this.radioButtonSortByDate.UseVisualStyleBackColor = true;
     //
     // checkBoxDescending
     //
     this.checkBoxDescending.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxDescending.AutoSize = true;
     this.checkBoxDescending.Location = new System.Drawing.Point(61, 456);
     this.checkBoxDescending.Name = "checkBoxDescending";
     this.checkBoxDescending.Size = new System.Drawing.Size(83, 17);
     this.checkBoxDescending.TabIndex = 5;
     this.checkBoxDescending.Text = "Descending";
     this.checkBoxDescending.UseVisualStyleBackColor = true;
     //
     // listBox1
     //
     this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.listBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.ItemHeight = 60;
     this.listBox1.Location = new System.Drawing.Point(12, 12);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(548, 413);
     this.listBox1.TabIndex = 1;
     this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
     //
     // GameSelectForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(572, 478);
     this.Controls.Add(this.checkBoxDescending);
     this.Controls.Add(this.radioButtonSortByDate);
     this.Controls.Add(this.radioButtonSortByID);
     this.Controls.Add(this.labelSortBy);
     this.Controls.Add(this.listBox1);
     this.Name = "GameSelectForm";
     this.Text = "GameSelectForm";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelName = new System.Windows.Forms.Label();
     this.labelTType = new System.Windows.Forms.Label();
     this.labelDescription = new System.Windows.Forms.Label();
     this.labelHidden = new System.Windows.Forms.Label();
     this.labelUserArea = new System.Windows.Forms.Label();
     this.labelUnlocked = new System.Windows.Forms.Label();
     this.labelTimestamp = new System.Windows.Forms.Label();
     this.labelTimestamp2 = new System.Windows.Forms.Label();
     this.labelTrophyID = new System.Windows.Forms.Label();
     this.listBox1 = new CustomDrawListBox();
     this.SuspendLayout();
     //
     // labelName
     //
     this.labelName.AutoSize = true;
     this.labelName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelName.Location = new System.Drawing.Point(303, 13);
     this.labelName.Name = "labelName";
     this.labelName.Size = new System.Drawing.Size(39, 13);
     this.labelName.TabIndex = 1;
     this.labelName.Text = "Name";
     //
     // labelTType
     //
     this.labelTType.AutoSize = true;
     this.labelTType.Location = new System.Drawing.Point(303, 33);
     this.labelTType.Name = "labelTType";
     this.labelTType.Size = new System.Drawing.Size(67, 13);
     this.labelTType.TabIndex = 2;
     this.labelTType.Text = "Trophy Type";
     //
     // labelDescription
     //
     this.labelDescription.AutoSize = true;
     this.labelDescription.Location = new System.Drawing.Point(303, 53);
     this.labelDescription.Name = "labelDescription";
     this.labelDescription.Size = new System.Drawing.Size(60, 13);
     this.labelDescription.TabIndex = 3;
     this.labelDescription.Text = "Description";
     //
     // labelHidden
     //
     this.labelHidden.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelHidden.AutoSize = true;
     this.labelHidden.Location = new System.Drawing.Point(565, 33);
     this.labelHidden.Name = "labelHidden";
     this.labelHidden.Size = new System.Drawing.Size(47, 13);
     this.labelHidden.TabIndex = 4;
     this.labelHidden.Text = "Hidden?";
     this.labelHidden.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // labelUserArea
     //
     this.labelUserArea.AutoSize = true;
     this.labelUserArea.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelUserArea.Location = new System.Drawing.Point(306, 162);
     this.labelUserArea.Name = "labelUserArea";
     this.labelUserArea.Size = new System.Drawing.Size(100, 13);
     this.labelUserArea.TabIndex = 5;
     this.labelUserArea.Text = "User Information";
     //
     // labelUnlocked
     //
     this.labelUnlocked.AutoSize = true;
     this.labelUnlocked.Location = new System.Drawing.Point(306, 182);
     this.labelUnlocked.Name = "labelUnlocked";
     this.labelUnlocked.Size = new System.Drawing.Size(59, 13);
     this.labelUnlocked.TabIndex = 6;
     this.labelUnlocked.Text = "Unlocked?";
     //
     // labelTimestamp
     //
     this.labelTimestamp.AutoSize = true;
     this.labelTimestamp.Location = new System.Drawing.Point(306, 202);
     this.labelTimestamp.Name = "labelTimestamp";
     this.labelTimestamp.Size = new System.Drawing.Size(58, 13);
     this.labelTimestamp.TabIndex = 7;
     this.labelTimestamp.Text = "Timestamp";
     //
     // labelTimestamp2
     //
     this.labelTimestamp2.AutoSize = true;
     this.labelTimestamp2.Location = new System.Drawing.Point(306, 222);
     this.labelTimestamp2.Name = "labelTimestamp2";
     this.labelTimestamp2.Size = new System.Drawing.Size(58, 13);
     this.labelTimestamp2.TabIndex = 8;
     this.labelTimestamp2.Text = "Timestamp";
     //
     // labelTrophyID
     //
     this.labelTrophyID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTrophyID.AutoSize = true;
     this.labelTrophyID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelTrophyID.Location = new System.Drawing.Point(592, 13);
     this.labelTrophyID.Name = "labelTrophyID";
     this.labelTrophyID.Size = new System.Drawing.Size(20, 13);
     this.labelTrophyID.TabIndex = 9;
     this.labelTrophyID.Text = "ID";
     this.labelTrophyID.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // listBox1
     //
     this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.listBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.listBox1.FormattingEnabled = true;
     this.listBox1.ItemHeight = 60;
     this.listBox1.Location = new System.Drawing.Point(13, 13);
     this.listBox1.Name = "listBox1";
     this.listBox1.Size = new System.Drawing.Size(279, 578);
     this.listBox1.TabIndex = 0;
     this.listBox1.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
     //
     // TrophyForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(624, 602);
     this.Controls.Add(this.labelTrophyID);
     this.Controls.Add(this.labelTimestamp2);
     this.Controls.Add(this.labelTimestamp);
     this.Controls.Add(this.labelUnlocked);
     this.Controls.Add(this.labelUserArea);
     this.Controls.Add(this.labelHidden);
     this.Controls.Add(this.labelDescription);
     this.Controls.Add(this.labelTType);
     this.Controls.Add(this.labelName);
     this.Controls.Add(this.listBox1);
     this.Name = "TrophyForm";
     this.Text = "TrophyForm";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            if(cItemsList == null)
                cItemsList = new CustomDrawListBox();
            this.SelectBtn = new MetroFramework.Controls.MetroButton();
            this.SearchItems = new MetroFramework.Controls.MetroTextBox();
            this.ItemProb = new MetroFramework.Controls.MetroTextBox();
            this.metroLabel1 = new MetroFramework.Controls.MetroLabel();
            this.SuspendLayout();
            // 
            // cItemsList
            // 
            cItemsList.FormattingEnabled = true;
            cItemsList.Location = new System.Drawing.Point(12, 38);
            cItemsList.Name = "cItemsList";
            cItemsList.Size = new System.Drawing.Size(236, 368);
            cItemsList.TabIndex = 0;
            cItemsList.SelectedIndexChanged += cItemList_IndexChanged;
            // 
            // SelectBtn
            // 
            this.SelectBtn.Location = new System.Drawing.Point(186, 412);
            this.SelectBtn.Name = "SelectBtn";
            this.SelectBtn.Size = new System.Drawing.Size(62, 23);
            this.SelectBtn.TabIndex = 1;
            this.SelectBtn.Text = "Save";
            this.SelectBtn.UseSelectable = true;
            // 
            // SearchItems
            // 
            this.SearchItems.Lines = new string[] {
        "Search..."};
            this.SearchItems.Location = new System.Drawing.Point(12, 9);
            this.SearchItems.MaxLength = 32767;
            this.SearchItems.Name = "SearchItems";
            this.SearchItems.PasswordChar = '\0';
            this.SearchItems.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.SearchItems.SelectedText = "";
            this.SearchItems.Size = new System.Drawing.Size(236, 23);
            this.SearchItems.TabIndex = 2;
            this.SearchItems.Text = "";
            this.SearchItems.UseSelectable = true;
            // 
            // ItemProb
            // 
            this.ItemProb.Lines = new string[0];
            this.ItemProb.Location = new System.Drawing.Point(60, 412);
            this.ItemProb.MaxLength = 32767;
            this.ItemProb.Name = "ItemProb";
            this.ItemProb.PasswordChar = '\0';
            this.ItemProb.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.ItemProb.SelectedText = "";
            this.ItemProb.Size = new System.Drawing.Size(120, 23);
            this.ItemProb.TabIndex = 3;
            this.ItemProb.UseSelectable = true;
            // 
            // metroLabel1
            // 
            this.metroLabel1.AutoSize = true;
            this.metroLabel1.Location = new System.Drawing.Point(12, 412);
            this.metroLabel1.Name = "metroLabel1";
            this.metroLabel1.Size = new System.Drawing.Size(42, 19);
            this.metroLabel1.TabIndex = 4;
            this.metroLabel1.Text = "Rate :";
            // 
            // ItemSelector
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(260, 445);
            this.Controls.Add(this.metroLabel1);
            this.Controls.Add(this.ItemProb);
            this.Controls.Add(this.SearchItems);
            this.Controls.Add(this.SelectBtn);
            this.Controls.Add(cItemsList);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Name = "ItemSelector";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Update Item";
            this.ResumeLayout(false);
            this.PerformLayout();

        }