Skip to content
Open

Yjh #11

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions Find_maze/Find_maze.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2019
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Find_maze", "Find_maze\Find_maze.csproj", "{0E509A85-8C83-4BEF-9F17-734010BB284C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E509A85-8C83-4BEF-9F17-734010BB284C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E509A85-8C83-4BEF-9F17-734010BB284C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E509A85-8C83-4BEF-9F17-734010BB284C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E509A85-8C83-4BEF-9F17-734010BB284C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {300B3D00-3EDC-49CB-8404-0334E1CC006F}
EndGlobalSection
EndGlobal
66 changes: 66 additions & 0 deletions Find_maze/Find_maze/App.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Xamarin.Forms;
using Tizen.Wearable.CircularUI.Forms;

namespace Find_maze
{
public class App : Application
{
public App()
{
Label label = new Label
{
HorizontalTextAlignment = TextAlignment.Center,
Text = "미로찾기를 시작합니다."
};

Button button =
new Button
{
Text = "TOUCH",
FontSize = 7,
WidthRequest = 110,
HorizontalOptions = LayoutOptions.Center
};
button.Clicked += new EventHandler(button_Clicked);

// The root page of your application
MainPage = new CirclePage
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.Center,
Children =
{
label, button
}
}
};
}

private void button_Clicked(object sender, EventArgs e)
{
NavigationPage navigationPage = new NavigationPage(new views.SubPage());
MainPage = navigationPage;
}

protected override void OnStart()
{
// Handle when your app starts
}

protected override void OnSleep()
{
// Handle when your app sleeps
}

protected override void OnResume()
{
// Handle when your app resumes
}
}
}
22 changes: 22 additions & 0 deletions Find_maze/Find_maze/Find_maze.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using System;

namespace Find_maze
{
class Program : global::Xamarin.Forms.Platform.Tizen.FormsApplication
{
protected override void OnCreate()
{
base.OnCreate();

LoadApplication(new App());
}

static void Main(string[] args)
{
var app = new Program();
global::Xamarin.Forms.Platform.Tizen.Forms.Init(app);
Tizen.Wearable.CircularUI.Forms.Renderer.FormsCircularUI.Init();
app.Run(args);
}
}
}
30 changes: 30 additions & 0 deletions Find_maze/Find_maze/Find_maze.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>tizen40</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>
</PropertyGroup>

<ItemGroup>
<Folder Include="lib\" />
<Folder Include="res\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Tizen.NET" Version="4.0.0">
<ExcludeAssets>Runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="Tizen.NET.Sdk" Version="1.0.1" />
<PackageReference Include="Tizen.Wearable.CircularUI" Version="1.0.0-pre2-00065" />
<PackageReference Include="Xamarin.Forms" Version="3.1.0.637273" />
</ItemGroup>

</Project>

