Revise About page

- Swtich from html to GuiWidgets for layout
- Simplify with DialogPage - remove AboutWindow, AboutWidget
- Remove AboutPage namespace
This commit is contained in:
John Lewin 2018-03-10 23:01:28 -08:00
parent 90ea31cd71
commit 14194900f7
10 changed files with 124 additions and 204 deletions

View file

@ -36,7 +36,6 @@ using MatterHackers.Agg;
using MatterHackers.Agg.Platform;
using MatterHackers.Agg.UI;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.AboutPage;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.MatterControl.SlicerConfiguration;
using MatterHackers.VectorMath;
@ -336,7 +335,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
}
aboutMatterControl.Click += (s, e) =>
{
UiThread.RunOnIdle(AboutWindow.Show);
UiThread.RunOnIdle(() => DialogWindow.Show<AboutPage>());
};
this.AddSettingsRow(aboutMatterControl);
}