├── App.config ├── BCom.csproj ├── Bcom.sln ├── LICENSE ├── MainActivity.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Utils └── Utils.cs ├── WxForm.Designer.cs ├── WxForm.cs ├── WxForm.resx ├── icon.ico ├── obj └── Release │ ├── BCom.csproj.FileListAbsolute.txt │ └── BCom.exe ├── res ├── icon.ico ├── weixin.png └── wx.png └── screenshot ├── mainform.PNG ├── mainform_tool.PNG └── weixin_form.PNG /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/App.config -------------------------------------------------------------------------------- /BCom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/BCom.csproj -------------------------------------------------------------------------------- /Bcom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Bcom.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/LICENSE -------------------------------------------------------------------------------- /MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/MainActivity.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/Utils/Utils.cs -------------------------------------------------------------------------------- /WxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/WxForm.Designer.cs -------------------------------------------------------------------------------- /WxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/WxForm.cs -------------------------------------------------------------------------------- /WxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/WxForm.resx -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/icon.ico -------------------------------------------------------------------------------- /obj/Release/BCom.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Release/BCom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/obj/Release/BCom.exe -------------------------------------------------------------------------------- /res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/res/icon.ico -------------------------------------------------------------------------------- /res/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/res/weixin.png -------------------------------------------------------------------------------- /res/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/res/wx.png -------------------------------------------------------------------------------- /screenshot/mainform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/screenshot/mainform.PNG -------------------------------------------------------------------------------- /screenshot/mainform_tool.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/screenshot/mainform_tool.PNG -------------------------------------------------------------------------------- /screenshot/weixin_form.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestyize/BCom/HEAD/screenshot/weixin_form.PNG --------------------------------------------------------------------------------