Skip to content

Commit bb228e4

Browse files
attach the sample
1 parent 8a759f0 commit bb228e4

25 files changed

+1598
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.14.36109.1 d17.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PatientHealthMonitoring", "PatientHealthMonitoring\PatientHealthMonitoring.csproj", "{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|ARM64 = Debug|ARM64
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|ARM64 = Release|ARM64
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|ARM64.ActiveCfg = Debug|ARM64
19+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|ARM64.Build.0 = Debug|ARM64
20+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|ARM64.Deploy.0 = Debug|ARM64
21+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x64.ActiveCfg = Debug|x64
22+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x64.Build.0 = Debug|x64
23+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x64.Deploy.0 = Debug|x64
24+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x86.ActiveCfg = Debug|x86
25+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x86.Build.0 = Debug|x86
26+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Debug|x86.Deploy.0 = Debug|x86
27+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|ARM64.ActiveCfg = Release|ARM64
28+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|ARM64.Build.0 = Release|ARM64
29+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|ARM64.Deploy.0 = Release|ARM64
30+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x64.ActiveCfg = Release|x64
31+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x64.Build.0 = Release|x64
32+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x64.Deploy.0 = Release|x64
33+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x86.ActiveCfg = Release|x86
34+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x86.Build.0 = Release|x86
35+
{F3E92DD0-F74F-4253-9F00-E22C89FAC00E}.Release|x86.Deploy.0 = Release|x86
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
GlobalSection(ExtensibilityGlobals) = postSolution
41+
SolutionGuid = {2D6160E2-5C12-4CAE-9D86-FA36726489C1}
42+
EndGlobalSection
43+
EndGlobal
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Application
3+
x:Class="PatientHealthMonitoring.App"
4+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
6+
xmlns:local="using:PatientHealthMonitoring">
7+
<Application.Resources>
8+
<ResourceDictionary>
9+
<ResourceDictionary.MergedDictionaries>
10+
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
11+
<!-- Other merged dictionaries here -->
12+
</ResourceDictionary.MergedDictionaries>
13+
<!-- Other app resources here -->
14+
</ResourceDictionary>
15+
</Application.Resources>
16+
</Application>
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.IO;
4+
using System.Linq;
5+
using System.Runtime.InteropServices.WindowsRuntime;
6+
using Microsoft.UI.Xaml;
7+
using Microsoft.UI.Xaml.Controls;
8+
using Microsoft.UI.Xaml.Controls.Primitives;
9+
using Microsoft.UI.Xaml.Data;
10+
using Microsoft.UI.Xaml.Input;
11+
using Microsoft.UI.Xaml.Media;
12+
using Microsoft.UI.Xaml.Navigation;
13+
using Microsoft.UI.Xaml.Shapes;
14+
using Windows.ApplicationModel;
15+
using Windows.ApplicationModel.Activation;
16+
using Windows.Foundation;
17+
using Windows.Foundation.Collections;
18+
19+
// To learn more about WinUI, the WinUI project structure,
20+
// and more about our project templates, see: http://aka.ms/winui-project-info.
21+
22+
namespace PatientHealthMonitoring
23+
{
24+
/// <summary>
25+
/// Provides application-specific behavior to supplement the default Application class.
26+
/// </summary>
27+
public partial class App : Application
28+
{
29+
private Window? _window;
30+
31+
/// <summary>
32+
/// Initializes the singleton application object. This is the first line of authored code
33+
/// executed, and as such is the logical equivalent of main() or WinMain().
34+
/// </summary>
35+
public App()
36+
{
37+
InitializeComponent();
38+
}
39+
40+
/// <summary>
41+
/// Invoked when the application is launched.
42+
/// </summary>
43+
/// <param name="args">Details about the launch request and process.</param>
44+
protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
45+
{
46+
_window = new MainWindow();
47+
_window.Activate();
48+
}
49+
}
50+
}
432 Bytes
Loading
5.25 KB
Loading
1.71 KB
Loading
637 Bytes
Loading
283 Bytes
Loading
456 Bytes
Loading
2.05 KB
Loading

0 commit comments

Comments
 (0)