design/src/webimtray/WebIMTray/options/OptionsDialog.Designer.cs
Pavel Petroshenko e9fad99416 - OK/cancel/apply logics for localization option;
- Localized buttons and window title;

git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@82 c66351dc-e62f-0410-b875-e3a5c0b9693f
2008-05-18 19:36:55 +00:00

135 lines
6.2 KiB
C#

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
//
this.pageSelector.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.pageSelector.FullRowSelect = true;
this.pageSelector.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.pageSelector.HideSelection = false;
this.pageSelector.Location = new System.Drawing.Point(12, 14);
this.pageSelector.MultiSelect = false;
this.pageSelector.Name = "pageSelector";
this.pageSelector.ShowGroups = false;
this.pageSelector.Size = new System.Drawing.Size(175, 329);
this.pageSelector.TabIndex = 0;
this.pageSelector.UseCompatibleStateImageBehavior = false;
this.pageSelector.View = System.Windows.Forms.View.List;
this.pageSelector.SelectedIndexChanged += new System.EventHandler(this.panelSelectionChanged);
//
// ok
//
this.ok.Location = new System.Drawing.Point(341, 360);
this.ok.Name = "ok";
this.ok.Size = new System.Drawing.Size(75, 23);
this.ok.TabIndex = 1;
this.ok.Text = "OK";
this.ok.UseVisualStyleBackColor = true;
this.ok.Click += new System.EventHandler(this.ok_Click);
//
// cancel
//
this.cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancel.Location = new System.Drawing.Point(422, 360);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(75, 23);
this.cancel.TabIndex = 2;
this.cancel.Text = "Cancel";
this.cancel.UseVisualStyleBackColor = true;
//
// apply
//
this.apply.Enabled = false;
this.apply.Location = new System.Drawing.Point(503, 360);
this.apply.Name = "apply";
this.apply.Size = new System.Drawing.Size(75, 23);
this.apply.TabIndex = 3;
this.apply.Text = "Apply";
this.apply.UseVisualStyleBackColor = true;
this.apply.Click += new System.EventHandler(this.apply_Click);
//
// container
//
this.container.Location = new System.Drawing.Point(204, 14);
this.container.Name = "container";
this.container.Size = new System.Drawing.Size(374, 329);
this.container.TabIndex = 4;
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.linkLabel1.Location = new System.Drawing.Point(12, 360);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(96, 16);
this.linkLabel1.TabIndex = 5;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "www.webim.ru";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.openWebIMSite);
//
// OptionsDialog
//
this.AcceptButton = this.ok;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancel;
this.ClientSize = new System.Drawing.Size(590, 395);
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.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "OptionsDialog";
this.Text = "WebIM Tray Options";
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;
}
}