117 lines
4.1 KiB
C#
117 lines
4.1 KiB
C#
namespace CanFly.UI
|
|
{
|
|
partial class BaseFrmGuide
|
|
{
|
|
/// <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()
|
|
{
|
|
flowLayoutPanel = new FlowLayoutPanel();
|
|
pbLogo = new PictureBox();
|
|
lblTitle = new Label();
|
|
flowPanelContent = new FlowLayoutPanel();
|
|
panelMain = new Panel();
|
|
flowLayoutPanel.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)pbLogo).BeginInit();
|
|
panelMain.SuspendLayout();
|
|
SuspendLayout();
|
|
//
|
|
// flowLayoutPanel
|
|
//
|
|
flowLayoutPanel.Controls.Add(pbLogo);
|
|
flowLayoutPanel.Controls.Add(lblTitle);
|
|
flowLayoutPanel.Dock = DockStyle.Top;
|
|
flowLayoutPanel.Location = new Point(0, 0);
|
|
flowLayoutPanel.Name = "flowLayoutPanel1";
|
|
flowLayoutPanel.Size = new Size(692, 36);
|
|
flowLayoutPanel.TabIndex = 0;
|
|
//
|
|
// pbLogo
|
|
//
|
|
pbLogo.Location = new Point(3, 3);
|
|
pbLogo.Name = "pbLogo";
|
|
pbLogo.Size = new Size(30, 30);
|
|
pbLogo.SizeMode = PictureBoxSizeMode.StretchImage;
|
|
pbLogo.TabIndex = 0;
|
|
pbLogo.TabStop = false;
|
|
pbLogo.Visible = false;
|
|
//
|
|
// lblTitle
|
|
//
|
|
lblTitle.AutoSize = true;
|
|
lblTitle.Dock = DockStyle.Fill;
|
|
lblTitle.Font = new Font("Microsoft YaHei UI", 12F, FontStyle.Bold, GraphicsUnit.Point);
|
|
lblTitle.Location = new Point(39, 0);
|
|
lblTitle.Name = "lblTitle";
|
|
lblTitle.Size = new Size(20, 36);
|
|
lblTitle.TabIndex = 1;
|
|
lblTitle.Text = " ";
|
|
lblTitle.TextAlign = ContentAlignment.MiddleLeft;
|
|
//
|
|
// flowPanelContent
|
|
//
|
|
flowPanelContent.Dock = DockStyle.Fill;
|
|
flowPanelContent.Location = new Point(0, 0);
|
|
flowPanelContent.Name = "flowPanelContent";
|
|
flowPanelContent.Size = new Size(692, 511);
|
|
flowPanelContent.TabIndex = 1;
|
|
//
|
|
// panelMain
|
|
//
|
|
panelMain.AutoScroll = true;
|
|
panelMain.Controls.Add(flowPanelContent);
|
|
panelMain.Dock = DockStyle.Fill;
|
|
panelMain.Location = new Point(0, 36);
|
|
panelMain.Name = "panelMain";
|
|
panelMain.Size = new Size(692, 511);
|
|
panelMain.TabIndex = 2;
|
|
//
|
|
// BaseFrmGuide
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(692, 547);
|
|
Controls.Add(panelMain);
|
|
Controls.Add(flowLayoutPanel);
|
|
FormBorderStyle = FormBorderStyle.None;
|
|
Name = "BaseFrmGuide";
|
|
Text = "BaseFrmGuide";
|
|
Load += BaseFrmGuide_Load;
|
|
flowLayoutPanel.ResumeLayout(false);
|
|
flowLayoutPanel.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)pbLogo).EndInit();
|
|
panelMain.ResumeLayout(false);
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private FlowLayoutPanel flowLayoutPanel;
|
|
private PictureBox pbLogo;
|
|
private Label lblTitle;
|
|
protected FlowLayoutPanel flowPanelContent;
|
|
private Panel panelMain;
|
|
}
|
|
} |