Inheritance: Smrf.AppLib.FormSettings
    //*************************************************************************
    //  Constructor: RegisterUserDialog()
    //
    /// <summary>
    /// Initializes a new instance of the <see cref="RegisterUserDialog" />
    /// class.
    /// </summary>
    //*************************************************************************

    public RegisterUserDialog()
    {
        InitializeComponent();

        // 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_oRegisterUserDialogUserSettings =
            new RegisterUserDialogUserSettings(this);

        AssertValid();
    }
Beispiel #2
0
        //*************************************************************************
        //  Constructor: RegisterUserDialog()
        //
        /// <summary>
        /// Initializes a new instance of the <see cref="RegisterUserDialog" />
        /// class.
        /// </summary>
        //*************************************************************************

        public RegisterUserDialog()
        {
            InitializeComponent();

            // 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_oRegisterUserDialogUserSettings =
                new RegisterUserDialogUserSettings(this);

            AssertValid();
        }