?? form1.designer.cs
字號:
namespace I2C_RTC
{
partial class Form1
{
/// <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.btnGetRTC = new System.Windows.Forms.Button();
this.btnSetRTC = new System.Windows.Forms.Button();
this.lblRTCTime = new System.Windows.Forms.Label();
this.btnSetSystem = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnGetRTC
//
this.btnGetRTC.Location = new System.Drawing.Point(28, 42);
this.btnGetRTC.Name = "btnGetRTC";
this.btnGetRTC.Size = new System.Drawing.Size(110, 20);
this.btnGetRTC.TabIndex = 0;
this.btnGetRTC.Text = "Get RTC time";
this.btnGetRTC.Click += new System.EventHandler(this.btnGetRTC_Click);
//
// btnSetRTC
//
this.btnSetRTC.Location = new System.Drawing.Point(28, 122);
this.btnSetRTC.Name = "btnSetRTC";
this.btnSetRTC.Size = new System.Drawing.Size(196, 20);
this.btnSetRTC.TabIndex = 1;
this.btnSetRTC.Text = "Set RTC time from system time";
this.btnSetRTC.Click += new System.EventHandler(this.btnSetRTC_Click);
//
// lblRTCTime
//
this.lblRTCTime.Location = new System.Drawing.Point(174, 42);
this.lblRTCTime.Name = "lblRTCTime";
this.lblRTCTime.Size = new System.Drawing.Size(272, 20);
//
// btnSetSystem
//
this.btnSetSystem.Location = new System.Drawing.Point(240, 122);
this.btnSetSystem.Name = "btnSetSystem";
this.btnSetSystem.Size = new System.Drawing.Size(196, 20);
this.btnSetSystem.TabIndex = 3;
this.btnSetSystem.Text = "Set system time from RTC";
this.btnSetSystem.Click += new System.EventHandler(this.btnSetSystem_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(638, 455);
this.Controls.Add(this.btnSetSystem);
this.Controls.Add(this.lblRTCTime);
this.Controls.Add(this.btnSetRTC);
this.Controls.Add(this.btnGetRTC);
this.Name = "Form1";
this.Text = "I2C RTC test";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnGetRTC;
private System.Windows.Forms.Button btnSetRTC;
private System.Windows.Forms.Label lblRTCTime;
private System.Windows.Forms.Button btnSetSystem;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -