├── LICENSE ├── PPTVideo1.4.0 ├── PPTVideo.sln └── PPTVideo │ ├── App.config │ ├── AutoSizeFormClass.cs │ ├── CircleProgramBar.cs │ ├── FlaskConnect.cs │ ├── FlieOperation.cs │ ├── FormAudio.Designer.cs │ ├── FormAudio.cs │ ├── FormAudio.resx │ ├── FormCustomize.Designer.cs │ ├── FormCustomize.cs │ ├── FormCustomize.resx │ ├── FormInit.Designer.cs │ ├── FormInit.cs │ ├── FormInit.resx │ ├── FormLogin.Designer.cs │ ├── FormLogin.cs │ ├── FormLogin.resx │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── FormNumberPerson.Designer.cs │ ├── FormNumberPerson.cs │ ├── FormNumberPerson.resx │ ├── FormPerson.Designer.cs │ ├── FormPerson.cs │ ├── FormPerson.resx │ ├── FormSet.Designer.cs │ ├── FormSet.cs │ ├── FormSet.resx │ ├── FormSponsor.Designer.cs │ ├── FormSponsor.cs │ ├── FormSponsor.resx │ ├── FormTrain.Designer.cs │ ├── FormTrain.cs │ ├── FormTrain.resx │ ├── PPTVideo.csproj │ ├── PPTVideo.csproj.user │ ├── PPTVideoProduce.Designer.cs │ ├── PPTVideoProduce.cs │ ├── PPTVideoProduce.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── RadiusButton.cs │ ├── Resources │ ├── play.png │ └── stop.png │ ├── app.manifest │ ├── bin │ └── Debug │ │ ├── Audio │ │ ├── Grill.wav │ │ └── Man.wav │ │ ├── CreateVideo.exe │ │ ├── Data │ │ ├── PeopleLocation.json │ │ ├── Time.json │ │ ├── comments.json │ │ └── labels.json │ │ ├── GetTxt.exe │ │ └── Video │ │ └── README.md │ ├── global.cs │ ├── logo3.ico │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PPTVideo.csproj.FileListAbsolute.txt │ ├── PPTVideo.csprojAssemblyReference.cache │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ ├── PPTVideo.csproj.nuget.dgspec.json │ ├── PPTVideo.csproj.nuget.g.props │ ├── PPTVideo.csproj.nuget.g.targets │ └── project.assets.json ├── README.md └── docs ├── 1.png ├── 10.png ├── 11.jpg ├── 12.png ├── 13.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── image2.png └── image3.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/LICENSE -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo.sln -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/App.config -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/AutoSizeFormClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/AutoSizeFormClass.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/CircleProgramBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/CircleProgramBar.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FlaskConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FlaskConnect.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FlieOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FlieOperation.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormAudio.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormAudio.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormAudio.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormAudio.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormAudio.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormCustomize.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormCustomize.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormCustomize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormCustomize.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormCustomize.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormCustomize.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormInit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormInit.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormInit.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormInit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormInit.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormLogin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormLogin.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormLogin.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormLogin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormLogin.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormMain.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormMain.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormMain.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormNumberPerson.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormNumberPerson.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormNumberPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormNumberPerson.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormNumberPerson.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormNumberPerson.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormPerson.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormPerson.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormPerson.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormPerson.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormPerson.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSet.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSet.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSet.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSet.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSponsor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSponsor.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSponsor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSponsor.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormSponsor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormSponsor.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormTrain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormTrain.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormTrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormTrain.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/FormTrain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/FormTrain.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/PPTVideo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/PPTVideo.csproj -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/PPTVideo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/PPTVideo.csproj.user -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/PPTVideoProduce.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/PPTVideoProduce.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/PPTVideoProduce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/PPTVideoProduce.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/PPTVideoProduce.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/PPTVideoProduce.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Program.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Properties/Resources.resx -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Properties/Settings.settings -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/RadiusButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/RadiusButton.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Resources/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Resources/play.png -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/Resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/Resources/stop.png -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/app.manifest -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Audio/Grill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Audio/Grill.wav -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Audio/Man.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Audio/Man.wav -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/CreateVideo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/CreateVideo.exe -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Data/PeopleLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Data/PeopleLocation.json -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Data/Time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Data/Time.json -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Data/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Data/comments.json -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Data/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/Data/labels.json -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/GetTxt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/bin/Debug/GetTxt.exe -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/bin/Debug/Video/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/global.cs -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/logo3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/logo3.ico -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/Debug/PPTVideo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/Debug/PPTVideo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/Debug/PPTVideo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/Debug/PPTVideo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.g.props -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/PPTVideo.csproj.nuget.g.targets -------------------------------------------------------------------------------- /PPTVideo1.4.0/PPTVideo/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/PPTVideo1.4.0/PPTVideo/obj/project.assets.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/README.md -------------------------------------------------------------------------------- /docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/1.png -------------------------------------------------------------------------------- /docs/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/10.png -------------------------------------------------------------------------------- /docs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/11.jpg -------------------------------------------------------------------------------- /docs/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/12.png -------------------------------------------------------------------------------- /docs/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/13.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/2.png -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/4.png -------------------------------------------------------------------------------- /docs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/5.png -------------------------------------------------------------------------------- /docs/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/6.png -------------------------------------------------------------------------------- /docs/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/7.png -------------------------------------------------------------------------------- /docs/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/8.png -------------------------------------------------------------------------------- /docs/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/9.png -------------------------------------------------------------------------------- /docs/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/image2.png -------------------------------------------------------------------------------- /docs/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_UI/HEAD/docs/image3.png --------------------------------------------------------------------------------