Smrf.NodeXL.ExcelTemplate.AlphaDialog.AlphaDialog C# (CSharp) Method

AlphaDialog() public method

Initializes a new instance of the AlphaDialog class.
public AlphaDialog ( ) : System
return System
    public AlphaDialog()
    {
        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_oAlphaDialogUserSettings = new AlphaDialogUserSettings(this);

        nudAlpha.Minimum = (Decimal)AlphaConverter.MinimumAlphaWorkbook;
        nudAlpha.Maximum = (Decimal)AlphaConverter.MaximumAlphaWorkbook;

        DoDataExchange(false);

        AssertValid();
    }