1234567891011121314151617181920212223242526272829303132 |
- using ClickOnceSetup.Common;
- using ClickOnceSetup.Common.ChainResponsibility;
- using System;
- using System.Windows;
- namespace ClickOnceSetup
- {
-
-
-
- public partial class InitGuidance
- {
- public InitGuidance()
- {
- try
- {
- InitializeComponent();
- ShowInfomationTabs();
- }
- catch (Exception ex)
- {
- FileHelper.AppendWriteFile("InstallLog.txt", ex.Message + "|" + ex.StackTrace);
- }
- }
- private void ShowInfomationTabs()
- {
- InfomationTabs window = new InfomationTabs();
- window.Show();
- Close();
- }
- }
- }
|