// 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.Dialogs { partial class MergeDataProviderStub { /// /// 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.flowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.flowLayoutPanel.SuspendLayout(); this.SuspendLayout(); // // flowLayoutPanel // this.flowLayoutPanel.Controls.Add(this.okButton); this.flowLayoutPanel.Controls.Add(this.cancelButton); this.flowLayoutPanel.Location = new System.Drawing.Point(3, 3); this.flowLayoutPanel.Name = "flowLayoutPanel"; this.flowLayoutPanel.Size = new System.Drawing.Size(200, 100); this.flowLayoutPanel.TabIndex = 0; // // okButton // this.okButton.DialogResult = DialogResult.OK; this.okButton.Location = new System.Drawing.Point(3, 3); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(197, 23); this.okButton.TabIndex = 0; this.okButton.Text = "Ok"; this.okButton.UseVisualStyleBackColor = true; // // cancelButton // this.cancelButton.DialogResult = DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(3, 32); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(197, 23); this.cancelButton.TabIndex = 1; this.cancelButton.Text = "Annuleren"; this.cancelButton.UseVisualStyleBackColor = true; // // MergeDataProviderStub // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.flowLayoutPanel); this.Name = "MergeDataProviderStub"; this.Size = new System.Drawing.Size(212, 111); this.flowLayoutPanel.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; } }