├── .gitignore ├── .vs ├── InteractionApp │ ├── project-colors.json │ ├── v16 │ │ └── .suo │ └── v17 │ │ └── .suo ├── New folder │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── InteractionApp.sln ├── InteractionApp ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Icons-Land-Medical-Documents-CardiacMonitor.ico ├── InteractionApp.csproj ├── Jommans-Ironman-Style-File-Music.ico ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/InteractionApp/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/InteractionApp/project-colors.json -------------------------------------------------------------------------------- /.vs/InteractionApp/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/InteractionApp/v16/.suo -------------------------------------------------------------------------------- /.vs/InteractionApp/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/InteractionApp/v17/.suo -------------------------------------------------------------------------------- /.vs/New folder/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/New folder/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /InteractionApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp.sln -------------------------------------------------------------------------------- /InteractionApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/App.config -------------------------------------------------------------------------------- /InteractionApp/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Form1.Designer.cs -------------------------------------------------------------------------------- /InteractionApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Form1.cs -------------------------------------------------------------------------------- /InteractionApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Form1.resx -------------------------------------------------------------------------------- /InteractionApp/Icons-Land-Medical-Documents-CardiacMonitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Icons-Land-Medical-Documents-CardiacMonitor.ico -------------------------------------------------------------------------------- /InteractionApp/InteractionApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/InteractionApp.csproj -------------------------------------------------------------------------------- /InteractionApp/Jommans-Ironman-Style-File-Music.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Jommans-Ironman-Style-File-Music.ico -------------------------------------------------------------------------------- /InteractionApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Program.cs -------------------------------------------------------------------------------- /InteractionApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InteractionApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /InteractionApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Properties/Resources.resx -------------------------------------------------------------------------------- /InteractionApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /InteractionApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/Properties/Settings.settings -------------------------------------------------------------------------------- /InteractionApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adonistoday/control-desktop-app/HEAD/InteractionApp/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------