www.pudn.com > cad-draw.zip > OptionsDlg.cs, change:2007-12-17,size:625b
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Reflection; namespace Canvas.Options { public partial class OptionsDlg : CommonTools.PropertyDialog { OptionsConfig m_config = new OptionsConfig(); public OptionsConfig Config { get { return m_config; } } public OptionsDlg() { InitializeComponent(); BeforeLoadPages(); AddPage("Grid", new GridPage(), m_config); AddPage("Layers", new LayersPage(), m_config); AfterLoadPages(); } } }