fBaseXtensions.Settings.SettingsForm.initalizeControls_MiscStats C# (CSharp) Method

initalizeControls_MiscStats() private method

private initalizeControls_MiscStats ( ) : void
return void
        private void initalizeControls_MiscStats()
        {
            flowLayoutPanel_MiscStats.Controls.Clear();
            try
            {
                flowLayoutPanel_MiscStats.Controls.Add(new UserControlDebugEntry("== TOTAL SUMMARY ==\r\n" + FunkyGame.CurrentStats.GenerateOutputString()));

                flowLayoutPanel_MiscStats.Controls.Add(new UserControlDebugEntry("== PROFILE SUMMARY =="));
                foreach (var item in FunkyGame.CurrentStats.Profiles)
                {
                    flowLayoutPanel_MiscStats.Controls.Add(new UserControlDebugEntry(item.GenerateOutput()));
                }
            }
            catch
            {
                flowLayoutPanel_MiscStats.Controls.Add(new UserControlDebugEntry("Exception Handled"));
            }
        }
SettingsForm