📄 attach.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace Tracker7UI.dialogs
{
/// <summary>
/// Summary description for Attach.
/// </summary>
public class Attach : System.Windows.Forms.Form
{
private Infragistics.Win.UltraWinEditors.UltraPictureBox ultraPictureBox1;
private Infragistics.Win.Misc.UltraLabel ultraLabel1;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public Attach()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after 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 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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Attach));
this.ultraPictureBox1 = new Infragistics.Win.UltraWinEditors.UltraPictureBox();
this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
this.SuspendLayout();
//
// ultraPictureBox1
//
this.ultraPictureBox1.BorderShadowColor = System.Drawing.Color.Empty;
this.ultraPictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.ultraPictureBox1.Image = ((object)(resources.GetObject("ultraPictureBox1.Image")));
this.ultraPictureBox1.Location = new System.Drawing.Point(0, 0);
this.ultraPictureBox1.Name = "ultraPictureBox1";
this.ultraPictureBox1.Size = new System.Drawing.Size(496, 301);
this.ultraPictureBox1.TabIndex = 0;
//
// ultraLabel1
//
this.ultraLabel1.Location = new System.Drawing.Point(312, 192);
this.ultraLabel1.Name = "ultraLabel1";
this.ultraLabel1.Size = new System.Drawing.Size(152, 40);
this.ultraLabel1.TabIndex = 1;
this.ultraLabel1.Text = "Attach should be default, Link should appear in drop down";
//
// Attach
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(496, 301);
this.Controls.Add(this.ultraLabel1);
this.Controls.Add(this.ultraPictureBox1);
this.HelpButton = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Attach";
this.Text = "Attach";
this.ResumeLayout(false);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -