namespace Yw.WinFrmUI.Phart
|
{
|
partial class PumpPictureBoxCtrl
|
{
|
/// <summary>
|
/// Requipuired 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 Component Designer generated code
|
|
/// <summary>
|
/// Requipuired method for Designer support - do not modify
|
/// the contents of this method with the code editor.
|
/// </summary>
|
private void InitializeComponent()
|
{
|
this.components = new System.ComponentModel.Container();
|
DevExpress.XtraEditors.Controls.EditorButtonImageOptions editorButtonImageOptions2 = new DevExpress.XtraEditors.Controls.EditorButtonImageOptions();
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PumpPictureBoxCtrl));
|
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
|
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
|
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
|
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
this.gridControl1 = new DevExpress.XtraGrid.GridControl();
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
|
this.colX = new DevExpress.XtraGrid.Columns.GridColumn();
|
this.colY = new DevExpress.XtraGrid.Columns.GridColumn();
|
this.colDelete = new DevExpress.XtraGrid.Columns.GridColumn();
|
this.repButtonDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
|
this.sidePanel1 = new DevExpress.XtraEditors.SidePanel();
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.repButtonDelete)).BeginInit();
|
this.sidePanel1.SuspendLayout();
|
this.SuspendLayout();
|
//
|
// pictureBox1
|
//
|
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
|
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.pictureBox1.ErrorImage = null;
|
this.pictureBox1.InitialImage = null;
|
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
|
this.pictureBox1.Margin = new System.Windows.Forms.Padding(0);
|
this.pictureBox1.Name = "pictureBox1";
|
this.pictureBox1.Size = new System.Drawing.Size(505, 653);
|
this.pictureBox1.TabIndex = 5;
|
this.pictureBox1.TabStop = false;
|
this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
|
this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseDown);
|
this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseMove);
|
this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBox1_MouseUp);
|
//
|
// gridControl1
|
//
|
this.gridControl1.DataSource = this.bindingSource1;
|
this.gridControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.gridControl1.Location = new System.Drawing.Point(1, 0);
|
this.gridControl1.MainView = this.gridView1;
|
this.gridControl1.Name = "gridControl1";
|
this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
|
this.repButtonDelete});
|
this.gridControl1.Size = new System.Drawing.Size(238, 653);
|
this.gridControl1.TabIndex = 17;
|
this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
this.gridView1});
|
//
|
// gridView1
|
//
|
this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
|
this.colX,
|
this.colY,
|
this.colDelete});
|
this.gridView1.GridControl = this.gridControl1;
|
this.gridView1.Name = "gridView1";
|
this.gridView1.OptionsView.ShowGroupPanel = false;
|
this.gridView1.ViewCaption = "点列表";
|
this.gridView1.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.gridView1_RowCellClick);
|
//
|
// colX
|
//
|
this.colX.Caption = "X";
|
this.colX.FieldName = "X";
|
this.colX.MinWidth = 30;
|
this.colX.Name = "colX";
|
this.colX.Visible = true;
|
this.colX.VisibleIndex = 0;
|
this.colX.Width = 112;
|
//
|
// colY
|
//
|
this.colY.Caption = "Y";
|
this.colY.FieldName = "Y";
|
this.colY.MinWidth = 30;
|
this.colY.Name = "colY";
|
this.colY.Visible = true;
|
this.colY.VisibleIndex = 1;
|
this.colY.Width = 112;
|
//
|
// colDelete
|
//
|
this.colDelete.Caption = "删除";
|
this.colDelete.ColumnEdit = this.repButtonDelete;
|
this.colDelete.MaxWidth = 50;
|
this.colDelete.MinWidth = 50;
|
this.colDelete.Name = "colDelete";
|
this.colDelete.Visible = true;
|
this.colDelete.VisibleIndex = 2;
|
this.colDelete.Width = 50;
|
//
|
// repButtonDelete
|
//
|
this.repButtonDelete.AutoHeight = false;
|
editorButtonImageOptions2.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("editorButtonImageOptions2.SvgImage")));
|
editorButtonImageOptions2.SvgImageSize = new System.Drawing.Size(14, 14);
|
this.repButtonDelete.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "", -1, true, true, false, editorButtonImageOptions2, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, serializableAppearanceObject6, serializableAppearanceObject7, serializableAppearanceObject8, "", null, null, DevExpress.Utils.ToolTipAnchor.Default)});
|
this.repButtonDelete.Name = "repButtonDelete";
|
this.repButtonDelete.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
|
//
|
// sidePanel1
|
//
|
this.sidePanel1.Controls.Add(this.gridControl1);
|
this.sidePanel1.Dock = System.Windows.Forms.DockStyle.Right;
|
this.sidePanel1.Location = new System.Drawing.Point(505, 0);
|
this.sidePanel1.Name = "sidePanel1";
|
this.sidePanel1.Size = new System.Drawing.Size(239, 653);
|
this.sidePanel1.TabIndex = 18;
|
this.sidePanel1.Text = "sidePanel1";
|
//
|
// CurvePictureBoxCtrl
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.Controls.Add(this.pictureBox1);
|
this.Controls.Add(this.sidePanel1);
|
this.Name = "CurvePictureBoxCtrl";
|
this.Size = new System.Drawing.Size(744, 653);
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.repButtonDelete)).EndInit();
|
this.sidePanel1.ResumeLayout(false);
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
private System.Windows.Forms.PictureBox pictureBox1;
|
private DevExpress.XtraGrid.GridControl gridControl1;
|
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
|
private DevExpress.XtraGrid.Columns.GridColumn colX;
|
private DevExpress.XtraGrid.Columns.GridColumn colY;
|
private DevExpress.XtraGrid.Columns.GridColumn colDelete;
|
private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repButtonDelete;
|
private System.Windows.Forms.BindingSource bindingSource1;
|
private DevExpress.XtraEditors.SidePanel sidePanel1;
|
}
|
}
|