mibew/src/mibewtray/MibewTray/options/OptionsDialog.Designer.cs

112 lines
4.8 KiB
C#
Raw Normal View History

namespace webImTray {
partial class OptionsDialog {
/// <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() {
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsDialog));
this.pageSelector = new System.Windows.Forms.ListView();
this.ok = new System.Windows.Forms.Button();
this.cancel = new System.Windows.Forms.Button();
this.apply = new System.Windows.Forms.Button();
this.container = new System.Windows.Forms.Panel();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.SuspendLayout();
//
// pageSelector
//
resources.ApplyResources(this.pageSelector, "pageSelector");
this.pageSelector.FullRowSelect = true;
this.pageSelector.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.pageSelector.HideSelection = false;
this.pageSelector.MultiSelect = false;
this.pageSelector.Name = "pageSelector";
this.pageSelector.ShowGroups = false;
this.pageSelector.UseCompatibleStateImageBehavior = false;
this.pageSelector.View = System.Windows.Forms.View.List;
this.pageSelector.SelectedIndexChanged += new System.EventHandler(this.panelSelectionChanged);
//
// ok
//
resources.ApplyResources(this.ok, "ok");
this.ok.Name = "ok";
this.ok.UseVisualStyleBackColor = true;
this.ok.Click += new System.EventHandler(this.ok_Click);
//
// cancel
//
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.cancel, "cancel");
this.cancel.Name = "cancel";
this.cancel.UseVisualStyleBackColor = true;
//
// apply
//
resources.ApplyResources(this.apply, "apply");
this.apply.Name = "apply";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// container
//
resources.ApplyResources(this.container, "container");
this.container.Name = "container";
//
// linkLabel1
//
resources.ApplyResources(this.linkLabel1, "linkLabel1");
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.TabStop = true;
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.openWebIMSite);
//
// OptionsDialog
//
this.AcceptButton = this.ok;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancel;
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.container);
this.Controls.Add(this.apply);
this.Controls.Add(this.cancel);
this.Controls.Add(this.ok);
this.Controls.Add(this.pageSelector);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OptionsDialog";
this.Load += new System.EventHandler(this.optionsDialogLoaded);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView pageSelector;
private System.Windows.Forms.Button ok;
private System.Windows.Forms.Button cancel;
private System.Windows.Forms.Button apply;
private System.Windows.Forms.Panel container;
private System.Windows.Forms.LinkLabel linkLabel1;
}
}