Files
UnrealEngineUWP/Engine/Source/Programs/UnrealGameSync/UnrealGameSyncLauncher/Forms/LogWindow.Designer.cs
Ben Marsh 83bca0e51d UGS: Make UGS launcher DPI-aware.
#rb none

[CL 4318597 by Ben Marsh in Dev-Build branch]
2018-08-27 11:42:56 -04:00

84 lines
3.0 KiB
C#

namespace UnrealGameSyncLauncher
{
partial class LogWindow
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogWindow));
this.OkBtn = new System.Windows.Forms.Button();
this.LogTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// OkBtn
//
this.OkBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.OkBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.OkBtn.Location = new System.Drawing.Point(819, 306);
this.OkBtn.Name = "OkBtn";
this.OkBtn.Size = new System.Drawing.Size(75, 23);
this.OkBtn.TabIndex = 3;
this.OkBtn.Text = "Ok";
this.OkBtn.UseVisualStyleBackColor = true;
//
// LogTextBox
//
this.LogTextBox.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.LogTextBox.BackColor = System.Drawing.SystemColors.Window;
this.LogTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.LogTextBox.Location = new System.Drawing.Point(12, 12);
this.LogTextBox.Multiline = true;
this.LogTextBox.Name = "LogTextBox";
this.LogTextBox.ReadOnly = true;
this.LogTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.LogTextBox.Size = new System.Drawing.Size(882, 288);
this.LogTextBox.TabIndex = 2;
this.LogTextBox.WordWrap = false;
//
// LogWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(906, 341);
this.Controls.Add(this.OkBtn);
this.Controls.Add(this.LogTextBox);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "LogWindow";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Log";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button OkBtn;
private System.Windows.Forms.TextBox LogTextBox;
}
}