#region Disclaimer / License // Copyright (C) 2009, Kenneth Skovhede // http://www.hexad.dk, opensource@hexad.dk // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // #endregion using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Data; using System.Windows.Forms; namespace OSGeo.MapGuide.Maestro.FusionEditor { /// /// Summary description for CustomPropertiesEditor. /// public class CustomPropertiesEditor : System.Windows.Forms.UserControl { private System.Windows.Forms.DataGrid DataGrid; /// /// Required designer variable. /// private System.ComponentModel.Container components = null; public CustomPropertiesEditor() { // This call is required by the Windows.Forms Form Designer. InitializeComponent(); // TODO: Add any initialization after the InitializeComponent call } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Component 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(CustomPropertiesEditor)); this.DataGrid = new System.Windows.Forms.DataGrid(); ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).BeginInit(); this.SuspendLayout(); // // DataGrid // this.DataGrid.DataMember = ""; resources.ApplyResources(this.DataGrid, "DataGrid"); this.DataGrid.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.DataGrid.Name = "DataGrid"; // // CustomPropertiesEditor // this.Controls.Add(this.DataGrid); this.Name = "CustomPropertiesEditor"; resources.ApplyResources(this, "$this"); ((System.ComponentModel.ISupportInitialize)(this.DataGrid)).EndInit(); this.ResumeLayout(false); } #endregion } }