Commands
RecentMessageDialog.Designer.cs
// Copyright 2008-2009 The AnkhSVN Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
namespace Ankh.UI.Commands
{
partial clast RecentMessageDialog
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RecentMessageDialog));
this.splitContainer1 = new Ankh.UI.VSSelectionControls.SmartSplitContainer();
this.logMessageList = new System.Windows.Forms.ListView();
this.previewBox = new Ankh.UI.PendingChanges.LogMessageEditor(this.components);
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
resources.ApplyResources(this.splitContainer1, "splitContainer1");
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.logMessageList);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.previewBox);
//
// logMessageList
//
resources.ApplyResources(this.logMessageList, "logMessageList");
this.logMessageList.FullRowSelect = true;
this.logMessageList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
this.logMessageList.HideSelection = false;
this.logMessageList.Name = "logMessageList";
this.logMessageList.UseCompatibleStateImageBehavior = false;
this.logMessageList.View = System.Windows.Forms.View.Details;
this.logMessageList.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(logMessageList_ItemSelectionChanged);
//
// previewBox
//
this.previewBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
resources.ApplyResources(this.previewBox, "previewBox");
this.previewBox.Name = "previewBox";
this.previewBox.ReadOnly = true;
//
// okButton
//
resources.ApplyResources(this.okButton, "okButton");
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.okButton.Name = "okButton";
this.okButton.UseVisualStyleBackColor = true;
//
// cancelButton
//
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Name = "cancelButton";
this.cancelButton.UseVisualStyleBackColor = true;
//
// RecentMessageDialog
//
this.AcceptButton = this.okButton;
resources.ApplyResources(this, "$this");
this.CancelButton = this.cancelButton;
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.splitContainer1);
this.Name = "RecentMessageDialog";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private Ankh.UI.VSSelectionControls.SmartSplitContainer splitContainer1;
private System.Windows.Forms.ListView logMessageList;
private Ankh.UI.PendingChanges.LogMessageEditor previewBox;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.Button cancelButton;
}
}