mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 23:16:28 +00:00
dd77be8a8a
* Create ProxyConfig class + Unit tests * Use ProxyConfig in SpotifyLocalAPI * Refactor WebProxy creation in ProxyConfig * Use ProxyConfig in SpotifyWebAPI * Add ProxyConfig parameter in GetAlbumArt methods * Add ProxyConfig to WebAPIFactory * Add proxy settings to Example app * Fix ArgumentNullException in GetAlbumArtUrl when not using proxy * Performed requested changes - Removed redundant "this". - Added necessary null checks. - Added a ProxyConfig property to SpotifyLocalAPIConfig and removed constructor overloads with it in SpotifyLocalAPI and RemoteHandler. * Updated Example app
421 lines
21 KiB
C#
421 lines
21 KiB
C#
namespace SpotifyAPI.Example
|
|
{
|
|
partial class WebControl
|
|
{
|
|
/// <summary>
|
|
/// Erforderliche Designervariable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Verwendete Ressourcen bereinigen.
|
|
/// </summary>
|
|
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Vom Komponenten-Designer generierter Code
|
|
|
|
/// <summary>
|
|
/// Erforderliche Methode für die Designerunterstützung.
|
|
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.authButton = new System.Windows.Forms.Button();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.savedTracksListView = new System.Windows.Forms.ListView();
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.savedTracksCountLabel = new System.Windows.Forms.Label();
|
|
this.playlistsListBox = new System.Windows.Forms.ListBox();
|
|
this.playlistsCountLabel = new System.Windows.Forms.Label();
|
|
this.label7 = new System.Windows.Forms.Label();
|
|
this.displayNameLabel = new System.Windows.Forms.Label();
|
|
this.countryLabel = new System.Windows.Forms.Label();
|
|
this.emailLabel = new System.Windows.Forms.Label();
|
|
this.accountLabel = new System.Windows.Forms.Label();
|
|
this.avatarPictureBox = new System.Windows.Forms.PictureBox();
|
|
this.proxyGroupBox = new System.Windows.Forms.GroupBox();
|
|
this.proxyPortUpDown = new System.Windows.Forms.NumericUpDown();
|
|
this.proxyPasswordTextBox = new System.Windows.Forms.TextBox();
|
|
this.label15 = new System.Windows.Forms.Label();
|
|
this.proxyUsernameTextBox = new System.Windows.Forms.TextBox();
|
|
this.label14 = new System.Windows.Forms.Label();
|
|
this.label13 = new System.Windows.Forms.Label();
|
|
this.proxyHostTextBox = new System.Windows.Forms.TextBox();
|
|
this.label12 = new System.Windows.Forms.Label();
|
|
this.applyProxyBtn = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.avatarPictureBox)).BeginInit();
|
|
this.proxyGroupBox.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.proxyPortUpDown)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// authButton
|
|
//
|
|
this.authButton.Location = new System.Drawing.Point(3, 3);
|
|
this.authButton.Name = "authButton";
|
|
this.authButton.Size = new System.Drawing.Size(964, 48);
|
|
this.authButton.TabIndex = 0;
|
|
this.authButton.Text = "Authenticate SpotifyWeb API";
|
|
this.authButton.UseVisualStyleBackColor = true;
|
|
this.authButton.Click += new System.EventHandler(this.authButton_Click);
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label3.Location = new System.Drawing.Point(3, 251);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(100, 17);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "Display-Name:";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label4.Location = new System.Drawing.Point(3, 268);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(61, 17);
|
|
this.label4.TabIndex = 6;
|
|
this.label4.Text = "Country:";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label5.Location = new System.Drawing.Point(3, 285);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(51, 17);
|
|
this.label5.TabIndex = 7;
|
|
this.label5.Text = "E-Mail:";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label1.Location = new System.Drawing.Point(3, 302);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(100, 17);
|
|
this.label1.TabIndex = 8;
|
|
this.label1.Text = "Account-Type:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label2.Location = new System.Drawing.Point(240, 73);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(100, 17);
|
|
this.label2.TabIndex = 9;
|
|
this.label2.Text = "Saved-Tracks:";
|
|
//
|
|
// savedTracksListView
|
|
//
|
|
this.savedTracksListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.columnHeader1,
|
|
this.columnHeader2,
|
|
this.columnHeader3});
|
|
this.savedTracksListView.FullRowSelect = true;
|
|
this.savedTracksListView.Location = new System.Drawing.Point(243, 93);
|
|
this.savedTracksListView.Name = "savedTracksListView";
|
|
this.savedTracksListView.Size = new System.Drawing.Size(385, 563);
|
|
this.savedTracksListView.TabIndex = 10;
|
|
this.savedTracksListView.UseCompatibleStateImageBehavior = false;
|
|
this.savedTracksListView.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// columnHeader1
|
|
//
|
|
this.columnHeader1.Text = "Title";
|
|
this.columnHeader1.Width = 120;
|
|
//
|
|
// columnHeader2
|
|
//
|
|
this.columnHeader2.Text = "Artist";
|
|
this.columnHeader2.Width = 117;
|
|
//
|
|
// columnHeader3
|
|
//
|
|
this.columnHeader3.Text = "Album";
|
|
this.columnHeader3.Width = 131;
|
|
//
|
|
// savedTracksCountLabel
|
|
//
|
|
this.savedTracksCountLabel.AutoSize = true;
|
|
this.savedTracksCountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.savedTracksCountLabel.Location = new System.Drawing.Point(346, 73);
|
|
this.savedTracksCountLabel.Name = "savedTracksCountLabel";
|
|
this.savedTracksCountLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.savedTracksCountLabel.TabIndex = 11;
|
|
this.savedTracksCountLabel.Text = "-";
|
|
//
|
|
// playlistsListBox
|
|
//
|
|
this.playlistsListBox.FormattingEnabled = true;
|
|
this.playlistsListBox.Location = new System.Drawing.Point(634, 93);
|
|
this.playlistsListBox.Name = "playlistsListBox";
|
|
this.playlistsListBox.Size = new System.Drawing.Size(305, 563);
|
|
this.playlistsListBox.TabIndex = 12;
|
|
//
|
|
// playlistsCountLabel
|
|
//
|
|
this.playlistsCountLabel.AutoSize = true;
|
|
this.playlistsCountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.playlistsCountLabel.Location = new System.Drawing.Point(700, 73);
|
|
this.playlistsCountLabel.Name = "playlistsCountLabel";
|
|
this.playlistsCountLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.playlistsCountLabel.TabIndex = 14;
|
|
this.playlistsCountLabel.Text = "-";
|
|
//
|
|
// label7
|
|
//
|
|
this.label7.AutoSize = true;
|
|
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label7.Location = new System.Drawing.Point(631, 73);
|
|
this.label7.Name = "label7";
|
|
this.label7.Size = new System.Drawing.Size(63, 17);
|
|
this.label7.TabIndex = 13;
|
|
this.label7.Text = "Playlists:";
|
|
//
|
|
// displayNameLabel
|
|
//
|
|
this.displayNameLabel.AutoSize = true;
|
|
this.displayNameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.displayNameLabel.Location = new System.Drawing.Point(109, 251);
|
|
this.displayNameLabel.Name = "displayNameLabel";
|
|
this.displayNameLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.displayNameLabel.TabIndex = 15;
|
|
this.displayNameLabel.Text = "-";
|
|
//
|
|
// countryLabel
|
|
//
|
|
this.countryLabel.AutoSize = true;
|
|
this.countryLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.countryLabel.Location = new System.Drawing.Point(70, 268);
|
|
this.countryLabel.Name = "countryLabel";
|
|
this.countryLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.countryLabel.TabIndex = 16;
|
|
this.countryLabel.Text = "-";
|
|
//
|
|
// emailLabel
|
|
//
|
|
this.emailLabel.AutoSize = true;
|
|
this.emailLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.emailLabel.Location = new System.Drawing.Point(60, 285);
|
|
this.emailLabel.Name = "emailLabel";
|
|
this.emailLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.emailLabel.TabIndex = 17;
|
|
this.emailLabel.Text = "-";
|
|
//
|
|
// accountLabel
|
|
//
|
|
this.accountLabel.AutoSize = true;
|
|
this.accountLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.accountLabel.Location = new System.Drawing.Point(109, 302);
|
|
this.accountLabel.Name = "accountLabel";
|
|
this.accountLabel.Size = new System.Drawing.Size(13, 17);
|
|
this.accountLabel.TabIndex = 18;
|
|
this.accountLabel.Text = "-";
|
|
//
|
|
// avatarPictureBox
|
|
//
|
|
this.avatarPictureBox.Location = new System.Drawing.Point(3, 322);
|
|
this.avatarPictureBox.Name = "avatarPictureBox";
|
|
this.avatarPictureBox.Size = new System.Drawing.Size(234, 212);
|
|
this.avatarPictureBox.TabIndex = 19;
|
|
this.avatarPictureBox.TabStop = false;
|
|
//
|
|
// proxyGroupBox
|
|
//
|
|
this.proxyGroupBox.Controls.Add(this.proxyPortUpDown);
|
|
this.proxyGroupBox.Controls.Add(this.proxyPasswordTextBox);
|
|
this.proxyGroupBox.Controls.Add(this.label15);
|
|
this.proxyGroupBox.Controls.Add(this.proxyUsernameTextBox);
|
|
this.proxyGroupBox.Controls.Add(this.label14);
|
|
this.proxyGroupBox.Controls.Add(this.label13);
|
|
this.proxyGroupBox.Controls.Add(this.proxyHostTextBox);
|
|
this.proxyGroupBox.Controls.Add(this.label12);
|
|
this.proxyGroupBox.Controls.Add(this.applyProxyBtn);
|
|
this.proxyGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F);
|
|
this.proxyGroupBox.Location = new System.Drawing.Point(6, 73);
|
|
this.proxyGroupBox.Name = "proxyGroupBox";
|
|
this.proxyGroupBox.Size = new System.Drawing.Size(231, 167);
|
|
this.proxyGroupBox.TabIndex = 20;
|
|
this.proxyGroupBox.TabStop = false;
|
|
this.proxyGroupBox.Text = "Proxy Config";
|
|
//
|
|
// proxyPortUpDown
|
|
//
|
|
this.proxyPortUpDown.Location = new System.Drawing.Point(50, 47);
|
|
this.proxyPortUpDown.Maximum = new decimal(new int[] {
|
|
65535,
|
|
0,
|
|
0,
|
|
0});
|
|
this.proxyPortUpDown.Minimum = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
0});
|
|
this.proxyPortUpDown.Name = "proxyPortUpDown";
|
|
this.proxyPortUpDown.Size = new System.Drawing.Size(76, 24);
|
|
this.proxyPortUpDown.TabIndex = 6;
|
|
this.proxyPortUpDown.Value = new decimal(new int[] {
|
|
80,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// proxyPasswordTextBox
|
|
//
|
|
this.proxyPasswordTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.proxyPasswordTextBox.Location = new System.Drawing.Point(85, 103);
|
|
this.proxyPasswordTextBox.Name = "proxyPasswordTextBox";
|
|
this.proxyPasswordTextBox.Size = new System.Drawing.Size(140, 20);
|
|
this.proxyPasswordTextBox.TabIndex = 42;
|
|
//
|
|
// label15
|
|
//
|
|
this.label15.AutoSize = true;
|
|
this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label15.Location = new System.Drawing.Point(6, 104);
|
|
this.label15.Name = "label15";
|
|
this.label15.Size = new System.Drawing.Size(73, 17);
|
|
this.label15.TabIndex = 41;
|
|
this.label15.Text = "Password:";
|
|
//
|
|
// proxyUsernameTextBox
|
|
//
|
|
this.proxyUsernameTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.proxyUsernameTextBox.Location = new System.Drawing.Point(89, 77);
|
|
this.proxyUsernameTextBox.Name = "proxyUsernameTextBox";
|
|
this.proxyUsernameTextBox.Size = new System.Drawing.Size(136, 20);
|
|
this.proxyUsernameTextBox.TabIndex = 40;
|
|
//
|
|
// label14
|
|
//
|
|
this.label14.AutoSize = true;
|
|
this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label14.Location = new System.Drawing.Point(6, 78);
|
|
this.label14.Name = "label14";
|
|
this.label14.Size = new System.Drawing.Size(77, 17);
|
|
this.label14.TabIndex = 39;
|
|
this.label14.Text = "Username:";
|
|
//
|
|
// label13
|
|
//
|
|
this.label13.AutoSize = true;
|
|
this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label13.Location = new System.Drawing.Point(6, 51);
|
|
this.label13.Name = "label13";
|
|
this.label13.Size = new System.Drawing.Size(38, 17);
|
|
this.label13.TabIndex = 37;
|
|
this.label13.Text = "Port:";
|
|
//
|
|
// proxyHostTextBox
|
|
//
|
|
this.proxyHostTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.proxyHostTextBox.Location = new System.Drawing.Point(49, 21);
|
|
this.proxyHostTextBox.Name = "proxyHostTextBox";
|
|
this.proxyHostTextBox.Size = new System.Drawing.Size(176, 20);
|
|
this.proxyHostTextBox.TabIndex = 36;
|
|
//
|
|
// label12
|
|
//
|
|
this.label12.AutoSize = true;
|
|
this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.label12.Location = new System.Drawing.Point(6, 22);
|
|
this.label12.Name = "label12";
|
|
this.label12.Size = new System.Drawing.Size(41, 17);
|
|
this.label12.TabIndex = 36;
|
|
this.label12.Text = "Host:";
|
|
//
|
|
// applyProxyBtn
|
|
//
|
|
this.applyProxyBtn.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.applyProxyBtn.Location = new System.Drawing.Point(147, 136);
|
|
this.applyProxyBtn.Name = "applyProxyBtn";
|
|
this.applyProxyBtn.Size = new System.Drawing.Size(78, 25);
|
|
this.applyProxyBtn.TabIndex = 0;
|
|
this.applyProxyBtn.Text = "Apply";
|
|
this.applyProxyBtn.UseVisualStyleBackColor = true;
|
|
this.applyProxyBtn.Click += new System.EventHandler(this.applyProxyBtn_Click);
|
|
//
|
|
// WebControl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.proxyGroupBox);
|
|
this.Controls.Add(this.avatarPictureBox);
|
|
this.Controls.Add(this.accountLabel);
|
|
this.Controls.Add(this.emailLabel);
|
|
this.Controls.Add(this.countryLabel);
|
|
this.Controls.Add(this.displayNameLabel);
|
|
this.Controls.Add(this.playlistsCountLabel);
|
|
this.Controls.Add(this.label7);
|
|
this.Controls.Add(this.playlistsListBox);
|
|
this.Controls.Add(this.savedTracksCountLabel);
|
|
this.Controls.Add(this.savedTracksListView);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.label5);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.authButton);
|
|
this.Name = "WebControl";
|
|
this.Size = new System.Drawing.Size(970, 670);
|
|
((System.ComponentModel.ISupportInitialize)(this.avatarPictureBox)).EndInit();
|
|
this.proxyGroupBox.ResumeLayout(false);
|
|
this.proxyGroupBox.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.proxyPortUpDown)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button authButton;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.ListView savedTracksListView;
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
|
private System.Windows.Forms.Label savedTracksCountLabel;
|
|
private System.Windows.Forms.ListBox playlistsListBox;
|
|
private System.Windows.Forms.Label playlistsCountLabel;
|
|
private System.Windows.Forms.Label label7;
|
|
private System.Windows.Forms.Label displayNameLabel;
|
|
private System.Windows.Forms.Label countryLabel;
|
|
private System.Windows.Forms.Label emailLabel;
|
|
private System.Windows.Forms.Label accountLabel;
|
|
private System.Windows.Forms.PictureBox avatarPictureBox;
|
|
private System.Windows.Forms.GroupBox proxyGroupBox;
|
|
private System.Windows.Forms.NumericUpDown proxyPortUpDown;
|
|
private System.Windows.Forms.TextBox proxyPasswordTextBox;
|
|
private System.Windows.Forms.Label label15;
|
|
private System.Windows.Forms.TextBox proxyUsernameTextBox;
|
|
private System.Windows.Forms.Label label14;
|
|
private System.Windows.Forms.Label label13;
|
|
private System.Windows.Forms.TextBox proxyHostTextBox;
|
|
private System.Windows.Forms.Label label12;
|
|
private System.Windows.Forms.Button applyProxyBtn;
|
|
}
|
|
}
|