golang.zx2c4.com/wireguard/windows@v0.5.4-0.20230123132234-dcc0eb72a04b/embeddable-dll-service/csharp/DemoUI/MainWindow.Designer.cs (about) 1 /* SPDX-License-Identifier: MIT 2 * 3 * Copyright (C) 2019-2022 WireGuard LLC. All Rights Reserved. 4 */ 5 6 namespace DemoUI 7 { 8 partial class MainWindow 9 { 10 /// <summary> 11 /// Required designer variable. 12 /// </summary> 13 private System.ComponentModel.IContainer components = null; 14 15 /// <summary> 16 /// Clean up any resources being used. 17 /// </summary> 18 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 19 protected override void Dispose(bool disposing) 20 { 21 if (disposing && (components != null)) 22 { 23 components.Dispose(); 24 } 25 base.Dispose(disposing); 26 } 27 28 #region Windows Form Designer generated code 29 30 /// <summary> 31 /// Required method for Designer support - do not modify 32 /// the contents of this method with the code editor. 33 /// </summary> 34 private void InitializeComponent() 35 { 36 this.connectButton = new System.Windows.Forms.Button(); 37 this.logBox = new System.Windows.Forms.TextBox(); 38 this.SuspendLayout(); 39 // 40 // connectButton 41 // 42 this.connectButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 43 | System.Windows.Forms.AnchorStyles.Right))); 44 this.connectButton.Location = new System.Drawing.Point(12, 12); 45 this.connectButton.Name = "connectButton"; 46 this.connectButton.Size = new System.Drawing.Size(1137, 46); 47 this.connectButton.TabIndex = 5; 48 this.connectButton.Text = "&Connect"; 49 this.connectButton.UseVisualStyleBackColor = true; 50 this.connectButton.Click += new System.EventHandler(this.connectButton_Click); 51 // 52 // logBox 53 // 54 this.logBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 55 | System.Windows.Forms.AnchorStyles.Left) 56 | System.Windows.Forms.AnchorStyles.Right))); 57 this.logBox.Location = new System.Drawing.Point(12, 64); 58 this.logBox.Multiline = true; 59 this.logBox.Name = "logBox"; 60 this.logBox.ReadOnly = true; 61 this.logBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 62 this.logBox.Size = new System.Drawing.Size(1137, 561); 63 this.logBox.TabIndex = 4; 64 this.logBox.TabStop = false; 65 // 66 // MainWindow 67 // 68 this.AutoScaleDimensions = new System.Drawing.SizeF(13F, 32F); 69 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 70 this.ClientSize = new System.Drawing.Size(1161, 637); 71 this.Controls.Add(this.logBox); 72 this.Controls.Add(this.connectButton); 73 this.Name = "MainWindow"; 74 this.Text = "WireGuard Demo Client"; 75 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing); 76 this.Load += new System.EventHandler(this.MainWindow_Load); 77 this.ResumeLayout(false); 78 this.PerformLayout(); 79 80 } 81 82 #endregion 83 private System.Windows.Forms.Button connectButton; 84 private System.Windows.Forms.TextBox logBox; 85 } 86 } 87