mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-26 17:02:53 +08:00
115 lines
5.2 KiB
C#
115 lines
5.2 KiB
C#
namespace CodeWalker.Vehicles
|
|
{
|
|
partial class VehicleForm
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VehicleForm));
|
|
this.StatusStrip = new System.Windows.Forms.StatusStrip();
|
|
this.StatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.MousedLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.StatsLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.StatsUpdateTimer = new System.Windows.Forms.Timer(this.components);
|
|
this.StatusStrip.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// StatusStrip
|
|
//
|
|
this.StatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.StatusLabel,
|
|
this.MousedLabel,
|
|
this.StatsLabel});
|
|
this.StatusStrip.Location = new System.Drawing.Point(0, 689);
|
|
this.StatusStrip.Name = "StatusStrip";
|
|
this.StatusStrip.Size = new System.Drawing.Size(984, 22);
|
|
this.StatusStrip.TabIndex = 2;
|
|
this.StatusStrip.Text = "statusStrip1";
|
|
//
|
|
// StatusLabel
|
|
//
|
|
this.StatusLabel.BackColor = System.Drawing.SystemColors.Control;
|
|
this.StatusLabel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.StatusLabel.Name = "StatusLabel";
|
|
this.StatusLabel.Size = new System.Drawing.Size(878, 17);
|
|
this.StatusLabel.Spring = true;
|
|
this.StatusLabel.Text = "Initialising";
|
|
this.StatusLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// MousedLabel
|
|
//
|
|
this.MousedLabel.BackColor = System.Drawing.SystemColors.Control;
|
|
this.MousedLabel.Name = "MousedLabel";
|
|
this.MousedLabel.Size = new System.Drawing.Size(16, 17);
|
|
this.MousedLabel.Text = " ";
|
|
//
|
|
// StatsLabel
|
|
//
|
|
this.StatsLabel.BackColor = System.Drawing.SystemColors.Control;
|
|
this.StatsLabel.Name = "StatsLabel";
|
|
this.StatsLabel.Size = new System.Drawing.Size(75, 17);
|
|
this.StatsLabel.Text = "0 geometries";
|
|
//
|
|
// StatsUpdateTimer
|
|
//
|
|
this.StatsUpdateTimer.Enabled = true;
|
|
this.StatsUpdateTimer.Interval = 500;
|
|
this.StatsUpdateTimer.Tick += new System.EventHandler(this.StatsUpdateTimer_Tick);
|
|
//
|
|
// VehicleForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.MidnightBlue;
|
|
this.ClientSize = new System.Drawing.Size(984, 711);
|
|
this.Controls.Add(this.StatusStrip);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "VehicleForm";
|
|
this.Text = "Vehicle Viewer - CodeWalker by dexyfex";
|
|
this.Deactivate += new System.EventHandler(this.VehicleForm_Deactivate);
|
|
this.Load += new System.EventHandler(this.VehicleForm_Load);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.VehicleForm_KeyDown);
|
|
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.VehicleForm_KeyUp);
|
|
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.VehicleForm_MouseDown);
|
|
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.VehicleForm_MouseMove);
|
|
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.VehicleForm_MouseUp);
|
|
this.StatusStrip.ResumeLayout(false);
|
|
this.StatusStrip.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.StatusStrip StatusStrip;
|
|
private System.Windows.Forms.ToolStripStatusLabel StatusLabel;
|
|
private System.Windows.Forms.ToolStripStatusLabel MousedLabel;
|
|
private System.Windows.Forms.ToolStripStatusLabel StatsLabel;
|
|
private System.Windows.Forms.Timer StatsUpdateTimer;
|
|
}
|
|
} |