📄 ucpersonbio.cs
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace Tracker7UI.plugins.People
{
/// <summary>
/// Summary description for UCPersonBio.
/// </summary>
public class UCPersonBio : System.Windows.Forms.UserControl
{
private Infragistics.Win.Misc.UltraLabel ultraLabel1;
private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor ultraDateTimeEditor1;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public UCPersonBio()
{
// This call is required by the Windows.Forms Form Designer.
InitializeComponent();
// TODO: Add any initialization after the InitializeComponent call
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Component 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.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
this.ultraDateTimeEditor1 = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).BeginInit();
this.SuspendLayout();
//
// ultraLabel1
//
this.ultraLabel1.Location = new System.Drawing.Point(8, 11);
this.ultraLabel1.Name = "ultraLabel1";
this.ultraLabel1.Size = new System.Drawing.Size(100, 16);
this.ultraLabel1.TabIndex = 0;
this.ultraLabel1.Text = "Birth Date";
this.ultraLabel1.Click += new System.EventHandler(this.ultraLabel1_Click);
//
// ultraDateTimeEditor1
//
this.ultraDateTimeEditor1.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2003;
this.ultraDateTimeEditor1.Location = new System.Drawing.Point(117, 10);
this.ultraDateTimeEditor1.Name = "ultraDateTimeEditor1";
this.ultraDateTimeEditor1.Size = new System.Drawing.Size(88, 21);
this.ultraDateTimeEditor1.TabIndex = 1;
//
// UCPersonBio
//
this.Controls.Add(this.ultraDateTimeEditor1);
this.Controls.Add(this.ultraLabel1);
this.Name = "UCPersonBio";
this.Size = new System.Drawing.Size(432, 184);
((System.ComponentModel.ISupportInitialize)(this.ultraDateTimeEditor1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private void ultraLabel1_Click(object sender, System.EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -