Наследование: Smrf.AppLib.FormSettings
Пример #1
0
    //*************************************************************************
    //  Constructor: MainForm()
    //
    /// <summary>
    /// Initializes a new instance of the <see cref="MainForm" /> class.
    /// </summary>
    //*************************************************************************

    public MainForm()
    {
        // Instantiate an object that saves and retrieves the user settings for
        // this dialog.  Note that the object automatically saves the settings
        // when the form closes.

        m_MainFormUserSettings = new MainFormUserSettings(this);

        m_GeneralUserSettings = new GeneralUserSettings();

        m_GraphMLFileProcessor = CreateGraphMLFileProcessor();

        InitializeComponent();

        DoDataExchange(false);
    }
Пример #2
0
        //*************************************************************************
        //  Constructor: MainForm()
        //
        /// <summary>
        /// Initializes a new instance of the <see cref="MainForm" /> class.
        /// </summary>
        //*************************************************************************

        public MainForm()
        {
            // Instantiate an object that saves and retrieves the user settings for
            // this dialog.  Note that the object automatically saves the settings
            // when the form closes.

            m_MainFormUserSettings = new MainFormUserSettings(this);

            m_GeneralUserSettings = new GeneralUserSettings();

            m_GraphMLFileProcessor = CreateGraphMLFileProcessor();

            InitializeComponent();

            DoDataExchange(false);
        }