namespace RunTimeSettingsSample {
partial class ApplicationForm {
///
/// 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();
this.applicationBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.applicationSettingsListView = new System.Windows.Forms.ListView();
this.settingColumnHeader = new System.Windows.Forms.ColumnHeader();
this.valueColumnHeader = new System.Windows.Forms.ColumnHeader();
((System.ComponentModel.ISupportInitialize)(this.applicationBindingSource)).BeginInit();
this.SuspendLayout();
//
// applicationBindingSource
//
this.applicationBindingSource.DataSource = typeof(System.Windows.Forms.Application);
//
// applicationSettingsListView
//
this.applicationSettingsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.settingColumnHeader,
this.valueColumnHeader});
this.applicationSettingsListView.Dock = System.Windows.Forms.DockStyle.Fill;
this.applicationSettingsListView.Location = new System.Drawing.Point(0, 0);
this.applicationSettingsListView.Name = "applicationSettingsListView";
this.applicationSettingsListView.Size = new System.Drawing.Size(731, 195);
this.applicationSettingsListView.TabIndex = 0;
this.applicationSettingsListView.View = System.Windows.Forms.View.Details;
//
// settingColumnHeader
//
this.settingColumnHeader.Text = "Application Setting";
this.settingColumnHeader.Width = 200;
//
// valueColumnHeader
//
this.valueColumnHeader.Text = "Value";
this.valueColumnHeader.Width = 487;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(731, 195);
this.Controls.Add(this.applicationSettingsListView);
this.Name = "MainForm";
this.Text = "Application Settings Sample";
this.Load += new System.EventHandler(this.MainForm_Load);
((System.ComponentModel.ISupportInitialize)(this.applicationBindingSource)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.BindingSource applicationBindingSource;
private System.Windows.Forms.ListView applicationSettingsListView;
private System.Windows.Forms.ColumnHeader settingColumnHeader;
private System.Windows.Forms.ColumnHeader valueColumnHeader;
}
}