Versatile OpenID Connect stack for ASP.NET Core and Microsoft.Owin (compatible with ASP.NET 4.6.1)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

98 lines
3.8 KiB

namespace OpenIddict.Sandbox.WinForms.Client;
partial class MainForm
{
/// <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.LocalLogin = new System.Windows.Forms.Button();
this.GitHubLogin = new System.Windows.Forms.Button();
this.LocalLoginWithGitHub = new System.Windows.Forms.Button();
this.LocalLogout = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// LocalLogin
//
this.LocalLogin.Location = new System.Drawing.Point(214, 32);
this.LocalLogin.Name = "LocalLogin";
this.LocalLogin.Size = new System.Drawing.Size(391, 83);
this.LocalLogin.TabIndex = 0;
this.LocalLogin.Text = "Log in using the local server";
this.LocalLogin.UseVisualStyleBackColor = true;
this.LocalLogin.Click += new System.EventHandler(this.LocalLoginButton_Click);
//
// GitHubLogin
//
this.GitHubLogin.Location = new System.Drawing.Point(214, 210);
this.GitHubLogin.Name = "GitHubLogin";
this.GitHubLogin.Size = new System.Drawing.Size(391, 83);
this.GitHubLogin.TabIndex = 1;
this.GitHubLogin.Text = "Log in using GitHub";
this.GitHubLogin.UseVisualStyleBackColor = true;
this.GitHubLogin.Click += new System.EventHandler(this.GitHubLoginButton_Click);
//
// LocalLoginWithGitHub
//
this.LocalLoginWithGitHub.Location = new System.Drawing.Point(214, 121);
this.LocalLoginWithGitHub.Name = "LocalLoginWithGitHub";
this.LocalLoginWithGitHub.Size = new System.Drawing.Size(391, 83);
this.LocalLoginWithGitHub.TabIndex = 0;
this.LocalLoginWithGitHub.Text = "Log in using the local server (preferred service: GitHub)";
this.LocalLoginWithGitHub.UseVisualStyleBackColor = true;
this.LocalLoginWithGitHub.Click += new System.EventHandler(this.LocalLoginWithGitHubButton_Click);
//
// LocalLogout
//
this.LocalLogout.Location = new System.Drawing.Point(214, 336);
this.LocalLogout.Name = "LocalLogout";
this.LocalLogout.Size = new System.Drawing.Size(391, 83);
this.LocalLogout.TabIndex = 2;
this.LocalLogout.Text = "Log out from the local server";
this.LocalLogout.UseVisualStyleBackColor = true;
this.LocalLogout.Click += new System.EventHandler(this.LocalLogoutButton_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.LocalLogout);
this.Controls.Add(this.GitHubLogin);
this.Controls.Add(this.LocalLoginWithGitHub);
this.Controls.Add(this.LocalLogin);
this.Name = "MainForm";
this.Text = "OpenIddict WinForms client";
this.ResumeLayout(false);
}
#endregion
private Button LocalLogin;
private Button GitHubLogin;
private Button LocalLoginWithGitHub;
private Button LocalLogout;
}