namespace LocalizedDataSample { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// 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.listView = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.columnHeader3 = new System.Windows.Forms.ColumnHeader(); this.columnHeader4 = new System.Windows.Forms.ColumnHeader(); this.testCulturesButton = new System.Windows.Forms.Button(); this.panel1 = new System.Windows.Forms.Panel(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // listView // this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4}); this.listView.Dock = System.Windows.Forms.DockStyle.Fill; this.listView.Location = new System.Drawing.Point(0, 0); this.listView.Margin = new System.Windows.Forms.Padding(0); this.listView.Name = "listView"; this.listView.Size = new System.Drawing.Size(446, 295); this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending; this.listView.TabIndex = 0; this.listView.UseCompatibleStateImageBehavior = false; this.listView.View = System.Windows.Forms.View.Details; // // columnHeader1 // this.columnHeader1.Text = "Culture English Name"; this.columnHeader1.Width = 150; // // columnHeader2 // this.columnHeader2.Text = "Name"; // // columnHeader3 // this.columnHeader3.Text = "Currency"; // // columnHeader4 // this.columnHeader4.Text = "Date"; this.columnHeader4.Width = 80; // // testCulturesButton // this.testCulturesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.testCulturesButton.Location = new System.Drawing.Point(287, 7); this.testCulturesButton.Name = "testCulturesButton"; this.testCulturesButton.Size = new System.Drawing.Size(152, 23); this.testCulturesButton.TabIndex = 1; this.testCulturesButton.Text = "Test Alternative Cultures"; this.testCulturesButton.Click += new System.EventHandler(this.testCulturesButton_Click); // // panel1 // this.panel1.Controls.Add(this.testCulturesButton); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 259); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(446, 36); this.panel1.TabIndex = 2; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(446, 295); this.Controls.Add(this.panel1); this.Controls.Add(this.listView); this.Name = "MainForm"; this.Text = "Localized Data Sample"; this.Load += new System.EventHandler(this.MainForm_Load); this.panel1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListView listView; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader3; private System.Windows.Forms.ColumnHeader columnHeader4; private System.Windows.Forms.Button testCulturesButton; private System.Windows.Forms.Panel panel1; } }