168 lines
8.3 KiB
C#
168 lines
8.3 KiB
C#
namespace AdvertsingProfitControl
|
|
{
|
|
partial class FrmLogFileViewer
|
|
{
|
|
/// <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(FrmLogFileViewer));
|
|
this.mainLayoutPane = new System.Windows.Forms.TableLayoutPanel();
|
|
this.fileListTreeView = new System.Windows.Forms.TreeView();
|
|
this.tabControl1 = new System.Windows.Forms.TabControl();
|
|
this.friendlyViewTabPage = new System.Windows.Forms.TabPage();
|
|
this.friendlyViewTextBox = new System.Windows.Forms.TextBox();
|
|
this.rawViewTabPage = new System.Windows.Forms.TabPage();
|
|
this.rawViewTextBox = new System.Windows.Forms.TextBox();
|
|
this.selectedFileNameLabel = new System.Windows.Forms.Label();
|
|
this.mainLayoutPane.SuspendLayout();
|
|
this.tabControl1.SuspendLayout();
|
|
this.friendlyViewTabPage.SuspendLayout();
|
|
this.rawViewTabPage.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// mainLayoutPane
|
|
//
|
|
this.mainLayoutPane.ColumnCount = 2;
|
|
this.mainLayoutPane.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
|
|
this.mainLayoutPane.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75F));
|
|
this.mainLayoutPane.Controls.Add(this.tabControl1, 1, 1);
|
|
this.mainLayoutPane.Controls.Add(this.fileListTreeView, 0, 1);
|
|
this.mainLayoutPane.Controls.Add(this.selectedFileNameLabel, 0, 0);
|
|
this.mainLayoutPane.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.mainLayoutPane.Location = new System.Drawing.Point(0, 0);
|
|
this.mainLayoutPane.Name = "mainLayoutPane";
|
|
this.mainLayoutPane.RowCount = 2;
|
|
this.mainLayoutPane.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
|
|
this.mainLayoutPane.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|
this.mainLayoutPane.Size = new System.Drawing.Size(1083, 756);
|
|
this.mainLayoutPane.TabIndex = 0;
|
|
//
|
|
// fileListTreeView
|
|
//
|
|
this.fileListTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.fileListTreeView.Location = new System.Drawing.Point(3, 43);
|
|
this.fileListTreeView.Name = "fileListTreeView";
|
|
this.fileListTreeView.Size = new System.Drawing.Size(264, 710);
|
|
this.fileListTreeView.TabIndex = 3;
|
|
//
|
|
// tabControl1
|
|
//
|
|
this.tabControl1.Controls.Add(this.friendlyViewTabPage);
|
|
this.tabControl1.Controls.Add(this.rawViewTabPage);
|
|
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.tabControl1.Location = new System.Drawing.Point(273, 43);
|
|
this.tabControl1.Name = "tabControl1";
|
|
this.tabControl1.SelectedIndex = 0;
|
|
this.tabControl1.Size = new System.Drawing.Size(807, 710);
|
|
this.tabControl1.TabIndex = 2;
|
|
//
|
|
// friendlyViewTabPage
|
|
//
|
|
this.friendlyViewTabPage.Controls.Add(this.friendlyViewTextBox);
|
|
this.friendlyViewTabPage.Location = new System.Drawing.Point(4, 33);
|
|
this.friendlyViewTabPage.Name = "friendlyViewTabPage";
|
|
this.friendlyViewTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
this.friendlyViewTabPage.Size = new System.Drawing.Size(799, 673);
|
|
this.friendlyViewTabPage.TabIndex = 0;
|
|
this.friendlyViewTabPage.Text = "Friendly View";
|
|
this.friendlyViewTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// friendlyViewTextBox
|
|
//
|
|
this.friendlyViewTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.friendlyViewTextBox.Location = new System.Drawing.Point(3, 3);
|
|
this.friendlyViewTextBox.Multiline = true;
|
|
this.friendlyViewTextBox.Name = "friendlyViewTextBox";
|
|
this.friendlyViewTextBox.ReadOnly = true;
|
|
this.friendlyViewTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.friendlyViewTextBox.Size = new System.Drawing.Size(793, 667);
|
|
this.friendlyViewTextBox.TabIndex = 0;
|
|
//
|
|
// rawViewTabPage
|
|
//
|
|
this.rawViewTabPage.Controls.Add(this.rawViewTextBox);
|
|
this.rawViewTabPage.Location = new System.Drawing.Point(4, 33);
|
|
this.rawViewTabPage.Name = "rawViewTabPage";
|
|
this.rawViewTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
this.rawViewTabPage.Size = new System.Drawing.Size(799, 673);
|
|
this.rawViewTabPage.TabIndex = 1;
|
|
this.rawViewTabPage.Text = "Raw View";
|
|
this.rawViewTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// rawViewTextBox
|
|
//
|
|
this.rawViewTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.rawViewTextBox.Location = new System.Drawing.Point(3, 3);
|
|
this.rawViewTextBox.Multiline = true;
|
|
this.rawViewTextBox.Name = "rawViewTextBox";
|
|
this.rawViewTextBox.ReadOnly = true;
|
|
this.rawViewTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.rawViewTextBox.Size = new System.Drawing.Size(793, 667);
|
|
this.rawViewTextBox.TabIndex = 0;
|
|
//
|
|
// selectedFileNameLabel
|
|
//
|
|
this.selectedFileNameLabel.AutoSize = true;
|
|
this.selectedFileNameLabel.Location = new System.Drawing.Point(3, 0);
|
|
this.selectedFileNameLabel.Name = "selectedFileNameLabel";
|
|
this.selectedFileNameLabel.Size = new System.Drawing.Size(0, 25);
|
|
this.selectedFileNameLabel.TabIndex = 4;
|
|
//
|
|
// FrmLogFileViewer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1083, 756);
|
|
this.Controls.Add(this.mainLayoutPane);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmLogFileViewer";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Log File Viewer";
|
|
this.mainLayoutPane.ResumeLayout(false);
|
|
this.mainLayoutPane.PerformLayout();
|
|
this.tabControl1.ResumeLayout(false);
|
|
this.friendlyViewTabPage.ResumeLayout(false);
|
|
this.friendlyViewTabPage.PerformLayout();
|
|
this.rawViewTabPage.ResumeLayout(false);
|
|
this.rawViewTabPage.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TableLayoutPanel mainLayoutPane;
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage friendlyViewTabPage;
|
|
private System.Windows.Forms.TextBox friendlyViewTextBox;
|
|
private System.Windows.Forms.TabPage rawViewTabPage;
|
|
private System.Windows.Forms.TextBox rawViewTextBox;
|
|
private System.Windows.Forms.TreeView fileListTreeView;
|
|
private System.Windows.Forms.Label selectedFileNameLabel;
|
|
}
|
|
} |