91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1.53MB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-09-19
  • 語言: C#
  • 標簽:

資源簡介

軟件實現(xiàn)了對安裝包的自定義安裝和對已安裝的軟件進行自定義的卸載方式。安裝部分有修復、版本替換、檢測相關服務并運行、檢測并運行相關依賴程序、提取服務所需的組件生成安裝程序InstallationUtil.exe、正在注冊并啟動服務、生成快捷方式、清理安裝時釋放的臨時文件。 卸載部分有停止相關服務、卸載注冊表項、生成卸載組件、刪除快捷方式、清理卸載殘留。

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Windows.Forms;
using?System.Runtime.InteropServices;
using?System.IO;
using?System.Threading;
using?Microsoft.Win32;
using?System.ServiceProcess;
using?System.Diagnostics;

namespace?Installation
{
????public?partial?class?FrmInstallation?:?Form
????{
????????///?
????????///?可填充區(qū)域,用戶可根據(jù)實際安裝需求更改此項
????????///?

????????public?string?strCompanyNameEnglish?=?“XYBarcode“;
????????public?string?strProductNameEnglish?=?“MESBarcodeServer“;
????????public?string?strServiceNameEnglish?=?“MES?Barcode?Server“;
????????public?string?strCompanyURL?=?“http://www.xybarcode.com“;

????????///?
????????///?程序變量,請勿更改
????????///?

????????private?string?strInstallationPath?=?““;
????????private?bool?bExpansion?=?false?bDesktoplink?=?true?bStartMenulink?=?true?bStartBarlink?=?true?bUserExperience?=?true;
????????private?int?iFormSizeHeightNor?=?360?iFormSizeHeightExp?=?470;
????????private?string?strResult?=?““;
????????private?FolderBrowserDialog?fbd?=?new?FolderBrowserDialog();

????????#region?拖動無邊框窗體
????????[DllImport(“user32.dll“)]
????????public?static?extern?bool?ReleaseCapture();//改變窗體大小
????????[DllImport(“user32.dll“)]
????????public?static?extern?bool?SendMessage(IntPtr?hwnd?int?wMsg?int?wParam?int?lParam);//發(fā)送windows消息
????????#endregion

????????#region?窗體邊框陰影效果變量申明
????????const?int?CS_DropSHADOW?=?0x20000;
????????const?int?GCL_style?=?(-26);
????????//聲明Win32?API
????????[DllImport(“user32.dll“?CharSet?=?CharSet.Auto)]
????????public?static?extern?int?SetClassLong(IntPtr?hwnd?int?nIndex?int?dwNewLong);
????????[DllImport(“user32.dll“?CharSet?=?CharSet.Auto)]
????????public?static?extern?int?GetClassLong(IntPtr?hwnd?int?nIndex);
????????#endregion

????????public?FrmInstallation()
????????{
????????????InitializeComponent();
????????????fbd.RootFolder?=?System.Environment.SpecialFolder.Desktop;
????????????fbd.SelectedPath?=?Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
????????????fbd.ShowNewFolderButton?=?true;
????????????txtPath.Text?=?fbd.SelectedPath?+?“\\“?+?strCompanyNameEnglish?+?“\\“?+?strProductNameEnglish;

????????????SetClassLong(this.Handle?GCL_style?GetClassLong(this.Handle?GCL_style)?|?CS_DropSHADOW);?//API函數(shù)加載,實現(xiàn)窗體邊框陰影效果
????????????lblMaintitle.Text?=?Application.ProductName;
????????????this.Text?=?Application.ProductName?+?“安裝程序“;
????????????this.Icon?=?Installation.Properties.Resources.Installation;
????????????lblCompanyName.Text?=?Application.CompanyName;
????????}

????????private?void?FrmMain_Load(object?sender?EventArgs?e)
????????{
????????????ThreadPool.QueueUserWorkItem(new?WaitCallback(ShowMain)?null);
????????}

????????private?void?ShowMain(object?obj)
????????{
????????????while?(this.Opacity!=1)
???

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\Installation\
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\Installation\Backup\
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\Installation\Backup\Common\
?????文件????????9876??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Common\Shortcut.cs
?????文件???????29151??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmInstallation.Designer.cs
?????文件???????26524??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmInstallation.cs
?????文件????????5814??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmInstallation.resx
?????文件????????8510??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmMsg.Designer.cs
?????文件????????5344??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmMsg.cs
?????文件????????5814??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\FrmMsg.resx
?????文件????????8366??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Installation.csproj
?????文件?????????488??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Installation.csproj.user
?????文件??????309830??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Installation.ico
?????文件????????2137??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Program.cs
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\
?????文件????????1444??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\AssemblyInfo.cs
?????文件????????3814??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\InstallFiles.Designer.cs
?????文件????????6939??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\InstallFiles.resx
?????文件???????10584??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\Resources.Designer.cs
?????文件??????643426??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\Resources.resx
?????文件????????1115??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\Settings.Designer.cs
?????文件?????????249??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Properties\Settings.settings
?????目錄???????????0??2018-07-02?13:16??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\
?????文件????????3097??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\Close_Dwn.png
?????文件????????2972??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\Close_Ent.png
?????文件????????3061??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\Close_Nor.png
?????文件???????28672??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\InstallUtil.exe
?????文件???????63488??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\MESBarcodeServer.exe
?????文件????????8704??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\MESBarcodeServerService.exe
?????文件????????4023??2013-12-21?13:01??C#軟件安裝卸載工具源代碼\Installation\Backup\Resources\MSGBack.png
............此處省略226個文件信息

評論

共有 條評論

相關資源