📄 demo.designer.cs
字号:
namespace Kalman
{
partial class Demo
{
/// <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();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.ProcessNoise = new System.Windows.Forms.NumericUpDown();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.Noise = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.ProcessNoise)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Noise)).BeginInit();
this.SuspendLayout();
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 10;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// ProcessNoise
//
this.ProcessNoise.DecimalPlaces = 2;
this.ProcessNoise.Increment = new decimal(new int[] {
1,
0,
0,
65536});
this.ProcessNoise.Location = new System.Drawing.Point(146, 7);
this.ProcessNoise.Maximum = new decimal(new int[] {
2000,
0,
0,
0});
this.ProcessNoise.Name = "ProcessNoise";
this.ProcessNoise.Size = new System.Drawing.Size(62, 20);
this.ProcessNoise.TabIndex = 2;
this.ProcessNoise.Value = new decimal(new int[] {
5,
0,
0,
65536});
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(65, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(75, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Process Noise";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(106, 34);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(34, 13);
this.label3.TabIndex = 5;
this.label3.Text = "Noise";
//
// Noise
//
this.Noise.Location = new System.Drawing.Point(146, 32);
this.Noise.Maximum = new decimal(new int[] {
200,
0,
0,
0});
this.Noise.Name = "Noise";
this.Noise.Size = new System.Drawing.Size(62, 20);
this.Noise.TabIndex = 4;
this.Noise.Value = new decimal(new int[] {
20,
0,
0,
0});
//
// Demo
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(639, 431);
this.Controls.Add(this.label3);
this.Controls.Add(this.Noise);
this.Controls.Add(this.label2);
this.Controls.Add(this.ProcessNoise);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.KeyPreview = true;
this.Name = "Demo";
this.Text = "Kalman Simulation";
((System.ComponentModel.ISupportInitialize)(this.ProcessNoise)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Noise)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.NumericUpDown ProcessNoise;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown Noise;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -