121 lines
4.9 KiB
C#
121 lines
4.9 KiB
C#
namespace Outlook2013TodoAddIn
|
|
{
|
|
partial class FormRecurringOpen
|
|
{
|
|
/// <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.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.rbtnOne = new System.Windows.Forms.RadioButton();
|
|
this.rbtnAll = new System.Windows.Forms.RadioButton();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOK.Location = new System.Drawing.Point(57, 195);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 0;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(192, 195);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// rbtnOne
|
|
//
|
|
this.rbtnOne.AutoSize = true;
|
|
this.rbtnOne.Checked = true;
|
|
this.rbtnOne.Location = new System.Drawing.Point(57, 91);
|
|
this.rbtnOne.Name = "rbtnOne";
|
|
this.rbtnOne.Size = new System.Drawing.Size(109, 21);
|
|
this.rbtnOne.TabIndex = 2;
|
|
this.rbtnOne.TabStop = true;
|
|
this.rbtnOne.Text = "Just this one";
|
|
this.rbtnOne.UseVisualStyleBackColor = true;
|
|
//
|
|
// rbtnAll
|
|
//
|
|
this.rbtnAll.AutoSize = true;
|
|
this.rbtnAll.Location = new System.Drawing.Point(57, 118);
|
|
this.rbtnAll.Name = "rbtnAll";
|
|
this.rbtnAll.Size = new System.Drawing.Size(136, 21);
|
|
this.rbtnAll.TabIndex = 3;
|
|
this.rbtnAll.Text = "The entire series";
|
|
this.rbtnAll.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.Location = new System.Drawing.Point(57, 12);
|
|
this.textBox1.Multiline = true;
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.ReadOnly = true;
|
|
this.textBox1.Size = new System.Drawing.Size(227, 62);
|
|
this.textBox1.TabIndex = 4;
|
|
this.textBox1.Text = "This is one appointment in a series. What do you want to open?";
|
|
//
|
|
// FormRecurringOpen
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(312, 255);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.rbtnAll);
|
|
this.Controls.Add(this.rbtnOne);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnOK);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormRecurringOpen";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Open Recurring Item";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnOK;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.RadioButton rbtnOne;
|
|
private System.Windows.Forms.RadioButton rbtnAll;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
}
|
|
} |