SolutionExtensions.InstallerProgress.InstallerProgress C# (CSharp) Method

InstallerProgress() public method

public InstallerProgress ( int total, string message ) : System.Windows
total int
message string
return System.Windows
        public InstallerProgress(int total, string message)
        {
            Loaded += delegate
            {
                bar.Maximum = total;
                lblText.Content = message;
            };

            InitializeComponent();
        }