// Copyright (C) Stichting Deltares 2017. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Windows.Forms; namespace Ringtoets.Integration.Forms { partial class BackgroundMapDataSelectionDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; #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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BackgroundMapDataSelectionDialog)); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel(); this.mapLayerLabel = new System.Windows.Forms.Label(); this.mapLayerComboBox = new System.Windows.Forms.ComboBox(); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.cancelButton = new System.Windows.Forms.Button(); this.selectButton = new System.Windows.Forms.Button(); this.propertiesGroupBox = new System.Windows.Forms.GroupBox(); this.tableLayoutPanel1.SuspendLayout(); this.flowLayoutPanel2.SuspendLayout(); this.flowLayoutPanel1.SuspendLayout(); this.SuspendLayout(); // // tableLayoutPanel1 // resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel2, 0, 0); this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 2); this.tableLayoutPanel1.Controls.Add(this.propertiesGroupBox, 0, 1); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; // // flowLayoutPanel2 // resources.ApplyResources(this.flowLayoutPanel2, "flowLayoutPanel2"); this.flowLayoutPanel2.Controls.Add(this.mapLayerLabel); this.flowLayoutPanel2.Controls.Add(this.mapLayerComboBox); this.flowLayoutPanel2.Name = "flowLayoutPanel2"; // // mapLayerLabel // resources.ApplyResources(this.mapLayerLabel, "mapLayerLabel"); this.mapLayerLabel.Name = "mapLayerLabel"; // // mapLayerComboBox // this.mapLayerComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.mapLayerComboBox.FormattingEnabled = true; resources.ApplyResources(this.mapLayerComboBox, "mapLayerComboBox"); this.mapLayerComboBox.Name = "mapLayerComboBox"; this.mapLayerComboBox.Sorted = true; this.mapLayerComboBox.SelectedIndexChanged += new System.EventHandler(this.MapLayerComboBox_OnSelectedIndexChanged); // // flowLayoutPanel1 // resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1"); this.flowLayoutPanel1.Controls.Add(this.cancelButton); this.flowLayoutPanel1.Controls.Add(this.selectButton); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; // // cancelButton // this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; resources.ApplyResources(this.cancelButton, "cancelButton"); this.cancelButton.Name = "cancelButton"; this.cancelButton.UseVisualStyleBackColor = true; // // selectButton // resources.ApplyResources(this.selectButton, "selectButton"); this.selectButton.Name = "selectButton"; this.selectButton.UseVisualStyleBackColor = true; this.selectButton.Click += new System.EventHandler(this.OnSelectButtonClick); // // propertiesGroupBox // resources.ApplyResources(this.propertiesGroupBox, "propertiesGroupBox"); this.propertiesGroupBox.Name = "propertiesGroupBox"; this.propertiesGroupBox.TabStop = false; // // BackgroundMapDataSelectionDialog // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.tableLayoutPanel1); this.Name = "BackgroundMapDataSelectionDialog"; this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel1.PerformLayout(); this.flowLayoutPanel2.ResumeLayout(false); this.flowLayoutPanel2.PerformLayout(); this.flowLayoutPanel1.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Button selectButton; private System.Windows.Forms.GroupBox propertiesGroupBox; private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2; private System.Windows.Forms.Label mapLayerLabel; private System.Windows.Forms.ComboBox mapLayerComboBox; } }