6 changes: 6 additions & 0 deletions Find_maze/Find_maze/Find_maze.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>Find_maze</ActiveDebugProfile>
</PropertyGroup>
</Project>
81 changes: 81 additions & 0 deletions Find_maze/Find_maze/bin/Debug/tizen40/Find_maze.deps.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"runtimeTarget": {
"name": "Tizen,Version=v4.0/",
"signature": "90038655eb3d523ac5c3470f26cdf3f5f4111325"
},
"compilationOptions": {},
"targets": {
"Tizen,Version=v4.0": {},
"Tizen,Version=v4.0/": {
"Find_maze/1.0.0": {
"dependencies": {
"Tizen.NET": "4.0.0",
"Tizen.NET.Sdk": "1.0.1",
"Tizen.Wearable.CircularUI": "1.0.0-pre2-00065",
"Xamarin.Forms": "3.1.0.637273"
},
"runtime": {
"Find_maze.dll": {}
}
},
"Tizen.NET/4.0.0": {},
"Tizen.NET.Sdk/1.0.1": {},
"Tizen.Wearable.CircularUI/1.0.0-pre2-00065": {
"dependencies": {
"Tizen.NET": "4.0.0",
"Xamarin.Forms": "3.1.0.637273"
},
"runtime": {
"lib/tizen40/Tizen.Wearable.CircularUI.Forms.Renderer.dll": {},
"lib/tizen40/Tizen.Wearable.CircularUI.Forms.dll": {}
}
},
"Xamarin.Forms/3.1.0.637273": {
"dependencies": {
"Tizen.NET": "4.0.0"
},
"runtime": {
"lib/tizen40/Xamarin.Forms.Core.dll": {},
"lib/tizen40/Xamarin.Forms.Platform.Tizen.dll": {},
"lib/tizen40/Xamarin.Forms.Platform.dll": {},
"lib/tizen40/Xamarin.Forms.Xaml.dll": {}
}
}
}
},
"libraries": {
"Find_maze/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Tizen.NET/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-e/q/gwwzrcR6LRsQiZbpKYN+GJsiA7/lh6p8ztANDoJLnIlKPmiNsBXxm6Tt8yHzwMywmAXBwyp4mpLCRG0J+A==",
"path": "tizen.net/4.0.0",
"hashPath": "tizen.net.4.0.0.nupkg.sha512"
},
"Tizen.NET.Sdk/1.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-g3LzVzxalGn3F1H9yf2lXFT4CHlRlrzqEU8MmSASMphWc8cWYCOkVEYM8eSX4fCmAAPhSklAQR42YYXclSMa8A==",
"path": "tizen.net.sdk/1.0.1",
"hashPath": "tizen.net.sdk.1.0.1.nupkg.sha512"
},
"Tizen.Wearable.CircularUI/1.0.0-pre2-00065": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mAmvSKW1Y+2fiHmwNR8RKTRss2pn0IKkrSYShQTDb6SXyvT2E7TQom9wvO9WcrXTEXsOjFMKL1CHaxXzHY4EMg==",
"path": "tizen.wearable.circularui/1.0.0-pre2-00065",
"hashPath": "tizen.wearable.circularui.1.0.0-pre2-00065.nupkg.sha512"
},
"Xamarin.Forms/3.1.0.637273": {
"type": "package",
"serviceable": true,
"sha512": "sha512-iYIMlhf5BFutJiVYYfawEtMzq4vo9m5qdT7R/IeDD40ENsqxqMBmvwp1/VzfD0las3ptkE0vgUG57O7QcUJlow==",
"path": "xamarin.forms/3.1.0.637273",
"hashPath": "xamarin.forms.3.1.0.637273.nupkg.sha512"
}
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
106 changes: 106 additions & 0 deletions Find_maze/Find_maze/bin/Debug/tizen40/tpkroot/author-signature.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
<Signature Id="AuthorSignature" xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" />
<SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" />
<Reference URI="tizen-manifest.xml">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>8PuJ8yxrs5yR8ZUUIb9GPS1rgbSr2kPsrjHWKOF8lrM=</DigestValue>
</Reference>
<Reference URI="shared%2Fres%2FFind_maze.png">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>/gTbhhRqVKFAMykTkZyDaEozK7OBNMSXGtsJpmRcLuE=</DigestValue>
</Reference>
<Reference URI="bin%2FXamarin.Forms.Xaml.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>OiYPegaTbtLGWe4lQG6ij/HPu0It9oNkL4DnAiY5Mtg=</DigestValue>
</Reference>
<Reference URI="bin%2FXamarin.Forms.Platform.Tizen.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>PTb79TMeQ1y/AwQlRV662481vTW+oSOJKpCAYselrWU=</DigestValue>
</Reference>
<Reference URI="bin%2FXamarin.Forms.Platform.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>EJ00XPtqs9e9PIbJI1jO1njgYld85UInAASXWtfpVM0=</DigestValue>
</Reference>
<Reference URI="bin%2FXamarin.Forms.Core.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>HN8wk4JZO/gpXVVwaNDwEEXC2bfwTr5N9dz6nikuoBs=</DigestValue>
</Reference>
<Reference URI="bin%2FTizen.Wearable.CircularUI.Forms.Renderer.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>lk2lQmHIMPkJtDATothzxu0JIgsDqHXZn7/eOf1xwUQ=</DigestValue>
</Reference>
<Reference URI="bin%2FTizen.Wearable.CircularUI.Forms.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>BawZD5yGH8IszTxbbd3sclMi0O3przXb1ygZNOCi5Qw=</DigestValue>
</Reference>
<Reference URI="bin%2FFind_maze.pdb">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>dFd/lZ5yXw7KKG4dvqRX4wGOJHJJZKSM1ifLMNfntjE=</DigestValue>
</Reference>
<Reference URI="bin%2FFind_maze.dll">
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>UHkdv8N9prueG/KK2mJtFua/wgqv3AsobPG13OyKQGE=</DigestValue>
</Reference>
<Reference URI="#prop">
<Transforms>
<Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" />
<DigestValue>e2rGZ9lURQWep1IIbrRk2NYMw5EXlejQt2B0bMLUyoc=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>
TWZAvGIRBe4fFaYbB7ZCKncCSGDrYxLD122g/8Hv81UE7sTr6teZALA47cKBEwvtJ7Qdl4qe6gUT
aFfdhmHqkQen07GPh9pLzcUBEAW8Uc/xpVAqQnPI+X1cdrup2eDqb7ubFUAvHJgknsG4EyzyI2mD
T7XKhmzXP580HSnjOWc=
</SignatureValue>
<KeyInfo>
<X509Data>
<X509Certificate>
MIIClTCCAX2gAwIBAgIGAVYhXgiqMA0GCSqGSIb3DQEBBQUAMFYxGjAYBgNVBAoMEVRpemVuIEFz
c29jaWF0aW9uMRowGAYDVQQLDBFUaXplbiBBc3NvY2lhdGlvbjEcMBoGA1UEAwwTVGl6ZW4gRGV2
ZWxvcGVycyBDQTAeFw0xMjExMDEwMDAwMDBaFw0xOTAxMDEwMDAwMDBaMBExDzANBgNVBAMMBmF1
dGhvcjCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEApm4Xqu2NAxOEh4Fgo0w6j+Q9MccSOPny
mkyM3XMn0nL7mFKL4ZETxyRXlMU8DnM9l4zsEH3iS15cZknesUrCEAiuhL4fsp05ZSr6ERCYQrXs
06WPmepipiM7n6BWzCsSmv0qNxkYWjZODWT2+15PsXfvwsK9wsrjSDIT8SuYV48CAwEAAaMyMDAw
DAYDVR0TAQH/BAIwADALBgNVHQ8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwMwDQYJKoZIhvcN
AQEFBQADggEBAMqla3XZiV3xAQe3laSgVJvmtEsjl3Zfp7Nufrobsl4pxQhVbOITomeEqrJkn4e6
zzfsjQQ6nw0yXqeo6qfP1ez8Wvr/egyfO6BrnARX37K5cXszpIn7IvO6xl4Ux/rtp4vvQXDcrDS5
F07d9tg+5UO6MC/9cKaCNEIxSkXEhjOf5x2LGg686fq5V4WEKCO2ApkJRXn+tFRArysrT5FPEnus
NG+XhHWJw58HgBrZFl0SOUJQvzi3xv5xVPml65qwbehmQyu+LcgWeKySO46nzF0AXlCTaC78FGYk
nrG2yFeWO6SWXGV7uxgizufT+s851rPFg/EWYEjqX4jU/jp7Swg=
</X509Certificate>
<X509Certificate>
MIIDOTCCAiGgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMRowGAYDVQQKDBFUaXplbiBBc3NvY2lh
dGlvbjEaMBgGA1UECwwRVGl6ZW4gQXNzb2NpYXRpb24xHjAcBgNVBAMMFVRpemVuIERldmVsb3Bl
cnMgUm9vdDAeFw0xMjAxMDEwMDAwMDBaFw0yNzAxMDEwMDAwMDBaMFYxGjAYBgNVBAoMEVRpemVu
IEFzc29jaWF0aW9uMRowGAYDVQQLDBFUaXplbiBBc3NvY2lhdGlvbjEcMBoGA1UEAwwTVGl6ZW4g
RGV2ZWxvcGVycyBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANVGhRGmMIUyBA7o
PCz8Sxut6z6HNkF4oDIuzuKaMzRYPeWodwe9O0gmqAkToQHfwg2giRhE5GoPld0fq+OYMMwSasCu
g8dwODx1eDeSYVuOLWRxpAmbTXOsSFi6VoWeyaPEm18JBHvZBsU5YQtgZ6Kp7MqzvQg3pXOxtajj
vyHxiatJl+xXrHgcXC1wgyG3buty7u/Fi2mvKXJ0PRJcCjjK81dqe/Vr20sRUCrbk02zbm5ggFt/
jIEhV8wbFRQpliobc7J4dSTKhFfrqGM8rdd54LYhD7gSI1CFSe16pUXfcVR7FhJztRaiGLnCrwBE
dyTZ248+D4L/qR/D0axb3jcCAwEAAaMQMA4wDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOC
AQEAnOXXQ/1O/QTDHyrmQDtFziqPY3xWlJBqJtEqXiT7Y+Ljpe66e+Ee/OjQMlZe8gu21/8cKklH
95RxjopMWCVedXDUbWdvS2+CdyvVW/quT2E0tjqIzXDekUTYwwhlPWlGxvfj3VsxqSFq3p8Brl04
1Gx5RKAGyKVsMfTLhbbwSWwApuBUxYfcNpKwLWGPXkysu+HctY03OKv4/xKBnVWiN8ex/Sgesi0M
+OBAOMdZMPK32uJBTeKFx1xZgTLIhk45V0hPOomPjZloiv0LSS11eyd451ufjW0iHRE7WlpR6EvI
W6TFyZgMpQq+kg4hWl2SBTf3s2VI8Ygz7gj8TMlClg==
</X509Certificate>
</X509Data>
</KeyInfo>
<Object Id="prop">
<SignatureProperties xmlns:dsp="http://www.w3.org/2009/xmldsig-properties">
<SignatureProperty Id="profile" Target="#AuthorSignature">
<dsp:Profile URI="http://www.w3.org/ns/widgets-digsig#profile" />
</SignatureProperty>
<SignatureProperty Id="role" Target="#AuthorSignature">
<dsp:Role URI="http://www.w3.org/ns/widgets-digsig#role-author" />
</SignatureProperty>
<SignatureProperty Id="identifier" Target="#AuthorSignature">
<dsp:Identifier />
</SignatureProperty>
</SignatureProperties>
</Object>
</Signature>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading