예제 #1
0
        public static void Show(string hash = null)
        {
            string    url   = GuideUrl + (hash ?? string.Empty);
            FormGuide guide = FormManager.TryFind <FormGuide>();

            if (guide == null)
            {
                FormBrowser owner = FormManager.TryFind <FormBrowser>();

                if (owner != null)
                {
                    owner.AnalyticsFile.OpenGuide.Trigger();
                    new FormGuide(url, owner).Show(owner);
                }
            }
            else
            {
                guide.Reload(url);
                guide.Activate();
            }
        }
예제 #2
0
 private void ShowGuide()
 {
     FormGuide.Show();
     Close();
 }