-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
869450_sample : add the code sample.
- Loading branch information
1 parent
f221285
commit 74edc09
Showing
39 changed files
with
943 additions
and
828 deletions.
There are no files selected for viewing
34 changes: 9 additions & 25 deletions
34
Getting Started/MAUI/CreatePdfDemoSample/CreatePdfDemoSample.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,27 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31611.283 | ||
VisualStudioVersion = 17.8.34330.188 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CreatePdfDemoSample", "CreatePdfDemoSample\CreatePdfDemoSample.csproj", "{B82C7BB1-A62A-47A5-A4F8-711DFB765907}" | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreatePdfDemoSample", "CreatePdfDemoSample\CreatePdfDemoSample.csproj", "{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|Any CPU = Release|Any CPU | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|Any CPU.Deploy.0 = Debug|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x64.ActiveCfg = Debug|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x64.Build.0 = Debug|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x64.Deploy.0 = Debug|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x86.ActiveCfg = Debug|x86 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x86.Build.0 = Debug|x86 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Debug|x86.Deploy.0 = Debug|x86 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|Any CPU.Deploy.0 = Release|Any CPU | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x64.ActiveCfg = Release|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x64.Build.0 = Release|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x64.Deploy.0 = Release|x64 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x86.ActiveCfg = Release|x86 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x86.Build.0 = Release|x86 | ||
{B82C7BB1-A62A-47A5-A4F8-711DFB765907}.Release|x86.Deploy.0 = Release|x86 | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Debug|Any CPU.Deploy.0 = Debug|Any CPU | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{C710FE8F-6EA8-4610-85BA-2E857B2B1A58}.Release|Any CPU.Deploy.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} | ||
SolutionGuid = {746F8B53-294C-4495-A6CD-97ED596BCCEA} | ||
EndGlobalSection | ||
EndGlobal |
17 changes: 9 additions & 8 deletions
17
Getting Started/MAUI/CreatePdfDemoSample/CreatePdfDemoSample/App.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
namespace CreatePdfDemoSample; | ||
|
||
public partial class App : Application | ||
namespace CreatePdfDemoSample | ||
{ | ||
public App() | ||
{ | ||
InitializeComponent(); | ||
public partial class App : Application | ||
{ | ||
public App() | ||
{ | ||
InitializeComponent(); | ||
|
||
MainPage = new AppShell(); | ||
} | ||
MainPage = new AppShell(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 8 additions & 7 deletions
15
Getting Started/MAUI/CreatePdfDemoSample/CreatePdfDemoSample/AppShell.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
namespace CreatePdfDemoSample; | ||
|
||
public partial class AppShell : Shell | ||
namespace CreatePdfDemoSample | ||
{ | ||
public AppShell() | ||
{ | ||
InitializeComponent(); | ||
} | ||
public partial class AppShell : Shell | ||
{ | ||
public AppShell() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 34 additions & 2 deletions
36
Getting Started/MAUI/CreatePdfDemoSample/CreatePdfDemoSample/CreatePdfDemoSample.csproj.user
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ActiveDebugFramework>net6.0-windows10.0.19041.0</ActiveDebugFramework> | ||
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen> | ||
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile> | ||
<ActiveDebugFramework>net8.0-android</ActiveDebugFramework> | ||
<ActiveDebugProfile>Pixel 5 - API 33 (Android 13.0 - API 33)</ActiveDebugProfile> | ||
<SelectedPlatformGroup>Emulator</SelectedPlatformGroup> | ||
<DefaultDevice>pixel_5_-_api_33</DefaultDevice> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetPlatformIdentifier)'=='iOS'"> | ||
<RuntimeIdentifier>ios-arm64</RuntimeIdentifier> | ||
<PlatformTarget>arm64</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'"> | ||
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Update="App.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="AppShell.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="MainPage.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="Platforms\Windows\App.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="Platforms\Windows\Package.appxmanifest"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="Resources\Styles\Colors.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
<None Update="Resources\Styles\Styles.xaml"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
8 changes: 0 additions & 8 deletions
8
Getting Started/MAUI/CreatePdfDemoSample/CreatePdfDemoSample/ISave.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.