├── .gitignore ├── .vs └── WeChatAPI │ └── v14 │ └── .suo ├── README.md ├── WeChatAPI.Desktop.Demo ├── App.config ├── MainPage.Designer.cs ├── MainPage.cs ├── MainPage.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── QRCodePage.Designer.cs ├── QRCodePage.cs ├── QRCodePage.resx ├── WeChatAPI.Desktop.Demo.csproj └── bin │ └── Debug │ ├── HtmlAgilityPack.dll │ ├── Newtonsoft.Json.dll │ └── WeChatAPI.Desktop.dll ├── WeChatAPI.Universal.Demo ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── WeChatAPI.Universal.Demo.csproj ├── WeChatAPI.Universal.Demo_TemporaryKey.pfx ├── project.json └── project.lock.json └── WeChatAPI.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/WeChatAPI/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/.vs/WeChatAPI/v14/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/README.md -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/App.config -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/MainPage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/MainPage.Designer.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/MainPage.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/MainPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/MainPage.resx -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Program.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/QRCodePage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/QRCodePage.Designer.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/QRCodePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/QRCodePage.cs -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/QRCodePage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/QRCodePage.resx -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/WeChatAPI.Desktop.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/WeChatAPI.Desktop.Demo.csproj -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/bin/Debug/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/bin/Debug/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WeChatAPI.Desktop.Demo/bin/Debug/WeChatAPI.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Desktop.Demo/bin/Debug/WeChatAPI.Desktop.dll -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/App.xaml -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/App.xaml.cs -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/MainPage.xaml -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/MainPage.xaml.cs -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Package.appxmanifest -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/Properties/Default.rd.xml -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/WeChatAPI.Universal.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/WeChatAPI.Universal.Demo.csproj -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/WeChatAPI.Universal.Demo_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/WeChatAPI.Universal.Demo_TemporaryKey.pfx -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/project.json -------------------------------------------------------------------------------- /WeChatAPI.Universal.Demo/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.Universal.Demo/project.lock.json -------------------------------------------------------------------------------- /WeChatAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xJonathanLEI/WeChatAPI/HEAD/WeChatAPI.sln --------------------------------------------------------------------------------