2012-04-05 21:50:04 -03:00
namespace ArdupilotMega.GCSViews.ConfigurationView
{
partial class ConfigRawParams
{
/// <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 Component 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 ( )
{
2012-04-06 20:51:00 -03:00
this . components = new System . ComponentModel . Container ( ) ;
2012-04-19 08:22:02 -03:00
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( ConfigRawParams ) ) ;
2012-04-05 21:50:04 -03:00
System . Windows . Forms . DataGridViewCellStyle dataGridViewCellStyle1 = new System . Windows . Forms . DataGridViewCellStyle ( ) ;
2012-12-07 05:19:46 -04:00
System . Windows . Forms . DataGridViewCellStyle dataGridViewCellStyle3 = new System . Windows . Forms . DataGridViewCellStyle ( ) ;
2012-04-05 21:50:04 -03:00
System . Windows . Forms . DataGridViewCellStyle dataGridViewCellStyle2 = new System . Windows . Forms . DataGridViewCellStyle ( ) ;
2012-04-24 10:49:27 -03:00
this . BUT_compare = new ArdupilotMega . Controls . MyButton ( ) ;
this . BUT_rerequestparams = new ArdupilotMega . Controls . MyButton ( ) ;
this . BUT_writePIDS = new ArdupilotMega . Controls . MyButton ( ) ;
this . BUT_save = new ArdupilotMega . Controls . MyButton ( ) ;
this . BUT_load = new ArdupilotMega . Controls . MyButton ( ) ;
2012-04-05 21:50:04 -03:00
this . Params = new System . Windows . Forms . DataGridView ( ) ;
this . Command = new System . Windows . Forms . DataGridViewTextBoxColumn ( ) ;
this . Value = new System . Windows . Forms . DataGridViewTextBoxColumn ( ) ;
2012-12-07 05:19:46 -04:00
this . Units = new System . Windows . Forms . DataGridViewTextBoxColumn ( ) ;
this . Options = new System . Windows . Forms . DataGridViewTextBoxColumn ( ) ;
2012-11-25 01:42:46 -04:00
this . Desc = new System . Windows . Forms . DataGridViewTextBoxColumn ( ) ;
2012-12-07 05:19:46 -04:00
this . toolTip1 = new System . Windows . Forms . ToolTip ( this . components ) ;
this . label1 = new System . Windows . Forms . Label ( ) ;
2012-04-05 21:50:04 -03:00
( ( System . ComponentModel . ISupportInitialize ) ( this . Params ) ) . BeginInit ( ) ;
this . SuspendLayout ( ) ;
//
// BUT_compare
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . BUT_compare , "BUT_compare" ) ;
2012-04-05 21:50:04 -03:00
this . BUT_compare . Name = "BUT_compare" ;
this . BUT_compare . UseVisualStyleBackColor = true ;
this . BUT_compare . Click + = new System . EventHandler ( this . BUT_compare_Click ) ;
//
// BUT_rerequestparams
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . BUT_rerequestparams , "BUT_rerequestparams" ) ;
2012-04-05 21:50:04 -03:00
this . BUT_rerequestparams . Name = "BUT_rerequestparams" ;
this . BUT_rerequestparams . UseVisualStyleBackColor = true ;
this . BUT_rerequestparams . Click + = new System . EventHandler ( this . BUT_rerequestparams_Click ) ;
//
// BUT_writePIDS
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . BUT_writePIDS , "BUT_writePIDS" ) ;
2012-04-05 21:50:04 -03:00
this . BUT_writePIDS . Name = "BUT_writePIDS" ;
this . BUT_writePIDS . UseVisualStyleBackColor = true ;
this . BUT_writePIDS . Click + = new System . EventHandler ( this . BUT_writePIDS_Click ) ;
//
// BUT_save
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . BUT_save , "BUT_save" ) ;
2012-04-05 21:50:04 -03:00
this . BUT_save . Name = "BUT_save" ;
this . BUT_save . UseVisualStyleBackColor = true ;
this . BUT_save . Click + = new System . EventHandler ( this . BUT_save_Click ) ;
//
// BUT_load
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . BUT_load , "BUT_load" ) ;
2012-04-05 21:50:04 -03:00
this . BUT_load . Name = "BUT_load" ;
this . BUT_load . UseVisualStyleBackColor = true ;
this . BUT_load . Click + = new System . EventHandler ( this . BUT_load_Click ) ;
//
// Params
//
this . Params . AllowUserToAddRows = false ;
this . Params . AllowUserToDeleteRows = false ;
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . Params , "Params" ) ;
2012-12-07 05:19:46 -04:00
this . Params . AutoSizeRowsMode = System . Windows . Forms . DataGridViewAutoSizeRowsMode . AllCells ;
2012-04-05 21:50:04 -03:00
dataGridViewCellStyle1 . Alignment = System . Windows . Forms . DataGridViewContentAlignment . MiddleLeft ;
dataGridViewCellStyle1 . BackColor = System . Drawing . Color . Maroon ;
dataGridViewCellStyle1 . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
dataGridViewCellStyle1 . ForeColor = System . Drawing . Color . White ;
dataGridViewCellStyle1 . SelectionBackColor = System . Drawing . SystemColors . Highlight ;
dataGridViewCellStyle1 . SelectionForeColor = System . Drawing . SystemColors . HighlightText ;
dataGridViewCellStyle1 . WrapMode = System . Windows . Forms . DataGridViewTriState . True ;
this . Params . ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1 ;
this . Params . ColumnHeadersHeightSizeMode = System . Windows . Forms . DataGridViewColumnHeadersHeightSizeMode . AutoSize ;
this . Params . Columns . AddRange ( new System . Windows . Forms . DataGridViewColumn [ ] {
this . Command ,
this . Value ,
2012-12-07 05:19:46 -04:00
this . Units ,
this . Options ,
2012-11-25 01:42:46 -04:00
this . Desc } ) ;
2012-04-05 21:50:04 -03:00
this . Params . Name = "Params" ;
2012-12-07 05:19:46 -04:00
dataGridViewCellStyle3 . Alignment = System . Windows . Forms . DataGridViewContentAlignment . MiddleLeft ;
dataGridViewCellStyle3 . BackColor = System . Drawing . SystemColors . ActiveCaption ;
dataGridViewCellStyle3 . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
dataGridViewCellStyle3 . ForeColor = System . Drawing . SystemColors . WindowText ;
dataGridViewCellStyle3 . SelectionBackColor = System . Drawing . SystemColors . Highlight ;
dataGridViewCellStyle3 . SelectionForeColor = System . Drawing . SystemColors . HighlightText ;
dataGridViewCellStyle3 . WrapMode = System . Windows . Forms . DataGridViewTriState . True ;
this . Params . RowHeadersDefaultCellStyle = dataGridViewCellStyle3 ;
2012-04-05 21:50:04 -03:00
this . Params . RowHeadersVisible = false ;
2012-12-07 05:19:46 -04:00
this . Params . RowHeadersWidthSizeMode = System . Windows . Forms . DataGridViewRowHeadersWidthSizeMode . AutoSizeToDisplayedHeaders ;
2012-04-06 20:51:00 -03:00
this . Params . CellValueChanged + = new System . Windows . Forms . DataGridViewCellEventHandler ( this . Params_CellValueChanged ) ;
2012-04-05 21:50:04 -03:00
//
// Command
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . Command , "Command" ) ;
2012-04-05 21:50:04 -03:00
this . Command . Name = "Command" ;
this . Command . ReadOnly = true ;
//
// Value
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this . Value , "Value" ) ;
2012-04-05 21:50:04 -03:00
this . Value . Name = "Value" ;
//
2012-12-07 05:19:46 -04:00
// Units
//
resources . ApplyResources ( this . Units , "Units" ) ;
this . Units . Name = "Units" ;
this . Units . ReadOnly = true ;
//
// Options
//
resources . ApplyResources ( this . Options , "Options" ) ;
this . Options . Name = "Options" ;
this . Options . ReadOnly = true ;
//
2012-11-25 01:42:46 -04:00
// Desc
2012-04-05 21:50:04 -03:00
//
2012-12-07 05:19:46 -04:00
this . Desc . AutoSizeMode = System . Windows . Forms . DataGridViewAutoSizeColumnMode . Fill ;
dataGridViewCellStyle2 . WrapMode = System . Windows . Forms . DataGridViewTriState . True ;
this . Desc . DefaultCellStyle = dataGridViewCellStyle2 ;
2012-11-25 01:42:46 -04:00
resources . ApplyResources ( this . Desc , "Desc" ) ;
this . Desc . Name = "Desc" ;
this . Desc . ReadOnly = true ;
2012-09-30 20:53:54 -03:00
//
2012-12-07 05:19:46 -04:00
// toolTip1
//
this . toolTip1 . AutoPopDelay = 180000 ;
this . toolTip1 . InitialDelay = 500 ;
this . toolTip1 . ReshowDelay = 100 ;
//
// label1
//
resources . ApplyResources ( this . label1 , "label1" ) ;
this . label1 . Name = "label1" ;
//
2012-04-05 21:50:04 -03:00
// ConfigRawParams
//
2012-04-19 08:22:02 -03:00
resources . ApplyResources ( this , "$this" ) ;
2012-04-05 21:50:04 -03:00
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
2012-11-25 01:42:46 -04:00
this . Controls . Add ( this . label1 ) ;
2012-04-05 21:50:04 -03:00
this . Controls . Add ( this . BUT_compare ) ;
this . Controls . Add ( this . BUT_rerequestparams ) ;
this . Controls . Add ( this . BUT_writePIDS ) ;
this . Controls . Add ( this . BUT_save ) ;
this . Controls . Add ( this . BUT_load ) ;
this . Controls . Add ( this . Params ) ;
this . Name = "ConfigRawParams" ;
( ( System . ComponentModel . ISupportInitialize ) ( this . Params ) ) . EndInit ( ) ;
this . ResumeLayout ( false ) ;
2012-11-25 01:42:46 -04:00
this . PerformLayout ( ) ;
2012-04-05 21:50:04 -03:00
}
#endregion
2012-04-24 10:49:27 -03:00
private ArdupilotMega . Controls . MyButton BUT_compare ;
private ArdupilotMega . Controls . MyButton BUT_rerequestparams ;
private ArdupilotMega . Controls . MyButton BUT_writePIDS ;
private ArdupilotMega . Controls . MyButton BUT_save ;
private ArdupilotMega . Controls . MyButton BUT_load ;
2012-04-05 21:50:04 -03:00
private System . Windows . Forms . DataGridView Params ;
2012-11-25 01:42:46 -04:00
private System . Windows . Forms . ToolTip toolTip1 ;
private System . Windows . Forms . Label label1 ;
2012-04-05 21:50:04 -03:00
private System . Windows . Forms . DataGridViewTextBoxColumn Command ;
private System . Windows . Forms . DataGridViewTextBoxColumn Value ;
2012-12-07 05:19:46 -04:00
private System . Windows . Forms . DataGridViewTextBoxColumn Units ;
private System . Windows . Forms . DataGridViewTextBoxColumn Options ;
2012-11-25 01:42:46 -04:00
private System . Windows . Forms . DataGridViewTextBoxColumn Desc ;
2012-04-05 21:50:04 -03:00
}
}